/* ============================================================
   PRESTIGE TRANSPORT — Shared Stylesheet  v3
   DA: Futurlog-inspired, orange accent
   ============================================================ */

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

:root {
  --bg:       #EEF0F8;
  --bg2:      #F5F6FB;
  --white:    #FFFFFF;
  --dark:     #0A0F1E;
  --navy:     #060C1A;
  --text:     #111827;
  --gray:     #6B7280;
  --lgray:    #F3F4F6;
  --border:   rgba(0,0,0,0.07);
  --orange:   #F97316;
  --amber:    #FBBF24;
  --grad:     linear-gradient(135deg,#F97316 0%,#FBBF24 100%);
  --shadow:   0 2px 16px rgba(0,0,0,0.06);
  --shadow-m: 0 8px 32px rgba(0,0,0,0.09);
  --shadow-l: 0 20px 56px rgba(0,0,0,0.11);
  --radius:   16px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── UTILS ── */
.container   { max-width: 1160px; margin: 0 auto; padding: 0 48px; }
.grad-text   { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-tag {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 14px;
  border: 1px solid rgba(249,115,22,.25); padding: 4px 12px; border-radius: 100px;
}
.section-h   { font-size: 44px; font-weight: 900; letter-spacing: -2px; line-height: 1.05; }
.section-sub { font-size: 17px; color: var(--gray); margin-top: 14px; line-height: 1.7; max-width: 540px; }
section { padding: 96px 0; }
.section-white { background: var(--white); }
.section-dark  { background: var(--navy); }

/* ── NAVBAR ── */
#navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  background: rgba(238,240,248,0.88);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.09); }
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 48px;
  height: 66px; display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { font-size: 15px; font-weight: 800; letter-spacing: -0.3px; text-decoration: none; color: var(--text); }
.nav-links  { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--gray); text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--dark) !important; color: var(--white) !important;
  padding: 10px 20px; border-radius: 8px; font-weight: 600 !important; font-size: 13px !important;
  transition: opacity .2s, transform .2s;
}
.nav-cta:hover { opacity:.82; transform:translateY(-1px); }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }

/* ── BUTTONS ── */
.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--dark); color: var(--white);
  padding: 14px 28px; border-radius: 8px; font-weight: 700; font-size: 15px;
  text-decoration: none; transition: opacity .2s, transform .2s;
}
.btn-dark:hover { opacity:.85; transform:translateY(-1px); }
.btn-orange {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad); color: var(--white);
  padding: 14px 28px; border-radius: 8px; font-weight: 700; font-size: 15px;
  text-decoration: none; box-shadow: 0 4px 20px rgba(249,115,22,.3);
  transition: transform .2s, box-shadow .2s;
}
.btn-orange:hover { transform:translateY(-2px); box-shadow:0 8px 32px rgba(249,115,22,.42); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--gray); text-decoration: none; transition: color .2s;
}
.btn-ghost svg { transition: transform .2s; }
.btn-ghost:hover { color: var(--text); }
.btn-ghost:hover svg { transform: translateX(3px); }

/* ── SCROLL REVEAL ── */
.reveal { opacity:0; transform:translateY(24px); transition:opacity .65s ease,transform .65s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.d1 { transition-delay:.1s; }
.d2 { transition-delay:.2s; }
.d3 { transition-delay:.3s; }
.d4 { transition-delay:.4s; }

/* ── SERVICE CARDS ── */
.services-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:56px; }
.svc-card {
  background:var(--white); border-radius:var(--radius); padding:32px 26px;
  border:1px solid var(--border); text-decoration:none; color:inherit; display:block;
  transition:transform .3s,box-shadow .3s;
}
.svc-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-l); }
.svc-icon-wrap {
  width:56px; height:56px; border-radius:14px; background:var(--bg);
  display:flex; align-items:center; justify-content:center; margin-bottom:22px;
}
.svc-title { font-size:17px; font-weight:700; margin-bottom:8px; letter-spacing:-0.3px; }
.svc-desc  { font-size:14px; color:var(--gray); line-height:1.65; margin-bottom:18px; }
.svc-link  { font-size:13px; font-weight:600; color:var(--orange); display:flex; align-items:center; gap:4px; }

/* ── ANIMATED ICONS ── */
.ico-path { stroke-dasharray: 200; stroke-dashoffset: 0; }
.svc-card:hover .ico-path { animation: drawPath 0.8s ease forwards; }

@keyframes drawPath {
  0%   { stroke-dashoffset: 200; }
  50%  { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 0; }
}

.ico-float { animation: iconFloat 3s ease-in-out infinite; }
@keyframes iconFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
.ico-spin { animation: iconSpin 8s linear infinite; }
@keyframes iconSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.ico-slide { animation: iconSlide 2.5s ease-in-out infinite; }
@keyframes iconSlide {
  0%,100% { transform: translateX(0); }
  50%      { transform: translateX(5px); }
}
.ico-pulse { animation: iconPulse 2s ease-in-out infinite; }
@keyframes iconPulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.6; transform:scale(1.08); }
}

/* ── PROCESS ── */
.steps { display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative; margin-top:60px; }
.steps::before {
  content:''; position:absolute; top:26px; left:calc(12.5% + 26px); right:calc(12.5% + 26px);
  height:2px; background:repeating-linear-gradient(90deg,var(--orange) 0 8px,transparent 8px 18px);
}
.step { display:flex; flex-direction:column; align-items:center; text-align:center; padding:0 16px; position:relative; z-index:1; }
.step-num {
  width:52px; height:52px; border-radius:50%; background:var(--grad); color:white;
  font-size:19px; font-weight:800; display:flex; align-items:center; justify-content:center;
  margin-bottom:24px; box-shadow:0 4px 16px rgba(249,115,22,.28);
}
.step-title { font-size:15px; font-weight:700; margin-bottom:8px; }
.step-text  { font-size:13px; color:var(--gray); line-height:1.65; }

/* ── ZONES ── */
.zones-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:48px; }
.zone-card {
  background:var(--white); border-radius:14px; padding:24px 20px;
  border:1px solid var(--border); text-decoration:none; color:inherit;
  transition:transform .25s,box-shadow .25s,border-color .25s;
}
.zone-card:hover { transform:translateY(-3px); box-shadow:var(--shadow-m); border-color:rgba(249,115,22,.3); }
.zone-num  { font-size:11px; font-weight:700; color:var(--orange); margin-bottom:5px; text-transform:uppercase; letter-spacing:1px; }
.zone-name { font-size:17px; font-weight:700; margin-bottom:3px; letter-spacing:-0.3px; }
.zone-dept { font-size:12px; color:var(--gray); }

/* ── REVIEWS ── */
.reviews-head { text-align:center; margin-bottom:48px; }
.google-badge {
  display:inline-flex; align-items:center; gap:10px;
  background:var(--white); border:1px solid var(--border);
  padding:10px 18px; border-radius:100px; font-weight:700; font-size:14px;
  box-shadow:var(--shadow); margin-top:20px;
}
.reviews-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.rv-card {
  background:var(--white); border-radius:var(--radius); padding:28px;
  border:1px solid var(--border); display:flex; flex-direction:column;
}
.rv-stars   { color:#FBBF24; font-size:14px; letter-spacing:1px; margin-bottom:14px; }
.rv-quote   { font-size:14px; color:#374151; line-height:1.75; flex:1; margin-bottom:18px; }
.rv-sep     { height:1px; background:var(--border); margin-bottom:16px; }
.rv-bottom  { display:flex; align-items:center; justify-content:space-between; }
.rv-name    { font-size:13px; font-weight:700; }
.rv-from    { font-size:12px; color:var(--gray); }
.rv-glogo   { display:flex; align-items:center; gap:5px; font-size:11px; color:var(--gray); }

/* ── CTA FINAL ── */
.cta-final { text-align:center; padding:100px 48px; }
.cta-circle {
  width:116px; height:116px; border-radius:50%; margin:0 auto 40px;
  border:1px solid rgba(249,115,22,.2); display:flex; align-items:center; justify-content:center;
}
.cta-final h2 { font-size:50px; font-weight:900; letter-spacing:-2.5px; line-height:1.05; max-width:640px; margin:0 auto 20px; color:white; }
.cta-final p  { font-size:17px; color:rgba(255,255,255,.55); max-width:460px; margin:0 auto 40px; line-height:1.65; }

/* ── FAQ ── */
.faq-list { max-width:700px; margin:0 auto; }
.faq-item { border-bottom:1px solid var(--border); }
.faq-q {
  width:100%; background:none; border:none; cursor:pointer; text-align:left;
  padding:20px 0; font-size:16px; font-weight:600; color:var(--text);
  display:flex; align-items:center; justify-content:space-between; gap:16px; font-family:inherit;
}
.faq-arrow {
  width:28px; height:28px; border-radius:50%; background:var(--lgray);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  transition:transform .3s,background .3s;
}
.faq-item.open .faq-arrow { transform:rotate(180deg); background:var(--grad); }
.faq-item.open .faq-arrow svg path { stroke:white; }
.faq-a { font-size:14px; color:var(--gray); line-height:1.75; padding-bottom:20px; display:none; }
.faq-item.open .faq-a { display:block; }

/* ── FOOTER ── */
footer { background:var(--navy); color:rgba(255,255,255,.6); }
.footer-body { padding:72px 0 0; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr; gap:56px; padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,.07); }
.footer-brand { font-size:14px; font-weight:800; color:white; margin-bottom:12px; }
.footer-desc  { font-size:13px; line-height:1.75; color:rgba(255,255,255,.35); max-width:260px; }
.footer-col h4 { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:1.5px; color:rgba(255,255,255,.28); margin-bottom:18px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-col a  { font-size:13px; color:rgba(255,255,255,.48); text-decoration:none; transition:color .2s; }
.footer-col a:hover { color:white; }
.footer-bottom { max-width:1160px; margin:0 auto; padding:24px 48px; display:flex; align-items:center; justify-content:space-between; font-size:12px; color:rgba(255,255,255,.2); border-top:1px solid rgba(255,255,255,.07); margin-top:48px; }

/* ── INNER PAGE HERO ── */
.page-hero { background:var(--bg); padding:130px 48px 80px; text-align:center; }
.page-hero h1 { font-size:52px; font-weight:900; letter-spacing:-2.5px; line-height:1.05; margin-bottom:16px; }
.page-hero p  { font-size:17px; color:var(--gray); max-width:520px; margin:0 auto 32px; line-height:1.65; }

/* ── INNER HERO (service pages) ── */
.inner-hero { background:var(--bg); padding:130px 48px 80px; text-align:center; position:relative; overflow:hidden; }
.inner-hero::before { content:''; position:absolute; width:600px; height:600px; border-radius:50%; background:radial-gradient(circle,rgba(249,115,22,.07) 0%,transparent 65%); top:-200px; left:50%; transform:translateX(-50%); pointer-events:none; }
.inner-hero-inner { position:relative; z-index:1; max-width:700px; margin:0 auto; }
.inner-hero h1 { font-size:60px; font-weight:900; letter-spacing:-3px; line-height:1.0; margin-bottom:20px; }
.inner-hero-body { font-size:17px; color:var(--gray); max-width:480px; margin:0 auto 36px; line-height:1.65; }
.inner-eyebrow {
  display:inline-flex; align-items:center; gap:8px; font-size:12px; font-weight:600;
  letter-spacing:0.5px; color:var(--orange); text-transform:uppercase;
  background:rgba(249,115,22,.08); border:1px solid rgba(249,115,22,.2);
  padding:6px 14px; border-radius:100px; margin-bottom:24px;
}
.inner-cta-row { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* ── NAV ALIASES (nav-menu = nav-links, nav-logo = nav-brand) ── */
.nav-logo { font-size:15px; font-weight:800; letter-spacing:-0.3px; text-decoration:none; color:var(--text); display:flex; align-items:center; gap:10px; }
.logo-icon { width:32px; height:32px; border-radius:8px; background:var(--grad); display:flex; align-items:center; justify-content:center; color:white; flex-shrink:0; }
.nav-menu { display:flex; align-items:center; gap:28px; list-style:none; }
.nav-menu a { font-size:14px; font-weight:500; color:var(--gray); text-decoration:none; transition:color .2s; }
.nav-menu a:hover, .nav-menu a.active { color:var(--text); }

/* ── SECTION UTILITIES ── */
.section-light { background:var(--bg); }
.section-head { text-align:center; max-width:640px; margin:0 auto; }
.section-head h2 { font-size:44px; font-weight:900; letter-spacing:-2px; line-height:1.05; margin-bottom:14px; }
.section-head p  { font-size:17px; color:var(--gray); line-height:1.7; }

/* ── PROCESS ── */
.process-row { display:flex; align-items:flex-start; gap:0; margin-top:40px; }
.proc-step { flex:1; text-align:center; padding:0 16px; position:relative; }
.proc-num {
  width:44px; height:44px; border-radius:50%; background:var(--grad); color:white;
  font-size:16px; font-weight:800; display:flex; align-items:center; justify-content:center;
  margin:0 auto 16px;
}
.proc-step h3 { font-size:15px; font-weight:700; margin-bottom:6px; }
.proc-step p  { font-size:13px; color:var(--gray); line-height:1.6; }
.proc-line { flex:1; height:2px; background:repeating-linear-gradient(90deg,var(--orange) 0,var(--orange) 6px,transparent 6px,transparent 14px); margin-top:22px; flex-shrink:0; max-width:80px; }

/* ── FOOTER ALIASES ── */
.footer-inner { max-width:1160px; margin:0 auto; padding:72px 48px 0; display:grid; grid-template-columns:2fr 1fr 1fr; gap:56px; }
.footer-logo { font-size:14px; font-weight:800; color:white; margin-bottom:12px; display:flex; align-items:center; gap:10px; }
.footer-title { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:1.5px; color:rgba(255,255,255,.28); margin-bottom:18px; }
.footer-links { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-links a { font-size:13px; color:rgba(255,255,255,.48); text-decoration:none; transition:color .2s; }
.footer-links a:hover { color:white; }
.footer-legal { display:flex; gap:16px; margin-top:20px; flex-wrap:wrap; }
.footer-legal a { font-size:12px; color:rgba(255,255,255,.28); text-decoration:none; }
.footer-legal a:hover { color:rgba(255,255,255,.6); }

/* ── IMAGE GRID (service pages) ── */
.img-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:40px; }
.img-grid img { width:100%; height:220px; object-fit:cover; border-radius:14px; }

/* ── RESPONSIVE ── */
@media (max-width:1024px) {
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .zones-grid    { grid-template-columns:repeat(2,1fr); }
  .reviews-grid  { grid-template-columns:1fr 1fr; }
  .footer-grid   { grid-template-columns:1fr 1fr; }
}
@media (max-width:768px) {
  .container,.nav-inner,.footer-inner { padding-left:20px; padding-right:20px; }
  .section-h { font-size:30px; letter-spacing:-1.5px; }
  .services-grid { grid-template-columns:1fr; }
  .steps { grid-template-columns:1fr 1fr; gap:40px; }
  .steps::before { display:none; }
  .zones-grid { grid-template-columns:1fr 1fr; }
  .reviews-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; gap:36px; }
  .footer-bottom { flex-direction:column; gap:8px; text-align:center; padding:24px 20px; }
  .cta-final h2 { font-size:32px; }
  .nav-links, .nav-menu { display:none; }
  .nav-links.open, .nav-menu.open {
    display:flex; flex-direction:column; position:absolute; top:66px; left:0; right:0;
    background:var(--bg); padding:20px 24px; border-bottom:1px solid var(--border); gap:16px; z-index:300;
  }
  .burger { display:flex; }
  .img-grid { grid-template-columns:1fr 1fr; }
  .page-hero { padding:110px 20px 60px; }
  .page-hero h1 { font-size:36px; }
  .inner-hero { padding:110px 20px 60px; }
  .inner-hero h1 { font-size:36px; letter-spacing:-1.5px; }
  .process-row { flex-direction:column; align-items:center; }
  .proc-line { width:2px; height:40px; max-width:none; background:repeating-linear-gradient(180deg,var(--orange) 0,var(--orange) 6px,transparent 6px,transparent 14px); margin:0; }
  .section-head h2 { font-size:30px; }
  .footer-inner { grid-template-columns:1fr; gap:36px; padding:48px 20px 0; }
}
