/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:      #0B1A2E;
  --navy-2:    #112240;
  --navy-3:    #132D4A;
  --navy-4:    #0D1F38;
  --gold:      #C9A84C;
  --gold-lt:   #E0C06A;
  --gold-dk:   #A8883A;
  --white:     #ffffff;
  --off-white: #F4F6F9;
  --text-muted:#8FA3BF;
  --text-lt:   #CBD5E1;
  --border:    #1E3A5F;
  --font:      'Inter', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--white); color: var(--navy); line-height: 1.7; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* ===== LOADER ===== */
.loader {
  position: fixed; inset: 0; background: var(--navy); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}
.loader.hide { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-icon { font-size: 48px; animation: spinPulse 1.5s ease-in-out infinite; display: block; margin-bottom: 20px; }
@keyframes spinPulse { 0%,100%{transform:scale(1) rotate(0deg);} 50%{transform:scale(1.2) rotate(180deg);} }
.loader-bar { width: 200px; height: 3px; background: var(--border); border-radius: 10px; overflow: hidden; margin: 0 auto 16px; }
.loader-fill { height: 100%; background: var(--gold); border-radius: 10px; animation: fillBar 1.8s ease forwards; }
@keyframes fillBar { from{width:0} to{width:100%} }
.loader-inner p { color: var(--text-muted); font-size: 14px; letter-spacing: 2px; text-transform: uppercase; }

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-block; background: var(--gold); color: var(--navy);
  font-weight: 700; font-size: 15px; padding: 13px 28px; border-radius: 7px;
  border: none; cursor: pointer; transition: background 0.2s, transform 0.15s;
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-gold:active { transform: scale(0.97); }
.btn-large { font-size: 16px; padding: 15px 34px; }
.btn-outline {
  display: inline-block; background: transparent; color: var(--white);
  font-weight: 600; font-size: 15px; padding: 12px 28px; border-radius: 7px;
  border: 1.5px solid rgba(201,168,76,0.45); transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,0.1); transform: translateY(-2px); }
.btn-ghost {
  display: inline-block; color: var(--text-muted); font-size: 15px;
  padding: 12px 20px; border-radius: 7px; transition: color 0.2s;
}
.btn-ghost:hover { color: var(--gold); }
.gold { color: var(--gold); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  animation: waBounce 2s ease-in-out infinite;
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes waBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 800; background: rgba(11,26,46,0.97);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 30px rgba(0,0,0,0.5); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; gap: 20px;
}
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-snowflake { font-size: 24px; color: var(--gold); animation: rotateSlow 10s linear infinite; display: inline-block; }
@keyframes rotateSlow { from{transform:rotate(0)} to{transform:rotate(360deg)} }
.logo-texts { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main { font-size: 19px; font-weight: 800; color: var(--white); }
.logo-sub { font-size: 10px; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--text-muted); font-size: 13.5px; font-weight: 500; transition: color 0.2s; position: relative; padding-bottom: 2px; }
.nav-links a::after { content:''; position:absolute; bottom:0; left:0; width:0; height:1.5px; background:var(--gold); transition: width 0.25s; }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width:100%; }
.nav-cta { font-size: 13px; padding: 10px 20px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.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 {
  background: var(--navy); padding: 110px 0 0;
  position: relative; overflow: hidden; min-height: 92vh;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite alternate;
}
.hero-orb-1 { width: 600px; height: 600px; background: rgba(201,168,76,0.04); top: -200px; right: -150px; }
.hero-orb-2 { width: 400px; height: 400px; background: rgba(30,90,160,0.06); bottom: 100px; left: -100px; animation-delay: 3s; }
@keyframes orbFloat { from{transform:translate(0,0)} to{transform:translate(20px,30px)} }
.hero-inner { text-align: center; position: relative; z-index: 1; padding-bottom: 60px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.12); color: var(--gold); font-size: 12px;
  font-weight: 600; letter-spacing: 1px; padding: 7px 18px; border-radius: 30px;
  border: 1px solid rgba(201,168,76,0.25); margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
.hero-title {
  font-size: clamp(36px, 5.5vw, 68px); font-weight: 900; color: var(--white);
  line-height: 1.15; margin-bottom: 22px; letter-spacing: -1px;
}
.title-highlight { position: relative; display: inline-block; }
.title-highlight::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 3px; background: var(--gold); border-radius: 2px;
  animation: expandLine 1s ease 0.8s both;
}
@keyframes expandLine { from{transform:scaleX(0)} to{transform:scaleX(1)} }
.hero-sub {
  font-size: 18px; color: var(--text-muted); max-width: 580px;
  margin: 0 auto 40px; line-height: 1.8;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  display: flex; gap: 28px; justify-content: center; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 13.5px; color: var(--text-muted); }
.trust-check { color: var(--gold); font-weight: 700; font-size: 15px; }

/* STATS BAR */
.hero-stats-bar {
  background: var(--navy-2); border-top: 1px solid var(--border);
  padding: 32px 0; position: relative; z-index: 2;
}
.stats-grid {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center; padding: 12px 40px;
  text-align: center;
}
.stat-number { font-size: 36px; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-plus { font-size: 16px; font-weight: 700; color: var(--gold); }
.stat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.stat-sep { width: 1px; height: 50px; background: var(--border); flex-shrink: 0; }

/* ===== TICKER ===== */
.ticker-wrap {
  background: var(--gold); overflow: hidden; padding: 12px 0; white-space: nowrap;
}
.ticker-track {
  display: inline-block; animation: ticker 25s linear infinite;
}
.ticker-track span {
  display: inline-block; color: var(--navy); font-weight: 700;
  font-size: 13px; padding: 0 28px; letter-spacing: 0.5px;
}
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header.light .section-title { color: var(--white); }
.section-eyebrow {
  display: inline-block; color: var(--gold); font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 800;
  color: var(--navy); margin-bottom: 14px; letter-spacing: -0.5px;
}
.section-desc { font-size: 16px; color: #64748B; max-width: 540px; margin: 0 auto; line-height: 1.7; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal-up { opacity: 0; transform: translateY(30px); animation: revealUp 0.7s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }
.delay-5 { animation-delay: 0.7s; }
@keyframes revealUp { to{opacity:1; transform:translateY(0)} }

.card-animate { opacity: 0; transform: translateY(40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.card-animate.visible { opacity: 1; transform: translateY(0); }

/* ===== SERVICES ===== */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px;
}
.service-card {
  background: var(--white); border: 1px solid #E2EAF4; border-radius: 16px;
  padding: 32px; transition: border-color 0.3s, transform 0.3s; display: flex; flex-direction: column;
}
.service-card:hover { border-color: var(--gold); transform: translateY(-6px); }
.card-emergency { border-color: rgba(220,50,50,0.3); }
.card-emergency:hover { border-color: #E24B4A; }
.service-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; }
.service-icon-wrap { font-size: 40px; }
.service-badge {
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; background: rgba(201,168,76,0.15); color: var(--gold);
}
.badge-blue { background: rgba(21,101,192,0.12); color: #1565C0; }
.badge-green { background: rgba(22,101,52,0.12); color: #166534; }
.badge-purple { background: rgba(88,28,135,0.1); color: #7C3AED; }
.badge-red { background: rgba(220,38,38,0.12); color: #DC2626; animation: redPulse 1.5s ease-in-out infinite; }
@keyframes redPulse { 0%,100%{opacity:1} 50%{opacity:0.6} }
.service-card h3 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.service-card > p { font-size: 14px; color: #64748B; margin-bottom: 20px; line-height: 1.6; flex: 1; }
.service-checklist { margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.service-checklist li {
  font-size: 13px; color: #475569; display: flex; align-items: center; gap: 9px;
  padding: 7px 10px; border-radius: 6px; background: var(--off-white);
}
.service-checklist li::before { content: '✓'; color: var(--gold); font-weight: 800; flex-shrink: 0; }
.service-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 20px; border-top: 1px solid #E2EAF4; }
.service-price { font-size: 15px; font-weight: 700; color: var(--navy); }
.emergency-price { color: #DC2626; }
.service-btn {
  font-size: 13px; font-weight: 700; color: var(--gold); padding: 8px 16px;
  border: 1.5px solid rgba(201,168,76,0.35); border-radius: 6px;
  transition: all 0.2s;
}
.service-btn:hover { background: var(--gold); color: var(--navy); }
.btn-emergency { border-color: rgba(220,38,38,0.4); color: #DC2626; }
.btn-emergency:hover { background: #DC2626; color: var(--white); }

/* ===== BRANDS ===== */
.brands-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.brand-pill {
  padding: 10px 24px; border: 1px solid #E2EAF4; border-radius: 30px;
  font-size: 14px; font-weight: 600; color: #475569; background: var(--white);
  transition: all 0.25s;
}
.brand-pill:hover { border-color: var(--gold); color: var(--navy); background: rgba(201,168,76,0.07); transform: scale(1.04); }

/* ===== WHY US ===== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.why-card {
  background: var(--navy-2); border: 1px solid var(--border); border-radius: 14px;
  padding: 30px 24px; transition: border-color 0.25s, transform 0.25s;
}
.why-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.why-icon-wrap { font-size: 32px; margin-bottom: 16px; display: block; }
.why-card h4 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.why-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
.why-highlight {
  display: inline-block; font-size: 11px; font-weight: 700; color: var(--gold);
  background: rgba(201,168,76,0.1); padding: 4px 12px; border-radius: 20px;
  letter-spacing: 0.5px;
}

/* ===== PROCESS ===== */
.process-timeline { display: flex; flex-direction: column; gap: 0; position: relative; max-width: 720px; margin: 0 auto; }
.process-line {
  position: absolute; left: 31px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--gold) 0%, rgba(201,168,76,0.1) 100%);
}
.process-step {
  display: flex; gap: 28px; align-items: flex-start; padding: 32px 0;
  border-bottom: 1px solid #F1F5F9;
}
.process-step:last-child { border-bottom: none; }
.process-num {
  width: 64px; height: 64px; border-radius: 50%; background: var(--navy);
  border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 900; color: var(--gold); flex-shrink: 0; z-index: 1;
}
.process-content { flex: 1; padding-top: 8px; }
.process-icon { font-size: 28px; margin-bottom: 10px; }
.process-content h4 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.process-content p { font-size: 14px; color: #64748B; line-height: 1.7; margin-bottom: 12px; }
.process-cta { font-size: 13px; font-weight: 700; color: var(--gold); border-bottom: 1px solid rgba(201,168,76,0.3); padding-bottom: 1px; }
.process-tag {
  display: inline-block; font-size: 11px; font-weight: 700; color: var(--gold);
  background: rgba(201,168,76,0.1); padding: 4px 12px; border-radius: 20px;
}

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 40px; }
.review-card {
  background: var(--navy-2); border: 1px solid var(--border); border-radius: 14px; padding: 28px;
  transition: border-color 0.25s, transform 0.25s;
}
.review-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: rgba(201,168,76,0.15);
  color: var(--gold); font-size: 14px; font-weight: 700; display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.reviewer-name { font-size: 14px; font-weight: 700; color: var(--white); }
.reviewer-loc { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.stars { font-size: 14px; color: var(--gold); margin-left: auto; letter-spacing: 1px; }
.review-card p { font-size: 13.5px; color: var(--text-lt); line-height: 1.7; font-style: italic; margin-bottom: 14px; }
.review-service { font-size: 11px; color: var(--text-muted); font-weight: 600; letter-spacing: 0.5px; }
.reviews-summary {
  background: var(--navy-2); border: 1px solid var(--border); border-radius: 14px;
  padding: 32px; display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap;
}
.summary-item { display: flex; flex-direction: column; align-items: center; padding: 12px 48px; text-align: center; }
.summary-big { font-size: 42px; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.summary-stars { font-size: 16px; color: var(--gold); margin-bottom: 4px; }
.summary-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.summary-sep { width: 1px; height: 60px; background: var(--border); }

/* ===== COVERAGE ===== */
.coverage-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  background: var(--navy); border: 1px solid var(--border); border-radius: 20px; padding: 48px;
}
.coverage-left h3 { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 20px; }
.districts-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.district-tag {
  padding: 6px 16px; border: 1px solid var(--border); border-radius: 20px;
  font-size: 12px; color: var(--text-muted); transition: all 0.2s;
}
.district-tag:hover { border-color: var(--gold); color: var(--gold); }
.coverage-right { display: flex; align-items: center; justify-content: center; }
.coverage-map-placeholder {
  width: 100%; aspect-ratio: 1; background: var(--navy-2); border: 1px solid var(--border);
  border-radius: 50%; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 8px; max-width: 280px;
}
.map-pin-anim { font-size: 48px; animation: pinBounce 1.5s ease-in-out infinite; }
@keyframes pinBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.coverage-map-placeholder p { font-size: 18px; font-weight: 800; color: var(--white); }
.coverage-map-placeholder span { font-size: 12px; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid #E2EAF4; border-radius: 12px; overflow: hidden; }
.faq-question {
  width: 100%; background: none; border: none; padding: 22px 24px;
  text-align: left; font-size: 15px; font-weight: 700; color: var(--navy);
  cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; font-family: var(--font); transition: color 0.2s;
}
.faq-question:hover { color: var(--gold-dk); }
.faq-question.open { color: var(--gold-dk); }
.faq-arrow { font-size: 12px; color: var(--gold); transition: transform 0.3s; flex-shrink: 0; }
.faq-question.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-answer.open { max-height: 400px; padding: 0 24px 22px; }
.faq-answer p { font-size: 14px; color: #64748B; line-height: 1.7; }

/* ===== CONTACT ===== */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  background: var(--navy); border: 1px solid var(--border); border-radius: 24px; padding: 60px 52px;
}
.contact-left .section-eyebrow { display: block; margin-bottom: 12px; }
.contact-left h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 900; color: var(--white); margin-bottom: 16px; line-height: 1.2; }
.contact-left > p { font-size: 15px; color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }
.contact-methods { display: flex; flex-direction: column; gap: 12px; }
.contact-method {
  display: flex; align-items: center; gap: 14px; padding: 14px 18px;
  background: var(--navy-2); border: 1px solid var(--border); border-radius: 12px;
  transition: border-color 0.2s;
}
.contact-method:not(.no-hover):hover { border-color: var(--gold); }
.method-icon {
  width: 42px; height: 42px; border-radius: 10px; display: flex;
  align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.method-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.method-value { font-size: 14px; font-weight: 700; color: var(--white); margin-top: 2px; }
.contact-form {
  background: var(--navy-3); border: 1px solid var(--border); border-radius: 16px; padding: 36px 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.form-header h3 { font-size: 20px; font-weight: 800; color: var(--white); }
.form-header p { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.contact-form input, .contact-form select, .contact-form textarea {
  background: var(--navy-2); border: 1px solid var(--border); border-radius: 9px;
  padding: 13px 16px; font-size: 14px; color: var(--white); font-family: var(--font);
  outline: none; transition: border-color 0.2s;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #4A6580; }
.contact-form select { color: var(--text-muted); appearance: none; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { resize: vertical; }
.form-note { font-size: 11px; color: #4A6580; text-align: center; }

/* ===== CTA BANNER ===== */
.cta-banner { background: var(--navy-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 60px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-banner h2 { font-size: clamp(22px, 3vw, 34px); font-weight: 800; color: var(--white); margin-bottom: 8px; }
.cta-banner p { font-size: 15px; color: var(--text-muted); }
.cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: #060F1C; border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer-tagline { font-size: 13.5px; color: var(--text-muted); margin: 16px 0 20px; line-height: 1.7; max-width: 280px; }
.footer-contact-info { display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: var(--text-muted); }
.footer-links-col h5 { font-size: 12px; font-weight: 700; color: var(--white); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col ul a { font-size: 13.5px; color: var(--text-muted); transition: color 0.2s; }
.footer-links-col ul a:hover { color: var(--gold); }
.footer-wa-box p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; text-align: center; }
.footer-bottom p { font-size: 13px; color: #3A5170; }

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-wrap, .coverage-wrap { grid-template-columns: 1fr; gap: 32px; padding: 36px 28px; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none; position: absolute; top: 70px; left: 0; right: 0;
    background: var(--navy-2); flex-direction: column; padding: 24px 28px;
    gap: 18px; border-bottom: 1px solid var(--border); z-index: 799;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 16px; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .navbar { position: relative; }
  .hero { min-height: auto; padding-top: 70px; }
  .stat-sep { display: none; }
  .stat-item { padding: 14px 20px; flex: 1 0 40%; }
  .process-line { left: 25px; }
  .process-num { width: 52px; height: 52px; font-size: 16px; }
  .summary-sep { display: none; }
  .summary-item { padding: 16px 28px; flex: 1 0 40%; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 30px; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-wrap { padding: 28px 20px; }
  .contact-form { padding: 24px 20px; }
}
