/* ================================================================
   World Air HVAC — Global Stylesheet
   Design: Navy (#003D6B) + Sky (#00AEEF) + Orange (#FF6B35)
   Font: Inter (400/500/600/700/800/900)
   ================================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; max-width: 100vw; }
body { font-family: 'Inter', system-ui, sans-serif; background: #fff; color: #1A2332; line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* ── DESIGN TOKENS ── */
:root {
  --navy:       #003D6B;
  --navy-dark:  #00274A;
  --sky:        #00AEEF;
  --sky-light:  #E8F7FD;
  --orange:     #FF6B35;
  --orange-dark:#E55A25;
  --green:      #10B981;
  --text-1:     #0A1628;
  --text-2:     #1A2332;
  --text-3:     #4A5568;
  --text-4:     #718096;
  --border:     #E2E8F0;
  --bg-light:   #F7FAFC;
  --bg-blue:    #EBF8FF;
  --r-sm: 8px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px;
  --t-fast: 150ms ease; --t-mid: 220ms ease;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,61,107,0.10), 0 1px 3px rgba(0,0,0,0.06);
  --shadow-lg: 0 16px 48px rgba(0,61,107,0.16), 0 4px 12px rgba(0,0,0,0.08);
}

/* ── LAYOUT ── */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; }
.section { padding: clamp(64px, 8vw, 100px) 0; }
.section--dark { background: var(--navy-dark); color: #fff; }
.section--navy { background: var(--navy); color: #fff; }
.section--light { background: var(--bg-light); }
.section--blue { background: var(--bg-blue); }
.section--white { background: #fff; }

/* ── TYPOGRAPHY ── */
.label-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--sky); background: rgba(0,174,239,0.10); border: 1px solid rgba(0,174,239,0.25);
  border-radius: 4px; padding: 4px 12px;
}
.label-tag--orange { color: var(--orange); background: rgba(255,107,53,0.10); border-color: rgba(255,107,53,0.25); }
.label-tag--white { color: #fff; background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); }
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header .label-tag { margin-bottom: 14px; }
.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900; line-height: 1.1; letter-spacing: -0.03em;
  color: var(--text-1); margin-bottom: 16px;
}
.section--dark .section-header h2,
.section--navy .section-header h2 { color: #fff; }
.section-header p { font-size: clamp(15px, 1.8vw, 17px); color: var(--text-3); max-width: 600px; }
.section-header.center p { margin: 0 auto; }
.section--dark .section-header p,
.section--navy .section-header p { color: rgba(255,255,255,0.75); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--r-sm);
  font-size: 15px; font-weight: 700; cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap; line-height: 1;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.btn--primary { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn--primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(255,107,53,0.4); }
.btn--primary:active { transform: scale(0.98); }
.btn--primary:focus-visible { outline: 3px solid var(--sky); outline-offset: 2px; }
.btn--navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--navy:hover { background: var(--navy-dark); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(0,61,107,0.35); }
.btn--navy:active { transform: scale(0.98); }
.btn--navy:focus-visible { outline: 3px solid var(--sky); outline-offset: 2px; }
.btn--sky { background: var(--sky); color: #fff; border-color: var(--sky); }
.btn--sky:hover { background: #0096CF; transform: translateY(-1px); }
.btn--sky:active { transform: scale(0.98); }
.btn--sky:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn--outline:active { transform: scale(0.98); }
.btn--outline:focus-visible { outline: 3px solid var(--sky); outline-offset: 2px; }
.btn--outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn--outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn--outline-white:active { transform: scale(0.98); }
.btn--outline-white:focus-visible { outline: 3px solid var(--sky); outline-offset: 2px; }
.btn--lg { padding: 17px 36px; font-size: 16px; }
.btn--sm { padding: 10px 20px; font-size: 13.5px; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #fff; backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--t-mid), box-shadow var(--t-mid);
}
.nav.scrolled { background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100px; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo img { height: 75px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px; font-size: 14px; font-weight: 500; color: var(--text-2);
  border-radius: 6px; cursor: pointer; position: relative;
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-link:hover { color: var(--navy); background: var(--bg-light); }
.nav-link:focus-visible { outline: 2px solid var(--sky); outline-offset: 2px; }
.nav-link.active { color: var(--navy); background: rgba(0,174,239,0.1); }

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 5px; }
.nav-dropdown-toggle::after { content: '\25BE'; font-size: 10px; opacity: 0.7; }
.dropdown-panel {
  position: absolute; top: 100%; left: 0;
  background: #fff; border-radius: var(--r-md);
  padding: 16px 8px 8px; min-width: 220px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 110;
}
/* Invisible bridge to prevent hover gap */
.dropdown-panel::before {
  content: ''; position: absolute; top: -16px; left: 0; right: 0; height: 16px;
}
.nav-dropdown:hover .dropdown-panel { opacity: 1; visibility: visible; pointer-events: all; }
.dropdown-city {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 8px; font-size: 14px;
  font-weight: 500; color: var(--text-2);
  transition: background var(--t-fast);
}
.dropdown-city:hover { background: var(--bg-blue); color: var(--navy); }
.dropdown-city:focus-visible { outline: 2px solid var(--sky); }
.dropdown-city-icon { font-size: 16px; }

/* Mega menu */
.mega-panel {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  background: #fff; border-radius: var(--r-lg);
  padding: 16px 24px 24px; width: 580px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 110;
}
.nav-dropdown:hover .mega-panel { opacity: 1; visibility: visible; pointer-events: all; }
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.mega-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 14px; border-radius: 10px; color: var(--text-2);
  transition: background var(--t-fast);
}
.mega-item:hover { background: var(--bg-blue); }
.mega-item:focus-visible { outline: 2px solid var(--sky); }
.mega-icon {
  width: 38px; height: 38px; border-radius: 8px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #fff;
}
.mega-item:hover .mega-icon { background: linear-gradient(135deg, var(--sky), #0096CF); }
.mega-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.mega-title { font-size: 14px; font-weight: 700; color: var(--text-1); white-space: nowrap; }
.mega-desc { font-size: 12px; color: var(--text-4); line-height: 1.4; }
.mega-footer {
  margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border);
  text-align: center;
}
.mega-footer a {
  font-size: 13px; font-weight: 700; color: var(--sky);
  transition: color var(--t-fast);
}
.mega-footer a:hover { color: var(--navy); }
@media(max-width:900px) { .mega-panel { display: none !important; } }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-phone { font-size: 15px; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.nav-phone:focus-visible { outline: 2px solid var(--sky); outline-offset: 2px; }

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

/* Mobile nav */
.mobile-menu {
  display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
  background: var(--navy-dark); z-index: 99; padding: 24px;
  flex-direction: column; gap: 8px; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block; padding: 14px 16px; font-size: 16px; font-weight: 600;
  color: rgba(255,255,255,0.85); border-radius: 8px;
  transition: background var(--t-fast);
}
.mobile-menu a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 16px; }

@media(max-width:900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media(max-width:600px) {
  .nav-phone { display: none; }
  .nav-right .btn { display: none; }
  .nav-inner { gap: 12px; height: 70px; }
  .logo img { height: 48px !important; }
}

/* ── EMERGENCY BAR ── */
.emergency-bar {
  background: var(--orange); color: #fff;
  text-align: center; padding: 10px 24px;
  font-size: 13.5px; font-weight: 600; line-height: 1.5;
  position: fixed; top: 70px; left: 0; right: 0; z-index: 99;
}
.emergency-bar a { color: #fff; font-weight: 800; text-decoration: underline; }
@media(max-width:600px) {
  .emergency-bar { top: 70px; padding: 14px 16px; font-size: 12.5px; line-height: 1.55; }
}

/* ── PAGE HERO ── */
.hero {
  min-height: 100vh;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding-top: 130px; padding-bottom: 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 20%;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(0,27,52,0.95) 0%, rgba(0,39,74,0.88) 40%, rgba(0,61,107,0.45) 70%, rgba(0,61,107,0.15) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
@media(max-width:900px) { .hero-inner { grid-template-columns: 1fr; } }
@media(max-width:768px) { .hero { padding-top: 160px; } }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,174,239,0.15); border: 1px solid rgba(0,174,239,0.4);
  border-radius: 6px; padding: 6px 14px;
  font-size: 12px; font-weight: 700; color: var(--sky); letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 20px;
}
.hero-badge .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--sky); box-shadow: 0 0 8px var(--sky); animation: pulse-sky 2s ease-in-out infinite; display: inline-block; }
@keyframes pulse-sky { 0%,100%{opacity:1} 50%{opacity:0.4} }
.hero-content h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900; line-height: 1.05; letter-spacing: -0.04em;
  color: #fff; margin-bottom: 20px;
}
.hero-content h1 em { font-style: normal; color: var(--sky); }
.hero-content p { font-size: clamp(15px, 1.8vw, 18px); color: rgba(255,255,255,0.8); margin-bottom: 36px; max-width: 500px; line-height: 1.75; }
.hero-tagline { font-size: clamp(16px, 2vw, 20px) !important; font-weight: 700 !important; color: var(--orange) !important; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 12px !important; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,0.75); font-weight: 500; }
.hero-trust-item svg { color: var(--green); flex-shrink: 0; }

/* Interior page hero */
.page-hero {
  padding: 160px 0 80px;
  background: var(--navy-dark); color: #fff;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,174,239,0.08), transparent 70%);
  pointer-events: none;
}
/* Page hero with background image */
.page-hero--with-image { position: relative; }
.page-hero-bg-image {
  position: absolute; top: 0; right: 0; bottom: 0; width: 55%;
  background-size: cover; background-position: center;
  opacity: 0.85;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 30%, rgba(0,0,0,1) 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 30%, rgba(0,0,0,1) 70%, transparent 100%);
  pointer-events: none;
}
@media(max-width:900px) { .page-hero-bg-image { width: 100%; opacity: 0.1; } }

.page-hero .breadcrumb { margin-bottom: 20px; }
.page-hero h1 {
  font-size: 46px;
  font-weight: 900; line-height: 1.08; letter-spacing: -0.03em;
  color: #fff; margin-bottom: 20px; max-width: 680px;
}
@media(max-width:580px) { .page-hero h1 { font-size: 46px; } }
.page-hero p { font-size: clamp(15px, 1.8vw, 18px); color: rgba(255,255,255,0.75); max-width: 600px; line-height: 1.7; margin-bottom: 32px; }

/* Breadcrumbs */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.breadcrumb ol, .breadcrumb ul { display: flex; align-items: center; gap: 8px; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
.breadcrumb li { display: inline-flex; align-items: center; gap: 8px; }
.breadcrumb li + li::before { content: '›'; color: rgba(255,255,255,0.4); font-size: 14px; }
.breadcrumb a { color: var(--sky); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb a:focus-visible { outline: 2px solid var(--sky); outline-offset: 2px; }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ── HERO CARD (Booking Form) ── */
.hero-card {
  background: rgba(255,255,255,0.97); border-radius: 20px;
  padding: 32px; box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.hero-card-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-4); margin-bottom: 20px; }
.hero-card-emergency {
  background: linear-gradient(135deg, #FFF5F2, #FFF0EB);
  border: 1px solid rgba(255,107,53,0.2); border-radius: 14px;
  padding: 20px; margin-bottom: 16px;
  display: flex; align-items: flex-start; gap: 14px;
}
.hce-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.hce-title { font-size: 15px; font-weight: 800; color: var(--text-1); margin-bottom: 4px; }
.hce-sub { font-size: 13px; color: var(--text-3); }
.hero-card-form { display: flex; flex-direction: column; gap: 10px; }
.hero-card-form input, .hero-card-form select {
  width: 100%; padding: 12px 14px; border-radius: 10px;
  border: 1.5px solid var(--border); font-size: 14px; font-family: inherit;
  color: var(--text-2); background: #fff;
  transition: border-color var(--t-fast);
}
.hero-card-form input:focus, .hero-card-form select:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(0,174,239,0.15); }
.hero-card-form .btn { width: 100%; justify-content: center; }
.hero-card-privacy { font-size: 11.5px; color: var(--text-4); text-align: center; margin-top: 6px; }

/* ── TRUST BAR ── */
.trust-bar { background: #fff; border-bottom: 1px solid var(--border); border-top: 1px solid var(--border); }
.trust-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
@media(max-width:700px) { .trust-bar-inner { grid-template-columns: repeat(2,1fr); } }
.trust-bar .trust-item {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 24px; border-right: 1px solid var(--border);
}
.trust-bar .trust-item:last-child { border-right: none; }
.trust-icon { font-size: 28px; flex-shrink: 0; }
.trust-item-num { font-size: 18px; font-weight: 900; color: var(--navy); letter-spacing: -0.02em; line-height: 1; }
.trust-item-label { font-size: 12px; color: var(--text-4); font-weight: 500; margin-top: 2px; }

/* ── HERO TESTIMONIAL ── */
.hero-testimonial { padding: 36px 0; background: #fff; }
.hero-testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media(max-width:900px) { .hero-testimonial-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
.hero-testimonial-card {
  background: var(--bg-light); border: 1.5px solid var(--border); border-radius: var(--r-md);
  padding: 20px; transition: border-color var(--t-mid), box-shadow var(--t-mid), transform var(--t-mid);
}
.hero-testimonial-card:hover { border-color: var(--sky); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.hero-testimonial-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.hero-testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--orange); }
.hero-testimonial-top div { display: flex; flex-direction: column; }
.hero-testimonial-top strong { font-size: 13.5px; color: var(--text-1); }
.hero-testimonial-top span { font-size: 11px; color: var(--text-4); }
.hero-testimonial-google { margin-left: auto; font-size: 11px; color: var(--text-4); flex-shrink: 0; }
.hero-testimonial-stars { font-size: 12px; margin-bottom: 8px; }
.hero-testimonial-card p { font-size: 13px; color: var(--text-3); line-height: 1.6; font-style: italic; margin: 0; }

/* ── BRANDS BAR ── */
.brands-bar { padding: 40px 0; background: var(--bg-light); border-bottom: 1px solid var(--border); }
.brands-label { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-4); text-align: center; margin-bottom: 20px; }
.brands-grid { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.brands-grid img { height: 36px; width: auto; opacity: 0.7; transition: opacity var(--t-fast); filter: grayscale(100%); }
.brands-grid img:hover { opacity: 1; filter: grayscale(0%); }
@media(max-width:580px) { .brands-grid { gap: 24px; } .brands-grid img { height: 28px; } }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media(max-width:900px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:580px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--r-lg);
  padding: 28px;
  transition: border-color var(--t-mid), box-shadow var(--t-mid), transform var(--t-mid);
  cursor: pointer;
}
.service-card:hover { border-color: var(--sky); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-card:focus-within { border-color: var(--sky); box-shadow: 0 0 0 3px rgba(0,174,239,0.2); }
.sc-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 16px;
  transition: background var(--t-mid);
}
.service-card:hover .sc-icon { background: linear-gradient(135deg, var(--sky), #0096CF); }
.service-card h3 { font-size: 17px; font-weight: 800; color: var(--text-1); margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--text-3); line-height: 1.65; margin-bottom: 16px; }
.sc-link {
  font-size: 13.5px; font-weight: 700; color: var(--sky); display: inline-flex; align-items: center; gap: 5px;
  transition: gap var(--t-fast);
}
.sc-link:hover { gap: 8px; }

/* ── DIFFERENTIATOR (Why Us) ── */
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media(max-width:900px) { .diff-grid { grid-template-columns: 1fr; } }
.diff-image-wrap { position: relative; border-radius: 20px; overflow: hidden; }
.diff-image-wrap img { width: 100%; height: 440px; object-fit: cover; }
.diff-badge {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(0,27,52,0.95); border: 1px solid rgba(0,174,239,0.3);
  border-radius: 14px; padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
}
.diff-badge-num { font-size: 28px; font-weight: 900; color: var(--sky); line-height: 1; }
.diff-badge-text { font-size: 13px; color: rgba(255,255,255,0.8); }
.diff-points { display: flex; flex-direction: column; gap: 24px; }
.diff-point { display: flex; gap: 16px; }
.dp-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: var(--bg-blue); display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.dp-title { font-size: 16px; font-weight: 700; color: var(--text-1); margin-bottom: 5px; }
.dp-text { font-size: 14px; color: var(--text-3); line-height: 1.65; }

/* ── PROCESS STEPS ── */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
@media(max-width:900px) { .process-steps { grid-template-columns: repeat(2,1fr); gap: 24px; } }
@media(max-width:500px) { .process-steps { grid-template-columns: 1fr; } }
.process-steps::before {
  content: ''; position: absolute; top: 28px; left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(90deg, var(--sky), var(--navy));
}
@media(max-width:900px) { .process-steps::before { display: none; } }
.process-step { text-align: center; padding: 0 16px; position: relative; }
.ps-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  color: #fff; font-size: 20px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; position: relative; z-index: 1;
  box-shadow: 0 4px 16px rgba(0,61,107,0.35);
}
.ps-title { font-size: 15px; font-weight: 800; color: var(--text-1); margin-bottom: 8px; }
.ps-text { font-size: 13.5px; color: var(--text-3); line-height: 1.65; }

/* ── LOCATIONS GRID ── */
.location-pills { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 12px; }
.location-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 12px 22px; border-radius: 50px;
  background: #fff; border: 2px solid var(--border);
  font-size: 15px; font-weight: 600; color: var(--navy);
  text-decoration: none; transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.location-pill .pill-icon { font-size: 14px; color: var(--orange); }
.location-pill:hover {
  background: var(--navy); color: #fff; border-color: var(--navy);
  transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,61,107,0.2);
}
.location-pill:hover .pill-icon { color: var(--sky); }
.locations-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media(max-width:900px) { .locations-grid { grid-template-columns: repeat(3,1fr); } }
@media(max-width:580px) { .locations-grid { grid-template-columns: repeat(2,1fr); } }
.location-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 3/4; cursor: pointer;
}
.location-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.location-card:hover img { transform: scale(1.05); }
.location-card:focus-within img { transform: scale(1.05); }
.location-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,27,52,0.9) 0%, rgba(0,27,52,0.3) 60%, transparent 100%);
}
.location-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 16px; }
.location-name { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 2px; }
.location-sub { font-size: 11.5px; color: rgba(255,255,255,0.7); font-weight: 500; }
.location-link {
  display: inline-flex; align-items: center; gap: 4px; margin-top: 8px;
  font-size: 12px; font-weight: 700; color: var(--sky);
  background: rgba(0,174,239,0.15); border: 1px solid rgba(0,174,239,0.3);
  border-radius: 4px; padding: 3px 10px;
}

/* ── METRICS ── */
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-radius: 20px; overflow: hidden; }
@media(max-width:700px) { .metrics-grid { grid-template-columns: repeat(2,1fr); } }
.metric-cell, .metric {
  text-align: center; padding: 40px 24px;
  background: rgba(255,255,255,0.06);
  transition: background var(--t-fast);
}
.metric-cell:hover, .metric:hover { background: rgba(255,255,255,0.10); }
.metric-num, .metric-number {
  font-size: clamp(36px, 4vw, 52px); font-weight: 900; letter-spacing: -0.04em;
  color: var(--sky); line-height: 1; margin-bottom: 8px; display: block;
}
.metric-label { font-size: 13px; color: rgba(255,255,255,0.65); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media(max-width:900px) { .reviews-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:580px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--r-lg);
  padding: 24px;
  transition: border-color var(--t-mid), box-shadow var(--t-mid), transform var(--t-mid);
}
.review-card:hover { border-color: var(--sky); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.review-stars { font-size: 16px; margin-bottom: 12px; }
.review-text { font-size: 14.5px; color: var(--text-2); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: #fff;
}
.review-name { font-size: 14px; font-weight: 700; color: var(--text-1); }
.review-city { font-size: 12px; color: var(--text-4); }
.review-source { margin-left: auto; font-size: 11px; color: var(--text-4); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; text-align: left;
  font-size: 16px; font-weight: 700; color: var(--text-1);
  font-family: inherit; gap: 16px;
  transition: color var(--t-fast);
}
.faq-q:hover { color: var(--navy); }
.faq-q:focus-visible { outline: 2px solid var(--sky); outline-offset: 2px; }
.faq-icon { font-size: 22px; color: var(--sky); transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding-bottom: 20px; color: var(--text-3); font-size: 15px; line-height: 1.75; }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #005A9B 100%);
  padding: clamp(64px, 8vw, 100px) 0; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,174,239,0.15), transparent 70%);
  pointer-events: none;
}
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-band-inner h2 { font-size: clamp(26px, 4vw, 42px); font-weight: 900; color: #fff; letter-spacing: -0.03em; margin-bottom: 12px; line-height: 1.1; }
.cta-band-inner p { color: rgba(255,255,255,0.75); font-size: 16px; margin-bottom: 20px; }
.cta-band p { color: #fff; font-size: 16px; line-height: 1.7; }
.cta-band h2 { font-size: clamp(26px, 4vw, 42px); font-weight: 900; color: #fff; letter-spacing: -0.03em; margin-bottom: 16px; line-height: 1.1; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ── FOOTER ── */
footer { background: var(--navy-dark); color: rgba(255,255,255,0.8); }
.footer-main { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
@media(max-width:900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:580px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.6); margin-top: 14px; max-width: 280px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.footer-contact a {
  font-size: 14px; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 8px;
  transition: color var(--t-fast);
}
.footer-contact a:hover { color: var(--sky); }
.footer-contact a:focus-visible { outline: 2px solid var(--sky); outline-offset: 2px; }
.footer-social { display: flex; gap: 16px; margin-top: 20px; }
.footer-social a { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.7); transition: color var(--t-fast); }
.footer-social a:hover { color: var(--sky); }
.footer-social svg { flex-shrink: 0; }
footer h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.65);
  transition: color var(--t-fast);
}
.footer-links a:hover { color: #fff; }
.footer-links a:focus-visible { outline: 2px solid var(--sky); outline-offset: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom span { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-license { display: flex; align-items: center; gap: 8px; }
.license-badge { background: rgba(0,174,239,0.15); border: 1px solid rgba(0,174,239,0.25); border-radius: 4px; padding: 3px 10px; font-size: 11px; font-weight: 700; color: var(--sky); letter-spacing: 0.05em; }

/* ── SARA WIDGET ── */
.sara-widget { position: fixed; bottom: 90px; right: 24px; z-index: 200; }
.sara-panel {
  position: absolute; bottom: 60px; right: 0;
  background: #fff; border-radius: 16px; padding: 0;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2); width: 320px;
  border: 1px solid var(--border);
  display: none; overflow: hidden;
}
.sara-panel.open { display: block; }
.sara-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; background: var(--navy-dark); color: #fff;
}
.sara-avatar-wrap { display: flex; align-items: center; gap: 10px; }
.sara-avatar-icon { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.sara-avatar-info { display: flex; flex-direction: column; }
.sara-avatar-info strong { font-size: 14px; font-weight: 700; }
.sara-avatar-info span { font-size: 11px; color: var(--green); font-weight: 500; }
.sara-close {
  background: none; border: none; color: rgba(255,255,255,0.6);
  font-size: 18px; cursor: pointer; padding: 4px;
  transition: color var(--t-fast);
}
.sara-close:hover { color: #fff; }
.sara-intro { padding: 16px 20px; font-size: 14px; color: var(--text-3); line-height: 1.6; border-bottom: 1px solid var(--border); }
.sara-actions { padding: 12px; display: flex; flex-direction: column; gap: 6px; }
.sara-action-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 10px; font-size: 13.5px; font-weight: 600;
  color: var(--text-2); border: 1.5px solid var(--border);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.sara-action-btn:hover { border-color: var(--sky); background: var(--bg-blue); }
.sara-action-btn:focus-visible { outline: 2px solid var(--sky); }
.sa-icon { font-size: 16px; }
.sara-footer { padding: 10px 20px; font-size: 11px; color: var(--text-4); text-align: center; background: var(--bg-light); }
.sara-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px 10px 10px; border-radius: 999px;
  background: var(--navy-dark); border: 2px solid rgba(0,174,239,0.4);
  color: #fff; font-size: 13.5px; font-weight: 700; cursor: pointer;
  box-shadow: 0 6px 24px rgba(0,39,74,0.4);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.sara-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,39,74,0.5); }
.sara-btn:focus-visible { outline: 3px solid var(--sky); outline-offset: 2px; }
.sara-btn-icon { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.sara-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 6px var(--green); animation: pulse-sky 2s ease-in-out infinite; }

/* ── EMERGENCY WIDGET ── */
.emergency-widget { position: fixed; bottom: 24px; right: 24px; z-index: 190; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.ew-panel {
  background: #fff; border-radius: 16px; padding: 20px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2); width: 280px;
  border: 1px solid var(--border); display: none;
}
.ew-panel.open { display: block; }
.ew-panel-header { font-size: 14px; font-weight: 800; color: var(--text-1); margin-bottom: 4px; }
.ew-panel-sub { font-size: 12.5px; color: var(--text-3); margin-bottom: 16px; }
.ew-actions { display: flex; flex-direction: column; gap: 8px; }
.ew-action {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border-radius: 10px; font-size: 13.5px; font-weight: 600;
  border: 1.5px solid;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.ew-action--primary { background: var(--orange); color: #fff; border-color: var(--orange); }
.ew-action--primary:hover { background: var(--orange-dark); }
.ew-action--outline { background: #fff; color: var(--navy); border-color: var(--border); }
.ew-action--outline:hover { border-color: var(--sky); color: var(--sky); }

/* ── STICKY CTA ── */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  background: rgba(0,27,52,0.97); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 12px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.sticky-cta-text { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.9); }
.sticky-cta-text strong { color: var(--sky); }
@media(max-width:580px) { .sticky-cta-text span { display: none; } }

/* ── CONTACT FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:580px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--text-2); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 14px; border-radius: 10px;
  border: 1.5px solid var(--border); font-size: 14px; font-family: inherit;
  color: var(--text-2); background: #fff;
  transition: border-color var(--t-fast);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(0,174,239,0.15); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── SMS CONSENT ── */
.sms-consent-block { display: flex; flex-direction: column; gap: 0; padding: 14px 16px; background: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 8px; }
.sms-consent-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.sms-consent-label input[type="checkbox"] { flex-shrink: 0; width: 17px; height: 17px; margin-top: 2px; accent-color: var(--sky); cursor: pointer; }
.sms-consent-text { font-size: 11.5px; color: var(--text-3); line-height: 1.55; }

/* ── CONTENT BLOCKS (for service/location pages) ── */
.content-section { padding: clamp(48px, 6vw, 80px) 0; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.content-grid--reverse { direction: rtl; }
.content-grid--reverse > * { direction: ltr; }
@media(max-width:900px) { .content-grid, .content-grid--reverse { grid-template-columns: 1fr; direction: ltr; } }
.content-image { border-radius: var(--r-lg); overflow: hidden; }
.content-image img { width: 100%; height: 360px; object-fit: cover; }
.content-text h2 { font-size: clamp(24px, 3.5vw, 36px); font-weight: 900; color: var(--text-1); line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 16px; }
.content-text p { font-size: 15px; color: var(--text-3); line-height: 1.75; margin-bottom: 16px; }
.content-text ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.content-text li { font-size: 14.5px; color: var(--text-2); display: flex; align-items: flex-start; gap: 10px; }
.content-text li::before { content: '\2713'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ── ABOUT PAGE: Split Content ── */
.split-content { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
@media(max-width:900px) { .split-content { grid-template-columns: 1fr; } }
.split-media { border-radius: var(--r-lg); overflow: hidden; }
.split-media img { width: 100%; height: auto; object-fit: cover; display: block; margin-bottom: 32px; }
.split-text h2 { font-size: clamp(24px, 3.5vw, 36px); font-weight: 900; color: var(--text-1); line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 16px; }
.split-text h3 { font-size: 18px; font-weight: 800; color: var(--text-1); margin-top: 24px; margin-bottom: 10px; }
.split-text p { font-size: 15px; color: var(--text-3); line-height: 1.75; margin-bottom: 16px; }

/* ── Feature Grid Variants ── */
.feature-grid { display: grid; gap: 24px; }
.feature-grid--3 { grid-template-columns: repeat(3, 1fr); }
.feature-grid--5 { grid-template-columns: repeat(5, 1fr); }
@media(max-width:900px) { .feature-grid--3 { grid-template-columns: repeat(2, 1fr); } .feature-grid--5 { grid-template-columns: repeat(3, 1fr); } }
@media(max-width:580px) { .feature-grid--3, .feature-grid--5 { grid-template-columns: 1fr; } }

/* ── Cert Cards ── */
.cert-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--r-lg);
  padding: 24px; transition: all var(--t-mid);
}
.cert-card:hover { border-color: var(--sky); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.cert-card .cert-icon { display: none; }
.cert-card strong { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 800; color: var(--text-1); margin-bottom: 8px; }
.cert-card strong::before { content: '✓'; display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; background: var(--green); color: #fff; font-size: 12px; font-weight: 900; flex-shrink: 0; }
.cert-card p { font-size: 13px; color: var(--text-3); line-height: 1.6; margin: 0; }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.55s cubic-bezier(0.16,1,0.3,1), transform 0.55s cubic-bezier(0.16,1,0.3,1); }
.stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger.visible > *:nth-child(5) { transition-delay: 320ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 400ms; }
.stagger.visible > * { opacity: 1; transform: translateY(0); }
@media(prefers-reduced-motion:reduce) { .fade-up, .stagger > * { transition: none !important; opacity: 1 !important; transform: none !important; } }

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--navy); color: #fff; padding: 12px 24px;
  border-radius: 0 0 8px 8px; font-weight: 700; z-index: 999;
}
.skip-link:focus { top: 0; }

/* ============================================
   SERVICE & LOCATION PAGE EXTENSIONS
   ============================================ */

/* ── Breadcrumbs ── */
.breadcrumbs { padding: 16px 0; font-size: 13px; color: var(--text-4); }
.breadcrumbs a { color: var(--sky); font-weight: 500; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span { margin: 0 8px; opacity: 0.5; }
.breadcrumbs--hero { padding-top: 90px; color: rgba(255,255,255,0.5); }
.breadcrumbs--hero a { color: rgba(255,255,255,0.7); }
.breadcrumbs--hero a:hover { color: #fff; }

/* ── Page Hero Extensions ── */
.page-hero-inner { position: relative; z-index: 1; max-width: 720px; }
.page-hero-sub { color: rgba(255,255,255,0.8); font-size: clamp(15px, 1.8vw, 18px); line-height: 1.75; margin-bottom: 36px; max-width: 580px; }
.page-hero-cta, .page-hero-actions, .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.page-hero-trust, .trust-items, .hero-trust { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 36px; }
.page-hero-trust > *, .trust-items > *, .hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500; }
.page-hero-trust svg, .trust-items svg, .hero-trust-item svg { color: var(--green); flex-shrink: 0; }

/* ── Content Layout (Service/Location Pages) ── */
.content-section .content-grid {
    grid-template-columns: 1fr 380px; align-items: start;
}
@media(max-width:1024px) { .content-section .content-grid { grid-template-columns: 1fr; } }
.content-main h2 { margin-bottom: 16px; font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.2; }
.content-main h3 { margin-bottom: 12px; margin-top: 32px; font-size: 1.15rem; }
.content-main p { margin-bottom: 16px; color: var(--text-3); line-height: 1.75; }
.content-main ul { margin-bottom: 20px; }
.content-main ul li {
    position: relative; padding-left: 24px; margin-bottom: 10px;
    font-size: 15px; color: var(--text-3); line-height: 1.65;
}
.content-main ul li::before {
    content: ''; position: absolute; left: 0; top: 8px;
    width: 8px; height: 8px; border-radius: 50%; background: var(--sky);
}
.check-list li::before { background: var(--green); }

/* ── Sidebar ── */
.sidebar { position: sticky; top: 100px; }
.sidebar-card {
    background: var(--bg-light); border: 1.5px solid var(--border);
    border-radius: var(--r-lg); padding: 24px; margin-bottom: 20px;
}
.sidebar-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 10px; }
.sidebar-card h4 { margin-bottom: 12px; font-size: 15px; }
.sidebar-card p { font-size: 14px; color: var(--text-3); line-height: 1.6; margin-bottom: 16px; }
.sidebar-card .btn { width: 100%; justify-content: center; margin-bottom: 8px; padding: 12px 20px; font-size: 14px; }
.sidebar-card .btn:last-child { margin-bottom: 0; }
.sidebar-cta-card, .sidebar-cta {
    background: var(--bg-light); border: 1.5px solid var(--border);
    border-radius: var(--r-lg); padding: 24px; margin-bottom: 20px;
}
.sidebar-cta-card h3, .sidebar-cta h3 { font-size: 17px; font-weight: 800; margin-bottom: 10px; }
.sidebar-cta-card p, .sidebar-cta p { font-size: 14px; color: var(--text-3); line-height: 1.6; margin-bottom: 16px; }
.sidebar-cta-card .btn, .sidebar-cta .btn { width: 100%; justify-content: center; margin-bottom: 8px; padding: 12px 20px; font-size: 14px; }
.sidebar-cta-card .btn:last-child, .sidebar-cta .btn:last-child { margin-bottom: 0; }
.btn--block { width: 100%; justify-content: center; }
.sidebar-form { display: flex; flex-direction: column; gap: 10px; }
.sidebar-form input, .sidebar-form select, .sidebar-form textarea {
    width: 100%; padding: 12px 14px; border-radius: var(--r-sm);
    border: 1.5px solid var(--border); font-size: 14px; font-family: inherit;
    color: var(--text-2); background: #fff; transition: border-color var(--t-fast);
}
.sidebar-form input:focus, .sidebar-form select:focus, .sidebar-form textarea:focus {
    outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(0,174,239,0.1);
}
.sidebar-form textarea { min-height: 80px; resize: vertical; }
.sidebar-privacy { font-size: 11px; color: var(--text-4); text-align: center; margin-top: 4px; }
.sidebar-nav { margin-bottom: 0; }
.sidebar-nav h4 { font-size: 15px; margin-bottom: 12px; color: var(--text-1); }
.sidebar-nav ul { display: flex; flex-direction: column; gap: 4px; list-style: none; padding: 0; }
.sidebar-nav ul li a, .sidebar-nav a, .sidebar-links a {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px; border-radius: var(--r-sm);
    font-size: 14px; font-weight: 500; color: var(--text-3);
    transition: all var(--t-fast); border: 1px solid transparent;
}
.sidebar-nav ul li a:hover, .sidebar-nav ul li a.active,
.sidebar-nav a:hover, .sidebar-nav a.active, .sidebar-links a:hover, .sidebar-links a.active {
    background: var(--sky-light); color: var(--navy); border-color: rgba(0,174,239,0.2); font-weight: 600;
}
.sidebar-links { display: flex; flex-direction: column; gap: 4px; }

/* ── Feature Cards ── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media(max-width:900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:580px) { .features-grid { grid-template-columns: 1fr; } }
.feature-card {
    background: #fff; border: 1.5px solid var(--border); border-radius: var(--r-lg);
    padding: 28px; transition: all var(--t-mid);
}
.feature-card:hover { border-color: var(--sky); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-icon, .service-icon {
    width: 48px; height: 48px; border-radius: 10px;
    background: var(--bg-blue); display: flex; align-items: center;
    justify-content: center; font-size: 22px; margin-bottom: 16px;
}
.feature-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-3); line-height: 1.65; }

/* ── Cross-Link Grid ── */
.cross-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.cross-link-card, .cross-link {
    display: flex; align-items: center; gap: 12px;
    padding: 16px 20px; border-radius: var(--r-md);
    background: var(--bg-light); border: 1px solid var(--border);
    font-size: 14px; font-weight: 600; color: var(--text-2);
    transition: all var(--t-fast);
}
.cross-link-card:hover, .cross-link:hover { border-color: var(--sky); background: var(--sky-light); color: var(--navy); transform: translateX(4px); }
.cl-icon { font-size: 18px; }

/* ── Location List Cards ── */
.location-list-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media(max-width:580px) { .location-list-grid { grid-template-columns: 1fr; } }
.location-list-card {
    display: flex; align-items: center; gap: 20px;
    background: #fff; border: 1.5px solid var(--border); border-radius: var(--r-lg);
    padding: 24px; transition: all var(--t-mid);
}
.location-list-card:hover { border-color: var(--sky); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.location-list-card .loc-icon {
    width: 56px; height: 56px; border-radius: 12px;
    background: linear-gradient(135deg, var(--navy), var(--sky));
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; flex-shrink: 0;
}
.location-list-card h3 { font-size: 17px; margin-bottom: 4px; }
.location-list-card p { font-size: 13px; color: var(--text-4); }

/* ── Logo Text Fallback ── */
.logo-icon {
    width: 42px; height: 42px; border-radius: 10px;
    background: linear-gradient(135deg, var(--sky), var(--navy));
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 900; color: #fff;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-size: 17px; font-weight: 800; color: #fff; letter-spacing: -0.02em; line-height: 1; }
.logo-sub { font-size: 10px; color: var(--sky); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }

/* ── Section Variants ── */
.section--alt { background: var(--bg-light); }
.section-badge, .section-label { margin-bottom: 14px; }
.cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
.diff-content { max-width: 600px; }
.review-location { font-size: 12px; color: var(--text-4); }

/* ── Photo Gallery Carousel ── */
.gallery-wrap { position: relative; }
.gallery-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 12px;
  scrollbar-width: none;
  border-radius: 12px;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-slide { flex: 0 0 calc(33.333% - 8px); scroll-snap-align: start; }
.gallery-slide img { width: 100%; height: 440px; object-fit: cover; border-radius: 8px; display: block; }
.gallery-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 20px; }
.gallery-nav {
  background: var(--navy); color: #fff; border: none; width: 44px; height: 44px;
  border-radius: 50%; cursor: pointer; font-size: 24px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-fast); flex-shrink: 0;
}
.gallery-nav:hover { background: var(--sky); }
.gallery-counter { font-size: 14px; font-weight: 600; color: var(--text-3); min-width: 52px; text-align: center; }
@media(max-width:900px) { .gallery-slide { flex: 0 0 calc(50% - 6px); } .gallery-slide img { height: 360px; } }
@media(max-width:580px) { .gallery-slide { flex: 0 0 100%; } .gallery-slide img { height: 300px; } }


/* ==========================================================================
   Animated testimonials. Vanilla rebuild of a React/framer-motion component,
   because this is a static site with no build step and the locked architecture
   rule keeps it that way. Every effect below is CSS transitions plus ~40 lines
   of JS, against roughly 120KB of framework for the same result.
   ========================================================================== */
.wa-testimonials { position: relative; overflow: hidden; padding: 72px 0; background: #f8fafc; }
.wa-testimonials-grid-bg {
  position: absolute; inset: -50%; width: 200%; height: 200%; opacity: .1; pointer-events: none;
  background-image: linear-gradient(to right, #e2e8f0 1px, transparent 1px), linear-gradient(to bottom, #e2e8f0 1px, transparent 1px);
  background-size: 3rem 3rem;
  animation: waGridDrift 40s linear infinite alternate;
}
@keyframes waGridDrift { 0% { background-position: 0% 50%; } 100% { background-position: 100% 50%; } }

.wa-testimonials .container { position: relative; z-index: 1; }
.wa-testimonials-inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: 64px; align-items: center; max-width: 1000px; margin: 0 auto; }

/* Photo stack. Inactive cards sit behind, smaller, nudged down and rotated a
   few degrees so the pile reads as physical. */
.wa-testimonial-stack { position: relative; height: 400px; }
.wa-testimonial-photo {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  border-radius: 24px; box-shadow: 0 25px 50px -12px rgba(15, 23, 42, .35);
  transform-origin: bottom center;
  opacity: .45; transform: scale(.9) translateY(20px) rotate(var(--wa-rot, -6deg)); z-index: 1;
  transition: opacity .5s ease-in-out, transform .5s ease-in-out;
}
.wa-testimonial-photo.is-active { opacity: 1; transform: scale(1) translateY(0) rotate(0deg); z-index: 3; }

/* Text panels crossfade in place, so the column never changes height mid-swap. */
.wa-testimonial-body { position: relative; }
.wa-testimonial-panel {
  position: absolute; top: 0; left: 0; right: 0;
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity .3s ease-in-out, transform .3s ease-in-out;
}
.wa-testimonial-panel.is-active { position: relative; opacity: 1; transform: translateY(0); pointer-events: auto; }
.wa-testimonial-who { display: flex; align-items: center; gap: 12px; }
.wa-testimonial-who img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.wa-testimonial-who strong { display: block; font-size: 20px; font-weight: 700; color: #0f172a; line-height: 1.2; }
.wa-testimonial-who span { display: block; margin-top: 2px; font-size: 13px; color: #64748b; }
.wa-testimonial-stars { margin-top: 14px; color: #f59e0b; font-size: 15px; letter-spacing: 2px; }
.wa-testimonial-panel p { margin: 14px 0 0; font-size: 18px; line-height: 1.65; color: #334155; }

.wa-testimonial-controls { display: flex; align-items: center; gap: 12px; margin-top: 40px; }
.wa-testimonial-nav {
  display: grid; place-items: center; width: 44px; height: 44px; padding: 0;
  border: none; border-radius: 50%; background: #e2e8f0; cursor: pointer;
  transition: background .2s ease;
}
.wa-testimonial-nav:hover { background: #cbd5e1; }
.wa-testimonial-nav:focus-visible { outline: 3px solid rgba(56, 189, 248, .5); outline-offset: 2px; }
.wa-testimonial-nav svg { width: 20px; height: 20px; fill: none; stroke: #1e293b; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s ease; }
.wa-testimonial-nav:hover [data-wa-prev] svg, .wa-testimonial-nav[data-wa-prev]:hover svg { transform: translateX(-3px); }
.wa-testimonial-nav[data-wa-next]:hover svg { transform: translateX(3px); }
.wa-testimonial-count { margin-left: 6px; font-size: 13px; color: #64748b; }
.wa-testimonial-count b { color: #0f172a; }

@media (max-width: 900px) {
  .wa-testimonials { padding: 48px 0; }
  .wa-testimonials-inner { grid-template-columns: 1fr; gap: 32px; }
  /* width:100% is load-bearing. Every child is absolutely positioned, so the
     stack has no intrinsic width, and margin:0 auto cancels the grid stretch
     that was hiding that on desktop. Without it the column collapses to 0 and
     the photos vanish. */
  .wa-testimonial-stack { width: 100%; height: 320px; max-width: 320px; margin: 0 auto; }
  .wa-testimonial-panel p { font-size: 16px; }
}

/* Motion is decoration here, not information. With it off the cards and panels
   simply swap. */
@media (prefers-reduced-motion: reduce) {
  .wa-testimonials-grid-bg { animation: none; }
  .wa-testimonial-photo, .wa-testimonial-panel, .wa-testimonial-nav svg { transition: none; }
  .wa-testimonial-photo { transform: scale(1) translateY(0) rotate(0deg); }
}
