/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0b2045;
  --blue:        #1a56db;
  --blue-mid:    #2563eb;
  --blue-light:  #3b82f6;
  --sky:         #60a5fa;
  --bg-light:    #f0f6ff;
  --bg-white:    #ffffff;
  --text:        #0f172a;
  --text-muted:  #475569;
  --border:      #dde8f8;
  --shadow-sm:   0 2px 8px rgba(15,32,69,0.08);
  --shadow-md:   0 6px 24px rgba(15,32,69,0.12);
  --radius:      10px;
  --radius-lg:   16px;
  --transition:  0.2s ease;
  --max-w:       1160px;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: #f97316;
  color: #fff;
}
.btn-primary:hover { background: #ea580c; transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }

.btn-white {
  background: #fff;
  color: var(--blue);
}
.btn-white:hover { background: var(--bg-light); transform: translateY(-1px); }

.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.nav-logo svg { flex-shrink: 0; }
.nav-logo-img { height: 44px; width: auto; object-fit: contain; flex-shrink: 0; border-radius: 4px; display: none; }
.footer-logo-img { height: 36px; width: auto; object-fit: contain; flex-shrink: 0; border-radius: 4px; display: none; }
.nav-logo-svg { flex-shrink: 0; display: block; }

.nav-logo span { color: var(--sky); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links > a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-links > a:hover, .nav-links > a.active { color: #fff; background: rgba(255,255,255,0.1); }

.nav-phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  margin-left: 8px;
  transition: var(--transition);
}
.nav-phone-link:hover { color: #fff; }
.nav-cta { margin-left: 12px; padding: 10px 20px; font-size: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 8px 0 12px;
  position: fixed;
  top: 68px;
  right: 0;
  width: 220px;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.mobile-menu.open { display: flex; }
.mobile-menu > a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 11px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: #1e3a5f;
}
.mobile-menu > a:last-child { border-bottom: none; }
.mobile-menu > a:hover { color: #93c5fd; background: #162d4a; }
.mobile-menu .btn { display: none; }
.hero-quote-btn { display: none; }

/* ===== NAV DROPDOWN ===== */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle { color: #fff; background: rgba(255,255,255,0.1); }
.nav-dropdown-toggle svg { transition: transform var(--transition); flex-shrink: 0; }
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  padding-top: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(15,32,69,0.18);
  min-width: 230px;
  padding: 6px 0;
  z-index: 1100;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { display: block; }

.nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
  border-radius: 0;
}
.nav-dropdown-menu a:hover { background: var(--bg-light); color: var(--blue); }

/* ===== MOBILE SERVICES ACCORDION ===== */
.mobile-services-group { border-bottom: 1px solid rgba(255,255,255,0.1); }

.mobile-services-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  padding: 11px 20px;
  text-align: left;
  background: #1e3a5f;
}
.mobile-services-toggle:hover { color: #93c5fd; background: #162d4a; }
.mobile-services-toggle svg { transition: transform var(--transition); flex-shrink: 0; }
.mobile-services-toggle.open svg { transform: rotate(180deg); }

.mobile-services-list {
  display: none;
  flex-direction: column;
  padding-bottom: 8px;
  background: #fff;
}
.mobile-services-list.open { display: flex; }
.mobile-services-list a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 400;
  padding: 8px 20px 8px 32px;
  border-bottom: none;
}
.mobile-services-list a:hover { color: var(--blue); background: var(--bg-light); }

/* ===== PAGE OFFSET (for fixed nav) ===== */
main { padding-top: 68px; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #071530 0%, #0b2045 40%, #1a3a7a 100%);
  padding: 32px 0 29px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(96,165,250,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,86,219,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(96,165,250,0.15);
  border: 1px solid rgba(96,165,250,0.3);
  color: var(--sky);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.hero h1 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.hero h1 span { color: var(--sky); }

.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 20px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}
.hero-phone a { color: var(--sky); font-weight: 600; font-size: 16px; }
.hero-phone a:hover { color: #fff; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-graphic {
  width: 100%;
  max-width: 260px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--blue);
  padding: 18px 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 24px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.trust-item:last-child { border-right: none; }
.trust-item svg { flex-shrink: 0; opacity: 0.9; }

/* ===== SECTION SHARED ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-light); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.section-header h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.4px;
  margin-bottom: 14px;
}
.section-header p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== SERVICES CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sky);
}

.service-icon {
  width: 56px; height: 56px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { color: var(--blue); }

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}
.service-card .learn-more:hover { gap: 8px; }

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.why-item { text-align: center; }
.why-icon {
  width: 72px; height: 72px;
  background: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
}
.why-icon svg { color: var(--blue); }
.why-item h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.why-item p { font-size: 14px; color: var(--text-muted); }

/* ===== VIDEO ===== */
.video-block { max-width: 800px; margin: 0 auto; }
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-cta {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a7a 100%);
  padding: 43px 0;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--sky);
  font-size: 22px;
  font-weight: 700;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a7a 100%);
  padding: 36px 0;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--sky); }

/* ===== SERVICES PAGE ===== */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-full-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.service-full-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.service-full-card .service-icon { background: var(--bg-light); }
.service-full-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.service-full-card p { font-size: 14px; color: var(--text-muted); line-height: 1.75; }
.service-full-card ul {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-full-card ul li {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 7px;
}
.service-full-card ul li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

.insurance-banner {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.insurance-banner h2 { font-size: 26px; font-weight: 800; margin-bottom: 10px; }
.insurance-banner p { font-size: 15px; color: var(--text-muted); max-width: 520px; }

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: flex-start;
}

.contact-form-wrap {
  background: #e8edf3;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h2 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.contact-form-wrap > p { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.label-optional { font-weight: 400; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--bg-white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; justify-content: center; }

/* Scroll anchor — clears the 68 px fixed nav */
#contactForm { scroll-margin-top: 88px; }

/* Red asterisk on required labels */
.req-star { color: #dc2626; font-weight: 700; }

/* After submit attempt: highlight unfilled required fields */
.form-submitted .form-group input:required:invalid,
.form-submitted .form-group select:required:invalid {
  border-color: #dc2626;
  background: #fef2f2;
}
.form-submitted .form-group input:required:invalid:focus,
.form-submitted .form-group select:required:invalid:focus {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220,38,38,0.15);
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}
.form-success.show { display: block; }
.form-success svg { color: #22c55e; margin: 0 auto 16px; }
.form-success h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.form-success p { color: var(--text-muted); }

.form-error-msg {
  display: none;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 16px;
}
.form-error-msg.show { display: block; }

.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }

.contact-info-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.contact-info-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 16px; color: var(--navy); }

.map-card { padding: 20px; }
.map-embed { border-radius: 8px; overflow: hidden; margin-bottom: 12px; }
.map-embed iframe { display: block; }
.map-directions-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  transition: color var(--transition);
}
.map-directions-link:hover { color: var(--navy); }

.info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.info-item:last-child { margin-bottom: 0; }
.info-icon {
  width: 38px; height: 38px;
  background: var(--bg-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { color: var(--blue); }
.info-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.info-text span, .info-text a { font-size: 14px; color: var(--text-muted); }
.info-text a:hover { color: var(--blue); }

.hours-grid { display: flex; flex-direction: column; gap: 8px; }
.hours-row { display: flex; justify-content: space-between; font-size: 14px; }
.hours-row .day { color: var(--text-muted); }
.hours-row .time { font-weight: 600; color: var(--text); }

/* ===== FOOTER ===== */
.footer {
  background: #07172e;
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 320px; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--sky); }
.footer-col .info-item { margin-bottom: 12px; }
.footer-col .info-item svg { color: var(--sky); }
.footer-col .info-text a, .footer-col .info-text span { color: rgba(255,255,255,0.7); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.footer-bottom a { color: var(--sky); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid,
  .services-full-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub, .hero-actions { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-phone { justify-content: center; }
  .hero-visual { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .insurance-banner { grid-template-columns: 1fr; text-align: center; }
  .insurance-banner .btn { margin: 0 auto; }
}

/* ===== SERVICE DETAIL PAGES ===== */
.service-detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.service-detail-content h2 { font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.service-detail-content > p { color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; font-size: 16px; }
.service-detail-content h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin: 32px 0 16px; }

.process-steps { display: flex; flex-direction: column; gap: 16px; }
.process-step { display: flex; gap: 16px; align-items: flex-start; }
.step-num {
  flex-shrink: 0;
  width: 34px; height: 34px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.step-body h4 { font-size: 15px; font-weight: 600; margin-bottom: 3px; color: var(--navy); }
.step-body p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin: 0; }

.includes-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin: 0; }
.includes-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text);
  padding: 10px 14px;
  background: var(--bg-light);
  border-radius: 8px;
}
.includes-list li::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-detail-sidebar { display: flex; flex-direction: column; gap: 20px; }

.sidebar-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.sidebar-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 14px; color: var(--navy); }

.quick-fact { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13px; gap: 8px; }
.quick-fact:last-child { border-bottom: none; }
.fact-label { color: var(--text-muted); }
.fact-value { font-weight: 600; color: var(--navy); text-align: right; }

.sidebar-cta {
  background: linear-gradient(145deg, var(--navy) 0%, #1a3f8a 100%);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  color: #fff;
}
.sidebar-cta h3 { font-size: 18px; margin-bottom: 8px; }
.sidebar-cta p { font-size: 13px; opacity: 0.8; margin-bottom: 20px; line-height: 1.6; }
.sidebar-cta .btn { width: 100%; justify-content: center; }
.sidebar-cta-phone {
  display: flex; align-items: center; justify-content: center;
  gap: 7px; margin-top: 14px;
  font-size: 15px; font-weight: 700; color: #fff;
}
.sidebar-cta-phone a { color: #fff; }
.sidebar-cta-phone a:hover { color: var(--sky); }

/* ===== FAQ ACCORDION ===== */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; background: none; border: none;
  font-family: inherit; font-size: 16px; font-weight: 600;
  color: var(--navy); cursor: pointer;
  padding: 18px 0; text-align: left; gap: 16px;
}
.faq-question svg { flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { display: none; padding-bottom: 18px; font-size: 15px; color: var(--text-muted); line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }

@media (max-width: 900px) {
  .service-detail-layout { grid-template-columns: 1fr; gap: 32px; }
  .sidebar-card, .sidebar-cta { max-width: 100%; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta, .nav-phone-link { display: none; }
  .nav-toggle { display: flex; }
  .hero-quote-btn { display: inline-flex; }
  .services-grid,
  .services-full-grid,
  .why-grid { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
  .trust-bar-inner { gap: 0; }
  .trust-item {
    width: 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    justify-content: center;
    padding: 10px;
  }
  .trust-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .contact-form-wrap { padding: 24px; }

  /* Page hero — inner pages */
  .page-hero { padding: 22px 0; }
  .page-hero h1 { font-size: clamp(22px, 6vw, 32px); }
  .page-hero p { font-size: 15px; }

  /* CTA banner */
  .cta-banner { padding: 29px 0; }
  .cta-actions { flex-wrap: wrap; justify-content: center; }

  /* Service detail pages */
  .service-detail-content h2 { font-size: 20px; }
  .service-detail-content h3 { font-size: 16px; margin: 24px 0 12px; }
  .service-detail-content > p { font-size: 15px; margin-bottom: 24px; }
  .step-body h4 { font-size: 14px; }
  .sidebar-cta { padding: 24px 20px; }
  .sidebar-cta h3 { font-size: 16px; }
  .faq-question { font-size: 14px; padding: 14px 0; }
  .faq-answer { font-size: 14px; }
  .quick-fact { font-size: 12px; }

  /* Hero buttons stack on small screens */
  .hero-actions { flex-direction: column; align-items: center; gap: 10px; }
  .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
}
