
:root{
  --navy:#17265f;
  --navy-2:#253b86;
  --pink:#ee1978;
  --blue:#17bde7;
  --cyan:#35d6dd;
  --gold:#f3a928;
  --ink:#182238;
  --muted:#68778a;
  --line:#e5eaf1;
  --bg:#f7f9fc;
  --white:#fff;
  --warning-bg:#fff7e7;
  --warning-line:#ecd8aa;
  --warning-text:#6a5229;
  --shadow:0 16px 48px rgba(23,38,95,.10);
  --max:1160px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--ink);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
button,input,textarea{font:inherit}
button{cursor:pointer}
.wrap{width:min(var(--max),calc(100% - 36px));margin:auto}

.utility{
  background:var(--navy);
  color:#fff;
  font-size:12px;
}
.utility .wrap{
  min-height:34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.utility-links{display:flex;gap:18px;align-items:center}

header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.nav{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--navy);
  font-weight:950;
  letter-spacing:-.025em;
  line-height:1;
}
.brand img{
  width:58px;
  height:58px;
  object-fit:contain;
  border-radius:12px;
}
.brand small{
  display:block;
  color:var(--muted);
  font-size:9px;
  letter-spacing:.12em;
  margin-top:6px;
}
.desktop-nav{
  display:flex;
  align-items:center;
  gap:19px;
  font-size:13px;
  font-weight:850;
}
.desktop-nav a{
  padding:9px 0;
  border-bottom:2px solid transparent;
}
.desktop-nav a:hover,.desktop-nav a.active{
  color:var(--pink);
  border-color:var(--pink);
}
.nav-actions{display:flex;align-items:center;gap:9px}
.lang{
  display:flex;
  padding:4px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
}
.lang button{
  border:0;
  background:transparent;
  color:var(--muted);
  font-size:11px;
  font-weight:900;
  padding:6px 9px;
  border-radius:999px;
}
.lang button.active{background:var(--navy);color:#fff}

.mobile-nav{display:none;position:relative}
.mobile-nav summary{
  list-style:none;
  width:44px;height:44px;
  border:1px solid var(--line);
  border-radius:13px;
  display:grid;
  place-items:center;
  color:var(--navy);
  font-size:21px;
  background:#fff;
  -webkit-tap-highlight-color:transparent;
}
.mobile-nav summary::-webkit-details-marker{display:none}
.mobile-nav[open] summary{background:var(--navy);color:#fff}
.mobile-nav-panel{
  position:fixed;
  top:72px;
  left:10px;
  right:10px;
  z-index:100;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 18px 50px rgba(23,38,95,.18);
  border-radius:18px;
  padding:8px;
}
.mobile-nav-panel a{
  min-height:49px;
  padding:0 14px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:var(--navy);
  font-weight:850;
  font-size:14px;
}
.mobile-nav-panel a.active{background:#edf8fb}
.mobile-nav-panel .mobile-book{
  background:linear-gradient(135deg,var(--pink),#ff4b9d);
  color:#fff;
  margin-top:5px;
}

.btn{
  min-height:48px;
  padding:0 20px;
  border:0;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-weight:900;
  transition:.18s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{background:linear-gradient(135deg,var(--pink),#ff4b9d);color:#fff;box-shadow:0 10px 28px rgba(238,25,120,.18)}
.btn-blue{background:linear-gradient(135deg,var(--blue),var(--cyan));color:#073451}
.btn-navy{background:var(--navy);color:#fff}
.btn-light{background:#fff;border:1px solid var(--line);color:var(--navy)}

.callout-bar{
  background:var(--warning-bg);
  color:var(--warning-text);
  border-bottom:1px solid var(--warning-line);
}
.callout-bar .wrap{
  min-height:44px;
  padding:7px 0;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  font-size:12px;
  font-weight:760;
  line-height:1.45;
  text-align:center;
}
.callout-bar strong{color:#473714}

.hero{
  min-height:650px;
  position:relative;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:#0e1739;
}
.hero-bg{position:absolute;inset:0}
.hero-bg img{width:100%;height:100%;object-fit:cover}
.hero-bg:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(8,17,52,.90) 0%,rgba(8,17,52,.69) 46%,rgba(8,17,52,.14) 85%);
}
.hero-copy{
  position:relative;
  z-index:2;
  width:min(700px,100%);
  padding:78px 0;
  color:#fff;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.24);
  background:rgba(255,255,255,.10);
  font-size:11px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
h1{
  font-size:clamp(46px,6vw,74px);
  line-height:.99;
  letter-spacing:-.052em;
  margin:17px 0 20px;
}
.hero h1{color:#fff}
.hero .accent{color:#57e0e7}
.lead{
  font-size:18px;
  line-height:1.65;
  color:var(--muted);
  max-width:720px;
}
.hero .lead{color:#edf1fd}
.hero-actions{display:flex;gap:11px;flex-wrap:wrap;margin-top:28px}
.hero-points{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  margin-top:21px;
  color:#d5def5;
  font-size:12px;
  font-weight:800;
}
.hero-points span:before{content:"•";color:var(--cyan);margin-right:7px}

section{padding:68px 0}
.soft{background:var(--bg)}
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:30px;
  margin-bottom:28px;
}
.kicker{
  color:var(--pink);
  font-size:11px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.13em;
  margin-bottom:8px;
}
h2{
  margin:0;
  color:var(--navy);
  font-size:clamp(31px,4vw,47px);
  line-height:1.06;
  letter-spacing:-.042em;
}
.section-head p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
  max-width:540px;
}

.services{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.service-card{
  border:1px solid var(--line);
  border-radius:20px;
  padding:21px;
  background:#fff;
}
.service-card .icon{
  width:46px;height:46px;
  border-radius:14px;
  background:#e7f9fc;
  display:grid;place-items:center;
  font-size:22px;
  margin-bottom:15px;
}
.service-card h3{margin:0 0 7px;color:var(--navy);font-size:17px}
.service-card p{margin:0;color:var(--muted);font-size:13px;line-height:1.55}

.route-strip{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.route-large{
  min-height:365px;
  position:relative;
  overflow:hidden;
  border-radius:25px;
  background:#101b43;
  box-shadow:var(--shadow);
}
.route-large img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.route-large:after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(10,20,52,.05),rgba(10,20,52,.82));
}
.route-content{
  position:absolute;left:22px;right:22px;bottom:22px;z-index:2;color:#fff
}
.route-content h3{font-size:24px;margin:0 0 6px}
.route-content p{margin:0 0 14px;color:#e6ebf8;font-size:13px;line-height:1.5}

.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.step{
  border:1px solid var(--line);
  border-radius:19px;
  padding:20px;
  background:#fff;
}
.step-num{
  width:34px;height:34px;border-radius:11px;
  background:var(--navy);color:#fff;
  display:grid;place-items:center;
  font-weight:900;
  margin-bottom:14px;
}
.step h3{margin:0 0 6px;color:var(--navy);font-size:16px}
.step p{margin:0;color:var(--muted);font-size:13px;line-height:1.55}

.cta{
  background:linear-gradient(135deg,var(--navy),var(--navy-2));
  color:#fff;
  border-radius:27px;
  padding:31px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:28px;
}
.cta h2{color:#fff;font-size:clamp(28px,3.5vw,42px)}
.cta p{margin:8px 0 0;color:#ccd5ed;line-height:1.55}

.page-hero{
  position:relative;
  min-height:330px;
  display:flex;
  align-items:end;
  overflow:hidden;
  background:#101b43;
}
.page-hero img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.page-hero:after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(10,20,52,.90),rgba(10,20,52,.48),rgba(10,20,52,.08));
}
.page-hero .wrap{position:relative;z-index:2;padding-bottom:42px;color:#fff}
.page-hero h1{font-size:clamp(40px,5vw,60px);margin:7px 0 10px}
.page-hero .lead{color:#e7ebf7;max-width:760px;margin:0}

.booking-layout{
  display:grid;
  grid-template-columns:.62fr 1.38fr;
  gap:24px;
  align-items:start;
}
.booking-info{
  border-radius:23px;
  overflow:hidden;
  background:var(--navy);
  color:#fff;
}
.booking-info img{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
}
.booking-info-body{padding:21px}
.booking-info-body h3{margin:0 0 9px;font-size:21px}
.booking-info-body p{margin:0;color:#d8dff1;font-size:13px;line-height:1.62}
.booking-info-row{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.14);
  font-size:12px;
  line-height:1.55;
  color:#e1e6f4;
}

.panel{
  border:1px solid var(--line);
  border-radius:24px;
  background:#fff;
  padding:24px;
  box-shadow:var(--shadow);
}
.panel-title{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:14px;
}
.panel-title h2{font-size:31px}
.mini-badge{
  padding:7px 10px;
  border-radius:999px;
  background:#e8f9fc;
  color:var(--navy);
  font-size:10px;
  font-weight:900;
  white-space:nowrap;
}
.form-tools{
  display:flex;
  gap:10px;
  margin-bottom:14px;
  flex-wrap:wrap;
}
.whatsform-shell{
  width:100%;
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  background:#fff;
}
.whatsform{
  width:100%;
  height:1120px;
  border:0;
  display:block;
}
.inline-note{
  color:var(--muted);
  font-size:12px;
  line-height:1.55;
  margin-top:11px;
}
.inline-note a{color:var(--pink);font-weight:900}

.email-option{
  margin-top:16px;
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
}
.email-option summary{
  list-style:none;
  padding:17px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  font-weight:900;
  color:var(--navy);
  cursor:pointer;
}
.email-option summary::-webkit-details-marker{display:none}
.email-option summary:after{content:"+";font-size:20px;color:var(--pink)}
.email-option[open] summary:after{content:"−"}
.email-body{padding:0 18px 18px}
.warning{
  background:var(--warning-bg);
  border:1px solid var(--warning-line);
  color:var(--warning-text);
  padding:13px 14px;
  border-radius:14px;
  font-size:12px;
  line-height:1.55;
}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:13px}
.field.full{grid-column:1/-1}
.field label{
  display:block;
  margin:0 0 6px 2px;
  color:#738096;
  font-size:10px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.07em;
}
.input{
  width:100%;
  min-height:51px;
  border:1px solid var(--line);
  border-radius:13px;
  background:#fbfdff;
  padding:0 13px;
  outline:none;
  color:var(--ink);
}
.input:focus{border-color:#78d6e9;box-shadow:0 0 0 4px rgba(23,189,231,.09)}
textarea.input{padding:12px 13px;min-height:100px;resize:vertical}

.fare-grid{
  display:grid;
  grid-template-columns:.78fr 1.22fr;
  gap:17px;
}
.rate-card,.supp-card{border-radius:23px;padding:24px}
.rate-card{background:var(--navy);color:#fff}
.supp-card{border:1px solid var(--line);background:#fff}
.rate-card h3,.supp-card h3{font-size:22px;margin:0 0 15px}
.fare-row{
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,.13);
}
.rate-card .fare-row span{color:#cad3eb}
.supp-card .fare-row{border-color:#edf0f4}
.supp-card .fare-row span{color:var(--muted)}
.fare-row:last-child{border-bottom:0}
.fare-row b{white-space:nowrap}
.van-rule{
  margin-top:14px;
  border-radius:14px;
  padding:13px;
  background:var(--warning-bg);
  border:1px solid var(--warning-line);
  color:var(--warning-text);
  font-size:12px;
  line-height:1.55;
}
.estimator{
  margin-top:20px;
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:#fff;
}
.estimator-top{
  padding:18px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  border-bottom:1px solid var(--line);
}
.estimator-top h3{margin:0;color:var(--navy);font-size:20px}
.estimator iframe{width:100%;height:820px;border:0;display:block}

.dest-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.dest-card{
  position:relative;
  min-height:320px;
  overflow:hidden;
  border-radius:23px;
  background:#101b43;
}
.dest-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.dest-card:after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(10,20,52,.06),rgba(10,20,52,.84));
}
.dest-body{position:absolute;left:19px;right:19px;bottom:19px;z-index:2;color:#fff}
.dest-body h3{margin:0 0 6px;font-size:21px}
.dest-body p{margin:0 0 13px;color:#e5eaf7;font-size:12.5px;line-height:1.5}

.contact-layout{
  display:grid;
  grid-template-columns:.72fr 1.28fr;
  gap:22px;
}
.contact-stack{display:grid;gap:11px}
.contact-card{
  border:1px solid var(--line);
  border-radius:19px;
  padding:19px;
  background:#fff;
}
.contact-card small{display:block;color:var(--muted);margin-bottom:5px}
.contact-card b{color:var(--navy);font-size:16px}

footer{
  background:#101d4e;
  color:#c9d1e9;
  padding:40px 0 46px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr .85fr;
  gap:30px;
}
.footer-grid img{width:78px;border-radius:12px;margin-bottom:11px}
.footer-grid p,.footer-grid a{font-size:12.5px;line-height:1.7;color:#b8c2df}
.footer-grid h4{margin:0 0 9px;color:#fff}
.footer-bottom{
  margin-top:26px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.10);
  font-size:11px;
  color:#93a0c7;
}

.only-fr{display:none!important}
body.fr .only-en{display:none!important}
body.fr .only-fr{display:inline!important}
body.fr p.only-fr,body.fr h1.only-fr,body.fr h2.only-fr,body.fr h3.only-fr,body.fr div.only-fr{display:block!important}

@media(max-width:980px){
  .desktop-nav{display:none}
  .mobile-nav{display:block}
  .booking-layout,.fare-grid,.contact-layout{grid-template-columns:1fr}
  .services{grid-template-columns:1fr 1fr}
  .dest-grid{grid-template-columns:1fr 1fr}
  .booking-info{display:grid;grid-template-columns:.8fr 1.2fr}
  .booking-info img{height:100%;aspect-ratio:auto}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:680px){
  .wrap{width:min(var(--max),calc(100% - 24px))}
  .utility{display:none}
  .nav{min-height:64px}
  .brand img{width:47px;height:47px}
  .brand{font-size:12px}
  .brand small{display:none}
  .nav-actions>.btn{display:none}
  .lang button{padding:6px 8px}
  .mobile-nav-panel{top:68px}
  .callout-bar .wrap{font-size:10.5px;padding:7px 0}
  .hero{min-height:590px;align-items:end}
  .hero-bg:after{background:linear-gradient(180deg,rgba(8,17,52,.22),rgba(8,17,52,.91) 68%)}
  .hero-copy{padding:92px 0 38px}
  h1{font-size:44px}
  .lead{font-size:15.5px;line-height:1.58}
  .hero-actions .btn{width:100%}
  .hero-points{gap:10px;font-size:10.5px}
  section{padding:50px 0}
  .section-head{display:block}
  .section-head p{margin-top:10px}
  .services,.route-strip,.steps,.dest-grid,.form-grid{grid-template-columns:1fr}
  .route-large{min-height:300px}
  .cta{display:block;padding:23px}
  .cta .btn{width:100%;margin-top:17px}
  .page-hero{min-height:285px}
  .page-hero .wrap{padding-bottom:28px}
  .page-hero h1{font-size:39px}
  .booking-info{display:block}
  .booking-info img{aspect-ratio:16/8}
  .panel{padding:17px}
  .panel-title{align-items:flex-start}
  .panel-title h2{font-size:27px}
  .form-tools .btn{width:100%}
  .whatsform{height:1180px}
  .email-option summary{font-size:14px}
  .rate-card,.supp-card{padding:19px}
  .estimator-top{align-items:flex-start;flex-direction:column}
  .estimator-top .btn{width:100%}
  .estimator iframe{height:740px}
  .dest-card{min-height:285px}
  .footer-grid{grid-template-columns:1fr}
}

/* V5.1 native booking form */
.booking-panel{overflow:hidden}
.booking-progress{display:grid;grid-template-columns:repeat(4,1fr);gap:7px;margin:4px 0 23px}
.progress-dot{height:5px;border-radius:999px;background:#e9edf3;transition:.2s}
.progress-dot.active{background:linear-gradient(90deg,var(--blue),var(--cyan))}
.booking-step{display:none;padding:0}
.booking-step.active{display:block}
.step-heading{margin:0 0 5px;color:var(--navy);font-size:23px}
.step-help{margin:0 0 20px;color:var(--muted);font-size:13px;line-height:1.55}
.choice-grid{display:grid;gap:9px}
.choice-grid.two{grid-template-columns:repeat(2,1fr)}
.choice-grid.three{grid-template-columns:repeat(3,1fr)}
.choice-card{position:relative;cursor:pointer}
.choice-card input{position:absolute;opacity:0;pointer-events:none}
.choice-card>span{
  min-height:74px;
  border:1px solid var(--line);
  border-radius:15px;
  padding:13px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:4px;
  background:#fff;
  transition:.16s;
}
.choice-card b{color:var(--navy);font-size:13px}
.choice-card small{color:var(--muted);font-size:10.5px;line-height:1.35}
.choice-card input:checked+span{
  border-color:#5acfe4;
  background:#eefbfc;
  box-shadow:0 0 0 3px rgba(23,189,231,.08)
}
.step-nav{display:flex;justify-content:space-between;gap:10px;margin-top:24px;padding-top:18px;border-top:1px solid var(--line)}
.step-nav #nextStep{margin-left:auto}
.field-error{border-color:#e95673!important;box-shadow:0 0 0 3px rgba(233,86,115,.08)!important}
.booking-review{border:1px solid var(--line);border-radius:17px;overflow:hidden}
.review-row{display:flex;justify-content:space-between;gap:20px;padding:11px 14px;border-bottom:1px solid var(--line);font-size:12.5px}
.review-row:last-child{border-bottom:0}
.review-row span{color:var(--muted)}
.review-row b{color:var(--navy);text-align:right;max-width:62%}
.confirm-note{margin-top:14px;padding:13px 14px;border-radius:14px;background:#edf9fb;color:#315a66;font-size:12px;line-height:1.55}
.send-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:16px}
.email-slower{margin:10px 0 0;text-align:center;color:var(--muted);font-size:11px}
@media(max-width:680px){
  .booking-panel{padding:16px}
  .panel-title{margin-bottom:11px}
  .panel-title h2{font-size:24px}
  .booking-progress{margin-bottom:18px}
  .choice-grid.three,.choice-grid.two{grid-template-columns:1fr}
  .choice-card>span{min-height:58px}
  .step-nav{position:sticky;bottom:0;background:#fff;padding-bottom:4px;z-index:4}
  .step-nav .btn{min-height:50px}
  .send-grid{grid-template-columns:1fr}
  .send-grid .btn{width:100%;min-height:52px}
  .review-row{align-items:flex-start}
}

/* V5.2 booking reliability refinements */
.choice-grid.choice-error{
  border:1px solid #e95673;
  border-radius:16px;
  padding:5px;
  box-shadow:0 0 0 3px rgba(233,86,115,.08);
}
#sendWhatsApp,#sendEmail{
  min-height:54px;
}
#sendWhatsApp{
  font-size:13px;
}
@media(max-width:680px){
  #sendWhatsApp,#sendEmail{
    min-height:56px;
    font-size:13px;
  }
}


/* V5.3 official taxi fare schedule */
.official-fare-section{padding-top:58px}
.official-table-wrap{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  overflow:auto;
  box-shadow:var(--shadow);
}
.official-fare-table{
  width:100%;
  border-collapse:collapse;
  min-width:760px;
}
.official-fare-table th{
  text-align:left;
  background:var(--navy);
  color:#fff;
  padding:15px 17px;
  font-size:12px;
  letter-spacing:.02em;
}
.official-fare-table td{
  padding:14px 17px;
  border-bottom:1px solid var(--line);
  vertical-align:top;
  font-size:12.5px;
  line-height:1.48;
}
.official-fare-table tr:last-child td{border-bottom:0}
.official-fare-table td:first-child{
  color:var(--navy);
  font-weight:850;
  width:31%;
}
.official-fare-table td:nth-child(2){
  width:22%;
  white-space:nowrap;
}
.official-fare-table td:nth-child(3){color:var(--muted)}
.official-source-card{
  margin-top:14px;
  padding:18px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
}
.official-source-card strong{color:var(--navy)}
.official-source-card p{
  margin:5px 0 0;
  max-width:760px;
  color:var(--muted);
  font-size:11.5px;
  line-height:1.55;
}
@media(max-width:680px){
  .official-fare-section{padding-top:44px}
  .official-table-wrap{
    border-radius:16px;
    -webkit-overflow-scrolling:touch;
  }
  .official-fare-table{min-width:690px}
  .official-fare-table th,
  .official-fare-table td{padding:12px 13px;font-size:11.5px}
  .official-source-card{display:block;padding:15px}
  .official-source-card .btn{width:100%;margin-top:13px}
}


/* V5.5 Google Reviews */
.reviews-section{overflow:hidden}
.reviews-head{align-items:center}
.google-rating{
  display:flex;align-items:center;gap:12px;padding:13px 16px;
  border:1px solid var(--line);border-radius:18px;background:#fff;
  box-shadow:0 8px 25px rgba(23,38,95,.06)
}
.rating-stars,.review-stars{color:#f5a623;letter-spacing:2px;white-space:nowrap}
.rating-stars{font-size:18px}
.google-rating strong{display:block;color:var(--navy);font-size:17px;line-height:1.1}
.google-rating small{display:block;margin-top:3px;color:var(--muted);font-size:10px}
.review-scroll{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.review-card{
  min-width:0;border:1px solid var(--line);border-radius:21px;padding:19px;
  background:#fff;box-shadow:0 10px 34px rgba(23,38,95,.07)
}
.review-card-top{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:10px}
.review-avatar{
  width:42px;height:42px;display:grid;place-items:center;border-radius:50%;
  background:#edf5ff;color:var(--navy);font-weight:950
}
.review-card-top strong{display:block;color:var(--navy);font-size:13px}
.review-card-top small{display:block;color:var(--muted);margin-top:3px;font-size:9.5px}
.google-g{
  width:28px;height:28px;display:grid;place-items:center;border-radius:50%;
  border:1px solid var(--line);color:#4285f4;font-weight:950;
  font-family:Arial,sans-serif;font-size:14px
}
.review-stars{margin:14px 0 10px;font-size:14px}
.review-card p{margin:0;color:#526176;font-size:12.5px;line-height:1.62}
.review-actions{display:flex;justify-content:center;gap:10px;margin-top:22px;flex-wrap:wrap}
.review-note{
  max-width:680px;margin:13px auto 0;text-align:center;color:var(--muted);
  font-size:11.5px;line-height:1.55
}
@media(max-width:980px){
  .review-scroll{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:680px){
  .reviews-head{display:flex;align-items:flex-start;gap:16px}
  .google-rating{width:100%;justify-content:center;margin-top:15px}
  .review-scroll{
    display:flex;overflow-x:auto;scroll-snap-type:x mandatory;gap:11px;
    padding:2px 2px 12px;margin-right:-12px;scrollbar-width:none;
    -webkit-overflow-scrolling:touch
  }
  .review-scroll::-webkit-scrollbar{display:none}
  .review-card{flex:0 0 86%;scroll-snap-align:start;padding:17px}
  .review-actions{display:grid;grid-template-columns:1fr}
  .review-actions .btn{width:100%}
}


/* V5.6 — Taxi Request form readability / depth */
.booking-panel{
  position:relative;
  background:
    linear-gradient(180deg,#ffffff 0%,#f7f9fd 100%);
  border:1px solid #dce3ef;
  box-shadow:
    0 22px 50px rgba(23,38,95,.12),
    0 3px 10px rgba(23,38,95,.06);
}

.booking-panel .panel-title{
  margin:-24px -24px 20px;
  padding:22px 24px 18px;
  background:linear-gradient(135deg,#17265f 0%,#253b86 100%);
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.12);
}

.booking-panel .panel-title .kicker{
  color:#62dce8;
}

.booking-panel .panel-title h2{
  color:#fff;
}

.booking-panel .mini-badge{
  background:rgba(255,255,255,.14);
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.12);
}

.booking-progress{
  margin:3px 0 22px;
  padding:0 2px;
}

.progress-dot{
  height:7px;
  background:#dfe5ef;
  box-shadow:inset 0 1px 2px rgba(23,38,95,.08);
}

.progress-dot.active{
  box-shadow:0 3px 10px rgba(23,189,231,.22);
}

.booking-step.active{
  padding:20px;
  border:1px solid #e0e6f0;
  border-radius:20px;
  background:#fff;
  box-shadow:
    0 10px 28px rgba(23,38,95,.07),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.step-heading{
  font-size:24px;
}

.step-help{
  padding-bottom:14px;
  margin-bottom:18px;
  border-bottom:1px solid #edf0f5;
}

.field{
  padding:11px;
  border:1px solid #e7ebf2;
  border-radius:15px;
  background:#f8faff;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.9);
}

.field label{
  margin:0 0 7px 2px;
  color:#4f5f78;
  font-size:10.5px;
}

.input{
  min-height:54px;
  border:1.5px solid #cfd8e6;
  border-radius:13px;
  background:#fff;
  box-shadow:
    inset 0 1px 2px rgba(23,38,95,.04),
    0 2px 5px rgba(23,38,95,.035);
  transition:border-color .16s,box-shadow .16s,transform .16s;
}

.input:hover{
  border-color:#b9c6d9;
}

.input:focus{
  border-color:#36c7df;
  box-shadow:
    0 0 0 4px rgba(23,189,231,.12),
    0 5px 14px rgba(23,38,95,.07);
  background:#fff;
}

.choice-grid{
  gap:11px;
}

.choice-card>span{
  min-height:78px;
  border:1.5px solid #d6deea;
  background:linear-gradient(180deg,#fff 0%,#f7f9fd 100%);
  box-shadow:0 4px 11px rgba(23,38,95,.055);
}

.choice-card>span:hover{
  border-color:#adc1dd;
  box-shadow:0 7px 16px rgba(23,38,95,.08);
}

.choice-card input:checked+span{
  border-color:#25bfd8;
  background:linear-gradient(180deg,#f4feff 0%,#e7f9fc 100%);
  box-shadow:
    0 0 0 3px rgba(23,189,231,.10),
    0 7px 17px rgba(23,38,95,.08);
}

.choice-card input:checked+span b{
  color:#0d7f98;
}

.step-nav{
  margin-top:20px;
  padding:18px 2px 2px;
  border-top:0;
}

.booking-review{
  background:#fff;
  border:1px solid #dce3ed;
  box-shadow:0 6px 18px rgba(23,38,95,.06);
}

.review-row:nth-child(odd){
  background:#f8faff;
}

.confirm-note{
  border:1px solid #cdeaf0;
  box-shadow:0 4px 12px rgba(23,38,95,.04);
}

@media(max-width:680px){
  .booking-panel{
    padding:14px;
    border-radius:20px;
    box-shadow:
      0 14px 34px rgba(23,38,95,.11),
      0 2px 8px rgba(23,38,95,.05);
  }

  .booking-panel .panel-title{
    margin:-14px -14px 16px;
    padding:18px 16px 15px;
  }

  .booking-panel .panel-title h2{
    font-size:23px;
  }

  .booking-step.active{
    padding:14px;
    border-radius:17px;
  }

  .step-heading{
    font-size:21px;
  }

  .step-help{
    font-size:12px;
    margin-bottom:14px;
    padding-bottom:12px;
  }

  .form-grid{
    gap:10px;
  }

  .field{
    padding:9px;
    border-radius:13px;
  }

  .input{
    min-height:52px;
    font-size:16px; /* avoids iPhone zoom */
  }

  textarea.input{
    min-height:105px;
  }

  .choice-card>span{
    min-height:62px;
  }

  .step-nav{
    margin:18px -2px -2px;
    padding:12px 2px 2px;
    background:linear-gradient(180deg,rgba(255,255,255,0),#fff 22%);
  }
}
