/* ============================================================
   Wood Valley Apartment Homes — Main Stylesheet
   Color Palette:
     #1B4332  Dark Forest Green
     #2D6A4F  Primary Green
     #52B788  Accent Green
     #D8F3DC  Light Green
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================ VARIABLES ============================================================ */
:root {
  --dark:    #1B4332;
  --primary: #2D6A4F;
  --accent:  #52B788;
  --light:   #D8F3DC;
  --white:   #FFFFFF;
  --text:    #1a2e1a;
  --muted:   #4a6741;
  --gray:    #f4f7f4;
  --border:  #d1e7d1;

  --heading: 'Playfair Display', Georgia, serif;
  --body:    'Inter', system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 2px 8px rgba(27,67,50,.10);
  --shadow:    0 4px 20px rgba(27,67,50,.15);
  --shadow-lg: 0 8px 40px rgba(27,67,50,.20);

  --radius:    8px;
  --radius-lg: 16px;
  --nav-h:     70px;
  --ease:      all .3s ease;
  --max-w:     1200px;
}

/* ============================================================ RESET ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: var(--ease); }
a:hover { color: var(--primary); }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--heading); line-height: 1.2; color: var(--dark); }

/* ============================================================ TYPOGRAPHY ============================================================ */
.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--light);
  padding: .35em 1em;
  border-radius: 100px;
  margin-bottom: .875rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  margin-bottom: .875rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* ============================================================ LAYOUT ============================================================ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }
.section-alt { background: var(--gray); }
.text-center { text-align: center; }

/* ============================================================ SKIP LINK ============================================================ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--accent);
  color: var(--dark);
  padding: .75rem 1.5rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 700;
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ============================================================ NOTIFICATION BAR ============================================================ */
.notif-bar {
  background: var(--accent);
  color: var(--dark);
  text-align: center;
  padding: .55rem 1.5rem;
  font-size: .85rem;
  font-weight: 600;
  position: relative;
  z-index: 1001;
}
.notif-bar a { color: var(--dark); text-decoration: underline; font-weight: 700; }

/* ============================================================ NAVBAR ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  height: var(--nav-h);
  background: var(--dark);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
  transition: background .3s;
}
.navbar.scrolled { background: rgba(27,67,50,.97); backdrop-filter: blur(10px); }
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-brand-name { font-family: var(--heading); font-size: 1.15rem; font-weight: 700; color: var(--white); }
.nav-brand-sub { font-size: .65rem; color: var(--accent); letter-spacing: .12em; text-transform: uppercase; margin-top: .1rem; }
.nav-links { display: flex; align-items: center; gap: .2rem; }
.nav-links a {
  color: rgba(255,255,255,.82);
  font-size: .88rem;
  font-weight: 500;
  padding: .5rem .9rem;
  border-radius: var(--radius);
  transition: var(--ease);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(82,183,136,.22);
}
.nav-cta a {
  background: var(--accent) !important;
  color: var(--dark) !important;
  font-weight: 700 !important;
  padding: .5rem 1.2rem !important;
}
.nav-cta a:hover { background: var(--light) !important; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
  aria-label: "Toggle navigation";
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--ease); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 820px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    background: var(--dark);
    padding: 1rem 1.5rem 1.5rem;
    gap: .15rem;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: var(--ease);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links a { padding: .75rem 1rem; font-size: .95rem; }
  .nav-cta { margin-top: .5rem; }
  .nav-cta a { text-align: center; display: block; }
}

/* ============================================================ BUTTONS ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  font-family: var(--body);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--ease);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--dark); border-color: var(--accent); }
.btn-primary:hover { background: #3da874; border-color: #3da874; color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-secondary { background: transparent; color: var(--white); border-color: var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--dark); transform: translateY(-2px); }
.btn-dark { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-dark:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-outline:hover { background: var(--dark); color: var(--white); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-sm { padding: .5rem 1.1rem; font-size: .83rem; }

/* ============================================================ HERO ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: .32;
  animation: heroZoom 12s ease infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.06); } }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,67,50,.92) 0%, rgba(45,106,79,.78) 60%, rgba(27,67,50,.88) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 2rem 0 3rem; width: 100%; }
.hero-label { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.25rem; }
.hero h1 { font-size: clamp(2.2rem, 6vw, 4rem); color: var(--white); margin-bottom: 1.25rem; line-height: 1.15; max-width: 720px; }
.hero h1 span { color: var(--accent); }
.hero-desc { font-size: clamp(1rem, 2.2vw, 1.15rem); color: rgba(255,255,255,.85); max-width: 560px; margin-bottom: 2.5rem; line-height: 1.75; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.15);
  flex-wrap: wrap;
}
.hero-stat-num { display: block; font-size: 2rem; font-weight: 700; font-family: var(--heading); color: var(--accent); line-height: 1; }
.hero-stat-lbl { font-size: .78rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .08em; margin-top: .2rem; }

/* ============================================================ PAGE HEADER ============================================================ */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  padding: calc(var(--nav-h) / 2 + 3rem) 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: .1;
}
.page-header .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; justify-content: center; gap: .5rem; margin-bottom: 1rem; font-size: .82rem; }
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,.35); }
.page-header h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3.25rem); margin-bottom: .6rem; }
.page-header p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

/* ============================================================ UNIT CARDS ============================================================ */
.unit-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.75rem; margin-top: 2.5rem; }
.unit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--ease);
  display: flex;
  flex-direction: column;
}
.unit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.unit-card-img {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: var(--light);
}
.unit-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.unit-card:hover .unit-card-img img { transform: scale(1.05); }
.unit-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: var(--dark);
  font-size: .72rem;
  font-weight: 700;
  padding: .3rem .75rem;
  border-radius: 100px;
}
.unit-body { padding: 1.5rem; flex: 1; }
.unit-title { font-size: 1.25rem; font-family: var(--heading); color: var(--dark); margin-bottom: .4rem; }
.unit-price { font-size: 1.5rem; font-weight: 700; color: var(--primary); margin-bottom: 1rem; }
.unit-price span { font-size: .88rem; font-weight: 400; color: var(--muted); }
.unit-feats { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.unit-feat { display: flex; align-items: center; gap: .35rem; font-size: .83rem; color: var(--muted); }
.unit-feat svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }
.unit-card-footer {
  padding: 1.1rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--gray);
  display: flex;
  gap: .75rem;
}

/* ============================================================ FEATURE CARDS ============================================================ */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin-top: 2.5rem; }
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }
.feature-card {
  text-align: center;
  padding: 2.25rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--ease);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--accent); }
.feature-icon {
  width: 62px;
  height: 62px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  color: var(--primary);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-title { font-size: 1.1rem; font-family: var(--heading); color: var(--dark); margin-bottom: .6rem; }
.feature-desc { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* ============================================================ AMENITIES ============================================================ */
.amenities-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; margin-top: 2.25rem; }
@media (max-width: 900px) { .amenities-list { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .amenities-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px) { .amenities-list { grid-template-columns: 1fr; } }
.amenity {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 1.1rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: .88rem;
  font-weight: 500;
  transition: var(--ease);
}
.amenity:hover { border-color: var(--accent); background: var(--light); }
.amenity-icon { width: 34px; height: 34px; background: var(--light); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--primary); }
.amenity-icon svg { width: 17px; height: 17px; }

/* ============================================================ REQUIREMENTS ============================================================ */
.requirements-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.req-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-sm);
}
.req-num {
  width: 40px;
  height: 40px;
  background: var(--dark);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.req-text { font-size: .92rem; color: var(--text); line-height: 1.65; }

/* ============================================================ LOCATION ============================================================ */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.location-points { margin-top: 1.5rem; }
.location-pt {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(27,67,50,.08);
  font-size: .9rem;
}
.location-pt:last-child { border-bottom: none; }
.location-pt svg { width: 17px; height: 17px; color: var(--accent); flex-shrink: 0; }
.map-box { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); height: 420px; }
.map-box iframe { width: 100%; height: 100%; border: none; }
@media (max-width: 900px) { .location-grid { grid-template-columns: 1fr; } }

/* ============================================================ TESTIMONIALS ============================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial::before { content: '"'; position: absolute; top: .75rem; left: 1.5rem; font-size: 4rem; font-family: var(--heading); color: var(--light); line-height: 1; pointer-events: none; }
.testimonial-stars { color: #f59e0b; display: flex; gap: .2rem; margin-bottom: .875rem; }
.testimonial-text { font-style: italic; color: var(--muted); font-size: .92rem; line-height: 1.7; margin-bottom: 1.1rem; }
.testimonial-author { font-weight: 600; color: var(--dark); font-size: .88rem; }
.testimonials-placeholder {
  text-align: center;
  padding: 3rem;
  background: var(--light);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--accent);
  color: var(--muted);
}
.testimonials-placeholder p { margin-top: .5rem; font-size: .9rem; }

/* ============================================================ CTA SECTION ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  text-align: center;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before, .cta-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(82,183,136,.06);
}
.cta-section::before { width: 600px; height: 600px; top: -200px; left: -200px; }
.cta-section::after  { width: 500px; height: 500px; bottom: -200px; right: -100px; }
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 1.1rem; }
.cta-section p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 540px; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================ LISTINGS PAGE ============================================================ */
.listings-filters { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn {
  padding: .5rem 1.25rem;
  border: 2px solid var(--border);
  border-radius: 100px;
  background: var(--white);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--ease);
  font-family: var(--body);
  color: var(--text);
}
.filter-btn:hover, .filter-btn.active { border-color: var(--accent); background: var(--accent); color: var(--dark); }
.listings-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; }
.listing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--ease);
  display: flex;
  flex-direction: column;
}
.listing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.listing-img { position: relative; height: 220px; overflow: hidden; background: var(--light); }
.listing-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.listing-card:hover .listing-img img { transform: scale(1.05); }
.listing-badge { position: absolute; top: 1rem; left: 1rem; background: var(--accent); color: var(--dark); font-size: .72rem; font-weight: 700; padding: .3rem .8rem; border-radius: 100px; }
.listing-badge.waitlist { background: #fef3c7; color: #92400e; }
.listing-body { padding: 1.5rem; flex: 1; }
.listing-title { font-size: 1.18rem; font-family: var(--heading); color: var(--dark); margin-bottom: .3rem; }
.listing-addr { font-size: .82rem; color: var(--muted); margin-bottom: .875rem; display: flex; align-items: center; gap: .3rem; }
.listing-price { font-size: 1.45rem; font-weight: 700; color: var(--primary); margin-bottom: .875rem; }
.listing-price span { font-size: .88rem; font-weight: 400; color: var(--muted); }
.listing-details { display: flex; gap: 1.1rem; flex-wrap: wrap; padding-bottom: 1.1rem; border-bottom: 1px solid var(--border); margin-bottom: 1.1rem; }
.listing-detail { display: flex; align-items: center; gap: .38rem; font-size: .83rem; color: var(--muted); }
.listing-detail svg { width: 15px; height: 15px; color: var(--accent); }
.listing-footer { padding: 1.1rem 1.5rem; background: var(--gray); display: flex; gap: .75rem; border-top: 1px solid var(--border); }
.listings-empty { text-align: center; padding: 4rem 2rem; color: var(--muted); }
.listings-loading { text-align: center; padding: 4rem; color: var(--muted); }
.listings-loading .spinner { width: 40px; height: 40px; border-width: 4px; margin-bottom: 1rem; }

/* ============================================================ LAYOUTS PAGE ============================================================ */
.layout-tabs { display: flex; gap: .5rem; border-bottom: 2px solid var(--border); margin-bottom: 2.5rem; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.layout-tab {
  padding: .75rem 1.5rem;
  border: none;
  background: none;
  font-family: var(--body);
  font-size: .92rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: var(--ease);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
}
.layout-tab:hover { color: var(--primary); }
.layout-tab.active { color: var(--primary); border-bottom-color: var(--accent); }
.layout-panel { display: none; animation: fadeUp .4s ease; }
.layout-panel.active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.layout-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 780px) { .layout-grid { grid-template-columns: 1fr; } }
.layout-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--light);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.layout-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.layout-placeholder { text-align: center; padding: 2.5rem; color: var(--muted); }
.layout-placeholder svg { width: 56px; height: 56px; color: var(--accent); margin-bottom: .75rem; }
.layout-specs .section-label { margin-bottom: .5rem; }
.layout-specs h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: .4rem; }
.layout-price-range { font-size: 1.65rem; font-weight: 700; color: var(--primary); margin-bottom: 1.25rem; }
.layout-feat-list { margin-bottom: 2rem; }
.layout-feat-list li { display: flex; align-items: center; gap: .75rem; padding: .6rem 0; border-bottom: 1px solid var(--border); font-size: .92rem; }
.layout-feat-list li:last-child { border-bottom: none; }
.layout-feat-list li svg { width: 17px; height: 17px; color: var(--accent); flex-shrink: 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; margin-top: 1.75rem; }
.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--light); cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.06); }

/* ============================================================ CONTACT ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 3.5rem; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.contact-info-card { background: var(--dark); border-radius: var(--radius-lg); padding: 2.5rem; color: var(--white); }
.contact-info-card h3 { color: var(--white); margin-bottom: 1.75rem; font-size: 1.45rem; }
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-detail-icon {
  width: 42px;
  height: 42px;
  background: rgba(82,183,136,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 19px; height: 19px; }
.contact-detail-lbl { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.45); display: block; margin-bottom: .15rem; }
.contact-detail-val { color: var(--white); font-size: .92rem; }
.contact-detail-val a { color: var(--accent); }
.contact-detail-val a:hover { color: var(--light); }
.contact-social { display: flex; gap: .75rem; margin-top: 2rem; padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,.1); }
.social-btn { width: 42px; height: 42px; background: rgba(255,255,255,.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.65); transition: var(--ease); }
.social-btn:hover { background: var(--accent); color: var(--dark); transform: translateY(-2px); }
.social-btn svg { width: 19px; height: 19px; }
.hours-list { margin-top: .75rem; }
.hours-row { display: flex; justify-content: space-between; padding: .4rem 0; font-size: .88rem; border-bottom: 1px solid rgba(255,255,255,.07); color: rgba(255,255,255,.75); }
.hours-row:last-child { border-bottom: none; }
.hours-row span:last-child { color: var(--accent); font-weight: 600; }

/* ============================================================ FORMS ============================================================ */
.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); border: 1px solid var(--border); }
.form-title { font-size: 1.45rem; color: var(--dark); margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.2rem; }
@media (max-width: 700px) { .form-row-3 { grid-template-columns: 1fr; } }
label { display: block; font-size: .85rem; font-weight: 600; color: var(--text); margin-bottom: .38rem; }
label .req { color: #dc2626; margin-left: .2rem; }
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="file"],
select,
textarea {
  width: 100%;
  padding: .72rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--body);
  font-size: .92rem;
  color: var(--text);
  background: var(--white);
  transition: var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(82,183,136,.15); }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232D6A4F' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
textarea { resize: vertical; min-height: 110px; }
input[type="file"] { padding: .5rem; cursor: pointer; }
.form-hint { font-size: .78rem; color: var(--muted); margin-top: .3rem; }
.form-checkbox { display: flex; gap: .75rem; align-items: flex-start; }
.form-checkbox input[type="checkbox"] { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; accent-color: var(--accent); cursor: pointer; }
.form-checkbox label { font-size: .85rem; font-weight: 400; color: var(--muted); margin: 0; cursor: pointer; }
.form-submit { margin-top: 1.5rem; }
.form-alert { padding: 1rem 1.25rem; border-radius: var(--radius); font-size: .9rem; margin-bottom: 1.25rem; display: none; }
.form-alert.show { display: block; }
.form-alert.success { background: #d1fae5; border: 1px solid #6ee7b7; color: #065f46; }
.form-alert.error   { background: #fee2e2; border: 1px solid #fca5a5; color: #991b1b; }
.section-divider { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; color: var(--primary); padding: .875rem 0 .4rem; border-top: 2px solid var(--light); margin: 1.5rem 0 .5rem; }
.app-intro { background: var(--light); border-radius: var(--radius-lg); padding: 1.75rem; margin-bottom: 2.25rem; display: flex; gap: 1rem; align-items: flex-start; }
.app-intro svg { width: 22px; height: 22px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.app-intro p { font-size: .92rem; color: var(--text); line-height: 1.65; }

/* ============================================================ LEGAL PAGES ============================================================ */
.legal-content { max-width: 800px; margin: 0 auto; padding: 3rem 0; }
.legal-updated { font-size: .85rem; color: var(--muted); background: var(--light); padding: .75rem 1.25rem; border-radius: var(--radius); margin-bottom: 2rem; display: inline-block; }
.legal-content h2 { font-size: 1.35rem; margin: 2.25rem 0 .875rem; }
.legal-content h3 { font-size: 1.05rem; color: var(--primary); margin: 1.5rem 0 .625rem; }
.legal-content p { font-size: .93rem; line-height: 1.8; color: var(--muted); margin-bottom: .9rem; }
.legal-content ul, .legal-content ol { margin: .75rem 0 .9rem 1.5rem; }
.legal-content li { font-size: .93rem; line-height: 1.7; color: var(--muted); margin-bottom: .4rem; }

/* ============================================================ FOOTER ============================================================ */
.footer { background: var(--dark); color: rgba(255,255,255,.7); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 600px)  { .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; } }
.footer-brand-name { font-family: var(--heading); font-size: 1.4rem; color: var(--white); display: block; margin-bottom: .3rem; }
.footer-brand-sub { font-size: .7rem; color: var(--accent); text-transform: uppercase; letter-spacing: .1em; display: block; margin-bottom: 1.1rem; }
.footer-desc { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.55); margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .75rem; }
.footer-col-title { color: var(--white); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.1rem; }
.footer-links { display: flex; flex-direction: column; gap: .55rem; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .85rem; transition: var(--ease); }
.footer-links a:hover { color: var(--accent); }
.footer-contact-item { display: flex; gap: .75rem; margin-bottom: .8rem; font-size: .85rem; }
.footer-contact-item svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: rgba(255,255,255,.6); }
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,.35); font-size: .78rem; }
.footer-bottom-links a:hover { color: var(--accent); }

/* ============================================================ UTILITIES ============================================================ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.spinner { display: inline-block; width: 22px; height: 22px; border: 3px solid var(--light); border-top-color: var(--primary); border-radius: 50%; animation: spin .8s linear infinite; vertical-align: middle; }
@keyframes spin { to { transform: rotate(360deg); } }
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.accent-bar { height: 4px; background: linear-gradient(90deg, var(--dark), var(--accent), var(--light)); }

/* ============================================================ PRINT ============================================================ */
@media print {
  .navbar, .footer, .cta-section, .notif-bar { display: none; }
  .page-header { padding-top: 2rem; }
}
