/* ============================================================
   Wood Valley Apartment Homes — Main Stylesheet
   Color Palette:
     #0f2d5e  Deep Navy Blue
     #1a56a0  Primary Blue
     #3b82f6  Accent Blue
     #dbeafe  Light Blue
   ============================================================ */

@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:    #0f2d5e;
  --primary: #1a56a0;
  --accent:  #3b82f6;
  --light:   #dbeafe;
  --white:   #FFFFFF;
  --text:    #1a2b4a;
  --muted:   #4a6085;
  --gray:    #f0f5fb;
  --border:  #bfdbfe;

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

  --shadow-sm: 0 2px 8px rgba(15,45,94,.10);
  --shadow:    0 4px 20px rgba(15,45,94,.15);
  --shadow-lg: 0 8px 40px rgba(15,45,94,.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(--white);
  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(--white);
  text-align: center;
  padding: .55rem 1.5rem;
  font-size: .85rem;
  font-weight: 600;
  position: relative;
  z-index: 1001;
}
.notif-bar a { color: var(--white); 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(15,45,94,.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(59,130,246,.22);
}
.nav-cta a {
  background: var(--accent) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: .5rem 1.2rem !important;
}
.nav-cta a:hover { background: #2563eb !important; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
}
.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(--white); border-color: var(--accent); }
.btn-primary:hover { background: #2563eb; border-color: #2563eb; 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 Photo Reel ---- */
.hero-reel {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-reel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-reel-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,45,94,.88) 0%, rgba(26,86,160,.72) 60%, rgba(15,45,94,.84) 100%);
  z-index: 1;
}
.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: #93c5fd; }
.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: #93c5fd; line-height: 1; }
.hero-stat-lbl { font-size: .78rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .08em; margin-top: .2rem; }

/* Reel dots */
.hero-reel-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
  z-index: 3;
}
.hero-reel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  transition: var(--ease);
  padding: 0;
}
.hero-reel-dot.active { background: var(--white); transform: scale(1.3); }

/* ============================================================ 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/web/exterior_1.jpg') center/cover no-repeat;
  opacity: .08;
}
.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(--white);
  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;
}

/* ============================================================ PHOTO REEL (Our Homes) ============================================================ */
.photo-reel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 1rem;
}
.photo-reel-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.photo-reel-slide {
  flex: 0 0 100%;
  height: 440px;
  overflow: hidden;
}
.photo-reel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-reel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15,45,94,.65);
  color: var(--white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
  z-index: 2;
  backdrop-filter: blur(4px);
}
.photo-reel-btn:hover { background: var(--primary); }
.photo-reel-btn.prev { left: 1rem; }
.photo-reel-btn.next { right: 1rem; }
.photo-reel-btn svg { width: 20px; height: 20px; }
.photo-reel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .4rem;
  z-index: 2;
}
.photo-reel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  border: none;
  cursor: pointer;
  transition: var(--ease);
  padding: 0;
}
.photo-reel-dot.active { background: var(--white); }

/* Unit tabs for Our Homes */
.unit-tab-btns {
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.unit-tab-btn {
  padding: .5rem 1.25rem;
  border: 2px solid var(--border);
  border-radius: 100px;
  background: var(--white);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--ease);
  font-family: var(--body);
  color: var(--text);
}
.unit-tab-btn:hover { border-color: var(--accent); color: var(--primary); }
.unit-tab-btn.active { border-color: var(--accent); background: var(--accent); color: var(--white); }

.unit-tab-panel { display: none; }
.unit-tab-panel.active { display: block; }

.unit-reel-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 780px) { .unit-reel-wrap { grid-template-columns: 1fr; } }
.unit-reel-info { }
.unit-reel-info h3 { font-size: 1.6rem; margin-bottom: .5rem; }
.unit-reel-info .unit-price { margin-bottom: 1rem; }
.unit-reel-feats { margin-bottom: 1.5rem; }
.unit-reel-feats li {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .92rem;
  color: var(--text);
}
.unit-reel-feats li:last-child { border-bottom: none; }
.unit-reel-feats li svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

/* ============================================================ 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(15,45,94,.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; } }

/* ============================================================ 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(59,130,246,.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 / APPLY NOW PAGE ============================================================ */
.applicant-blurb {
  background: var(--light);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin-bottom: 2.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.applicant-blurb svg { width: 24px; height: 24px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.applicant-blurb-text h3 { font-size: 1.1rem; color: var(--dark); margin-bottom: .5rem; }
.applicant-blurb-text p { font-size: .92rem; color: var(--text); line-height: 1.7; margin-bottom: .4rem; }
.applicant-blurb-text p:last-child { margin-bottom: 0; }

.listings-portal-section {
  padding: 3.5rem 0 4rem;
  background: var(--gray);
}
.listings-portal-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border);
  background: var(--white);
}
.listings-portal-wrap iframe {
  width: 100%;
  min-height: 720px;
  border: none;
  display: block;
}

/* ============================================================ 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(59,130,246,.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(--white); 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(59,130,246,.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='%231a56a0' 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: #dbeafe; border: 1px solid #93c5fd; color: #1e3a5f; }
.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; }
}
