/* ===========================
   THEME
=========================== */
:root{
  --navy:#004080;
  --navy-dark:#002c5c;
  --white:#ffffff;
  --border:#d1d9e6;
  --bg:#f6f8fc;
}

/* ===========================
   BASE
=========================== */
html,body{height:100%;margin:0}
body{
  font-family:'Fira Sans',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:#222;
}

/* ===========================
   TOP BAR & NAV
=========================== */
.top-bar{background:var(--navy);color:var(--white);font-size:.9rem}
.brand-icon{
  background:var(--navy);color:var(--white);
  width:40px;height:40px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;font-weight:700
}
.main-navbar{background:var(--white)}
.main-navbar .nav-link{color:var(--navy);font-weight:600;margin-left:1.2rem}
.main-navbar .nav-link:hover{color:var(--navy-dark)}

/* ===========================
   BUTTONS
=========================== */
.btn-navy,.btn.btn-primary{
  background:var(--navy);border:1px solid var(--navy);color:#fff;
  font-weight:600;padding:.75rem 1.5rem;border-radius:8px;transition:.2s
}
.btn-navy:hover,.btn.btn-primary:hover{background:var(--navy-dark);border-color:var(--navy-dark)}
.btn-outline-light{
  color:#fff;border:2px solid #fff;font-weight:700;padding:.75rem 1.5rem;border-radius:8px;transition:.2s
}
.btn-outline-light:hover{background:#fff;color:var(--navy)}

/* ===========================
   HERO (overlay BEHIND content)
=========================== */
.hero-section{
  position:relative;
  background:url('image/2025-es-exterior.jpg') center/cover no-repeat;
  min-height:80vh;
  color:#fff;
  padding:100px 20px 50px;
  text-align:center;
}
.hero-sectiona{
  position:relative;
  background:url('image/Sydney-Airport-Transfers.jpg') center/cover no-repeat;
  min-height:80vh;
  color:#fff;
  padding:100px 20px 50px;
  text-align:center;
}

.hero-sectionm{
  position:relative;
  background:url('image/f2.jpg') center/cover no-repeat;
  min-height:80vh;
  color:#fff;
  padding:100px 20px 50px;
  text-align:center;
}

.mobile-car-image {
  display: none;  /* hidden by default */
  width: 100%;    /* adjust size for mobile */
  max-width: 320px;
  height: auto;
  margin: 0 auto;
  display: block;
  margin-bottom: -42px;
}

@media (min-width: 768px) {
  .mobile-car-image {
    display: none; /* hide on tablet/desktop */
  }
}

@media (max-width: 767px) {
  .mobile-car-image {
    display: block; /* show only on mobile */
  }
}



/* overlay behind everything in hero */
.hero-section::before{
  content:"";
  position:absolute;inset:0;
  background:rgb(0 64 128 / 63%);
  z-index:0;
}
/* if you also have a <div class="hero-overlay">, make sure it NEVER blocks clicks */
.hero-overlay{
  position:absolute;inset:0;background:rgba(0,0,40,.55);
  z-index:0 !important;             /* behind content */
  pointer-events:none !important;    /* cannot capture clicks */
}
.hero-content{position:relative;z-index:1;max-width:800px;margin:0 auto 28px}
.hero-section__title{font-size:2.6rem;font-weight:800;text-transform:uppercase;margin:0 0 10px}
.hero-section__subtitle{font-size:1.1rem;color:#e8edf6;max-width:640px;margin:6px auto 0}
.hero-section__buttons{margin-top:18px;display:flex;gap:12px;flex-wrap:wrap;justify-content:center}
@media (max-width:768px){
  .hero-section{padding:14px 5px 89px}
  .hero-section__title{font-size:2rem}
  .hero-section__subtitle{font-size:1rem}
}

/* ===========================
   FORM CARD (no overlay; clickable)
=========================== */
.form-section{
  position:relative;                 /* creates stacking context */
  z-index:2;                         /* ABOVE any hero overlay */
  width:100%;
  max-width:1000px;
  margin:40px auto;
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  box-shadow:0 8px 22px rgba(0,0,0,.06);
  color:#000;
}
.book-ttl{
  text-align:center;color:var(--navy);font-weight:800;text-transform:uppercase;
  font-size:1.35rem;margin:0;padding:18px 16px;border-bottom:1px solid var(--border)
}
.booking-area{padding:20px}
@media (max-width:768px){.booking-area{padding:2px}}

/* Booking tabs */
.booking-tabs{text-align:center;margin-bottom:18px}
.booking-tabs label{display:inline-flex;align-items:center;gap:8px;margin:.25rem .4rem;cursor:pointer}
.booking-tabs input[type="radio"]{accent-color:var(--navy)}

/* ===========================
   INPUTS
=========================== */
.form-control {
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* Make inputs/selects/textarea take full width of their Bootstrap columns */
form.form-horizontal input.form-control,
form.form-horizontal select.form-control,
form.form-horizontal textarea.form-control {
  width: 100%;  /* full width of their column */
  box-sizing: border-box;
  padding: 12px 15px;
  font-size: 1.1rem;
  border: 1.5px solid #004990;
  border-radius: 6px;
  transition: border-color 0.3s ease;
  color: #004990;
}

/* On focus */
form.form-horizontal input.form-control:focus,
form.form-horizontal select.form-control:focus,
form.form-horizontal textarea.form-control:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 5px rgba(0,123,255,0.5);
}

/* Keep Bootstrap column padding as is for layout (donâ€™t override padding/margin) */

/* Submit button styling */
form.form-horizontal input[type="submit"].btn {
  background-color: #004990;
  color: white;
  border: none;
  padding: 14px 35px;
  font-size: 1.15rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  max-width: 300px;
  width: 100%;
  margin: 20px auto 0;
  display: block;
}

form.form-horizontal input[type="submit"].btn:hover {
  background-color: #0066cc;
}

/* Textarea - bigger height */
form.form-horizontal textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

/* Date/time selects in one line within their column */
#divtime > div.col-xs-4 {
  display: inline-block;
  width: 32%;
  padding-right: 5px;
}

#divtime > div.col-xs-4:last-child {
  padding-right: 0;
}



/* Ensure columns float properly */
.airport .form-horizontal .col-md-6,
.airport .form-horizontal .col-xs-4 {
  float: left;
  box-sizing: border-box;
  padding: 0 10px;
  margin-bottom: 15px; /* Adds space below each field */
}

/* Column width definitions */
.airport .form-horizontal .col-md-6 {
  width: 50%;
}

.airport .form-horizontal .col-xs-4 {
  width: 33.3333%;
}

/* Clear each row after floats */
.airport .form-group::after {
  content: "";
  display: table;
  clear: both;
}

/* Full-width inputs in columns */
.airport .form-control {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  font-size: 16px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

/* Responsive adjustments for mobile */
@media (max-width: 767px) {
  .airport .form-horizontal .col-md-6,
  .airport .form-horizontal .col-xs-4 {
    width: 100%;
    float: none;
    padding: 0;
    margin-bottom: 15px;
  }
}


/* ===========================
   KILL ANY OLD TINTS/OVERLAYS ON FORM WRAPPERS
=========================== */
.sliderform,
.sliderforma,
.sliderformm,
.sliderformonline,
.sliderform_inner{
  background:none !important;
  padding:0 !important;
  margin:0 !important;
  float:none !important;
}
.book-data{opacity:1 !important}            /* some old CSS set .9 which dulled everything */
/* .book-bg,.booking-area{background:#fff !important;opacity:1 !important} */

/* ===========================
   AIRPORT FORM (disable legacy floats so layout is stable)
=========================== */
.airport .form-horizontal .col-md-6,
.airport .form-horizontal .col-xs-4{
  float:none !important;
  width:100% !important;
  padding:0 !important;
  margin-bottom:12px;
}
.airport .form-group::after{content:"";display:block;clear:both}

/* ===========================
   CONTAINER WIDTH
=========================== */
.container{max-width:1200px}



#why-silver-taxi .badge { border-radius: 30px; padding: .55rem .9rem; }
#why-silver-taxi img { object-fit: cover; }




/* Section title color (uses your theme var if present) */
.text-navy { color: #004080 !important; }

/* Icon bullet list */
.maxi-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .8rem;
  color: #1f2937;
  line-height: 1.55;
}
.maxi-list li i {
  color: #0d6efd;            /* Bootstrap primary */
  font-size: 1.15rem;
  line-height: 1.2;
  margin-top: .1rem;
}

/* Stats bar styling */
.maxi-stats {
  background: #0b4a91;       /* deep navy bar */
  padding: 22px 26px;
  justify-content: space-between;
  gap: 16px;
}
.maxi-stats .stat {
  flex: 1 1 200px;
  min-width: 200px;
  text-align: center;
  padding: 6px 10px;
}
.maxi-stats .num {
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: .2px;
}
.maxi-stats .lbl {
  font-size: .92rem;
  opacity: .95;
}

/* Image card */
#taxi-maxi .card img { object-fit: cover; }

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .maxi-stats { border-radius: 14px; }
}
@media (max-width: 575.98px) {
  .maxi-stats { padding: 18px; }
  .maxi-stats .num { font-size: 1.35rem; }
  .maxi-stats .lbl { font-size: .88rem; }
}




/* Our Fleet */
#our-fleet { background: #f8fafc; }
.fleet-title { font-size: 2.25rem; letter-spacing: .3px; }

.fleet-card{
  background:#fff; border:1px solid #e6ecf3; border-radius:16px;
  box-shadow:0 10px 24px rgba(13,42,99,.06);
  display:flex; flex-direction:column; overflow:hidden; transition:transform .15s ease, box-shadow .15s ease;
}
.fleet-card:hover{
  transform: translateY(-4px);
  box-shadow:0 18px 32px rgba(13,42,99,.10);
}

.fleet-media{
  background: linear-gradient(180deg,#f7f9fc, #eef4fb);
  display:flex; align-items:center; justify-content:center;
  padding: 26px 18px 6px;
}
.fleet-media img{ max-height:160px; object-fit:contain; }

.fleet-body{ padding: 18px 18px 8px; }
.fleet-name{ font-size:1.05rem; font-weight:800; text-align:center; margin:8px 0 10px; color:#1f2937; }

.fleet-specs{ list-style:none; padding:0; margin:0 0 10px; text-align:center; color:#374151; }
.fleet-specs li{ display:flex; gap:.5rem; justify-content:center; align-items:center; margin:.35rem 0; }
.fleet-specs i{ color:#0d6efd; }

.fleet-tags{ display:flex; gap:.4rem; flex-wrap:wrap; justify-content:center; }
.fleet-tags .badge{ border-radius:999px; padding:.5rem .65rem; border:1px solid #e6ecf3; }

.fleet-cta{ border-radius:0 0 16px 16px; padding:.85rem 1rem; font-weight:700; }

/* Note text */
.fleet-note{ font-size:.95rem; }

/* Dark navy theme hook */
.text-navy{ color:#004080 !important; }

@media (max-width: 575.98px){
  .fleet-media img{ max-height:140px; }
}
/* ===== Services (navy theme, clean cards) ===== */
#our-services { background: #f8fafc; }
#our-services .text-navy { color: #004080 !important; }

.svc-card{
  background:#fff; border:1px solid #e6ecf3; border-radius:16px;
  overflow:hidden; display:flex; flex-direction:column;
  box-shadow:0 10px 22px rgba(13,42,99,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.svc-card:hover{
  transform: translateY(-5px);
  border-color:#d8e4f3;
  box-shadow:0 18px 32px rgba(13,42,99,.12);
}

.svc-media{
  background: linear-gradient(180deg,#f7f9fc,#eef4fb);
  display:flex; align-items:center; justify-content:center;
  min-height: 190px;
}
.svc-media img{ width:100%; height:100%; max-height:220px; object-fit:cover; }

.svc-body{ padding:18px 18px 10px; text-align:center; }
.svc-title{ font-size:1.125rem; font-weight:800; color:#1f2937; margin:4px 0 8px; }
.svc-text{ color:#374151; margin:0 0 10px; line-height:1.55; }

.svc-tags{ display:flex; flex-wrap:wrap; gap:.4rem; justify-content:center; }
.svc-tags .badge{ border-radius:999px; padding:.45rem .7rem; border:1px solid #e6ecf3; background:#fff; }

.svc-cta{
  margin:10px 12px 14px; border-radius:12px; font-weight:700;
  padding:.8rem 1rem; background:#004080; border:1px solid #004080;
  box-shadow:0 6px 16px rgba(0,64,128,.15);
}
.svc-cta:hover{ background:#002c5c; border-color:#002c5c; }

/* Responsive image height tweaks */
@media (max-width: 575.98px){
  .svc-media { min-height: 160px; }
  .svc-media img{ max-height: 200px; }
}





/* ===== Steps Section ===== */
#booking-steps {
  background: #f9fafc;
}

#booking-steps h2 {
  font-size: 1.8rem;
  font-weight: 700;
}

.step-card {
  background: #fff;
  border: 1px solid #e6ecf3;
  border-radius: 12px;
  padding: 25px 15px;
  height: 100%;
  transition: all 0.25s ease;
  box-shadow: 0 6px 14px rgba(0,0,0,0.05);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 22px rgba(0,0,0,0.08);
}

.step-icon {
  width: 70px;
  height: 70px;
  background: #004080;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.7rem;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,64,128,0.2);
}



/* ---------- Reviews Section ---------- */
#reviews { background: #f8fafc; }
#reviews .text-navy { color: #004080 !important; }

.review-card{
  background:#fff;
  border:1px solid #e6ecf3;
  border-radius:16px;
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:10px;
  box-shadow:0 10px 22px rgba(13,42,99,.06);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.review-card:hover{
  transform: translateY(-4px);
  border-color:#d8e4f3;
  box-shadow:0 18px 32px rgba(13,42,99,.10);
}

.review-avatar{
  width:48px;height:48px;border-radius:50%;
  object-fit:cover;margin-right:10px;border:2px solid #eef3fa;
}
.review-name{ font-weight:700; color:#1f2937; line-height:1; }
.review-tag{
  font-size:.85rem; color:#475569;
  display:flex; align-items:center; gap:4px;
}
.review-text{ color:#374151; line-height:1.6; margin:2px 0 8px; }

.review-stars i{ color:#f5b301; margin-right:2px; }
.review-date{ font-size:.82rem; color:#6b7280; }

/* Buttons harmony */
#reviews .btn.btn-primary{
  background:#004080;border:1px solid #004080;
  font-weight:700;border-radius:10px;padding:.8rem 1.1rem;
  box-shadow:0 6px 16px rgba(0,64,128,.15);
}
#reviews .btn.btn-primary:hover{ background:#002c5c; border-color:#002c5c; }
#reviews .btn.btn-outline-secondary{
  border-radius:10px;font-weight:700;padding:.8rem 1.1rem;
}



/* Footer base */
.site-footer{
  background:#f8fafc;
  color:#1f2937;
  border-top:1px solid #e6ecf3;
  font-size:0.95rem;
}
.site-footer .text-navy{ color:#004080 !important; }
.site-footer .btn.btn-primary{
  background:#004080; border-color:#004080; border-radius:10px;
  box-shadow:0 6px 16px rgba(0,64,128,.12);
}
.site-footer .btn.btn-primary:hover{ background:#002c5c; border-color:#002c5c; }

/* Brand icon */
.site-footer .brand-icon{
  width:40px; height:40px; border-radius:50%;
  background:#004080; color:#fff; display:flex; align-items:center; justify-content:center;
  font-weight:800; box-shadow:0 4px 10px rgba(0,64,128,.18);
}

/* Column headings */
.footer-title{
  font-size:1.05rem; font-weight:800; color:#1f2937; margin-bottom:.65rem;
}

/* Lists */
.footer-list{ list-style:none; padding:0; margin:0; }
.footer-list li{ padding:.38rem 0; border-bottom:1px dashed #e6ecf3; }
.footer-list li:last-child{ border-bottom:0; }
.footer-list a{
  color:#374151; text-decoration:none;
}
.footer-list a:hover{ color:#004080; text-decoration:underline; }

/* Contact */
.footer-contact li{ padding:.25rem 0; color:#374151; }
.footer-contact a{ color:#374151; text-decoration:none; }
.footer-contact a:hover{ color:#004080; text-decoration:underline; }

/* Map */
.map-embed{ background:#eef3fa; border:1px solid #e6ecf3; }
.map-embed iframe{ width:100%; height:160px; border:0; }

/* Divider & bottom links */
.footer-divider{ border-color:#e6ecf3; opacity:1; }
.footer-links a{ color:#374151; text-decoration:none; }
.footer-links a:hover{ color:#004080; text-decoration:underline; }
.footer-links .sep{ color:#9aa5b1; margin:0 .5rem; }

/* Responsive tweaks */
@media (max-width: 991.98px){
  .footer-list li{ padding:.45rem 0; }
}
@media (max-width: 575.98px){
  .map-embed iframe{ height:140px; }
}
/* Priority Airport Pickup */
#priority-airport-pickup { background:#fff; }
#priority-airport-pickup .text-navy { color:#004080 !important; }

/* Feature list */
.pp-list li{
  display:flex; gap:.6rem; align-items:flex-start;
  margin:.5rem 0; color:#1f2937;
}
.pp-list i{ color:#0d6efd; margin-top:.15rem; }

/* Hero image */
.pp-hero img{ object-fit:cover; }

/* Steps */
.pp-step{
  background:#f8fafc; border:1px solid #e6ecf3; border-radius:14px;
  padding:16px; text-align:left; height:100%;
}
.pp-step-num{
  width:34px; height:34px; border-radius:50%;
  background:#004080; color:#fff; display:inline-flex; align-items:center; justify-content:center;
  font-weight:800; margin-bottom:.5rem; box-shadow:0 4px 10px rgba(0,64,128,.2);
}

/* Bullet blocks */
.pp-bullets { list-style:none; padding-left:0; }
.pp-bullets li{
  display:flex; align-items:flex-start; gap:.55rem; margin:.45rem 0; color:#374151;
}
.pp-bullets i{ color:#198754; margin-top:.15rem; }
.pp-bullets i.bi-info-circle{ color:#0d6efd; }

/* CTA buttons */
#priority-airport-pickup .btn.btn-primary{
  background:#004080; border-color:#004080; border-radius:12px; font-weight:700;
  box-shadow:0 6px 16px rgba(0,64,128,.15);
}
#priority-airport-pickup .btn.btn-primary:hover{ background:#002c5c; border-color:#002c5c; }


/* ===== Bottom Hero CTA (Navy • White • Silver only) ===== */
/* Works with your existing HTML: #cta-bottom, .cta-wrap, .cta-title, .cta-actions, .cta-btn, .btn-call, .btn-book, .cta-sub, .cta-note */

/* Section: solid NAVY background, white text */
#cta-bottom{
  position: relative;
  z-index: 50;
  background-color: #004080;   /* NAVY */
  background-image: none;
  color: #ffffff;               /* WHITE */
  padding: 64px 0 78px;
}

/* Centered container */
#cta-bottom .cta-wrap{
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Heading */
#cta-bottom .cta-title{
  color: #ffffff;               /* WHITE */
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 800;
  font-size: clamp(1.7rem, 2.2vw + 1rem, 2.6rem);
  margin: 0 0 22px;
}

/* Buttons row */
#cta-bottom .cta-actions{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
}

/* Button base */
#cta-bottom .cta-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  padding: 16px 26px;
  border-radius: 14px;
  font-size: clamp(1rem, .35vw + .95rem, 1.15rem);
  transition: transform .16s ease, background .16s ease, color .16s ease, border-color .16s ease;
}

/* CALL button: WHITE pill with SILVER border, NAVY text */
#cta-bottom .btn-call{
  background: #ffffff;          /* WHITE */
  color: #004080;               /* NAVY */
  border: 2px solid #c0c0c0;    /* SILVER */
}
#cta-bottom .btn-call i{ font-size: 1.2em; }
#cta-bottom .btn-call:hover{ transform: translateY(-3px); }

/* BOOK button: WHITE outline, inverts on hover */
#cta-bottom .btn-book{
  background: transparent;
  color: #ffffff;               /* WHITE */
  border: 2px solid #ffffff;    /* WHITE */
}
#cta-bottom .btn-book i{ font-size: 1.2em; }
#cta-bottom .btn-book:hover{
  background: #ffffff;          /* WHITE */
  color: #004080;               /* NAVY */
  transform: translateY(-3px);
}

/* Subtext + note */
#cta-bottom .cta-sub{
  text-align: center;
  margin-top: 8px;
  font-weight: 700;
  color: #ffffff;               /* WHITE */
}
#cta-bottom .cta-note{
  text-align: center;
  margin-top: 8px;
  font-size: .86rem;
  color: #c0c0c0;               /* SILVER */
}

/* Keyboard focus (SILVER ring) */
#cta-bottom .cta-btn:focus{
  outline: 3px solid #c0c0c0;   /* SILVER */
  outline-offset: 2px;
}

/* Mobile */
@media (max-width: 575.98px){
  #cta-bottom{ padding: 52px 0 64px; }
  #cta-bottom .cta-actions{ gap: 12px; }
  #cta-bottom .cta-btn{ width: 100%; }
}




/* ===== Payment Methods & Cab Charges (Navy • White • Silver) ===== */
#payments{
  --navy: #05162a;      /* dark navy background */
  --navy-soft:#0b223f;  /* panel navy */
  --navy-accent:#004080;/* brand navy */
  --white:#ffffff;
  --silver:#c0c0c0;
  --glow: rgba(0, 192, 255, .22);

  background:
    radial-gradient(900px 600px at 20% 15%, rgba(0,255,255,.06), transparent 60%),
    radial-gradient(800px 500px at 80% 85%, rgba(0,255,255,.05), transparent 60%),
    var(--navy);
  color: var(--white);
  padding: 64px 0 72px;
}

#payments .pay-container{
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
#payments .pay-head{
  text-align: center;
  margin-bottom: 26px;
}
#payments .pay-head h2{
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 800;
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.2rem);
  color: var(--white);
}
#payments .pay-sub{
  margin: 0 auto;
  max-width: 820px;
  color: #e6eefc;
  opacity: .92;
}

/* Panels grid */
#payments .pay-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.5vw, 28px);
  margin-top: 26px;
}

/* Panel card with subtle neon rim */
#payments .pay-panel{
  position: relative;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--navy-soft), #081a31);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.02) inset,
    0 14px 48px rgba(0,0,0,.35),
    0 0 44px var(--glow);
  padding: 22px 22px 18px;
}
#payments .pay-panel__inner{
  background: linear-gradient(180deg, #0b1f37, #0a1c30);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  padding: clamp(16px, 2vw, 22px);
  min-height: 140px;
  display: grid;
  place-items: center;
}

/* Payment logos row */
#payments .logo-bar{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 2.2vw, 22px);
  flex-wrap: wrap;
}
#payments .logo-bar img{
  height: clamp(83px, 1.4vw, 52px);
  width: auto;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.35));
  object-fit: contain;
}

/* Cabcharge artwork block */
#payments .pay-art img{
  width: 100%;
  max-width: 540px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 36px rgba(0,0,0,.45);
}

/* Caption */
#payments .pay-caption{
  text-align: center;
  margin: 12px 0 0;
  color: #cfe5ff;
  font-weight: 700;
}

/* Compliance note */
#payments .pay-note{
  margin: 20px auto 0;
  text-align: center;
  color: var(--silver);
  font-size: .95rem;
  opacity: .9;
  max-width: 900px;
}

/* Responsive */
@media (max-width: 992px){
  #payments .pay-grid{ grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce){
  #payments *{ animation: none !important; transition: none !important; }
}


@media (max-width: 576px) {
  #payments .logo-bar {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  #payments .logo-bar img {
    max-width: 80%;
    height: auto;
  }

  #payments .pay-art img {
    max-width: 100%;
    height: auto;
  }

  #payments .pay-panel__inner {
    padding: 16px;
    min-height: auto;
  }

  #payments .pay-container {
    padding: 0 12px;
  }
}



/* Section wrapper */
.ribbon-cta{
  padding: 24px 16px;
}

/* Ribbon */
.ribbon{
  max-width: 1200px;
  margin: 0 auto;
  background: var(--navy);
  color: var(--white);
  border-radius: 18px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

/* Title */
.ribbon-title{
  margin: 0;
  font-weight: 800;
  letter-spacing: .02em;
  font-size: clamp(1.05rem, .9rem + 1vw, 1.6rem);
  line-height: 1.3;
}

/* Button */
.btn-quote{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--navy-dark);
  border: 2px solid var(--silver);
  border-radius: 12px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}

.btn-quote:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,.18);
}

.btn-quote .btn-ico{
  display: block;
}

/* Responsive stack */
@media (max-width: 768px){
  .ribbon{
    flex-direction: column;
    align-items: stretch;
  }
  .btn-quote{
    justify-content: center;
  }
}
/* ===== Generic Page Hero (shared across pages) ===== */
.page-hero{
  position: relative;
  min-height: clamp(420px, 46vw, 560px);
  display: grid;
  place-items: center;
  color: var(--white);
  overflow: hidden;
  background: #0e2038 url('image/Sydney-Cover.webp') center/cover no-repeat; /* replace image per page */
}

.page-heroo{
  position: relative;
  min-height: clamp(420px, 46vw, 560px);
  display: grid;
  place-items: center;
  color: var(--white);
  overflow: hidden;
  background: #0e2038 url('image/2025-es-exterior.jpg') center/cover no-repeat; /* replace image per page */
}



.page-hero__overlay{
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgb(0 0 0 / 71%), rgb(0 0 0 / 71%));
}

/* Content container */
.page-hero__inner{
  position: relative;
  z-index: 1;
  max-width: 1100px;
  padding: 32px 2px;
  text-align: center; /* default center for pages that are not About */
}

/* Title */
.page-hero__title{
  margin: 0 0 14px;
  font-weight: 900;
  line-height: 1.1;
  font-size: clamp(1.8rem, 1.2rem + 3vw, 3rem);
  letter-spacing: .02em;
}
.page-hero__title .muted{ color: #e9f1ff; opacity: .9; }
.page-hero__title .accent{
  color: var(--white);
  text-shadow: 0 3px 14px rgba(0,0,0,.25);
  border-bottom: 3px solid rgba(255,255,255,.2);
}

/* Subtitle */
.page-hero__subtitle{
  margin: 0 auto 22px;
  max-width: 860px;
  color: #f4f7fb;
  opacity: .95;
  font-size: clamp(1rem, .2rem + 1vw, 1.2rem);
  line-height: 1.6;
}

/* Actions */
.page-hero__actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 16px;
}
.btn{
  display: inline-flex; align-items: center; gap: 10px;
  border-radius: 14px;
  padding: 14px 22px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  font-size: 1rem;
}
.btn-primary{
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--silver);
}
.btn-primary:hover{ transform: translateY(-2px); }
.btn-outline{
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover{
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

/
/* Responsive spacing */
@media (max-width: 575.98px){
  .page-hero{ min-height: 480px; }
  .btn{ width: 100%; justify-content: center; }
}





about-split{ padding: clamp(48px, 7vw, 88px) 0; }
.about-split .container{ max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Grid */
.about-split__grid{
  display: grid;
  gap: clamp(20px, 3vw, 36px);
  grid-template-columns: 1fr;            /* mobile */
  align-items: start;
}
@media (min-width: 992px){
  .about-split__grid{ grid-template-columns: 1.5fr 1fr; }
}

/* Left content */
.about-split__content{ color: var(--body); }
.about-eyebrow{
  margin: 0 0 10px;
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .15em;
  color: #64738c;
}
.about-title{
  margin: 0 0 12px;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.15;
  font-size: clamp(1.6rem, 1.1rem + 1.6vw, 2.4rem);
}
.lead{
  font-size: clamp(1.05rem, .9rem + .4vw, 1.22rem);
  line-height: 1.7;
  color: var(--body);
  margin-bottom: 12px;
}

/* Bulleted points (subtle ticks) */
.about-points{
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  color: var(--body);
  font-weight: 600;
}
.about-points li{
  position: relative;
  padding-left: 26px;
}
.about-points li::before{
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--navy);
  font-weight: 900;
}

/* Right media card */
.about-split__media{ width: 100%; }
.about-media-card{
  background: var(--white);
  border: 1px solid #e7ecf5;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  /* keep a tall feel even if the image is not very tall on small screens */
  min-height: 420px;
  display: grid;
}
.about-media-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;         /* your tall image fills nicely */
  display: block;
  background: #eaeff6;       /* graceful fallback while loading */
}






.about-pro{ padding: clamp(56px, 7vw, 92px) 0; background: var(--bg-soft); }
.about-pro .container{ max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* Generic card */
.cardX{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.cardX__content{
  padding: clamp(22px, 3.2vw, 34px);
  color: var(--ink);
}

/* Wide media card (who we are) */
.cardX--wide{
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(16px, 2.4vw, 28px);
  align-items: stretch;
  box-shadow: var(--shadow);
}
@media (max-width: 991.98px){
  .cardX--wide{ grid-template-columns: 1fr; }
}

.cardX__media{
  display: grid; min-height: 360px; background: #eaf0f7;
}
.cardX__media img{
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Two cards row for Mission & Vision */
.grid-2cards{
  margin-top: clamp(22px, 3vw, 32px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2.4vw, 28px);
}
@media (max-width: 900px){
  .grid-2cards{ grid-template-columns: 1fr; }
}

/* Headings */
.title-xl{
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 1.1rem + 1.8vw, 2.25rem);
  font-weight: 800;
  color: var(--ink);
}
.title-lg{
  margin: 0 0 8px;
  font-size: clamp(1.25rem, 1rem + .8vw, 1.5rem);
  font-weight: 800;
  color: var(--ink);
}
.title-underline::after{
  content: ""; display: block;
  width: 64px; height: 3px; margin-top: 12px;
  background: var(--navy); border-radius: 3px;
}

/* Body text */
.lead{
  font-size: clamp(1.05rem, .9rem + .35vw, 1.2rem);
  line-height: 1.72;
  color: var(--ink);
  opacity: .95;
}

/* Checklist with custom ticks */
.checklist{
  list-style: none; margin: 14px 0 0; padding: 0;
  display: grid; gap: 10px; color: var(--ink); font-weight: 600;
}
.checklist li{ position: relative; padding-left: 28px; }
.checklist li::before{
  content: ""; position: absolute; left: 0; top: 8px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 0 0 4px rgba(0,64,128,.14);
}
.checklist li::after{
  content: ""; position: absolute; left: 5px; top: 12px;
  width: 8px; height: 4px; border-left: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* Actions (uses your existing .btn styles) */
.actions{ display: flex; flex-wrap: wrap; gap: 12px; margin-top: 14px; }

/* Optional subtle hover */
.cardX:hover{ box-shadow: var(--shadow); transition: box-shadow .2s ease; }








/* ===== About – More Sections ===== */
.about-more{ padding: clamp(48px, 6vw, 80px) 0; background: #fff; }
.about-more .container{ max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* Feature grid */
.feature-grid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 22px);
}
@media (max-width: 980px){ .feature-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .feature-grid{ grid-template-columns: 1fr; } }

.feature-card{
  background: var(--bg-soft, #f6f8fb);
  border: 1px solid var(--line, rgba(10,25,50,.08));
  border-radius: 14px;
  padding: 16px 18px;
}
.feature-card h4{
  margin: 0 0 6px;
  font-weight: 800;
  color: var(--ink, #0f2341);
}

/* Two-column lists */
.two-col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 24px);
  margin-top: 10px;
}
@media (max-width: 820px){ .two-col{ grid-template-columns: 1fr; } }

.bullet{ margin: 0; padding-left: 18px; line-height: 1.7; color: var(--ink, #0f2341); }

/* FAQ */
.faq details{
  border: 1px solid var(--line, rgba(10,25,50,.08));
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--card, #fff);
}
.faq details + details{ margin-top: 10px; }
.faq summary{
  cursor: pointer; list-style: none; font-weight: 800; color: var(--ink, #0f2341);
}
.faq summary::-webkit-details-marker{ display: none; }
.faq details[open]{ box-shadow: 0 8px 24px rgba(10,25,50,.06); }

/* Note text */
.note{
  margin-top: 10px;
  color: var(--muted, #64738c);
  font-size: .95rem;
}


/* Shared containers */
.section-head{ text-align:center; margin-bottom: clamp(20px,3vw,28px); }
.section-head .lead{ color:#4b5a71; max-width: 860px; margin: 8px auto 0; }

/* ============== Which Vehicle ============== */
.fleet-explain{ padding: clamp(44px,6vw,72px) 0; background:#fff; }
.choose-grid{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap: clamp(14px,2vw,20px);
}
@media (max-width:1100px){ .choose-grid{ grid-template-columns: repeat(3,1fr);} }
@media (max-width:820px){ .choose-grid{ grid-template-columns: repeat(2,1fr);} }
@media (max-width:560px){ .choose-grid{ grid-template-columns:1fr;} }

.choose-card{
  border:1px solid rgba(10,25,50,.08);
  border-radius:16px;
  padding:18px 16px;
  background:#f9fbff;
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.choose-card:hover{
  border-color: rgba(0,64,128,.25);
  box-shadow: 0 10px 24px rgba(10,25,50,.10);
  transform: translateY(-2px);
}
.choose-ico{
  width:44px;height:44px;border-radius:12px;
  background:#e8f0ff;color:var(--navy);
  display:grid;place-items:center;margin-bottom:10px;
}
.choose-ico svg{ width:26px;height:26px }
.choose-card h3{ margin:6px 0 8px; color:#0e2d57; font-weight:800; }
.choose-card ul{ margin:0; padding-left:18px; color:#3f5370; }

/* ============== Comparison Table ============== */
.fleet-compare{ padding: clamp(44px,6vw,72px) 0; background:#f6f8fb; }
.table-wrap{ overflow-x:auto; }
.compare-table{
  width:100%; border-collapse: collapse; background:#fff;
  border:1px solid rgba(10,25,50,.08); border-radius:14px; overflow:hidden;
}
.compare-table th, .compare-table td{
  padding:14px 16px; text-align:left; border-bottom:1px solid rgba(10,25,50,.06);
}
.compare-table thead th{
  background:#0b2b56; color:#fff; font-weight:800; letter-spacing:.2px;
}
.compare-table tbody tr:nth-child(even){ background:#fbfdff; }
.table-note{ color:#5c6d82; margin-top:12px; text-align:center; }

/* ============== Accessibility & Extras ============== */
.fleet-extras{ padding: clamp(44px,6vw,72px) 0; background:#fff; }
.extras-grid{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap: clamp(14px,2vw,20px);
}
@media (max-width:1100px){ .extras-grid{ grid-template-columns: repeat(3,1fr);} }
@media (max-width:820px){ .extras-grid{ grid-template-columns: repeat(2,1fr);} }
@media (max-width:560px){ .extras-grid{ grid-template-columns:1fr;} }

.extra-item{
  border:1px solid rgba(10,25,50,.08);
  border-radius:16px; padding:18px 16px; background:#fff;
}
.extra-ico{
  display:inline-grid; place-items:center; width:42px; height:42px;
  border-radius:12px; background:#eaf1ff; color:var(--navy);
  font-size:22px; margin-bottom:8px;
}
.extra-item h3{ margin:6px 0 6px; color:#0e2d57; font-weight:800; }
.extra-item p{ color:#3f5370; }

/* ============== Fleet FAQs ============== */
.fleet-faq{ padding: clamp(44px,6vw,72px) 0; background:#f6f8fb; }
.faq-list{ max-width:900px; margin:0 auto; }
.faq{
  background:#fff; border:1px solid rgba(10,25,50,.08); border-radius:14px;
  padding: 12px 14px; margin-bottom:10px;
}
.faq summary{
  cursor:pointer; font-weight:800; color:#0e2d57; list-style:none;
}
.faq summary::-webkit-details-marker{ display:none; }
.faq-body{ color:#3f5370; margin-top:6px; }

/* ============== CTA ============== */
.fleet-cta{
  padding: clamp(48px,7vw,84px) 0;
  background: linear-gradient(180deg, #0b2b56, #001b38);
  color:#fff;
}
.cta-inner{ display:flex; align-items:center; justify-content:center; }
.cta-text{ max-width: 880px; text-align:center; }
.cta-text h2{ font-weight:900; margin:0 0 8px; }
.cta-text p{ opacity:.95; margin:0 0 14px; }
.cta-actions{ display:flex; gap:10px; justify-content:center; flex-wrap:wrap; }
.cta-actions .btn{ padding:12px 18px; border-radius:12px; }




/* ================================
   Capacity & Size Guide – Responsive
   (no HTML change required)
=================================== */

/* Tablet & below: tighten spacing, font sizes */
@media (max-width: 992px) {
  .compare-table th,
  .compare-table td {
    padding: 12px 14px;
    font-size: 0.98rem;
  }
}

/* <= 820px: convert the table into stacked cards */
@media (max-width: 820px) {
  /* Stop horizontal scroll from the wrapper */
  .table-wrap { overflow: visible; }

  /* Hide the header row */
  .compare-table thead { 
    display: none; 
  }

  /* Turn each row into a card */
  .compare-table,
  .compare-table tbody,
  .compare-table tr,
  .compare-table td {
    display: block;
    width: 100%;
  }

  .compare-table {
    border: none;            /* parent border off (cards get their own) */
    background: transparent;
  }

  .compare-table tbody tr {
    background: #fff;
    border: 1px solid rgba(10,25,50,.10);
    border-radius: 14px;
    padding: 8px 10px;
    margin: 0 0 14px;
    box-shadow: 0 6px 18px rgba(10,25,50,.06);
  }

  .compare-table tbody tr:last-child { margin-bottom: 0; }

  /* Each cell becomes a labeled row within the card */
  .compare-table td {
    border-bottom: 1px solid rgba(10,25,50,.06);
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    text-align: left;
    font-size: 0.98rem;
  }

  .compare-table td:last-child { border-bottom: 0; }

  /* Add labels using nth-child (no data-label needed) */
  .compare-table td:nth-child(1)::before { content: "Vehicle"; }
  .compare-table td:nth-child(2)::before { content: "Passengers"; }
  .compare-table td:nth-child(3)::before { content: "Standard Bags (24″)"; }
  .compare-table td:nth-child(4)::before { content: "Large Bags (28–32″)"; }
  .compare-table td:nth-child(5)::before { content: "Typical Use"; }

  .compare-table td::before {
    color: #0e2d57;          /* navy shade for label */
    font-weight: 800;
    letter-spacing: .2px;
    flex: 0 0 auto;
    min-width: 46%;
  }
}

/* <= 560px: labels above values for long text (e.g., Typical Use) */
@media (max-width: 560px) {
  .compare-table td {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 10px 12px;
  }

  .compare-table td::before {
    min-width: 0;
    width: 100%;
    margin: 0;
  }
}

/* <= 400px: micro adjustments for very small phones */
@media (max-width: 400px) {
  .compare-table tbody tr {
    padding: 6px 8px;
    border-radius: 12px;
  }
  .compare-table td {
    padding: 8px 10px;
    font-size: 0.96rem;
  }
}
/* Contact sections */
    .contact-wrap{padding:clamp(44px,6vw,80px) 0;background:#fff}
    .grid{display:grid;gap:clamp(16px,2.4vw,24px)}
    @media(min-width:992px){.grid-2{grid-template-columns:1.2fr .8fr}}
    .cardX{background:#fff;border:1px solid var(--line);border-radius:16px;box-shadow:0 6px 20px rgba(10,25,50,.05);overflow:hidden}
    .cardX__content{padding:clamp(18px,2.6vw,26px)}
    .title-xl{font-weight:900;color:var(--ink);letter-spacing:.2px;margin:0 0 8px;font-size:clamp(1.4rem,1rem + 1.4vw,2rem)}
    .title-underline:after{content:"";display:block;width:64px;height:3px;margin-top:10px;background:var(--navy);border-radius:2px}
    .lead{color:#ffffff;font-size:clamp(1.02rem,.9rem + .3vw,1.18rem);line-height:1.7}
   /* -----------------------------
   Quick Contact – clean cards
   (drop this after your main CSS)
   Uses your theme colors if set:
   --navy (#004080), --white, --silver
-------------------------------- */

/* Wrapper (optional) */
.quick-area{
  --navy: var(--navy, #004080);
  --ink:  #0f2e5e;
  --muted:#6f7f95;
  --line: #e8eef5;
}

/* Headline underline (use on your h2 if you like) */
.quick-title{
  position: relative;
  margin: 0 0 14px;
  font-weight: 900;
  color: var(--ink);
}
.quick-title::after{
  content: "";
  display: block;
  width: 84px;
  height: 4px;
  margin-top: 10px;
  background: var(--navy);
  border-radius: 999px;
}

/* Auto-fit grid that stays tidy on every screen */
.quick-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  align-items: stretch;
}

/* The card – keep it compact and consistent */
.quick,
.quick-card,
.contact-item{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 16px 14px;
  box-shadow: 0 4px 14px rgba(12,32,64,.06);
  display: flex;
  flex-direction: column;
  min-height: 170px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

/* Accent left bar for a subtle brand touch */
.quick::before,
.quick-card::before,
.contact-item::before{
  content:"";
  position:absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 14px 0 0 14px;
  background: linear-gradient(180deg, var(--navy), #0a58b0);
  opacity:.2;
}

/* Hover polish */
.quick:hover,
.quick-card:hover,
.contact-item:hover{
  transform: translateY(-2px);
  border-color: rgba(0,64,128,.22);
  box-shadow: 0 10px 24px rgba(12,32,64,.10);
}

/* Heading + text in card */
.quick h3,
.quick-card h3,
.contact-item h3{
  margin: 2px 0 8px;
  font-weight: 800;
  font-size: 1.06rem;
  color: var(--ink);
  letter-spacing: .2px;
}

.quick p,
.quick-card p,
.contact-item p{
  margin: 0 0 8px;
  color: #3e5572;
  font-size: .97rem;
  line-height: 1.5;
}

.quick .muted,
.quick-card .muted,
.contact-item .muted{
  color: var(--muted);
  font-size: .94rem;
}

/* Make long emails/urls wrap nicely */
.quick a[href^="mailto"],
.quick a[href^="tel"],
.quick-card a[href^="mailto"],
.quick-card a[href^="tel"],
.contact-item a[href^="mailto"],
.contact-item a[href^="tel"]{
  word-break: break-word;
}

/* Buttons inside cards */
.quick .btn,
.quick-card .btn,
.contact-item .btn{
  margin-top: auto;              /* locks to bottom of card */
  align-self: flex-start;
  padding: 8px 14px;
  line-height: 1.15;
  border-radius: 10px;
  font-size: .94rem;
}

/* Theme button styles */
.quick .btn-primary,
.quick-card .btn-primary,
.contact-item .btn-primary{
  background: var(--navy);
  border: 2px solid var(--navy);
  color: #fff;
}
.quick .btn-primary:hover,
.quick-card .btn-primary:hover,
.contact-item .btn-primary:hover{
  background: #002e5e;
  border-color:#002e5e;
}

.quick .btn-outline,
.quick-card .btn-outline,
.contact-item .btn-outline{
  background: #fff;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.quick .btn-outline:hover,
.quick-card .btn-outline:hover,
.contact-item .btn-outline:hover{
  background: var(--navy);
  color: #fff;
}

/* Small icon (optional) */
.quick-ico{
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: #eaf2ff;
  color: var(--navy);
  margin-bottom: 6px;
}
.quick-ico svg,.quick-ico i{ width: 18px; height: 18px; }

/* ---------- Responsive tweaks ---------- */
@media (max-width: 720px){
  .quick-grid{ gap: 14px; }
  .quick, .quick-card, .contact-item{ padding: 14px 14px 12px; }
  .quick h3{ font-size: 1rem; }
  .quick p{ font-size: .95rem; }
}

@media (max-width: 420px){
  .quick-grid{ grid-template-columns: 1fr; }
  .quick, .quick-card, .contact-item{ min-height: 0; }
}

    /* Hours & address */
    .hours{width:100%;border-collapse:collapse;border-radius:12px;overflow:hidden}
    .hours th,.hours td{padding:10px 12px;border-bottom:1px solid rgba(10,25,50,.06);text-align:left}
    .hours thead th{background:#0b2b56;color:#fff}
    .muted{color:var(--muted)}
    /* Contact form */
    .form-card{background:#fff;border:1px solid var(--line);border-radius:16px;box-shadow:var(--shadow)}
    .form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
    @media(max-width:700px){.form-grid{grid-template-columns:1fr}}
    .form-label{font-weight:800;color:#0e2d57;margin-bottom:6px}
    .form-control,.form-select,textarea{border:1.5px solid #c9d2e3;border-radius:10px;padding:12px 12px}
    .form-control:focus,.form-select:focus,textarea:focus{border-color:var(--navy);box-shadow:0 0 0 3px rgba(0,64,128,.12);outline:0}
    .help{font-size:.92rem;color:#5b6d86}
    .consents{display:grid;gap:10px;margin-top:6px}
    .consents label{display:flex;gap:10px;align-items:flex-start}
    .consents input[type="checkbox"]{margin-top:3px}
    .note{color:#5a6d88;font-size:.95rem;margin-top:8px}
    .alert-tip{background:#f6f9ff;border:1px dashed #b9c8e3;border-radius:12px;padding:12px}
    /* Map */
    .map-card iframe{width:100%;height:380px;border:0;border-radius:12px}
    /* Footer bar CTA */
    .cta-bar{background:linear-gradient(180deg,#0b2b56,#001a36);color:#fff;padding:22px 0}
    .cta-bar .row{row-gap:10px}
    .cta-bar .btn{border-radius:10px}
    /* Accessibility helpers */
    .sr-only{position:absolute;left:-9999px}
	
	
	
	
	/* Contact Hero */
.contact-hero{
  position: relative;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(11,31,58,.92), rgba(11,31,58,.88)),
    radial-gradient(1200px 600px at 80% -10%, rgba(0,64,128,.35), transparent 60%),
    var(--navy);
  /* Optional: add a background photo
     background-image:
       linear-gradient(180deg, rgba(11,31,58,.92), rgba(11,31,58,.88)),
       url('image/contact-hero.jpg'); 
     background-size: cover; background-position: center; 
  */
  text-align: center;
  padding: clamp(56px, 8vw, 96px) 20px;
}

.contact-hero__inner{
  max-width: 960px;
  margin: 0 auto;
}

.contact-hero__eyebrow{
  margin: 0 0 8px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .85;
}

.contact-hero__title{
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 1.2rem + 2.4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
}

.contact-hero__lead{
  margin: 0 auto 22px;
  max-width: 720px;
  font-size: clamp(1rem, .95rem + .4vw, 1.15rem);
  line-height: 1.6;
  opacity: .95;
}

/* Actions */
.contact-hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 6px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}

.btn-light{
  background: var(--white);
  color: var(--navy);
  border-color: var(--silver);
}
.btn-light:hover{
  transform: translateY(-2px);
}

.btn-outline-light{
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-light:hover{
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

/* Small screens: buttons full-width for easy tapping */
@media (max-width: 520px){
  .btn{ width: 100%; }
}




/* About Hero */
.about-hero{
  position:relative;
  color:var(--white);
  background:
    linear-gradient(180deg, rgba(11,31,58,.92), rgba(11,31,58,.88)),
    radial-gradient(1200px 600px at 15% -10%, rgba(0,64,128,.35), transparent 60%),
    var(--navy);
  /* Optional photo: uncomment & replace file
  background-image:
    linear-gradient(180deg, rgba(11,31,58,.92), rgba(11,31,58,.88)),
    url('image/about-hero.jpg');
  background-size:cover; background-position:center;
  */
  text-align:center;
  padding:clamp(56px, 8vw, 96px) 20px;
}

.about-hero__inner{
  max-width:960px;
  margin:0 auto;
}

.about-hero__eyebrow{
  margin:0 0 8px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  opacity:.85;
}

.about-hero__title{
  margin:0 0 10px;
  font-size:clamp(1.8rem, 1.2rem + 2.4vw, 3rem);
  font-weight:900;
  line-height:1.15;
}

.about-hero__lead{
  margin:0 auto 22px;
  max-width:760px;
  font-size:clamp(1rem, .95rem + .4vw, 1.15rem);
  line-height:1.6;
  opacity:.96;
}

.about-hero__actions{
  display:flex;flex-wrap:wrap;gap:12px;justify-content:center;margin-top:6px;
}

/* Mobile: full-width buttons for easy tapping */
@media (max-width:520px){
  .btn{ width:100%; }
}




/* Section shell */
.airport-transfers{
  padding: clamp(32px, 5vw, 72px) 16px;
  background: linear-gradient(0deg, #f7f9fc, #ffffff);
}
.airport-transfers__wrap{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
}

/* Media panel */
.airport-transfers__media{
  margin:0; padding:0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.06), 0 6px 18px rgba(0,0,0,.04);
  background: #eef3f9;
  min-height: 320px;
}
.airport-transfers__media img{
  display:block; width:100%; height:100%; object-fit:cover;
}

/* Content */
.eyebrow{
  font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  color:#385a88; margin:0 0 8px;
}
.airport-transfers__title{
  margin:0 0 10px; color:var(--ink);
  font-size: clamp(1.6rem, 1rem + 2.2vw, 2.4rem);
  font-weight: 900;
}
.airport-transfers__lead{
  margin:0 0 16px; color:#1c2740; line-height:1.65;
  font-size: clamp(1rem, .95rem + .4vw, 1.125rem);
}

/* Features */
.airport-transfers__features{
  margin:0 0 18px; padding:0; list-style:none;
  display:grid; gap:10px;
}
.airport-transfers__features li{
  position:relative; padding-left:30px; line-height:1.5; color:#24324d; font-weight:600;
}
.airport-transfers__features li::before{
  content:""; position:absolute; left:0; top:.45em;
  width:18px; height:18px; border-radius:50%;
  background: radial-gradient(circle at 40% 40%, #e6f2ff 0 45%, #b9d9ff 46% 100%);
  box-shadow: 0 0 0 2px rgba(0,64,128,.15);
}
.airport-transfers__features li::after{
  content:""; position:absolute; left:5px; top:.65em;
  width:8px; height:4px; border-left:2px solid var(--navy); border-bottom:2px solid var(--navy);
  transform: rotate(-45deg);
}

/* CTAs */
.airport-transfers__ctas{
  display:flex; gap:12px; flex-wrap:wrap; margin: 6px 0 12px;
}

/* Trust row */
.airport-transfers__trust{
  display:flex; flex-wrap:wrap; gap:10px 16px; color:#2a3b58;
  font-weight:700; margin-bottom:10px;
}
.airport-transfers__trust span{
  background:#eef5ff; border:1px solid rgba(0,64,128,.15);
  padding:6px 10px; border-radius:999px; font-size:.95rem;
}

/* Note */
.airport-transfers__note{
  margin:0; color:#5b6a82; font-size:.95rem;
}

/* Responsive */
@media (max-width: 960px){
  .airport-transfers__wrap{
    grid-template-columns: 1fr;
  }
  .airport-transfers__media{
    order: -1; /* image on top for mobile */
    min-height: 260px;
  }
  .btn{ width:100%; }
}


.btn-navy{ background:var(--navy); color:var(--white); border-color:var(--navy); }
.btn-navy:hover{ transform:translateY(-2px); background:#00336a; }
.btn-outline-navy{ background:transparent; color:var(--navy); border-color:var(--navy); }
.btn-outline-navy:hover{ background:var(--navy); color:var(--white); transform:translateY(-2px); }


/* ---------- Grid ---------- */
.why-maxi__grid{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(1rem, 2.8vw, 2rem);
  align-items: center;
}



/* Top spacing for the "Why Maxi" section */
.section.why-maxi{
  margin-top: clamp(24px, 4vw, 56px);       /* responsive top margin */
  scroll-margin-top: clamp(72px, 8vw, 96px); /* makes in-page links account for a sticky header */
}

/* (Optional) tighten a bit on very small screens */
@media (max-width: 480px){
  .section.why-maxi{
    margin-top: 20px;
  }
}


/* ---------- Section wrapper ---------- */
.sydmbs{
  background: var(--bg-soft);
  padding: clamp(32px, 5vw, 72px) 0;
}
.sydmbs__inner{
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 20px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(18px, 3vw, 28px);
  align-items: center;
}

/* ---------- Media ---------- */
.sydmbs__media{
  margin: 0;
  border-radius: var(--r16);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  background: #0b1f3a;
}
.sydmbs__media img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Content ---------- */
.sydmbs__content{ padding: 4px 0; }
.sydmbs__eyebrow{
  color: var(--navy);
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .85rem;
  margin: 0 0 4px;
}
.sydmbs__title{
  font-size: clamp(1.6rem, 1.1rem + 2.2vw, 2.2rem);
  line-height: 1.2;
  margin: 0 0 10px;
  color: var(--navy);
}
.sydmbs__lead{
  color: var(--ink);
  line-height: 1.65;
  font-size: clamp(1rem, .95rem + .4vw, 1.125rem);
  margin: 0 0 14px;
}

/* ---------- Bulleted list ---------- */
.sydmbs__list{
  margin: 8px 0 16px;
  padding: 0;
  list-style: none;
}
.sydmbs__list li{
  position: relative;
  padding-left: 28px;
  margin: .5rem 0;
  color: #2f3b4f;
  line-height: 1.55;
  font-size: 1rem;
}
.sydmbs__list li::before{
  content: "";
  position: absolute;
  left: 0; top: .45rem;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--navy);
  mask: url('data:image/svg+xml;utf8,\
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">\
<path fill="white" d="M20 6L9 17l-5-5"/>\
</svg>') center/14px 14px no-repeat;
}

/* ---------- CTA buttons ---------- */
.sydmbs__cta{
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin: 6px 0 8px;
}
.sydmbs-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.sydmbs-btn--primary{
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0,64,128,.15);
}
.sydmbs-btn--primary:hover{ transform: translateY(-2px); }
.sydmbs-btn--outline{
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.sydmbs-btn--outline:hover{
  background: var(--navy);
  color: var(--white);
}

/* ---------- Notes ---------- */
.sydmbs__note{
  color: var(--muted);
  font-size: .92rem;
  margin: 4px 0 0;
  max-width: 760px;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px){
  .sydmbs__inner{ grid-template-columns: 1fr; }
  .sydmbs__media{ order: -1; } /* show image first on mobile (optional) */
}
@media (max-width: 560px){
  .sydmbs-btn{ width: 100%; }
}

/* ---------- Feature grid ---------- */
.feature-grid{
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: .9rem;
  margin: .75rem 0 0;
  padding: 0;
  list-style: none;
}
.feature{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: .65rem;
  padding: .85rem .9rem;
  border: 1px solid #e7edf6;
  border-radius: var(--r-16);
  background:#fff;
  box-shadow: var(--shadow-1);
}
.feature__icon{
  width:44px; height:44px; display:grid; place-items:center;
  background: linear-gradient(180deg,#e9f1ff,#dfeaff);
  border:1px solid #d2ddf3; color: var(--navy);
  border-radius: 12px;
}
.feature__icon svg{ width:22px; height:22px; stroke-width:1.8; }
.feature__title{ margin:0 0 .15rem; font-weight:800; color:var(--navy-900); font-size:1rem; }
.feature__text{ margin:0; color: var(--ink-70); line-height:1.5; }

/* ---------- Checklist ---------- */
.mt-24{ margin-top: 1.1rem; }
.checklist{ margin:.35rem 0 0; padding:0; list-style:none; }
.checklist li{
  position: relative; padding-left: 26px; margin:.45rem 0; color: var(--ink);
}
.checklist li::before{
  content:""; position:absolute; left:0; top:.35rem;
  width:16px; height:16px; border-radius:50%;
  background: var(--navy);
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="white"><path d="M20 6L9 17l-5-5"/></svg>') center/14px 14px no-repeat;
}

/* ---------- CTA ---------- */
.cta-row{ display:flex; gap:.7rem; flex-wrap:wrap; margin: .9rem 0 0; }
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
  padding:.8rem 1rem; border-radius: 14px; border:2px solid transparent;
  font-weight: 800; text-decoration:none; transition: .18s ease;
}
.btn:focus-visible{ outline:3px solid #cfe2ff; outline-offset: 2px; }
.btn-primary{ background:var(--navy); color:#fff; box-shadow: var(--shadow-2); }
.btn-primary:hover{ transform: translateY(-1px); filter:brightness(1.06); }
.btn-outline{ color:var(--navy); background:#fff; border-color: var(--navy); }
.btn-outline:hover{ background:var(--navy); color:#fff; }

/* ---------- Media card ---------- */
.media-card{
  margin:0; background:#0b1f3a; border-radius: var(--r-16);
  overflow: hidden; box-shadow: var(--shadow-2); color:#e8eefc;
}
.media-card img{ width:100%; height:auto; display:block; }
.media-card figcaption{
  padding:.65rem .9rem; font-size:.92rem; background: linear-gradient(180deg,#0b1f3a,#08203b);
}

/* ---------- Notes ---------- */
.note{ color: var(--ink-70); font-size:.95rem; margin:.8rem 0 0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .why-maxi__grid{ grid-template-columns: 1fr; }
  .feature-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 560px){
  .btn{ width:100%; }
}

/* Section shell */
.maxi-airport{
  padding: clamp(36px,5vw,80px) 16px;
  background: linear-gradient(0deg, #f7f9fc, #ffffff);
}
.maxi-wrap{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(20px, 4vw, 56px);
  align-items:center;
}

/* Content */
.eyebrow{
  margin:0 0 8px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#385a88;
}
.maxi-title{
  margin:0 0 10px;
  font-size: clamp(1.6rem, 1rem + 2.2vw, 2.4rem);
  font-weight:900;
  color:var(--ink);
}
.maxi-lead{
  margin:0 0 16px;
  color:#203251;
  line-height:1.65;
  font-size: clamp(1rem, .96rem + .4vw, 1.125rem);
}

/* Features list */
.maxi-features{
  margin:0 0 18px;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.maxi-features li{
  position:relative;
  padding-left:30px;
  color:#24324d;
  font-weight:600;
  line-height:1.5;
}
.maxi-features li::before{
  content:"";
  position:absolute; left:0; top:.45em;
  width:18px; height:18px; border-radius:50%;
  background: radial-gradient(circle at 40% 40%, #e6f2ff 0 45%, #b9d9ff 46% 100%);
  box-shadow: 0 0 0 2px rgba(0,64,128,.15);
}
.maxi-features li::after{
  content:""; position:absolute; left:5px; top:.65em;
  width:8px; height:4px;
  border-left:2px solid var(--navy);
  border-bottom:2px solid var(--navy);
  transform: rotate(-45deg);
}

/* CTAs */
.maxi-ctas{
  display:flex; gap:12px; flex-wrap:wrap;
  margin: 6px 0 18px;
}

/* Cards for 7 / 11 seaters */
.maxi-cards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
  margin-bottom: 6px;
}
@media (max-width:700px){
  .maxi-cards{ grid-template-columns:1fr; }
}

.maxi-card{
  position:relative;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px;
  box-shadow:0 6px 18px rgba(10,25,50,.06);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.maxi-card:hover{
  transform: translateY(-2px);
  border-color: rgba(0,64,128,.22);
  box-shadow: 0 10px 26px rgba(10,25,50,.10);
}
.maxi-ico{
  width:40px;height:40px;border-radius:12px;
  display:grid;place-items:center;
  background:#eaf2ff;color:var(--navy);
  font-size:20px;margin-bottom:8px;
}
.maxi-card h3{
  margin:2px 0 8px;
  font-weight:800; color:#0e2d57; font-size:1.06rem;
}
.mini-list{
  margin:0; padding-left:18px; color:#3f5370;
}

/* Media panel */
.maxi-media{
  margin:0; padding:0;
  border-radius:18px; overflow:hidden;
  background:#eef3f9;
  box-shadow: 0 18px 40px rgba(0,0,0,.06), 0 6px 18px rgba(0,0,0,.04);
  min-height:320px;
}
.maxi-media img{
  display:block; width:100%; height:100%; object-fit:cover;
}

/* Note */
.maxi-note{
  margin:8px 0 0; color:var(--muted); font-size:.95rem;
}

/* Responsive */
@media (max-width: 980px){
  .maxi-wrap{ grid-template-columns:1fr; }
  .maxi-media{ order:-1; min-height:260px; }
  .btn{ width:100%; } /* if you use your existing .btn styles */
}



/* Section shell */
.why-airport{
  padding: clamp(36px, 6vw, 84px) 16px;
  background: linear-gradient(0deg, #f7f9fc, #ffffff);
}
.why-wrap{ max-width:1200px; margin:0 auto; }

/* Header */
.why-head{ text-align:center; margin:0 auto clamp(18px, 3.2vw, 28px); max-width:900px; }
.why-eyebrow{
  margin:0 0 8px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  color:#385a88;
}
.why-title{
  margin:0 0 10px; color:var(--ink);
  font-size: clamp(1.6rem, 1rem + 2.2vw, 2.3rem); font-weight:900; line-height:1.15;
}
.why-lead{
  margin:0; color:#223455; line-height:1.65;
  font-size: clamp(1rem, .95rem + .4vw, 1.15rem);
}

/* Grid of benefits */
.why-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: clamp(14px, 2.4vw, 22px);
  margin-top: clamp(16px, 2.6vw, 26px);
}
@media (max-width: 992px){
  .why-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .why-grid{ grid-template-columns: 1fr; }
}

/* Cards */
.why-card{
  position:relative;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px 16px 14px;
  box-shadow:0 6px 18px rgba(10,25,50,.06);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  display:flex; flex-direction:column; min-height:160px;
}
.why-card:hover{
  transform: translateY(-2px);
  border-color: rgba(0,64,128,.22);
  box-shadow: 0 10px 26px rgba(10,25,50,.10);
}

/* Icon badge */
.why-ico{
  width:44px; height:44px; border-radius:12px; margin-bottom:8px;
  display:grid; place-items:center; font-size:20px;
  color:var(--navy);
  background: linear-gradient(180deg, #eaf2ff, #d5e6ff);
  box-shadow: inset 0 0 0 2px rgba(0,64,128,.12);
}

.why-card h3{
  margin:2px 0 6px; font-weight:800; color:#0e2d57; font-size:1.06rem; letter-spacing:.2px;
}
.why-card p{
  margin:0; color:#3e5572; font-size:.97rem; line-height:1.55;
}

/* Actions */
.why-ctas{
  display:flex; gap:12px; flex-wrap:wrap; justify-content:center;
  margin: clamp(16px, 2.8vw, 26px) 0 8px;
}
@media (max-width:560px){ .why-ctas .btn{ width:100%; } }

/* Note */
.why-note{
  text-align:center; margin:0 auto; max-width:900px;
  color:var(--muted); font-size:.95rem;
}




/* --------- Pre-Footer CTA --------- */
.prefooter-cta{
  background:
    linear-gradient(180deg, rgba(0,64,128,.95), rgba(0,64,128,.92));
  color:#fff;
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 14px 16px;               /* compact */
}
.prefooter-cta__inner{
  max-width:1200px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; flex-wrap:wrap;
}
.prefooter-cta__text{
  margin:0; font-weight:900; letter-spacing:.2px;
  font-size: clamp(1rem, .95rem + .25vw, 1.1rem);
}
.prefooter-cta__sub{
  display:inline-block; margin-left:10px; font-weight:600; opacity:.9;
  font-size:.95em;
}

/* Actions */
.prefooter-cta__actions{
  display:flex; gap:10px; flex-wrap:wrap;
}

/* Mobile: stack & full-width buttons for easy taps */
@media (max-width: 640px){
  .prefooter-cta__inner{ flex-direction:column; align-items:stretch; text-align:center; }
  .prefooter-cta__actions{ justify-content:center; }
  .btn-compact{ width:100%; }
  .prefooter-cta__sub{ display:block; margin:6px 0 0; }
}

/* Optional: subtle divider above footer if your footer is white */
footer{ border-top:1px solid var(--line); }




/* Section */
.reviews-airport{
  padding: clamp(36px,6vw,84px) 16px;
  background: linear-gradient(0deg,#f7f9fc,#ffffff);
  color:#10233f;
}
.reviews__wrap{ max-width:1200px; margin:0 auto; }

/* Header */
.reviews__head{ text-align:center; max-width:900px; margin:0 auto clamp(18px,3vw,28px); }
.reviews__eyebrow{
  margin:0 0 6px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:#385a88;
}
.reviews__title{
  margin:0 0 8px; font-weight:900; color:var(--ink);
  font-size:clamp(1.6rem,1rem + 2.2vw,2.3rem);
}
.reviews__lead{
  margin:0; color:#223455; line-height:1.65;
  font-size:clamp(1rem,.95rem + .4vw,1.12rem);
}

/* Grid */
.reviews__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: clamp(14px,2.4vw,22px);
  margin-top: clamp(16px,2.6vw,26px);
}
@media (max-width: 992px){ .reviews__grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .reviews__grid{ grid-template-columns: 1fr; } }

/* Card */
.review{
  background:#fff; border:1px solid var(--line); border-radius:16px;
  padding:16px; box-shadow:0 6px 18px rgba(10,25,50,.06);
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  display:flex; flex-direction:column; gap:10px; min-height:180px;
}
.review:hover{ transform:translateY(-2px); border-color:rgba(0,64,128,.22); box-shadow:0 10px 26px rgba(10,25,50,.10); }

/* Card header */
.review__top{ display:flex; align-items:center; gap:12px; }
.review__avatar{
  width:44px; height:44px; border-radius:50%;
  display:grid; place-items:center; font-weight:900; letter-spacing:.2px;
  color:var(--navy); background:#eaf2ff; flex:0 0 auto;
}
.review__name{ margin:0; font-weight:900; color:#0e2d57; font-size:1rem; }
.review__meta{ margin:2px 0 0; color:#6f7f95; font-size:.92rem; }
.review__stars{ margin-left:auto; color:#ffb400; font-size:1rem; }

/* Body */
.review__text{ margin:0; color:#3e5572; font-size:.98rem; line-height:1.6; }
.review__tag{
  margin:0; align-self:flex-start; font-size:.9rem; font-weight:700; color:#2a3b58;
  background:#eef5ff; border:1px solid rgba(0,64,128,.15); border-radius:999px; padding:6px 10px;
}

/* CTA row */
.reviews__cta{
  display:flex; gap:12px; flex-wrap:wrap; justify-content:center;
  margin: clamp(18px,3vw,28px) 0 8px;
}
@media (max-width:560px){ .reviews__cta .btn{ width:100%; } }

/* Disclaimer */
.reviews__disclaimer{
  text-align:center; margin:0 auto; max-width:900px;
  color:var(--muted); font-size:.95rem;
}



/* ===== Section styling ===== */
.airport-syd-intro{
  padding: clamp(36px, 6vw, 72px) 16px;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.airport-syd__wrap{
  max-width: 1100px;
  margin: 0 auto;
}

.airport-syd__head{
  margin-bottom: clamp(12px, 2.4vw, 20px);
}
.airport-syd__title{
  margin: 0;
  color: var(--navy);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: .2px;
  font-size: clamp(1.75rem, 1.15rem + 2vw, 2.4rem);
}

/* content block */
.airport-syd__content{
  color: var(--ink);
  font-size: clamp(1rem, .95rem + .25vw, 1.1rem);
  line-height: 1.75;
  max-width: 950px;
}
.airport-syd__content p{ margin: 0 0 14px; }
.airport-syd__content p:last-child{ margin-bottom: 0; }

/* CTA row */
.airport-syd__cta{
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: clamp(18px, 3vw, 28px);
}
@media (max-width: 560px){
  .airport-syd__cta .btn{ width: 100%; }
}

/* Optional subtle left accent (remove if not needed) */
.airport-syd__wrap{
  position: relative;
}
.airport-syd__wrap::before{
  content:"";
  position: absolute; left: -8px; top: 0; bottom: 0;
  width: 4px; border-radius: 4px;
  background: linear-gradient(180deg, var(--navy), #0060bf);
  opacity: .15;
}


.faq-block { padding: clamp(28px, 5vw, 56px) 16px; }
.faq-block .badge{
  background:#004080; color:#fff; padding:6px 10px; border-radius:6px;
}
.faq-list details{
  background:#f4f6f9; border:1px solid rgba(10,25,50,.08);
  border-radius:10px; margin-bottom:12px; overflow:hidden;
}
.faq-list summary{
  list-style:none; cursor:pointer; padding:16px 18px;
  font-weight:700; color:#0f1b2d;
}
.faq-list summary::-webkit-details-marker{ display:none; }
.faq-list details[open] summary{ background:#eef2f7; }
.faq-body{ padding:0 18px 16px; color:#213047; line-height:1.65; }
.faq-body p{ margin:10px 0; }
.faq-body ul{ margin:8px 0 0 18px; }


/* Center the F.A.Q. title only in the FAQ section */
#airport-faq .title-xl{
  text-align: center;
  margin: 0 auto 20px;      /* centers within the container and adds spacing below */
}

/* Make the blue badge sit nicely centered */
#airport-faq .title-xl .badge{
  display: inline-block;    /* ensures it respects text-align:center */
  padding: 6px 12px;
  border-radius: 6px;
  line-height: 1;
}


/* Optional fallback if something still overrides text alignment */
@supports (display: flex){
  #airport-faq .title-xl{
    display: flex;
    justify-content: center;
  }
}

/* Hero */
.hero-maxi{background:linear-gradient(180deg, #082243 0%, #0e2a50 60%, #0e2a50 100%);color:#eaf1ff}
.hero-maxi__inner{display:grid;grid-template-columns: 1.1fr 1fr;gap:32px;align-items:center;padding:40px 20px}
.hero-maxi__content h1{font-size:clamp(2rem,1.4rem + 2vw,3rem);margin:0 0 10px}
.hero-bullets{margin:14px 0 18px;padding-left:18px}
.hero-bullets li{margin:6px 0}
.cta-row{display:flex;gap:12px;flex-wrap:wrap;margin-top:8px}
.disclaimer{font-size:.9rem;opacity:.9;margin-top:10px}

/* Cards & grids */
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.card{background:#fff;border:1px solid #e7edf5;border-radius:14px;padding:18px}
.card h3{margin:0 0 8px;color:var(--ink)}

/* Capacity */
.capacity-wrap{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.capacity-card{background:#fff;border:1px solid #e7edf5;border-radius:14px;padding:18px}
.capacity-card h3{margin-top:0}

/* Steps */
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:8px}
.step{background:#fff;border:1px solid #e7edf5;border-radius:14px;padding:18px;position:relative}
.step__num{
  position:absolute;top:-12px;left:-12px;background:var(--navy);color:#fff;width:34px;height:34px;
  border-radius:50%;display:grid;place-items:center;font-weight:800
}

/* FAQ */
.faq details{background:#fff;border:1px solid #e7edf5;border-radius:12px;margin:10px 0}
.faq summary{cursor:pointer;list-style:none;padding:14px 16px;font-weight:700;color:var(--ink)}
.faq summary::-webkit-details-marker{display:none}
.faq details[open] summary{border-bottom:1px solid #e7edf5}
.faq details > div{padding:14px 16px;color:var(--ink-60)}

/* Final CTA */
.final-cta{background:#f0f5ff}
.final-cta__inner{ text-align:center }
.final-cta .title{margin-bottom:6px}

/* Responsive */
@media (max-width: 1024px){
  .grid-3,.capacity-wrap,.steps{grid-template-columns:1fr 1fr}
  .hero-maxi__inner{grid-template-columns:1fr; text-align:left}
}
@media (max-width: 640px){
  .grid-3,.capacity-wrap,.steps{grid-template-columns:1fr}
  .cta-row{justify-content:flex-start}
  .hero-maxi__media{order:-1}
}

/* ===== Maxi Cab Sydney – Intro (scoped, no conflicts) ===== */
.maxi-syd-intro{
  /* Local theme tokens (fall back to your globals if present) */
  --ms-navy:  var(--navy, #004080);
  --ms-white: var(--white, #ffffff);
  --ms-silver:var(--silver, #c0c0c0);
  --ms-ink:   #142033;
  --ms-muted: #5f6b85;
  --ms-bg:    #f7f9fc;

  background: var(--ms-bg);
  padding: clamp(28px, 5vw, 64px) 0;
  scroll-margin-top: 88px; /* helps anchor links with sticky headers */
}

.maxi-syd__wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.maxi-syd__head{ margin: 0 0 10px; }

.maxi-syd__title{
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.2rem);
  line-height: 1.2;
  font-weight: 800;
  color: var(--ms-navy);
  display: inline-block;
  position: relative;
}
.maxi-syd__title::after{
  content:"";
  display:block;
  width: 72px;
  height: 3px;
  margin-top: 10px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--ms-navy), #1a5599);
}

.maxi-syd__content{
  max-width: 900px;
  color: var(--ms-ink);
}
.maxi-syd__content p{
  margin: 0 0 12px;
  line-height: 1.7;
  font-size: clamp(1rem, .95rem + .3vw, 1.1rem);
}

/* CTA row */
.maxi-syd__cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

/* Buttons (scoped so they don't override your global .btn) */
.maxi-syd-intro .btn{
  border-radius: 12px;
  font-weight: 800;
  padding: 12px 18px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.maxi-syd-intro .btn:focus-visible{ outline: 3px solid #cfe2ff; outline-offset: 2px; }

.maxi-syd-intro .btn-navy{
  background: var(--ms-navy);
  color: var(--ms-white);
}
.maxi-syd-intro .btn-navy:hover{ transform: translateY(-2px); }

.maxi-syd-intro .btn-outline-navy{
  background: transparent;
  color: var(--ms-navy);
  border-color: var(--ms-navy);
}
.maxi-syd-intro .btn-outline-navy:hover{
  background: var(--ms-navy);
  color: var(--ms-white);
}

/* Responsive */
@media (max-width: 560px){
  .maxi-syd__cta .btn{ width: 100%; }
}


@media (max-width: 600px) {
  .hero-sectiona {
    min-height: 80vh;          /* Reduce height for mobile */
    padding: 15px 10px 10px;   /* Adjust padding for smaller screens */
    background-position: center top; /* Adjust background position */
  }
}
@media (max-width: 600px) {
  .btn-navy, 
  .btn.btn-primary {
    width: 100%; 	/* Make button full width */
	max-width: 280px;
    padding: 1rem 0;     /* Increase vertical padding for better tap targets */
    font-size: 1.1rem;   /* Optional: slightly larger text for readability */
    border-radius: 8px;  /* Keep border radius consistent */
  }
  
.btn-outline-light,
.btn-custom {
  width: 100%;
  max-width: 280px;
  padding: 1rem 0;
  font-size: 1.1rem;
  border-radius: 8px;
  border: 2px solid #ffffff;
  background-color: transparent;
  color: #fff;
  transition: all 0.3s ease;
  text-align: center;
}

/* Hover effect */
.btn-outline-light:hover,
.btn-custom:hover {
  background-color: #ffffff;  /* Light background */
  color: #000000;             /* Dark text for contrast */
  text-decoration: none;
}

}

  
/* Hidden on desktop */
.mobile-booking-banner {
  display: none;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  color: #fff; /* White text */
  border: 2px solid rgba(255, 255, 255, 0.7); /* white border with transparency */
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.3); /* subtle white glow */
  width: fit-content;
  margin: 20px auto;
  font-family: 'Segoe UI', sans-serif;
  animation: pulseAnimation 1s infinite;
  background-color: transparent; /* no bg */
}

/* Icon with pulse */
.mobile-pulse-icon {
  font-size: 2rem;
  color: #fff; /* white icon */
}

/* Main text block */
.mobile-pulse-text {
  line-height: 1.3;
  text-align: left;
}

/* Label above the number */
.mobile-label {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}

/* Phone number styling */
.mobile-number a {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 800;
}
/* Pulse Animation */
@keyframes pulseAnimation {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.85; }
  100% { transform: scale(1); opacity: 1; }
}
.pulse-fast {
  animation: pulseAnimation 0.8s infinite;
}
/* Show only on mobile */
@media (max-width: 768px) {
  .mobile-booking-banner {
    display: flex;
  }
}



@media (max-width: 767px) {
  .hero-section__buttons {
    display: none !important;
  }
}





/* Mobile-specific styles */
@media (max-width: 767px) {

  /* Container padding for narrow screens */
  .maxi-syd__wrap {
    padding: 0 12px;
  }

  /* Title adjustments */
  .maxi-syd__title {
    font-size: 1.5rem;  /* slightly smaller, but clear */
    line-height: 1.3;
    margin-bottom: 12px;
  }

  /* Paragraph text adjustments */
  .maxi-syd__content p {
    font-size: 1.05rem;  /* readable size */
    line-height: 1.5;
    margin-bottom: 16px;
  }

  /* Images a bit smaller with margin adjustments */
  .maxi-syd__content img {
    max-width: 85%;   /* reduce size for better layout */
    margin: 20px auto 30px;
    border-radius: 8px;  /* optional: soft rounded corners */
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); /* subtle shadow for depth */
  }

  /* Buttons stacked full width with spacing */
  .maxi-syd__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
  }

  .maxi-syd__cta a.btn {
    width: 100%;
    max-width: 320px;
    font-size: 1.15rem;
    padding: 14px 0;
    border-radius: 10px;
  }
}

.hero-maxi__media {
  width: 100%;           /* full width of parent */
  max-width: 100vw;      /* no wider than viewport */
  overflow: hidden;      /* prevent overflow */
  margin: 0 auto 24px;   /* center and bottom margin */
  display: block;
}

.hero-maxi__media img {
  width: 100%;           /* responsive image, fills container */
  height: auto;          /* maintain aspect ratio */
  display: block;        /* remove inline spacing */
  max-width: 100vw;      /* ensure no overflow */
  border-radius: 8px;    /* optional rounding */
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .hero-maxi__media {
    max-width: 90vw;     /* slightly smaller than full width */
    margin-bottom: 20px;
  }
}





/* Section Styles for Thank You */
.thank-you-section {
  background-color: #f4f6f9; /* Light grayish background */
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}

/* Main Wrapper */
.thank-you-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  min-height: 60vh; /* Prevent overflow into footer */
}

.thank-you-box {
  background-color: #fff;
  border-radius: 15px;
  padding: 40px;
  max-width: 600px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  margin-top: 40px;
}

/* Icons */
.thank-you-icon {
  font-size: 60px;
  color: #28a745; /* Green for success */
  margin-bottom: 20px;
}

/* Title and Subtitle */
.thank-you-title {
  color: #004990;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.thank-you-subtitle {
  color: #28a745;
  font-size: 2rem;
  margin-bottom: 10px;
}

/* Message Text */
.thank-you-description {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.thank-you-info {
  font-size: 1rem;
  color: #6c757d;
}

/* Button Style */
.thank-you-btn {
  padding: 12px 24px;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 8px;
  background-color: #004990;
  color: #fff;
  border: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 20px;
}

.thank-you-btn:hover {
  background-color: #005bb5;
  transform: translateY(-3px);
}

/* Image Container */
.thank-you-image-container {
  margin-top: 20px;
}

.thank-you-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive Layout */
@media (max-width: 768px) {
  .thank-you-box {
    padding: 30px;
  }

  .thank-you-title {
    font-size: 2rem;
  }

  .thank-you-subtitle {
    font-size: 1.6rem;
  }

  .thank-you-btn {
    width: 100%;
    font-size: 1.1rem;
  }

  .thank-you-image {
    width: 90%;
  }
}

