/* ============================================
   WI 64 Self Storage — Shared Stylesheet
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:   #1B5E20;
  --green-main:   #2E7D32;
  --green-mid:    #388E3C;
  --green-light:  #4CAF50;
  --green-pale:   #E8F5E9;
  --green-xpale:  #F1F8E9;
  --accent:       #FF6F00;
  --accent-light: #FFF3E0;
  --white:        #FFFFFF;
  --gray-50:      #FAFAFA;
  --gray-100:     #F5F5F5;
  --gray-200:     #EEEEEE;
  --gray-400:     #BDBDBD;
  --gray-600:     #757575;
  --gray-800:     #424242;
  --text:         #1A1A1A;
  --shadow-sm:    0 1px 4px rgba(0,0,0,.08);
  --shadow:       0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:    0 8px 32px rgba(0,0,0,.14);
  --radius:       10px;
  --radius-sm:    6px;
  --container:    1200px;
  --transition:   all .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.25;
  color: var(--text);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-main);
  color: var(--white);
  border-color: var(--green-main);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: #E65100;
  border-color: #E65100;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--green-main);
  border-color: var(--green-main);
}
.btn-outline:hover {
  background: var(--green-main);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-white {
  background: var(--white);
  color: var(--green-main);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--green-pale);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-lg {
  padding: 16px 36px;
  font-size: 17px;
}
.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

/* ---- Header / Nav ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.header-top {
  background: var(--green-dark);
  color: var(--white);
  font-size: 13px;
  padding: 6px 0;
}
.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.header-top a { color: var(--white); }
.header-top a:hover { text-decoration: underline; }
.header-top .promo-badge {
  background: var(--accent);
  color: var(--white);
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 12px;
}
.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 10px;
  flex-wrap: nowrap;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--green-dark);
  flex-shrink: 0;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--green-main);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  flex-shrink: 0;
}
.logo span { display: block; font-size: 11px; font-weight: 500; color: var(--gray-600); margin-top: -3px; }

.logo-img { height: 44px; width: auto; object-fit: contain; border-radius: 6px; }

.logo-img-footer {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.nav-links a {
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--gray-800);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--green-main);
  background: var(--green-pale);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 0 20px 20px;
  gap: 0;
}
/* CTA row — Pay Rent + Rent a Unit side by side at top */
.mobile-nav-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 2px solid var(--gray-100);
  margin-bottom: 4px;
}
.mobile-nav-cta .btn {
  width: 100%;
  justify-content: center;
  padding: 10px 8px;
  font-size: 14px;
}
/* Nav links */
.mobile-nav a:not(.btn) {
  padding: 11px 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-100);
  display: block;
}
.mobile-nav a:not(.btn):last-of-type { border-bottom: none; }

/* ---- Section Utilities ---- */
section { padding: 80px 0; }
.section-label {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green-main);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 580px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.section-head { margin-bottom: 48px; }

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, #1A4731 0%, #2E7D32 28%, #52A35A 55%, #A5D6A7 80%, #E8F5E9 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.hero h1 em { color: #fff; font-style: normal; opacity: .9; }
.hero p {
  font-size: 18px;
  color: rgba(255,255,255,.92);
  margin-bottom: 36px;
  max-width: 480px;
  text-shadow: 0 1px 6px rgba(0,0,0,.2);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 36px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.95);
  font-size: 14px;
  text-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.trust-item .check {
  width: 22px;
  height: 22px;
  background: rgba(255,255,255,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
}
.hero-card {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 40px rgba(0,0,0,.12);
}
.hero-card h3 {
  color: var(--green-dark);
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
}
.unit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.unit-mini {
  background: var(--green-pale);
  border: 1.5px solid var(--green-light);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.unit-mini:hover {
  background: var(--green-main);
  border-color: var(--green-main);
  transform: translateY(-2px);
}
.unit-mini:hover .size,
.unit-mini:hover .dims { color: var(--white); }
.unit-mini .size { font-family: 'Poppins',sans-serif; font-weight: 800; font-size: 18px; color: var(--green-dark); }
.unit-mini .dims { font-size: 12px; color: var(--gray-600); margin-top: 2px; }
.hero-card-cta {
  margin-top: 20px;
  width: 100%;
  justify-content: center;
}

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--green-pale);
  border-top: 3px solid var(--green-main);
  padding: 24px 0;
}
.trust-bar .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}
.trust-icon {
  width: 48px;
  height: 48px;
  background: var(--green-main);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  flex-shrink: 0;
}
.trust-stat strong {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  display: block;
}
.trust-stat span { font-size: 13px; color: var(--gray-600); }

/* ---- Feature Cards ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}
.feature-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--green-light);
  transform: translateY(-3px);
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* ---- Units Section ---- */
.units-bg { background: var(--gray-50); }
.units-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.unit-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.unit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--green-main);
  transform: scaleX(0);
  transition: var(--transition);
}
.unit-card:hover {
  border-color: var(--green-main);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.unit-card:hover::before { transform: scaleX(1); }
.unit-card.popular {
  border-color: var(--green-main);
}
.unit-card.popular::before { transform: scaleX(1); }
.popular-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}
.unit-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0 auto 18px;
}
.unit-box {
  background: var(--green-pale);
  border: 2px solid var(--green-light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-dark);
}
.unit-name {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 4px;
}
.unit-sqft {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 14px;
}
.unit-use {
  font-size: 13px;
  color: var(--gray-800);
  margin-bottom: 18px;
  min-height: 42px;
}
.unit-card .btn { width: 100%; justify-content: center; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  margin-bottom: 14px;
}
.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
}
.cta-banner .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.testimonial:hover { box-shadow: var(--shadow); }
.stars { color: #FFC107; font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial p { font-size: 14px; color: var(--gray-800); font-style: italic; margin-bottom: 18px; line-height: 1.7; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--green-dark);
  flex-shrink: 0;
}
.reviewer strong { font-size: 14px; font-weight: 700; display: block; }
.reviewer span { font-size: 12px; color: var(--gray-600); }

/* ---- Location Preview ---- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.location-info h2 { margin-bottom: 20px; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
}
.contact-detail-icon {
  font-size: 22px;
  width: 42px;
  text-align: center;
  flex-shrink: 0;
}
.contact-detail strong { font-size: 14px; font-weight: 700; display: block; margin-bottom: 2px; }
.contact-detail span, .contact-detail a { font-size: 14px; color: var(--gray-600); }
.contact-detail a:hover { color: var(--green-main); }
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 380px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---- FAQ ---- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: var(--white);
  border: none;
  padding: 20px 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: var(--transition);
}
.faq-q:hover { background: var(--green-xpale); color: var(--green-main); }
.faq-q.open { background: var(--green-pale); color: var(--green-dark); }
.faq-chevron { font-size: 18px; transition: var(--transition); flex-shrink: 0; }
.faq-q.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 24px 20px;
  background: var(--green-xpale);
  font-size: 14px;
  color: var(--gray-800);
  line-height: 1.8;
}
.faq-a.open { display: block; }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(28px, 4vw, 44px); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.85); font-size: 17px; max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.5); }

/* ---- Unit Detail Page ---- */
.unit-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.unit-detail-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.unit-detail-card:hover {
  border-color: var(--green-main);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.unit-detail-header {
  background: var(--green-main);
  color: var(--white);
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.unit-detail-name {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 800;
}
.unit-detail-sqft { font-size: 14px; opacity: .85; margin-top: 2px; }
.unit-detail-price {
  text-align: right;
}
.unit-detail-price .from { font-size: 12px; opacity: .75; }
.unit-detail-price .price { font-family: 'Poppins',sans-serif; font-size: 28px; font-weight: 800; }
.unit-detail-price .mo { font-size: 13px; opacity: .8; }
.unit-detail-body { padding: 28px; }
.unit-visual-large {
  display: flex;
  align-items: flex-end;
  margin-bottom: 20px;
}
.unit-box-large {
  background: var(--green-pale);
  border: 2px solid var(--green-main);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--green-dark);
}
.fits-list { margin: 16px 0; }
.fits-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-100);
}
.fits-list li::before {
  content: '\2713';
  color: var(--green-main);
  font-weight: 700;
  flex-shrink: 0;
}
.unit-detail-card .btn { width: 100%; justify-content: center; margin-top: 18px; }

/* ---- Contact Page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--gray-800);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  transition: var(--transition);
  background: var(--white);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 3px rgba(46,125,50,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group .btn { width: 100%; justify-content: center; }

/* ---- Info Cards ---- */
.info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
}
.info-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green-pale);
  color: var(--green-dark);
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--gray-100);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { font-weight: 600; color: var(--gray-800); }
.hours-list .time { color: var(--gray-600); }
.portal-buttons { display: flex; flex-direction: column; gap: 12px; }
.portal-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-size: 14px;
}
.portal-btn:hover { border-color: var(--green-main); background: var(--green-pale); }
.portal-btn-icon {
  width: 40px;
  height: 40px;
  background: var(--green-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.portal-btn strong { display: block; font-weight: 700; font-family: 'Poppins',sans-serif; }
.portal-btn span { font-size: 12px; color: var(--gray-600); }

/* ---- SEO Article ---- */
.article-body {
  max-width: 820px;
  margin: 0 auto;
}
.article-body h2 {
  font-size: 26px;
  margin: 40px 0 16px;
  color: var(--green-dark);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green-pale);
}
.article-body h3 {
  font-size: 20px;
  margin: 28px 0 12px;
  color: var(--text);
}
.article-body p {
  margin-bottom: 16px;
  color: var(--gray-800);
  line-height: 1.8;
}
.article-body ul {
  margin: 12px 0 20px 0;
  list-style: none;
}
.article-body ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--gray-800);
  font-size: 15px;
}
.article-body ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green-main);
  font-weight: 700;
}
.article-sidebar {
  position: sticky;
  top: 90px;
}
.toc-card {
  background: var(--green-pale);
  border: 1px solid var(--green-light);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}
.toc-card h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-dark);
  margin-bottom: 14px;
}
.toc-card ol {
  padding-left: 18px;
  font-size: 14px;
}
.toc-card ol li { padding: 4px 0; }
.toc-card ol a { color: var(--green-dark); font-weight: 500; }
.toc-card ol a:hover { text-decoration: underline; }
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.quick-contact {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.quick-contact h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
}
.quick-contact .btn { width: 100%; justify-content: center; margin-bottom: 10px; }
.quick-contact .phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark);
}

/* ---- Footer ---- */
.site-footer {
  background: #0D2B0E;
  color: rgba(255,255,255,.8);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand .logo-icon { background: var(--green-main); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.7; max-width: 280px; }
.footer-brand .footer-contact {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-brand .footer-contact a {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-brand .footer-contact a:hover { color: var(--white); }
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.45); }
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--white); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .units-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav.open { display: flex; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .hero { padding: 70px 0 60px; }
  .location-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .unit-detail-grid { grid-template-columns: 1fr; gap: 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-bar .container { justify-content: flex-start; gap: 24px; }
  .header-top { display: none; }
  .units-grid { grid-template-columns: 1fr 1fr; }

  /* ── Units page mobile fixes ── */
  .unit-detail-header { padding: 16px 18px; }
  .unit-detail-name { font-size: 22px; }
  .unit-detail-price .price { font-size: 22px; }
  .unit-detail-body { padding: 16px 18px; }

  /* Size guide visual: shrink boxes, tighten gap */
  .size-guide-visual { gap: 12px !important; margin-bottom: 32px !important; }
  .size-guide-visual > div > div:first-child {
    width: 44px !important; max-height: 110px !important;
  }

  /* Comparison table: hide sq ft & book columns, tighten */
  .cmp-col-sqft, .cmp-col-book { display: none; }
  .cmp-table td, .cmp-table th { padding: 12px 10px !important; font-size: 13px !important; }
  .cmp-table .btn { padding: 6px 12px; font-size: 12px; }
}

@media (max-width: 480px) {
  .units-grid { grid-template-columns: 1fr; }
  .unit-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Further tighten cards on small phones */
  .unit-detail-header { padding: 14px 16px; }
  .unit-detail-body { padding: 14px 16px; }
  .fits-list li { font-size: 13px; padding: 5px 0; }
}

