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

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

:root {
  --navy:        #0C2340;
  --navy-mid:    #163554;
  --teal:        #1E8FAA;
  --teal-dark:   #16738A;
  --teal-light:  #EAF6FA;
  --teal-mid:    #C8E9F2;
  --gold:        #B8862D;
  --gold-light:  #FDF6E8;
  --white:       #FFFFFF;
  --off-white:   #F7FAFC;
  --gray-100:    #EEF2F7;
  --gray-200:    #DDE4ED;
  --gray-400:    #8FA0B4;
  --gray-600:    #4A5A6B;
  --gray-800:    #1E2A36;
  --text:        #0F1E2E;
  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow-sm:   0 1px 4px rgba(12,35,64,0.07);
  --shadow:      0 4px 18px rgba(12,35,64,0.10);
  --shadow-lg:   0 12px 40px rgba(12,35,64,0.14);
  --max-w:       1160px;
  --ease:        cubic-bezier(0.4,0,0.2,1);
  --dur:         0.22s;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Lexend', sans-serif;
  line-height: 1.22;
  font-weight: 700;
}

h4, h5, h6 {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  line-height: 1.3;
}

img { max-width: 100%; display: block; }
a  { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  text-align: center;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--teal-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30,143,170,0.35);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--off-white);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.25);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.65);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: var(--white);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-mid);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(12,35,64,0.30);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: #9f7226;
  color: var(--white);
  transform: translateY(-1px);
}

/* ── Sections ── */
.section      { padding: 88px 0; }
.section-sm   { padding: 56px 0; }
.section-alt  { background: var(--off-white); }
.section-navy { background: var(--navy); color: var(--white); }
.section-teal-light { background: var(--teal-light); }

.section-label {
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.section-label-white {
  color: rgba(255,255,255,0.65);
}
.section-header { margin-bottom: 56px; }
.section-header h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--navy); margin-bottom: 14px; }
.section-header p  { font-size: 1.05rem; color: var(--gray-600); max-width: 540px; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

.divider {
  width: 48px;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
  margin-top: 18px;
}
.section-header.center .divider { margin: 18px auto 0; }

/* ── Top Bar ── */
.topbar {
  background: var(--navy);
  padding: 9px 0;
  font-size: 0.80rem;
  font-weight: 500;
  color: rgba(255,255,255,0.70);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: rgba(255,255,255,0.75); transition: color var(--dur); }
.topbar a:hover { color: var(--white); }
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-item i { font-size: 0.80rem; color: var(--teal); }

/* ── Navigation ── */
.site-nav {
  background: var(--white);
  box-shadow: 0 1px 0 var(--gray-200), 0 2px 12px rgba(12,35,64,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.nav-logo-img i {
  color: var(--white);
  font-size: 1.2rem;
}
.nav-logo-text strong {
  display: block;
  font-family: 'Lexend', sans-serif;
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}
.nav-logo-text span {
  display: block;
  font-size: 0.70rem;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2px;
}
/* hide the phone item inside nav-links on desktop — standalone button handles it */
.nav-phone-item { display: none; }
.nav-links a {
  display: block;
  padding: 8px 16px;
  color: var(--gray-600);
  font-weight: 500;
  font-size: 0.93rem;
  border-radius: var(--radius);
  transition: color var(--dur), background var(--dur);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: var(--teal-light);
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 22px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.90rem;
  transition: background var(--dur), transform var(--dur);
  text-decoration: none;
}
.nav-phone:hover {
  background: var(--navy-mid);
  color: var(--white);
  transform: translateY(-1px);
}
.nav-phone i { font-size: 0.88rem; color: var(--teal); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 7px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--dur), opacity var(--dur);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1606811971618-4486d14f3f99?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.02);
  transition: transform 8s ease;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(12,35,64,0.93) 0%,
    rgba(12,35,64,0.82) 45%,
    rgba(12,35,64,0.45) 75%,
    rgba(12,35,64,0.20) 100%
  );
}
.hero .container { position: relative; z-index: 1; padding-top: 40px; padding-bottom: 40px; }
.hero-content { max-width: 580px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--white);
  margin-bottom: 22px;
  font-weight: 700;
  line-height: 1.15;
}
.hero h1 em {
  font-style: normal;
  color: #7DD4E8;
}
.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
  max-width: 460px;
  line-height: 1.7;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}
.hero-phone-display {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px 14px 18px;
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: 50px;
  backdrop-filter: blur(6px);
  text-decoration: none;
  transition: background var(--dur), border-color var(--dur);
}
.hero-phone-display:hover {
  background: rgba(255,255,255,0.17);
  border-color: rgba(255,255,255,0.40);
}
.hero-phone-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-phone-icon i { color: var(--white); font-size: 0.85rem; }
.hero-phone-text small {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
}
.hero-phone-text strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.hero-badge-item i { color: var(--teal); font-size: 0.85rem; }

/* ── Feature Strip ── */
.feature-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 0;
}
.feature-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--gray-200);
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  border-right: 1px solid var(--gray-200);
  transition: background var(--dur);
}
.feature-item:hover { background: var(--off-white); }
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon i { color: var(--teal); font-size: 1.1rem; }
.feature-item h4 { font-size: 0.88rem; color: var(--navy); margin-bottom: 2px; }
.feature-item p  { font-size: 0.78rem; color: var(--gray-600); line-height: 1.4; }

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-photo-wrap {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.about-photo-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-badge {
  position: absolute;
  bottom: -12px;
  right: -12px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-badge-icon i { color: var(--teal); font-size: 0.9rem; }
.about-badge strong { display: block; font-size: 1.1rem; color: var(--navy); font-family: 'Lexend', sans-serif; }
.about-badge span   { font-size: 0.70rem; color: var(--gray-600); font-weight: 500; }

.about-text h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--navy); margin-bottom: 16px; }
.about-text p  { color: var(--gray-600); margin-bottom: 16px; font-size: 0.97rem; }
.about-checks {
  list-style: none;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.about-checks li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.93rem;
  color: var(--gray-600);
}
.about-checks li i { color: var(--teal); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--dur), box-shadow var(--dur), border-color var(--dur);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-mid);
}
.service-card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,35,64,0.45) 0%, transparent 60%);
}
.service-card-icon {
  position: absolute;
  bottom: 16px;
  left: 20px;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.service-card-icon i { color: var(--navy); font-size: 1.1rem; }
.service-card-body { padding: 22px 24px 24px; }
.service-card-body h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.service-card-body p  { font-size: 0.88rem; color: var(--gray-600); line-height: 1.6; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
}
.service-card-link i { font-size: 0.80rem; transition: transform var(--dur); }
.service-card:hover .service-card-link i { transform: translateX(3px); }

/* Service icon backgrounds — tinted flat style */
.svc-icon-teal   { background: #EAF6FA; display:flex; align-items:center; justify-content:center; }
.svc-icon-purple { background: #F2EEFB; display:flex; align-items:center; justify-content:center; }
.svc-icon-gold   { background: #FDF6E8; display:flex; align-items:center; justify-content:center; }
.svc-icon-green  { background: #EAFAF2; display:flex; align-items:center; justify-content:center; }
/* Keep old bg classes harmless */
.svc-bg-1,.svc-bg-2,.svc-bg-3,.svc-bg-4,.svc-bg-5,.svc-bg-6 { background-image: none; }

/* ── Stats / Numbers ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.10);
}
.stat-item:last-child { border-right: none; }
.stat-num  { font-family: 'Lexend', sans-serif; font-size: 2.6rem; font-weight: 700; color: var(--white); line-height: 1; }
.stat-label { font-size: 0.80rem; color: rgba(255,255,255,0.55); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.10em; font-weight: 500; }
.stat-accent { color: #7DD4E8; }

/* ── Testimonials ── */
/* ── Reviews Carousel ── */
.review-platforms {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 14px;
}
.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-light);
  color: var(--teal-dark);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
}
.platform-badge i { font-size: 0.85rem; }

.reviews-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  position: relative;
}
.reviews-carousel-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.reviews-carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.review-slide {
  min-width: 100%;
  padding: 0 4px;
  box-sizing: border-box;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 34px 38px;
  box-shadow: var(--shadow-sm);
  max-width: 760px;
  margin: 0 auto;
  transition: box-shadow var(--dur);
}
.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.review-stars { display: flex; gap: 4px; }
.review-stars i { color: #F59E0B; font-size: 1rem; }
.review-source {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal-dark);
  background: var(--teal-light);
  border-radius: 50px;
  padding: 4px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.review-text {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 13px;
  border-top: 1px solid var(--gray-100);
  padding-top: 18px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--teal-dark);
  flex-shrink: 0;
}
.review-author strong { font-size: 0.9rem; color: var(--navy); display: block; }
.review-author span   { font-size: 0.78rem; color: var(--gray-400); }

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: background var(--dur), border-color var(--dur), color var(--dur);
}
.carousel-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gray-200);
  border: none;
  cursor: pointer;
  transition: background var(--dur), transform var(--dur);
  padding: 0;
}
.carousel-dot.active {
  background: var(--teal);
  transform: scale(1.25);
}

/* Legacy keep (unused but harmless) */
.testimonials-grid { display: none; }
.testimonial-card { display: none; }

/* ── Call CTA Band ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 56px 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band-text h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); color: var(--white); margin-bottom: 8px; }
.cta-band-text p  { color: rgba(255,255,255,0.65); font-size: 0.97rem; }
.cta-band-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}
.cta-phone-big {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.cta-phone-big .phone-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-phone-big .phone-icon i { color: var(--white); font-size: 1.2rem; }
.cta-phone-big .phone-words small {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.cta-phone-big .phone-words strong {
  display: block;
  font-family: 'Lexend', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.cta-band-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

/* ── Contact Info ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-items { display: flex; flex-direction: column; gap: 22px; }
.contact-item  { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon i { color: var(--teal); font-size: 1.1rem; }
.contact-item h4 {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.contact-item p, .contact-item a {
  color: var(--gray-800);
  font-size: 0.95rem;
}
.hours-table { width: 100%; font-size: 0.88rem; border-collapse: collapse; }
.hours-table tr td { padding: 3px 0; }
.hours-table tr td:first-child { color: var(--gray-400); width: 110px; }
.hours-table tr td:last-child  { color: var(--gray-800); font-weight: 500; }
.hours-table .today td { color: var(--teal); font-weight: 600; }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}
.map-placeholder {
  height: 340px;
  background-image: url('https://images.unsplash.com/photo-1629909615957-be38d48fbbe4?auto=format&fit=crop&w=800&q=80');
  background-size: cover;
  background-position: center;
  background-color: var(--teal-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 24px;
  position: relative;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12,35,64,0.5);
}
.map-placeholder > * { position: relative; z-index: 1; }
.map-placeholder .map-pin {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-placeholder .map-pin i { color: var(--teal); font-size: 1.3rem; }
.map-placeholder strong { color: var(--white); font-family: 'Lexend', sans-serif; font-size: 1.1rem; }
.map-placeholder p { color: rgba(255,255,255,0.75); font-size: 0.85rem; }
.map-placeholder a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  padding: 10px 22px;
  background: var(--white);
  color: var(--navy);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background var(--dur);
}
.map-placeholder a:hover { background: var(--off-white); }

/* ── Page Hero (inner) ── */
.page-hero {
  background: var(--navy);
  background-image: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 64px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .container { position: relative; }
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0.80rem;
  color: rgba(255,255,255,0.50);
  margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,0.60); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 0.65rem; }
.page-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--white); margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,0.70); font-size: 1rem; max-width: 500px; margin: 0 auto; }

/* ── Insurance Page ── */
.ins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
  gap: 14px;
}
.ins-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: border-color var(--dur), box-shadow var(--dur), transform var(--dur);
  cursor: default;
}
.ins-card:hover {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-light);
  transform: translateY(-2px);
}
.ins-card i { font-size: 1.6rem; color: var(--navy); margin-bottom: 10px; display: block; }
.ins-card span { font-size: 0.82rem; font-weight: 600; color: var(--navy); }

.ins-callout {
  background: var(--teal-light);
  border: 1px solid var(--teal-mid);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 26px;
  margin-top: 32px;
}
.ins-callout p { color: var(--navy); font-size: 0.93rem; }
.ins-callout strong { color: var(--navy); }
.ins-callout a { color: var(--teal); font-weight: 600; }

/* ── Accordion ── */
.accordion { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.acc-item {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.acc-item.open { border-color: var(--teal-mid); }
.acc-header {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  font-family: 'Source Sans 3', sans-serif;
  gap: 12px;
}
.acc-header:hover { background: var(--off-white); }
.acc-arrow { color: var(--teal); font-size: 0.85rem; transition: transform var(--dur); flex-shrink: 0; }
.acc-item.open .acc-arrow { transform: rotate(180deg); }
.acc-body { display: none; padding: 0 22px 18px; color: var(--gray-600); font-size: 0.93rem; line-height: 1.7; }
.acc-item.open .acc-body { display: block; }

/* ── Services Detail Page ── */
.svc-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.svc-detail-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color var(--dur), box-shadow var(--dur);
}
.svc-detail-card:hover { border-color: var(--teal-mid); box-shadow: var(--shadow-sm); }
.svc-detail-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-detail-icon i { font-size: 1.3rem; }
.svc-detail-card h3 { font-size: 0.97rem; color: var(--navy); margin-bottom: 7px; }
.svc-detail-card p  { font-size: 0.88rem; color: var(--gray-600); line-height: 1.6; }

.icon-bg-teal   { background: var(--teal-light); }
.icon-bg-gold   { background: var(--gold-light); }
.icon-bg-navy   { background: #EAF0F8; }
.icon-bg-green  { background: #EDFAF3; }
.icon-c-teal    { color: var(--teal); }
.icon-c-gold    { color: var(--gold); }
.icon-c-navy    { color: var(--navy); }
.icon-c-green   { color: #1A8C5B; }

/* ── Team Cards ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--dur), box-shadow var(--dur);
}
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.team-photo {
  height: 200px;
  background-size: cover;
  background-position: top center;
  background-color: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-photo i { color: var(--teal); font-size: 3rem; opacity: 0.4; }
.team-body { padding: 18px; text-align: center; }
.team-body h4 { font-size: 0.97rem; color: var(--navy); margin-bottom: 3px; }
.team-body span { font-size: 0.80rem; color: var(--gray-600); }

/* ── Footer ── */
.site-footer { background: #091B2E; color: rgba(255,255,255,0.65); }
.footer-main {
  padding: 60px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-icon i { color: var(--white); font-size: 1.1rem; }
.footer-logo-text strong { display: block; font-family: 'Lexend', sans-serif; font-size: 1.05rem; color: var(--white); }
.footer-brand p { font-size: 0.88rem; line-height: 1.65; color: rgba(255,255,255,0.50); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: background var(--dur), color var(--dur), border-color var(--dur);
}
.footer-social a:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }

.footer-col h5 {
  font-size: 0.70rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color var(--dur);
}
.footer-col ul a:hover { color: var(--white); }
.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}
.footer-contact-line i { color: var(--teal); font-size: 0.85rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-line a { color: rgba(255,255,255,0.55); }
.footer-contact-line a:hover { color: var(--white); }
.footer-phone-big {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(30,143,170,0.15);
  border: 1px solid rgba(30,143,170,0.25);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--dur);
  margin-top: 4px;
}
.footer-phone-big:hover { background: rgba(30,143,170,0.25); }
.footer-phone-big i { color: var(--teal); font-size: 1rem; }
.footer-phone-big strong { color: var(--white); font-size: 1rem; font-weight: 600; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.30);
}
.footer-bottom a { color: rgba(255,255,255,0.38); }
.footer-bottom a:hover { color: rgba(255,255,255,0.65); }

/* ── Sticky Phone ── */
.sticky-phone {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
}
.sticky-phone a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 6px 28px rgba(12,35,64,0.40);
  transition: transform var(--dur), box-shadow var(--dur);
  text-decoration: none;
}
.sticky-phone a:hover { transform: scale(1.03); box-shadow: 0 8px 36px rgba(12,35,64,0.50); }
.sticky-phone i { color: var(--teal); font-size: 0.95rem; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .feature-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .about-grid    { grid-template-columns: 1fr; gap: 48px; }
  .about-photo-wrap { aspect-ratio: 16/9; }
  .about-badge   { bottom: -16px; right: 16px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row     { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid  { grid-template-columns: 1fr; }
  .svc-detail-grid { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .topbar        { display: none; }
  .nav-links, .nav-phone { display: none; }
  .hamburger     { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 12px 16px 20px;
    gap: 2px;
    box-shadow: 0 8px 28px rgba(12,35,64,0.12);
  }
  .nav-links.mobile-open .nav-phone-item {
    display: block;
    margin-top: 8px;
  }
  .site-nav { position: relative; }
  .hero      { min-height: 520px; padding: 60px 20px 48px; }

  /* Hero — eyebrow tighter so it doesn't wrap */
  .hero-eyebrow { font-size: 0.68rem; letter-spacing: 0.10em; }

  /* Hero — CTA buttons full-width stacked */
  .hero-cta-group { flex-direction: column; gap: 12px; }
  .hero-phone-display,
  .btn-outline-white { width: 100%; justify-content: center; text-align: center; box-sizing: border-box; }

  /* Hero — badges stack vertically */
  .hero-badges { flex-direction: column; gap: 10px; }

  .feature-strip-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .cta-band-action { align-items: flex-start; }
  .section { padding: 60px 0; }
  .ins-grid { grid-template-columns: repeat(2, 1fr); }

  /* Reviews carousel — smaller nav buttons */
  .carousel-btn { width: 36px; height: 36px; font-size: 0.8rem; }

  /* Staff card — center on mobile */
  .staff-grid { grid-template-columns: 1fr; }
  .staff-card { max-width: 340px; margin: 0 auto; }

  /* Section headings — scale down */
  .section-header h2 { font-size: clamp(1.5rem, 5vw, 2rem); }

  /* Sticky call btn — smaller on mobile */
  .sticky-call { padding: 12px 20px; font-size: 0.9rem; bottom: 16px; right: 16px; }

  /* Hablamos Español banner — reduce padding so button fits */
  .hablamos-banner { padding: 36px 24px !important; }
  .hablamos-banner .btn { display: block; width: 100%; box-sizing: border-box; text-align: center; }
}

/* ============================================================
   Motion & scroll-reveal enhancements
   ============================================================ */

/* Scroll-reveal: fade + lift + un-blur as elements enter the viewport.
   .reveal-init is applied by JS (see main.js), so content stays fully
   visible if JS or IntersectionObserver is unavailable. */
.reveal-init {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(6px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease), filter 0.65s var(--ease);
  will-change: opacity, transform;
}
.about-photo-wrap.reveal-init { transform: translateX(-40px); }
.about-text.reveal-init       { transform: translateX(40px); }
.reveal-init.reveal-in {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

/* Hero entrance: gentle staggered fade-up on page load. */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > *,
.page-hero .container > * {
  animation: heroFadeUp 0.8s var(--ease) both;
}
.hero-content > *:nth-child(1), .page-hero .container > *:nth-child(1) { animation-delay: 0.05s; }
.hero-content > *:nth-child(2), .page-hero .container > *:nth-child(2) { animation-delay: 0.18s; }
.hero-content > *:nth-child(3), .page-hero .container > *:nth-child(3) { animation-delay: 0.31s; }
.hero-content > *:nth-child(4), .page-hero .container > *:nth-child(4) { animation-delay: 0.44s; }
.hero-content > *:nth-child(5), .page-hero .container > *:nth-child(5) { animation-delay: 0.57s; }

/* Accessibility: honor reduced-motion — show everything, animate nothing. */
@media (prefers-reduced-motion: reduce) {
  .reveal-init,
  .reveal-init.reveal-in { opacity: 1; transform: none; filter: none; transition: none; }
  .hero-content > *,
  .page-hero .container > * { animation: none; }
}
