/* Canterbury Airport Transfers & Travel — style.css (FULL CLEAN)
   - Luxury gold theme
   - Bulletproof mobile drawer (Android safe)
   - No duplicate/conflicting rules
*/

/* ==============================
   Theme
   ============================== */
:root{
  --bg:#07070a;
  --surface:#0b0b10;
  --surface2:#0f1016;
  --card:#11131a;

  --text:#f8fafc;
  --muted:rgba(248,250,252,.78);
  --accent:#f5c14b;
  --accent2:#ffe3a1;
  --whatsapp:#22c55e;

  --border:rgba(255,255,255,.14);
  --borderSoft:rgba(255,255,255,.10);
  --shadow:0 18px 50px rgba(0,0,0,.55);

  --radius:18px;
  --radius2:14px;
}

/* Reset */
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:var(--text);background:var(--bg)}
a{color:inherit}

/* Smooth scroll desktop only (prevents Android blur flash) */
@media (min-width: 901px){ html{scroll-behavior:smooth;} }
@media (max-width: 900px){ html{scroll-behavior:auto;} }

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

/* Skip link */
.skip-link{position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden}
.skip-link:focus{
  left:16px;top:16px;width:auto;height:auto;z-index:9999;
  background:#fff;color:#111;padding:10px 12px;border-radius:10px;box-shadow:var(--shadow)
}

/* ==============================
   Header
   ============================== */
.header{
  position:sticky;top:0;z-index:2000;
  background:rgba(7,7,10,.86);
  backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.header-inner{display:flex;align-items:center;gap:14px;padding:12px 0}

.brand{display:flex;align-items:center;gap:12px;min-width:240px;text-decoration:none}
.brand-name{font-weight:1000;color:#fff;line-height:1.1}
.brand-sub{font-size:12px;color:rgba(255,255,255,.75)}

.brand-logo{position:relative;overflow:hidden}
.brand-logo img{
  width:62px;height:62px;object-fit:contain;display:block;
  filter:drop-shadow(0 10px 18px rgba(0,0,0,.6))
}

/* Subtle logo shimmer */
.brand-logo::after{
  content:"";
  position:absolute;top:-28px;left:-90px;width:70px;height:130px;
  transform:rotate(25deg);
  background:linear-gradient(90deg,transparent 0%,rgba(245,200,106,0) 20%,rgba(245,200,106,.46) 50%,rgba(245,200,106,0) 80%,transparent 100%);
  opacity:0;
  animation:logoShimmerSlow 12s ease-in-out infinite;
  pointer-events:none;
}
@keyframes logoShimmerSlow{
  0%,76%{transform:translateX(0) rotate(25deg);opacity:0}
  82%{opacity:.55}
  94%{transform:translateX(210px) rotate(25deg);opacity:.55}
  100%{transform:translateX(310px) rotate(25deg);opacity:0}
}

/* Android: stop blur/fuzz on sticky header */
@media (max-width: 900px){
  .header{backdrop-filter:none !important;-webkit-backdrop-filter:none !important;}
  .brand{min-width:0;}
}

/* ==============================
   Buttons
   ============================== */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:12px 16px;border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.06);
  color:var(--text);text-decoration:none;
  font-weight:900;letter-spacing:.2px;
  box-shadow:0 14px 34px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.08);
  transition:transform .12s ease, filter .12s ease, box-shadow .12s ease, border-color .12s ease, background .12s ease;
}
.btn:hover{filter:brightness(1.04)}
.btn:active{transform:translateY(1px)}
.btn-block{width:100%}

.btn-primary{
  background:linear-gradient(180deg,#f6dc94 0%,#e2b862 55%,#caa04f 100%);
  color:#1a1306;border:1px solid rgba(255,210,120,.35);
  box-shadow:0 18px 40px rgba(0,0,0,.38), 0 0 0 1px rgba(255,210,120,.10) inset, 0 0 22px rgba(245,211,122,.18);
}
.btn-ghost{background:transparent;color:#fff;border-color:rgba(255,255,255,.22)}
.btn-whatsapp{
  background:linear-gradient(180deg,#2d7b4c 0%,#1f5a37 60%,#18462b 100%);
  border:1px solid rgba(94,255,170,.20);
  color:#eafff3;
  box-shadow:0 18px 40px rgba(0,0,0,.38), 0 0 18px rgba(60,210,120,.14);
}

/* Loading state */
.btn.is-loading{pointer-events:none;opacity:.92;filter:saturate(1.05)}
.btn.is-loading::after{
  content:"";
  width:18px;height:18px;border-radius:999px;
  border:2px solid rgba(255,255,255,.45);
  border-top-color:rgba(255,255,255,0);
  display:inline-block;margin-left:10px;
  animation:spin .85s linear infinite;
}
@keyframes spin{to{transform:rotate(360deg)}}
button#enquiryBtn:disabled{opacity:.75;cursor:not-allowed}

/* ==============================
   Nav (desktop)
   ============================== */
.nav{
  display:flex;gap:14px;align-items:center;margin-left:auto;
}
.nav a{
  color:rgba(255,255,255,.9);
  text-decoration:none;font-weight:800;font-size:14px;
  padding:10px;border-radius:12px;
}
.nav a:hover{background:rgba(245,193,75,.10)}
.nav a.active-link{
  background:rgba(245,193,75,.18) !important;
  box-shadow:0 0 0 1px rgba(245,193,75,.25) inset, 0 0 18px rgba(245,193,75,.10);
}

.nav-toggle{
  display:none;margin-left:auto;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;padding:10px 12px;border-radius:12px;font-weight:900;
}

/* ==============================
   Mobile drawer
   ============================== */
.nav-overlay{
  position:fixed; inset:0;
  background:rgba(0,0,0,.42);
  z-index:1900;
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease;
}
body.nav-open .nav-overlay{
  opacity:1;
  pointer-events:auto;
}

@media (max-width:900px){
  .nav-toggle{display:inline-flex;position:relative;z-index:5000;}

  .nav{
    position:fixed;
    top:0; right:0;
    height:100vh;
    width:min(86vw,360px);
    padding:96px 18px 18px;
    display:flex;
    flex-direction:column;
    gap:10px;
    transform:translateX(110%);
    transition:transform .34s cubic-bezier(.16,1,.3,1);
    z-index:4000;
    background:linear-gradient(180deg, rgba(24,24,34,.995) 0%, rgba(12,12,18,.995) 100%);
    border-left:1px solid rgba(245,193,75,.22);
    box-shadow:-34px 0 92px rgba(0,0,0,.68), -10px 0 24px rgba(0,0,0,.42);
  }

  .nav.open{transform:translateX(0);}

  .nav a{
    width:100%;
    padding:14px 14px;
    border-radius:18px;
    font-weight:800;
    font-size:16px;
    letter-spacing:.2px;
    background:rgba(255,255,255,.07);
    border:1px solid rgba(255,255,255,.14);
    box-shadow:0 10px 26px rgba(0,0,0,.26);
  }
  .nav a:hover{background:rgba(245,193,75,.10);border-color:rgba(245,193,75,.32);}

  body.nav-open .nav-toggle{visibility:hidden;}
  body.nav-open{overflow:hidden;touch-action:none;}
}

/* Close button */
.nav-close{
  position:absolute;
  top:18px; right:18px;
  width:42px;height:42px;
  border-radius:12px;
  border:1px solid rgba(245,193,75,.22);
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:18px;
  cursor:pointer;
  z-index:1;
}
.nav-close:hover{background:rgba(255,255,255,.12)}
@media (min-width:901px){.nav-close{display:none}}

/* ==============================
   Hero
   ============================== */
.hero{
  position:relative;overflow:hidden;
  background:linear-gradient(180deg,var(--bg) 0%,var(--bg) 58%,var(--surface) 58%,var(--surface) 100%);
  padding-top:10px;
}
@media (max-width:900px){
  .hero{ padding-top:18px; }
}

.hero-bg{
  position:absolute;inset:0;
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(245,193,75,.18), transparent 55%),
    radial-gradient(900px 500px at 80% 0%, rgba(214,177,92,.14), transparent 60%),
    radial-gradient(700px 400px at 60% 70%, rgba(245,193,75,.10), transparent 60%);
  pointer-events:none;
}
.hero-inner{
  position:relative;
  display:grid;
  grid-template-columns:1.3fr .9fr;
  gap:22px;
  align-items:center;
  padding:28px 0 36px;
}
.hero-copy h1{
  font-size:clamp(28px,3.2vw,44px);
  margin:0 0 8px;
  letter-spacing:-.02em;
}
.hero-lead{color:rgba(255,255,255,.82);font-size:16px;line-height:1.6;margin:0 0 16px}

.hero-kicker{
  display:inline-block;
  margin:0 0 10px;
  color:rgba(255,227,161,.92);
  font-size:13px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

/* Hero logo wrap shimmer */
.hero-logo-wrap{
  position:relative;
  display:inline-block;
  width:min(440px,88%);
  aspect-ratio:524/350;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 18px 46px rgba(0,0,0,.42);
  contain:layout paint
}
.hero-logo{
  width:100%;
  height:auto;
  aspect-ratio:524/350;
  display:block;
  margin:0 0 10px;
  filter:drop-shadow(0 18px 30px rgba(0,0,0,.75));
}
.hero-logo-wrap::after{
  content:"";
  position:absolute;top:-25%;bottom:-25%;left:-80%;
  width:55%;
  background:linear-gradient(115deg, transparent, rgba(245,193,75,.55), transparent);
  opacity:0;
  mix-blend-mode:screen;
  pointer-events:none;
  animation:heroShimmer 14s cubic-bezier(.16,1,.3,1) infinite;
  will-change:transform,opacity;
  transform: translateZ(0) skewX(-18deg);
}
@keyframes heroShimmer{
  0%{left:-80%;opacity:0}
  12%{opacity:.55}
  38%{left:130%;opacity:.55}
  42%{opacity:0}
  100%{left:130%;opacity:0}
}
@media (prefers-reduced-motion: reduce){.hero-logo-wrap::after{animation:none !important;}}
@media (max-width:900px){
  .hero-logo-wrap::after{display:none !important;}
  .hero-inner{grid-template-columns:1fr;gap:16px;padding:32px 0}
  .hero-logo{width:min(520px,96%);}
}

/* Hero bullets */
.hero-bullets{list-style:none;padding:0;margin:18px 0 0;display:grid;gap:12px}
.hero-bullets li{
  position:relative;
  padding:16px 16px 16px 54px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--borderSoft);
  box-shadow:0 16px 38px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.06);
  font-weight:900;
}
.hero-bullets li::before{
  content:"✓";
  position:absolute;left:16px;top:50%;
  transform:translateY(-50%);
  width:28px;height:28px;border-radius:999px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(245,211,122,.12);
  border:1px solid rgba(245,211,122,.30);
  color:var(--accent2);
  font-weight:1000;
}

/* Hero actions */
.hero-actions{display:flex;flex-direction:column;gap:12px;margin:0 0 18px}

/* High-end conversion micro-banner */
.hero-trust{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-align:center;
  width:min(520px,100%);
  padding:10px 14px;
  border-radius:999px;
  background:rgba(245,193,75,.08);
  border:1px solid rgba(245,193,75,.20);
  box-shadow:0 14px 34px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.06);
  color:rgba(248,250,252,.72);
  font-size:12px;
  line-height:1.4;
}

.hero-trust strong{
  color:rgba(255,227,161,.98);
  font-weight:1000;
}

.hero-micro{
  display:block;
  width:100%;
  margin-top:6px;
  color:rgba(248,250,252,.78);
  font-size:12px;
  line-height:1.4;
}

/* HOMEPAGE ONLY: balanced CTA size */
.hero .hero-actions{align-items:center;width:100%}
.hero .hero-actions .btn{
  width:min(520px,100%) !important;
  max-width:520px !important;
  padding:16px 20px !important;
  min-height:56px;
  font-size:16px;
}

@media (max-width: 900px){
  .hero-trust{
    border-radius:16px;
    padding:12px 14px;
    line-height:1.45;
  }
}

/* ==============================
   Sections + cards
   ============================== */
.section{padding:46px 0;background:var(--surface)}
.section.alt{background:var(--surface2)}
h2{font-size:clamp(22px,2.4vw,30px);margin:0 0 10px;letter-spacing:-.02em}
.lead{color:rgba(248,250,252,.82);max-width:75ch;line-height:1.7;margin:0 0 18px}

.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}

.tile,.price-card,.quote,.review-card,.contact-card,.hero-card,.airport-guide{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius2);
  padding:16px;
  box-shadow:0 12px 30px rgba(0,0,0,.35);
}

/* IMPORTANT: airport links should be GOLD */
.tile-link{
  color:rgba(255,227,161,.95);
  text-decoration:none;
  font-weight:900;
}
.tile-link:hover{text-decoration:underline}

/* Tile hover glow */
.tile{transition:transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease}
.tile:hover,.tile:focus-within{
  transform:translateY(-2px);
  border-color:rgba(245,193,75,.30);
  box-shadow:0 18px 46px rgba(0,0,0,.55), 0 0 0 1px rgba(245,193,75,.12) inset, 0 0 26px rgba(245,193,75,.10);
  background:rgba(255,255,255,.06);
}

.notice{
  margin:14px 0 0;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(245,193,75,.10);
  border:1px solid rgba(245,193,75,.18);
  color:rgba(255,255,255,.9);
}

.price-list{list-style:none;margin:10px 0 0;padding:0;display:grid;gap:10px}
.price-list li{display:flex;justify-content:space-between;gap:10px;padding:10px 12px;border-radius:12px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.10)}
.price-list .name{font-weight:900}
.price-list .price{font-weight:1000;color:var(--accent2)}

.cta-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:16px}

/* ==============================
   Forms
   ============================== */
.card-title{font-weight:1000;font-size:16px}
.card-sub{color:rgba(248,250,252,.72);font-size:13px;margin:6px 0 10px}

.field{display:block}
.field > span{display:block;font-weight:1000;font-size:13px;margin:0 0 6px;line-height:1.25;color:rgba(248,250,252,.88)}
.field-label-inline{display:block !important;white-space:nowrap;line-height:1.25;margin:0 0 6px;color:rgba(248,250,252,.88)}
.field-label-inline .field-optional{display:inline;font-size:.82em;color:rgba(248,250,252,.78);font-weight:500;white-space:nowrap;margin:0 0 0 4px}

input,select,textarea{
  width:100%;
  padding:12px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:12px;
  font:inherit;
  background:rgba(0,0,0,.22);
  color:var(--text);
}
textarea{resize:vertical}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none;
  border-color:rgba(245,211,122,.55);
  box-shadow:0 0 0 4px rgba(245,211,122,.12);
}

input::placeholder, textarea::placeholder{color:rgba(248,250,252,.62);opacity:1}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder{color:rgba(248,250,252,.62)}

.help{margin-top:6px;font-size:12px;color:rgba(248,250,252,.86);line-height:1.45;font-weight:500}
input.is-invalid{border-color:rgba(239,68,68,.85) !important;box-shadow:0 0 0 3px rgba(239,68,68,.18)}
.help.is-error{color:rgba(239,68,68,.95)}

.quick-price{font-size:20px;font-weight:1000;margin:10px 0 12px}
.small-note{color:rgba(248,250,252,.84);font-size:12px;margin-top:10px;font-weight:500}

/* Quote layout */
.quote-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
.field-full{grid-column:1/-1}
.quote-footer{margin-top:14px;display:flex;justify-content:space-between;align-items:flex-end;gap:14px;flex-wrap:wrap}
.price-big{font-size:22px;font-weight:1000}
.quote-actions{display:flex;gap:10px;flex-wrap:wrap}

/* ==============================
   Reviews + contact
   ============================== */
.reviews-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.contact-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.stars{font-weight:1000;color:var(--accent2);letter-spacing:.04em}
.review-text{margin:10px 0;color:rgba(248,250,252,.82);line-height:1.6}
.review-name{font-weight:900}
.muted{color:rgba(248,250,252,.84)}
.link{font-weight:1000;color:rgba(255,227,161,.95);text-decoration:none}
.link:hover{text-decoration:underline}

/* ==============================
   Footer
   ============================== */
.footer{background:#07070a;padding:20px 0}
.footer-inner{display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;align-items:center}
.footer-links{display:flex;gap:12px;flex-wrap:wrap}
.footer-links a{color:rgba(255,255,255,.85);text-decoration:none;font-weight:900}
.footer-links a:hover{text-decoration:underline}

/* ==============================
   WhatsApp float
   ============================== */
.wa-float{
  position:fixed;
  right:max(16px, env(safe-area-inset-right));
  bottom:max(16px, env(safe-area-inset-bottom));
  z-index:9000;
  display:inline-flex;
  align-items:center;
  padding:12px;
  border-radius:999px;
  background:var(--whatsapp);
  color:#07110b;
  text-decoration:none;
  font-weight:1000;
  box-shadow:0 18px 40px rgba(0,0,0,.55);
  border:1px solid rgba(0,0,0,.20);
  animation:pulseGlow 3.5s infinite;
}
@keyframes pulseGlow{
  0%{box-shadow:0 0 0 0 rgba(37,211,102,.6), 0 18px 40px rgba(0,0,0,.55)}
  70%{box-shadow:0 0 0 12px rgba(37,211,102,0), 0 18px 40px rgba(0,0,0,.55)}
  100%{box-shadow:0 0 0 0 rgba(37,211,102,0), 0 18px 40px rgba(0,0,0,.55)}
}

/* ==============================
   Responsive
   ============================== */
@media (max-width:900px){
  .grid-3{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .reviews-grid{grid-template-columns:1fr}
  .quote-grid{grid-template-columns:1fr}
}

body{padding-bottom:0}

/* Kent town SEO box */
.kent-box{
  margin:14px 0 6px;
  padding:16px;
  border-radius:18px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 16px 40px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.06);
}
.kent-box-title{font-weight:1000;font-size:18px;margin:0 0 10px}
.kent-links{display:flex;flex-direction:column;gap:10px}
.kent-links a{
  display:inline-flex;
  align-items:center;
  width:fit-content;
  max-width:100%;
  padding:9px 12px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  color:rgba(255,227,161,.95);
  background:linear-gradient(180deg, rgba(245,193,75,.10) 0%, rgba(245,193,75,.05) 100%);
  border:1px solid rgba(245,193,75,.18);
  box-shadow:0 10px 24px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.05);
  transition:transform .14s ease, box-shadow .14s ease, background .14s ease, border-color .14s ease;
}
.kent-links a:hover,
.kent-links a:focus-visible{
  background:linear-gradient(180deg, rgba(245,193,75,.14) 0%, rgba(245,193,75,.08) 100%);
  border-color:rgba(245,193,75,.30);
  box-shadow:0 14px 34px rgba(0,0,0,.34), 0 0 0 1px rgba(245,193,75,.14) inset, 0 0 20px rgba(245,193,75,.10);
  transform:translateY(-1px);
}
.kent-links a:active{
  transform:translateY(0);
  box-shadow:0 8px 18px rgba(0,0,0,.28), 0 0 0 1px rgba(245,193,75,.12) inset;
}

/* ==============================
   Safe polish overrides
   ============================== */
@media (max-width:900px){
  .header{
    background:#050507 !important;
    border-bottom:1px solid rgba(255,255,255,.10);
  }
}

/* ==============================
   Our vehicles / ride photo grid
   ============================== */
.ride-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items:start;
}
@media (max-width: 980px){
  .ride-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .ride-grid{ grid-template-columns: 1fr; }
}
@media (min-width: 981px){
  .ride-grid{ gap: 20px; }
}

.ride-card{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.045) 0%, rgba(0,0,0,.38) 100%);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 14px 34px rgba(0,0,0,.38);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.ride-card:hover{
  transform:translateY(-3px);
  border-color:rgba(245,193,75,.25);
  box-shadow:
    0 22px 54px rgba(0,0,0,.55),
    0 0 0 1px rgba(245,193,75,.10) inset,
    0 0 22px rgba(245,193,75,.12);
}

/* Uniform vehicle image polish */
.ride-card::before{display:none;}

.ride-img{
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position:center;
  display: block;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.10);
  filter: brightness(.86) contrast(1.04) saturate(1.03);
}

.ride-card h3{
  margin: 14px 16px 6px;
  font-weight: 1000;
  letter-spacing: -.01em;
}

.ride-card h3::after{
  content:"";
  display:block;
  width: 34px;
  height: 2px;
  margin-top: 8px;
  border-radius: 999px;
  background: rgba(245,193,75,.65);
  box-shadow: 0 0 18px rgba(245,193,75,.18);
}

.ride-card p{
  margin: 0 16px 16px;
  color: rgba(248,250,252,.78);
  line-height: 1.55;
}

/* ==============================
   Popular routes
   ============================== */
#popular-routes .cta-row{
  gap:12px;
}

#popular-routes .btn{
  padding:12px 16px;
  min-height:48px;
  font-size:14px;
  transition:transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease, filter .16s ease;
}

#popular-routes .btn-ghost{
  background:rgba(255,255,255,.04);
  border-color:rgba(245,193,75,.22);
  box-shadow:0 12px 28px rgba(0,0,0,.32), 0 0 0 1px rgba(245,193,75,.10) inset;
}

#popular-routes .btn-ghost:hover,
#popular-routes .btn-ghost:focus-visible{
  transform:translateY(-2px);
  background:rgba(255,255,255,.06);
  border-color:rgba(245,193,75,.30);
  box-shadow:
    0 18px 46px rgba(0,0,0,.55),
    0 0 0 1px rgba(245,193,75,.12) inset,
    0 0 26px rgba(245,193,75,.10);
}

#popular-routes .btn-ghost:active{
  transform:translateY(-1px);
}

@media (max-width:900px){
  #popular-routes .cta-row{
    flex-direction:column;
    align-items:stretch;
  }
  #popular-routes .btn{
    width:100%;
    justify-content:center;
  }
}

/* ==============================
   FINAL MICRO-POLISH PACK
   ============================== */

/* Quick guide card: a bit more breathing room */
.hero-card{
  padding:18px;
}

/* Make card buttons feel a touch more premium and balanced */
.hero-card .btn{
  min-height:52px;
}

/* Keep the main CTA strongest, soften WhatsApp slightly */
.btn-whatsapp{
  box-shadow:0 14px 30px rgba(0,0,0,.32), 0 0 12px rgba(60,210,120,.10);
}

/* Slightly cleaner spacing in hero text block */
.hero-copy{
  max-width:640px;
}

/* Tighter, more intentional desktop hero composition */
@media (min-width: 901px){
  .hero-copy{
    padding-top:4px;
  }

  .hero-card{
    margin-top:8px;
  }
}

/* Improve visual balance of the reassurance bar */
.hero-trust{
  max-width:540px;
}

/* Popular routes: slightly nicer wrapping on desktop */
@media (min-width: 901px){
  #popular-routes .cta-row{
    row-gap:14px;
  }
}

/* Contact cards: just a touch more consistent height feel */
.contact-card{
  min-height:100%;
}

/* Quick guide price line reads better */
.quick-price small{
  color:rgba(248,250,252,.72);
  font-weight:700;
}

/* Subtle polish for section headings */
h2{
  text-wrap:balance;
}

/* Better hover polish on primary CTA */
.btn-primary:hover{
  filter:brightness(1.03);
  box-shadow:
    0 20px 44px rgba(0,0,0,.42),
    0 0 0 1px rgba(255,210,120,.10) inset,
    0 0 24px rgba(245,211,122,.20);
}

/* Keep route buttons from feeling too flat when not hovered */
#popular-routes .btn-ghost{
  backdrop-filter:blur(2px);
}

/* Launch-finish polish */
.quote-trust-strip{display:flex;flex-wrap:wrap;gap:10px;margin:18px 0 10px}
.quote-trust-pill{display:inline-flex;align-items:center;gap:8px;padding:10px 14px;border-radius:999px;border:1px solid rgba(245,193,75,.20);background:rgba(255,255,255,.04);font-size:.92rem;font-weight:700;color:#f8fafc}
.quote-contact-inline{margin:0 0 18px;color:rgba(248,250,252,.8)}
.quote-contact-inline a{white-space:nowrap}
.quote.is-submitted .quote-footer{border-color:rgba(34,197,94,.28);background:rgba(34,197,94,.06)}
.quote.is-submitted #estimate{color:#bbf7d0}
.quote .btn[disabled],.quote .btn[aria-disabled="true"]{opacity:.7;cursor:not-allowed}
@media (max-width:760px){.quote-trust-pill{font-size:.85rem;padding:9px 12px}.quote-contact-inline{font-size:.95rem}}
