/* ============ Prime Path Solutions — styles ============ */
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/manrope-latin.woff2') format('woff2');
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --navy: #14304C;
  --navy-dark: #0C2136;
  --teal: #177387;
  --teal-soft: #E3F0F3;
  --green: #6FAE3B;
  --green-dark: #578C2C;
  --ink: #14304C;
  --body: #4A6072;
  --bg: #ffffff;
  --surface: #F4F8FA;
  --line: #DFE9F0;
  --shadow: 0 10px 40px rgba(12, 33, 54, .10);
  --radius: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', 'Segoe UI', system-ui, sans-serif;
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; font-weight: 800; }

.container { width: min(1160px, 92%); margin: 0 auto; }
.container.narrow { width: min(820px, 92%); }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px; font-weight: 800; font-size: 15px;
  font-family: inherit; border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-green { background: var(--green); color: #fff; box-shadow: 0 6px 18px rgba(111, 174, 59, .35); }
.btn-green:hover { background: var(--green-dark); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-ghost { background: #fff; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn-white { background: #fff; color: var(--navy); }
.btn.lg { padding: 17px 36px; font-size: 17px; }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }

/* ---- eyebrow ---- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 18px;
}
.eyebrow.center { justify-content: center; }
.eyebrow.light { color: #9FD6E2; }
.pulse-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--green); flex: 0 0 auto;
  animation: pulse 1.8s infinite;
}
.pulse-dot.green { background: var(--green); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(111, 174, 59, .5); }
  70% { box-shadow: 0 0 0 9px rgba(111, 174, 59, 0); }
  100% { box-shadow: 0 0 0 0 rgba(111, 174, 59, 0); }
}

/* ---- header ---- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px); border-bottom: 1px solid transparent;
  transition: box-shadow .25s, border-color .25s;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(12, 33, 54, .08); border-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 76px; }
.brand img { height: 58px; width: auto; }
.main-nav { display: flex; gap: 30px; }
.main-nav a { color: var(--ink); font-weight: 700; font-size: 15px; transition: color .15s; }
.main-nav a:hover { color: var(--teal); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 3px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: .25s; }
.mobile-only { display: none; }

/* ---- hero ---- */
.hero {
  background:
    radial-gradient(900px 500px at 85% -10%, var(--teal-soft) 0%, transparent 60%),
    radial-gradient(700px 420px at -10% 110%, #EDF6E5 0%, transparent 55%),
    linear-gradient(180deg, #FBFDFE 0%, #F2F7FA 100%);
  padding: 64px 0 0;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding-bottom: 72px; }
.hero-copy h1 { font-size: clamp(38px, 4.6vw, 58px); letter-spacing: -0.02em; margin-bottom: 22px; }
.hero-copy h1 em { font-style: normal; color: var(--teal); position: relative; }
.hero-copy h1 em::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 4px; height: 10px;
  background: rgba(111, 174, 59, .28); z-index: -1; border-radius: 4px;
}
.hero-sub { font-size: 18px; max-width: 520px; margin-bottom: 26px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.trust-chip {
  display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 700;
  color: var(--navy); background: #fff; border: 1px solid var(--line);
  padding: 8px 14px; border-radius: 999px;
}
.trust-chip svg { color: var(--green); }
.hero-call { font-size: 15px; }
.hero-call a { color: var(--navy); }
.hero-call a:hover { color: var(--teal); }

/* hero band */
.hero-band { background: var(--navy); color: #B9CBDA; padding: 14px 0; }
.band-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; font-size: 14px; font-weight: 600; }
.band-inner strong { color: #fff; }
.band-inner i { color: var(--green); font-style: normal; }

/* ---- booking card ---- */
.booking-card {
  background: #fff; border-radius: 22px; box-shadow: var(--shadow);
  border: 1px solid var(--line); overflow: hidden; max-width: 480px; justify-self: end; width: 100%;
}
.bc-head {
  background: linear-gradient(120deg, var(--navy) 0%, var(--teal) 130%);
  color: #fff; padding: 20px 26px; display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.bc-title { font-size: 20px; font-weight: 800; }
.bc-sub { font-size: 13px; opacity: .85; }
.bc-steps-ind { display: flex; gap: 6px; }
.bc-steps-ind .dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, .3); transition: .25s; }
.bc-steps-ind .dot.active { background: var(--green); transform: scale(1.2); }
#bookingForm { padding: 24px 26px 28px; }
.bc-step { display: none; animation: stepIn .3s ease; }
.bc-step.active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }
.bc-q { font-size: 17px; font-weight: 800; color: var(--ink); margin-bottom: 16px; }
.service-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.chip {
  padding: 12px 10px; border-radius: 12px; border: 1.5px solid var(--line); background: var(--surface);
  font-family: inherit; font-weight: 700; font-size: 13.5px; color: var(--ink); cursor: pointer;
  transition: .15s; text-align: center; line-height: 1.3;
}
.chip:hover { border-color: var(--teal); }
.chip.selected { background: var(--teal-soft); border-color: var(--teal); color: var(--teal); box-shadow: 0 0 0 3px rgba(23, 115, 135, .12); }
.field { display: block; margin-bottom: 14px; }
.field span { display: block; font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.field small { color: var(--body); font-weight: 500; }
.field input, .field select {
  width: 100%; padding: 12px 14px; border-radius: 11px; border: 1.5px solid var(--line);
  font-family: inherit; font-size: 15px; color: var(--ink); background: #fff; outline: none; transition: border .15s;
}
.field input:focus, .field select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(23, 115, 135, .12); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bc-btn-row { display: flex; gap: 10px; margin-top: 6px; }
.bc-btn-row .btn { flex: 1; }
.bc-next { width: 100%; }
.bc-fine { font-size: 12.5px; text-align: center; margin-top: 12px; color: var(--body); }
.bc-success { text-align: center; padding: 12px 0; }
.success-icon {
  width: 68px; height: 68px; margin: 0 auto 16px; border-radius: 50%;
  background: rgba(111, 174, 59, .15); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  animation: popIn .4s cubic-bezier(.2, 1.4, .4, 1);
}
@keyframes popIn { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.bc-success p { margin: 8px 0 18px; }

/* ---- sections base ---- */
section { padding: 84px 0; }
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.sec-head h2 { font-size: clamp(28px, 3.4vw, 42px); letter-spacing: -0.02em; margin-bottom: 12px; }
.sec-head p { font-size: 17px; }
.sec-head.light h2 { color: #fff; }

/* ---- how it works ---- */
.how { background: #fff; }
.road-wrap { margin: 0 auto 26px; max-width: 1100px; }
.road-svg { width: 100%; height: auto; display: block; }
.road-dash { animation: dashMove 1.2s linear infinite; }
@keyframes dashMove { to { stroke-dashoffset: -26; } }
.checkpoint circle:first-child { fill: #fff; stroke: var(--teal); stroke-width: 3; }
.checkpoint circle:last-child { fill: var(--teal); }
.checkpoint.done circle:first-child { fill: var(--green); stroke: var(--green); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step-card {
  background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; position: relative; transition: border-color .3s, box-shadow .3s, transform .3s;
}
.step-card.live { border-color: var(--green); box-shadow: 0 12px 32px rgba(111, 174, 59, .16); transform: translateY(-4px); }
.step-num {
  position: absolute; top: 18px; right: 20px; font-size: 42px; font-weight: 800;
  color: var(--line); line-height: 1; transition: color .3s;
}
.step-card.live .step-num { color: rgba(111, 174, 59, .4); }
.step-icon { font-size: 34px; margin-bottom: 14px; }
.step-card h3 { font-size: 18px; margin-bottom: 8px; }
.step-card p { font-size: 14.5px; }

/* ---- services ---- */
.services { background: var(--surface); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card {
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius);
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--teal); }
.svc-card.urgent { border-color: var(--green); }
.svc-img { position: relative; overflow: hidden; }
.svc-img img {
  display: block; width: 100%; height: 190px; object-fit: cover;
  transition: transform .35s ease;
}
.svc-card:hover .svc-img img { transform: scale(1.05); }
.svc-badge {
  position: absolute; top: 14px; right: 14px; background: var(--green); color: #fff;
  font-size: 11.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; box-shadow: 0 4px 14px rgba(12, 33, 54, .3);
}
.svc-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.svc-card h3 { font-size: 19px; margin-bottom: 10px; }
.svc-card p { font-size: 14.5px; flex: 1; }
.svc-book {
  margin-top: 18px; align-self: flex-end;
  background: var(--green); color: #fff; border: 0; border-radius: 999px;
  font-family: inherit; font-weight: 800; font-size: 13px; padding: 9px 20px;
  cursor: pointer; box-shadow: 0 4px 12px rgba(111, 174, 59, .3);
  transition: background .15s, transform .15s;
}
.svc-book:hover { background: var(--green-dark); transform: translateY(-2px); }
.svc-note { text-align: center; margin-top: 34px; font-size: 15px; }

/* ---- who we serve ---- */
.serve { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #14425C 100%); }
.serve .sec-head { margin-bottom: 40px; }
.serve-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-bottom: 46px; }
.serve-item {
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px; padding: 20px 12px; text-align: center; color: #DDE8F0;
  font-weight: 700; font-size: 13.5px; line-height: 1.35;
  transition: background .2s, transform .2s;
}
.serve-item:hover { background: rgba(255, 255, 255, .12); transform: translateY(-3px); }
.serve-item span { display: block; font-size: 28px; margin-bottom: 8px; }
.serve-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { text-align: center; padding: 8px; }
.stat strong { display: block; font-size: 40px; font-weight: 800; color: var(--green); line-height: 1.1; }
.stat strong small { font-size: 18px; }
.stat span { color: #A9BDCD; font-size: 14px; font-weight: 600; }

/* ---- why / photos ---- */
.why { background: #fff; }
.why-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.why h2 { font-size: clamp(28px, 3.2vw, 40px); margin-bottom: 24px; letter-spacing: -0.02em; }
.why-list { list-style: none; margin-bottom: 30px; }
.why-list li { padding: 10px 0 10px 36px; position: relative; font-size: 15.5px; }
.why-list li::before {
  content: '✓'; position: absolute; left: 0; top: 9px;
  width: 24px; height: 24px; border-radius: 50%; background: rgba(111, 174, 59, .15);
  color: var(--green); font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.why-list strong { color: var(--ink); }
.why-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.why-media { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
.media-col { display: grid; gap: 18px; }
.photo-slot { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #fff; }
.photo-slot .ph-inner {
  background: linear-gradient(150deg, var(--teal-soft) 0%, #D3E7EC 60%, #C3DDE4 100%);
  min-height: 220px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; text-align: center; padding: 26px 16px; color: var(--teal);
}
.photo-slot.tall .ph-inner { min-height: 320px; }
.photo-slot.tall { margin-top: 34px; }
.ph-icon { font-size: 42px; }
.ph-label { font-size: 13px; font-weight: 700; line-height: 1.4; }
.ph-label small { font-weight: 500; opacity: .7; }
.photo-slot figcaption { padding: 12px 16px; font-size: 13.5px; font-weight: 700; color: var(--ink); background: #fff; }
.photo-slot img { width: 100%; height: auto; display: block; }

/* ---- coverage ---- */
.coverage { background: var(--surface); padding: 72px 0; }
.coverage .sec-head { margin-bottom: 34px; }
.cov-pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 760px; margin: 0 auto; }
.cov-pills span {
  background: #fff; border: 1.5px solid var(--line); color: var(--navy);
  font-weight: 700; font-size: 14.5px; padding: 11px 22px; border-radius: 999px;
  transition: .2s;
}
.cov-pills span:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }

/* ---- faq ---- */
.faq { background: #fff; }
.faq-list details {
  border: 1.5px solid var(--line); border-radius: 14px; margin-bottom: 12px;
  background: #fff; overflow: hidden; transition: border-color .2s;
}
.faq-list details[open] { border-color: var(--teal); box-shadow: 0 8px 26px rgba(12, 33, 54, .07); }
.faq-list summary {
  cursor: pointer; list-style: none; padding: 19px 52px 19px 22px;
  font-weight: 800; color: var(--ink); font-size: 16px; position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 50%; background: var(--surface);
  color: var(--teal); font-weight: 700; display: flex; align-items: center; justify-content: center;
  transition: .2s; font-size: 17px;
}
.faq-list details[open] summary::after { content: '−'; background: var(--teal); color: #fff; }
.faq-list details p { padding: 0 22px 20px; font-size: 15px; }

/* ---- final cta ---- */
.final-cta {
  background: linear-gradient(120deg, var(--teal) 0%, var(--navy) 80%);
  text-align: center; padding: 76px 0;
}
.final-cta h2 { color: #fff; font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 10px; }
.final-cta p { color: #CFE2EA; font-size: 17px; margin-bottom: 30px; }
.final-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- footer ---- */
.site-footer { background: var(--navy-dark); color: #9DB2C3; }
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px;
  padding: 60px 0 44px;
}
.foot-brand img { height: 62px; width: auto; margin-bottom: 16px; background: #fff; padding: 10px 14px; border-radius: 10px; }
.foot-brand p { font-size: 14px; max-width: 300px; }
.foot-col h4 { color: #fff; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.foot-col a, .foot-col span { display: block; color: #9DB2C3; font-size: 14.5px; margin-bottom: 10px; transition: color .15s; }
.foot-col a:hover { color: var(--green); }
.foot-bottom { border-top: 1px solid rgba(255, 255, 255, .08); padding: 18px 0; font-size: 13px; }
.foot-bottom .container { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

/* ---- mobile sticky bar ---- */
.mobile-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: #fff; border-top: 1px solid var(--line); padding: 10px 14px;
  gap: 10px; box-shadow: 0 -6px 24px rgba(12, 33, 54, .12);
}
.mobile-bar a {
  flex: 1; text-align: center; padding: 13px; border-radius: 12px; font-weight: 800; font-size: 15px;
}
.mb-call { background: var(--surface); color: var(--navy); border: 1.5px solid var(--line); }
.mb-book { background: var(--green); color: #fff; flex: 1.6; }

/* ---- reveal on scroll ---- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .booking-card { justify-self: center; max-width: 560px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .serve-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  section { padding: 60px 0; }
  .desktop-only { display: none !important; }
  .mobile-only { display: block; }
  .main-nav {
    position: fixed; inset: 76px 0 auto 0; background: #fff; flex-direction: column;
    padding: 20px 6%; gap: 18px; border-bottom: 1px solid var(--line);
    transform: translateY(-130%); transition: transform .3s ease; box-shadow: 0 20px 40px rgba(12, 33, 54, .12);
  }
  .main-nav.open { transform: none; }
  .nav-toggle { display: block; }
  .nav-phone { color: var(--green) !important; }
  .header-inner { height: 68px; }
  .brand img { height: 42px; }
  .hero { padding-top: 40px; }
  .hero-sub { font-size: 16px; }
  .field-row { grid-template-columns: 1fr; }
  .bc-btn-row .btn, .bc-next { white-space: normal; padding: 13px 16px; line-height: 1.3; }
  .steps-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
  .serve-stats { grid-template-columns: repeat(2, 1fr); }
  .why-media { grid-template-columns: 1fr; }
  .photo-slot.tall { margin-top: 0; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; padding: 44px 0 30px; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 68px; }
  .final-cta { padding-bottom: 90px; }
}
