/* ─── Design Tokens — HaWa Brand ────────────────── */
:root {
  /* Brand Blue */
  --navy-50:  #e8f0fb;
  --navy-100: #c5d7f5;
  --navy-200: #9bbde9;
  --navy-500: #1a6fc4;
  --navy-600: #04519b;
  --navy-700: #03407a;
  --navy-800: #04519b;
  --navy-900: #022d57;
  /* Brand Green (accent / CTA) */
  --orange:   #2b694d;
  --orange-400:#368a63;
  --orange-600:#1e4f39;
  /* Grays */
  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --shadow-card: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow-card-hover: 0 10px 25px rgba(0,0,0,.08), 0 4px 10px rgba(0,0,0,.05);
  --shadow-cta: 0 4px 14px rgba(43,105,77,.35);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Century Gothic', 'CenturyGothic', 'Nunito', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #111827;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Century Gothic', 'CenturyGothic', 'Gotham', 'Nunito', system-ui, sans-serif;
  line-height: 1.15;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ─── Layout ─────────────────────────────────────── */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 640px)  { .section-container { padding: 0 2rem; } }
@media (min-width: 1024px) { .section-container { padding: 0 3rem; } }

.section { padding: 6rem 0; }
.bg-white { background: #fff; }
.bg-gray  { background: var(--gray-50); }
.text-center { text-align: center; }
.text-orange { color: var(--orange) !important; }

/* ─── Buttons ────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 1.75rem;
  background: var(--orange); color: #fff;
  font-family: 'Century Gothic', 'CenturyGothic', 'Gotham', 'Nunito', sans-serif; font-weight: 700; font-size: .9rem;
  border-radius: .75rem;
  box-shadow: var(--shadow-cta);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-primary:hover { background: var(--orange-600); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(43,105,77,.4); }

.btn-primary-sm {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .55rem 1rem;
  background: var(--orange); color: #fff;
  font-family: 'Century Gothic', 'CenturyGothic', 'Gotham', 'Nunito', sans-serif; font-weight: 700; font-size: .8rem;
  border-radius: .5rem;
  transition: background .15s, transform .15s;
}
.btn-primary-sm:hover { background: var(--orange-600); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 1.75rem;
  background: rgba(255,255,255,.08); color: #fff;
  font-family: 'Century Gothic', 'CenturyGothic', 'Gotham', 'Nunito', sans-serif; font-weight: 700; font-size: .9rem;
  border: 1px solid rgba(255,255,255,.16); border-radius: .75rem;
  transition: background .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,.14); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 1.75rem;
  background: var(--navy-700); color: #fff;
  font-family: 'Century Gothic', 'CenturyGothic', 'Gotham', 'Nunito', sans-serif; font-weight: 700; font-size: .9rem;
  border-radius: .75rem;
  transition: background .2s, transform .2s;
}
.btn-secondary:hover { background: var(--navy-800); transform: translateY(-2px); }

/* ─── Section Header ─────────────────────────────── */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-label {
  display: inline-block;
  font-family: 'Century Gothic', 'CenturyGothic', 'Gotham', 'Nunito', sans-serif;
  font-weight: 700; font-size: .7rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1rem;
}
.section-title {
  font-family: 'Century Gothic', 'CenturyGothic', 'Gotham', 'Nunito', sans-serif;
  font-weight: 800; font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--navy-800); letter-spacing: -.025em;
  margin-bottom: 1.25rem;
}
.section-sub {
  color: var(--gray-500); font-size: 1.1rem; max-width: 600px;
  margin: 0 auto; line-height: 1.7;
}

/* ─── Reveal Animation ───────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ─── Navigation ─────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: rgba(9,15,30,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(9,15,30,.2);
}
.nav-container {
  max-width: 1280px; margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 4.5rem;
}
@media (min-width: 640px) { .nav-container { padding: 0 2rem; height: 5rem; } }

.nav-logo { display: inline-flex; align-items: center; }
.nav-logo-img {
  height: 34px; width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: opacity .2s;
}
.nav-logo:hover .nav-logo-img { opacity: .85; }
/* Scrolled: keep white logo on blue bg */
.site-header.scrolled .nav-logo-img { filter: brightness(0) invert(1); }
/* Keep old text-logo classes as fallback */
.nav-logo-icon { display: none; }
.nav-logo-name { display: none; }
.nav-logo-sub  { display: none; }

.nav-links { display: none; }
@media (min-width: 768px) {
  .nav-links { display: flex; align-items: center; gap: .25rem; }
  .nav-links a {
    padding: .5rem 1rem; font-size: .85rem; font-weight: 500;
    color: rgba(255,255,255,.75); border-radius: .5rem;
    transition: color .15s, background .15s;
  }
  .nav-links a:hover { color: #fff; background: rgba(255,255,255,.08); }
}

.nav-actions { display: none; }
@media (min-width: 768px) {
  .nav-actions { display: flex; align-items: center; gap: .75rem; }
  .nav-phone {
    display: flex; align-items: center; gap: .4rem;
    font-size: .85rem; font-weight: 500;
    color: rgba(255,255,255,.75);
    transition: color .15s;
  }
  .nav-phone:hover { color: #fff; }
}

.nav-toggle {
  display: flex; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; padding: 8px;
  border-radius: 8px; color: rgba(255,255,255,.8);
  transition: background .15s;
}
.nav-toggle:hover { background: rgba(255,255,255,.1); }
.nav-toggle span {
  display: block; height: 2px; background: currentColor;
  border-radius: 2px; transition: .2s;
}
@media (min-width: 768px) { .nav-toggle { display: none; } }

.nav-mobile {
  display: none;
  background: rgba(9,15,30,.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1rem;
}
.nav-mobile.open { display: block; }
.nav-mobile-link {
  display: block; padding: .75rem 1rem;
  font-size: .85rem; font-weight: 500;
  color: rgba(255,255,255,.8); border-radius: .5rem;
  transition: color .15s, background .15s;
}
.nav-mobile-link:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-mobile-actions { padding-top: .75rem; display: flex; flex-direction: column; gap: .5rem; }
.nav-mobile-phone {
  display: flex; align-items: center; gap: .5rem;
  padding: .75rem 1rem; font-size: .85rem; font-weight: 500;
  color: rgba(255,255,255,.8); border-radius: .5rem;
  transition: background .15s;
}
.nav-mobile-phone:hover { background: rgba(255,255,255,.08); }

/* ─── Hero ───────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #022d57 0%, #04519b 55%, #03407a 100%);
  overflow: hidden;
}
.hero-grid-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero-glow {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 600px;
  background: rgba(79,96,184,.18); border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.hero-content { position: relative; padding-top: 7rem; padding-bottom: 5rem; width: 100%; }
.hero-inner { max-width: 760px; }
.hero-fade-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 8rem;
  background: linear-gradient(to top, #fff, transparent);
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem 1rem; border-radius: 999px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.8); font-size: .85rem; font-weight: 500;
  margin-bottom: 2rem;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.7;transform:scale(1.15)} }

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 800;
  color: #fff; letter-spacing: -.035em; line-height: 1.05;
  margin-bottom: 1.5rem;
}
.text-gradient {
  background: linear-gradient(90deg, #5ba8e0, #ffffff);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,.65);
  max-width: 600px; line-height: 1.7; margin-bottom: 2.5rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3.5rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1);
}
.trust-item {
  display: flex; align-items: center; gap: .6rem;
  color: rgba(255,255,255,.65); font-size: .85rem;
}
.trust-item svg { color: var(--orange-400); flex-shrink: 0; }

/* ─── Services ───────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  position: relative;
  background: #fff; border: 1px solid var(--gray-100);
  border-radius: 1rem; padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: box-shadow .25s, transform .25s;
  cursor: default;
}
.service-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
.service-accent-bar {
  position: absolute; top: 0; left: 1.5rem; right: 1.5rem; height: 2px;
  border-radius: 0 0 2px 2px;
  opacity: 0; transition: opacity .3s;
}
.service-card:hover .service-accent-bar { opacity: 1; }
.service-icon {
  width: 44px; height: 44px; border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.service-title { font-family: 'Century Gothic', 'CenturyGothic', 'Gotham', 'Nunito', sans-serif; font-weight: 700; font-size: .95rem; color: var(--navy-800); margin-bottom: .5rem; }
.service-desc  { color: var(--gray-500); font-size: .85rem; line-height: 1.6; margin-bottom: 1rem; }
.service-tags  { display: flex; flex-wrap: wrap; gap: .4rem; }
.tag {
  font-size: .7rem; padding: .25rem .65rem; border-radius: 999px;
  background: var(--gray-50); color: var(--gray-500); font-weight: 500;
}
.service-arrow {
  display: flex; align-items: center; gap: .3rem;
  font-size: .75rem; font-weight: 600; margin-top: 1rem;
  opacity: 0; transition: opacity .2s;
}
.service-card:hover .service-arrow { opacity: 1; }

/* ─── WhyUs ──────────────────────────────────────── */
.why-grid {
  display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center;
}
@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr; } }

.stats-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.stat-badge {
  display: flex; align-items: center; gap: .75rem;
  padding: .75rem 1.25rem;
  background: #fff; border: 1px solid var(--gray-100);
  border-radius: .75rem; box-shadow: var(--shadow-card);
}
.stat-num { font-family: 'Century Gothic', 'CenturyGothic', 'Gotham', 'Nunito', sans-serif; font-weight: 800; font-size: 1.5rem; }
.stat-label { font-size: .8rem; color: var(--gray-500); line-height: 1.3; }

.reasons-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 480px) { .reasons-grid { grid-template-columns: 1fr 1fr; } }

.reason-card {
  background: #fff; border: 1px solid var(--gray-100);
  border-radius: .75rem; padding: 1.25rem;
  box-shadow: var(--shadow-card);
  transition: box-shadow .2s;
}
.reason-card:hover { box-shadow: var(--shadow-card-hover); }
.reason-icon {
  width: 36px; height: 36px; border-radius: .5rem;
  background: var(--navy-50);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .75rem;
}
.reason-title { font-family: 'Century Gothic', 'CenturyGothic', 'Gotham', 'Nunito', sans-serif; font-weight: 700; font-size: .85rem; color: var(--navy-800); margin-bottom: .4rem; }
.reason-desc  { font-size: .78rem; color: var(--gray-500); line-height: 1.55; }

/* ─── Process ────────────────────────────────────── */
.process-grid {
  position: relative;
  display: grid; grid-template-columns: 1fr; gap: 2rem;
}
@media (min-width: 640px)  { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(5, 1fr); gap: 2rem; } }

.process-connector {
  display: none;
}
@media (min-width: 1024px) {
  .process-connector {
    display: block;
    position: absolute; top: 40px; left: 10%; right: 10%; height: 1px;
    background: linear-gradient(90deg, var(--gray-100), var(--gray-200), var(--gray-100));
  }
}

.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; }
.process-icon-wrap {
  position: relative; z-index: 1;
  width: 80px; height: 80px; border-radius: 1rem;
  background: var(--navy-800);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 15px rgba(15,33,67,.25);
}
.process-num {
  position: absolute; top: -8px; right: -8px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--orange); color: #fff;
  font-family: 'Century Gothic', 'CenturyGothic', 'Gotham', 'Nunito', sans-serif; font-weight: 800; font-size: .7rem;
  display: flex; align-items: center; justify-content: center;
}
.process-title { font-family: 'Century Gothic', 'CenturyGothic', 'Gotham', 'Nunito', sans-serif; font-weight: 700; font-size: .95rem; color: var(--navy-800); margin-bottom: .5rem; }
.process-desc  { color: var(--gray-500); font-size: .82rem; line-height: 1.6; }

.process-cta {
  margin-top: 4rem;
  background: linear-gradient(135deg, var(--navy-800) 0%, #1a2d5a 100%);
  border-radius: 1.25rem; padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1.5rem;
  align-items: flex-start;
}
@media (min-width: 640px) {
  .process-cta { flex-direction: row; align-items: center; justify-content: space-between; }
}
.process-cta-title { font-family: 'Century Gothic', 'CenturyGothic', 'Gotham', 'Nunito', sans-serif; font-weight: 800; font-size: 1.25rem; color: #fff; margin-bottom: .25rem; }
.process-cta-sub   { color: rgba(255,255,255,.6); font-size: .85rem; }

/* ─── References ─────────────────────────────────── */
.testimonials-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 4rem;
}
@media (min-width: 640px)  { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: #fff; border: 1px solid var(--gray-100);
  border-radius: 1rem; padding: 1.5rem;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
}
.quote-icon { color: #fed7aa; margin-bottom: 1rem; flex-shrink: 0; }
.testimonial-text { color: var(--gray-500); font-size: .875rem; line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }
.testimonial-footer { border-top: 1px solid var(--gray-100); padding-top: 1rem; }
.stars { color: var(--orange-400); font-size: .875rem; margin-bottom: .4rem; letter-spacing: .05em; }
.testimonial-name { font-family: 'Century Gothic', 'CenturyGothic', 'Gotham', 'Nunito', sans-serif; font-weight: 700; color: var(--navy-800); font-size: .875rem; }
.testimonial-meta { color: var(--gray-400); font-size: .75rem; margin-top: .15rem; }

.project-highlights {
  background: var(--navy-800); border-radius: 1.25rem; padding: 2.5rem;
}
.ph-header { margin-bottom: 2rem; }
.ph-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .ph-grid { grid-template-columns: repeat(2, 1fr); } }
.ph-card {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1rem;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: .75rem;
}
.ph-year {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: .5rem;
  background: rgba(249,115,22,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange-400); font-family: 'Century Gothic', 'CenturyGothic', 'Gotham', 'Nunito', sans-serif;
  font-weight: 700; font-size: .75rem;
}
.ph-title  { color: #fff; font-family: 'Century Gothic', 'CenturyGothic', 'Gotham', 'Nunito', sans-serif; font-weight: 700; font-size: .875rem; margin-bottom: .2rem; }
.ph-detail { color: rgba(255,255,255,.5); font-size: .75rem; }

/* ─── Contact ────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 3fr; } }

.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem;
  background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: .75rem;
}
.contact-icon {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: .75rem;
  background: var(--navy-800);
  display: flex; align-items: center; justify-content: center;
}
.contact-label { font-size: .7rem; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: .07em; margin-bottom: .2rem; }
.contact-value { font-family: 'Century Gothic', 'CenturyGothic', 'Gotham', 'Nunito', sans-serif; font-weight: 700; color: var(--navy-800); font-size: .875rem; transition: color .15s; }
a.contact-value:hover { color: var(--orange); }
.contact-sub { font-size: .75rem; color: var(--gray-400); margin-top: .15rem; }

.contact-hours {
  padding: 1.25rem; background: var(--navy-800); border-radius: .75rem; color: #fff;
}
.contact-hours-title {
  display: flex; align-items: center; gap: .5rem;
  font-family: 'Century Gothic', 'CenturyGothic', 'Gotham', 'Nunito', sans-serif; font-weight: 700; font-size: .875rem;
  margin-bottom: .75rem;
}
.hours-row { display: flex; justify-content: space-between; font-size: .875rem; color: rgba(255,255,255,.65); margin-bottom: .3rem; }
.hours-row span:last-child { color: #fff; font-weight: 500; }

.contact-form-wrap {
  background: #fff; border: 1px solid var(--gray-100);
  border-radius: 1.25rem; padding: 2rem;
  box-shadow: var(--shadow-card);
}
.form-row-2 { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 480px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .72rem; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: .07em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .8rem 1rem;
  border: 1px solid var(--gray-200); border-radius: .75rem;
  font-size: .875rem; font-family: inherit; color: #1f2937;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange-400);
  box-shadow: 0 0 0 3px rgba(249,115,22,.12);
}
.form-group textarea { resize: none; }
.form-group + .form-group { margin-top: 1.25rem; }
.form-row-2 + .form-group { margin-top: 1.25rem; }
.contact-form { display: flex; flex-direction: column; gap: 0; }
.contact-form .form-group { margin-top: 1.25rem; }
.contact-form .form-row-2 { margin-top: 0; }
.form-privacy { font-size: .72rem; color: var(--gray-400); margin: 1rem 0 1.25rem; line-height: 1.5; }
.form-privacy a { text-decoration: underline; }
.form-success { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 3rem 1rem; gap: .75rem; }
.form-success h3 { font-family: 'Century Gothic', 'CenturyGothic', 'Gotham', 'Nunito', sans-serif; font-weight: 800; font-size: 1.25rem; color: var(--navy-800); }
.form-success p { color: var(--gray-500); font-size: .875rem; max-width: 300px; }

/* ─── FAQ ────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  border: 1px solid var(--gray-100); border-radius: .75rem; overflow: hidden;
  background: #fff; transition: border-color .2s, background .2s;
}
.faq-item[data-open="true"] { border-color: #fed7aa; background: #fff9f5; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: 'Century Gothic', 'CenturyGothic', 'Gotham', 'Nunito', sans-serif; font-weight: 700;
  font-size: clamp(.85rem, 2vw, 1rem); color: var(--navy-800);
  cursor: pointer;
}
.faq-chevron { flex-shrink: 0; color: var(--orange); transition: transform .2s; }
.faq-item[data-open="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer { overflow: hidden; }
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  border-top: 1px solid #fed7aa;
  padding-top: 1rem;
  color: var(--gray-500); font-size: .875rem; line-height: 1.7;
}
.faq-bottom {
  margin-top: 3rem; text-align: center; padding: 2rem;
  background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: 1rem;
}
.faq-bottom p { color: var(--gray-500); font-size: .875rem; margin-bottom: 1rem; }

/* ─── Footer ─────────────────────────────────────── */
.site-footer { background: var(--navy-900); color: #fff; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 640px) { .footer-inner { padding: 0 2rem; } }

.footer-grid {
  padding: 4rem 0 3rem;
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.5fr; } }

.footer-desc { color: rgba(255,255,255,.5); font-size: .875rem; line-height: 1.65; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .75rem; }
.social-btn {
  width: 32px; height: 32px; border-radius: .5rem;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.social-btn:hover { background: var(--orange); }

.footer-heading { font-family: 'Century Gothic', 'CenturyGothic', 'Gotham', 'Nunito', sans-serif; font-weight: 700; font-size: .875rem; color: #fff; margin-bottom: 1rem; }
.footer-list { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-list a { color: rgba(255,255,255,.5); font-size: .875rem; transition: color .15s; }
.footer-list a:hover { color: #fff; }

.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.25rem; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: .75rem; }
.footer-contact-list svg { color: var(--orange-400); flex-shrink: 0; margin-top: 2px; }
.footer-contact-list a { color: rgba(255,255,255,.7); font-size: .875rem; transition: color .15s; }
.footer-contact-list a:hover { color: #fff; }
.footer-contact-list div > span { display: block; color: rgba(255,255,255,.4); font-size: .75rem; margin-top: .15rem; }
.footer-contact-list div { color: rgba(255,255,255,.6); font-size: .875rem; line-height: 1.5; }

.footer-hours { padding: 1rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: .75rem; }
.footer-hours-title { font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .07em; margin-bottom: .6rem; }
.footer-hours-row { display: flex; justify-content: space-between; font-size: .78rem; color: rgba(255,255,255,.55); margin-bottom: .25rem; }
.footer-hours-row span:last-child { color: rgba(255,255,255,.85); font-weight: 500; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  display: flex; flex-direction: column; gap: .75rem; align-items: center;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .75rem; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-legal a { color: rgba(255,255,255,.35); font-size: .75rem; transition: color .15s; }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ─── Responsive tweaks ──────────────────────────── */
@media (max-width: 639px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { justify-content: center; }
}
