/* =========================================================
   Bahrain Saudi Transfers — Shared Stylesheet
   Palette: Deep Navy / Gold / White / Charcoal / WhatsApp Green
   ========================================================= */

:root{
  --navy: #0b1f3a;
  --navy-2: #0f2a4d;
  --navy-light: #16345c;
  --gold: #c9a24b;
  --gold-light: #e6c976;
  --charcoal: #1b1b1f;
  --charcoal-2: #232328;
  --white: #ffffff;
  --off-white: #f7f6f3;
  --ink: #1b2430;
  --muted: #6b7480;
  --line: #e7e4dc;
  --whatsapp: #25d366;
  --whatsapp-dark: #1ea952;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(11,31,58,0.12);
  --shadow-sm: 0 4px 14px rgba(11,31,58,0.08);
  --maxw: 1180px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; overflow-x:hidden; }
body{
  margin:0;
  font-family:'Inter','Poppins',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Arial,sans-serif;
  color:var(--ink);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  line-height:1.6;
  overflow-x:hidden;
  width:100%;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ margin:0; font-family:'Poppins','Inter',sans-serif; font-weight:700; color:var(--navy); }
p{ margin:0; }
.container{ max-width:var(--maxw); margin:0 auto; padding:0 24px; }
section{ padding:76px 0; }
.section-charcoal{ background:var(--charcoal); color:#d8d8dc; }
.section-charcoal h2, .section-charcoal h3{ color:var(--white); }
.section-offwhite{ background:var(--off-white); }
.eyebrow{
  display:inline-block;
  font-size:12.5px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:700;
  margin-bottom:10px;
}
.section-head{ text-align:center; max-width:720px; margin:0 auto 46px; }
.section-head h2{ font-size:clamp(26px,3.4vw,38px); line-height:1.2; }
.section-head p{ color:var(--muted); margin-top:14px; font-size:16.5px; }
.section-charcoal .section-head p{ color:#b7bac1; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 26px;
  border-radius:6px;
  font-weight:700;
  font-size:14.5px;
  letter-spacing:.02em;
  cursor:pointer;
  border:2px solid transparent;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn-gold{ background:var(--gold); color:var(--navy); }
.btn-gold:hover{ background:var(--gold-light); box-shadow:var(--shadow-sm); }
.btn-outline{ background:transparent; border-color:rgba(255,255,255,.55); color:var(--white); }
.btn-outline:hover{ background:rgba(255,255,255,.12); }
.btn-outline-navy{ background:transparent; border-color:var(--navy); color:var(--navy); }
.btn-outline-navy:hover{ background:var(--navy); color:var(--white); }
.btn-whatsapp{ background:var(--whatsapp); color:var(--white); }
.btn-whatsapp:hover{ background:var(--whatsapp-dark); box-shadow:0 8px 20px rgba(37,211,102,.35); }
.btn-block{ width:100%; }
.btn-sm{ padding:10px 18px; font-size:13px; }

/* ---------- Top utility bar ---------- */
.topbar{
  background:var(--navy-2);
  color:#cdd6e4;
  font-size:13px;
}
.topbar .container{
  display:flex; align-items:center; justify-content:space-between;
  padding-top:8px; padding-bottom:8px;
}
.topbar-left{ display:flex; align-items:center; gap:22px; flex-wrap:wrap; }
.topbar a{ color:#cdd6e4; display:inline-flex; align-items:center; gap:6px; }
.topbar a:hover{ color:var(--gold-light); }
.topbar-social{ display:flex; gap:14px; flex-shrink:0; }
.topbar-social a{ color:#9fb0c8; font-size:13px; }
.topbar-social a:hover{ color:var(--gold-light); }
@media (max-width:760px){
  .topbar-social{ display:none; }
  .topbar .container{ flex-wrap:nowrap; overflow-x:auto; -ms-overflow-style:none; scrollbar-width:none; }
  .topbar .container::-webkit-scrollbar{ display:none; }
  .topbar-left{ flex-wrap:nowrap; gap:16px; }
  .topbar-left a{ white-space:nowrap; }
}

/* ---------- Header / Nav ---------- */
header.site-header{
  position:sticky; top:0; z-index:1000;
  background:var(--navy);
  box-shadow:0 2px 14px rgba(0,0,0,.18);
}
.navwrap{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.logo{ display:flex; flex-direction:column; line-height:1.15; color:var(--white); }
.logo .logo-main{ font-family:'Poppins',sans-serif; font-weight:800; font-size:20px; letter-spacing:.01em; }
.logo .logo-main span{ color:var(--gold); }
.logo .logo-sub{ font-size:10.5px; letter-spacing:.09em; text-transform:uppercase; color:#93a2ba; margin-top:2px; }

nav.main-nav ul{ display:flex; align-items:center; gap:18px; }
nav.main-nav a{
  color:#dfe4ec; font-size:13px; font-weight:600; letter-spacing:.01em;
  padding:6px 0; position:relative; white-space:nowrap;
}
nav.main-nav a:hover, nav.main-nav a.active{ color:var(--gold-light); }
nav.main-nav .dropdown{ position:relative; }
nav.main-nav .dropdown-menu{
  position:absolute; top:calc(100% + 14px); left:50%; transform:translateX(-50%);
  background:var(--white); border-radius:8px; box-shadow:var(--shadow);
  min-width:230px; padding:10px; opacity:0; visibility:hidden; transition:.15s ease;
}
nav.main-nav .dropdown:hover .dropdown-menu{ opacity:1; visibility:visible; top:calc(100% + 8px); }
nav.main-nav .dropdown-menu a{ color:var(--ink); display:block; padding:9px 12px; border-radius:6px; font-weight:500; }
nav.main-nav .dropdown-menu a:hover{ background:var(--off-white); color:var(--navy); }

.header-actions{ display:flex; align-items:center; gap:12px; flex-shrink:0; }
.header-actions .btn{ padding:11px 18px; font-size:13px; }
.header-actions .btn-icon-only{ display:none; }
nav.main-nav a.nav-book{ color:var(--gold-light); }
.nav-toggle{
  display:none; background:none; border:none; color:var(--white); font-size:24px; cursor:pointer;
}
.navwrap{ gap:16px; }
.logo{ flex-shrink:0; }

@media (max-width:1180px){
  nav.main-nav ul{ gap:13px; }
  nav.main-nav a{ font-size:12.5px; }
}

@media (max-width:1120px){
  nav.main-nav{
    position:fixed; inset:0 0 0 auto; width:82%; max-width:340px; height:100vh;
    background:var(--navy); padding:90px 26px 26px; transform:translateX(100%);
    transition:transform .25s ease; overflow-y:auto; box-shadow:-8px 0 30px rgba(0,0,0,.3);
  }
  nav.main-nav.open{ transform:translateX(0); }
  nav.main-nav ul{ flex-direction:column; align-items:flex-start; gap:4px; width:100%; }
  nav.main-nav ul > li{ width:100%; }
  nav.main-nav a{ display:block; padding:12px 4px; width:100%; border-bottom:1px solid rgba(255,255,255,.08); }
  nav.main-nav .dropdown-menu{
    position:static; transform:none; opacity:1; visibility:visible; box-shadow:none;
    background:rgba(255,255,255,.04); display:none; margin-top:4px;
  }
  nav.main-nav .dropdown.open .dropdown-menu{ display:block; }
  .nav-toggle{ display:block; }
  .header-actions .btn-label{ display:none; }
  .header-actions .btn-icon-only{ display:inline; }
  .header-actions .btn{ padding:11px 14px; }
}
@media (max-width:480px){
  .container{ padding:0 16px; }
  .navwrap{ gap:8px; padding:12px 0; }
  .header-actions{ gap:7px; }
  .header-actions .btn{ padding:9px 11px; }
  .logo .logo-main{ font-size:16px; }
  .logo .logo-sub{ font-size:8.5px; letter-spacing:.06em; }
  .nav-toggle{ font-size:21px; padding:0; }
}
.nav-overlay{
  display:none; position:fixed; inset:0; background:rgba(6,14,28,.55); z-index:900;
}
.nav-overlay.open{ display:block; }

/* ---------- Hero ---------- */
.hero{
  position:relative;
  background-image:
    linear-gradient(115deg, rgba(11,31,58,.94) 0%, rgba(11,31,58,.86) 45%, rgba(11,31,58,.7) 100%),
    radial-gradient(circle at 80% 20%, rgba(201,162,75,.25), transparent 55%),
    var(--hero-photo, none);
  background-position: 0 0, 0 0, center;
  background-size: auto, auto, cover;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-color: var(--navy);
  color:var(--white);
  padding:88px 0 150px;
  overflow:hidden;
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 90px);
  pointer-events:none;
}
.hero-inner{ position:relative; z-index:2; max-width:760px; }
.hero .trust-badges{
  display:flex; flex-wrap:wrap; gap:10px 18px; margin-bottom:22px;
}
.hero .trust-badges span{
  font-size:12.5px; color:#bcd1ea; font-weight:600; display:inline-flex; align-items:center; gap:6px;
}
.hero .trust-badges span::before{ content:"✓"; color:var(--gold-light); font-weight:800; }
.hero h1{
  color:var(--white); font-size:clamp(32px,5vw,54px); line-height:1.12; letter-spacing:-.01em;
}
.hero h1 em{ font-style:normal; color:var(--gold-light); }
.hero .hero-sub{
  font-size:clamp(15px,2vw,19px); color:#c7d3e4; margin-top:18px; max-width:600px; font-weight:400;
}
.hero .hero-copy{ font-size:15px; color:#a9b8ce; margin-top:14px; max-width:620px; }
.hero .hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; margin-top:32px; }

/* Quick quote card overlapping hero */
.quote-card{
  position:relative; z-index:3;
  max-width:var(--maxw); margin:-96px auto 0; padding:0 24px;
}
.quote-card-inner{
  background:var(--white); border-radius:var(--radius); box-shadow:var(--shadow);
  padding:30px 30px 26px; border-top:4px solid var(--gold);
}
.quote-card h3{ font-size:18px; margin-bottom:4px; }
.quote-card .quote-sub{ color:var(--muted); font-size:13.5px; margin-bottom:20px; }
.service-badge{
  display:inline-block; background:var(--navy); color:var(--gold-light); font-size:11.5px; font-weight:700;
  text-transform:uppercase; letter-spacing:.05em; padding:7px 16px; border-radius:20px; margin-bottom:14px;
}
.qform{ display:grid; grid-template-columns:repeat(6,minmax(0,1fr)); gap:14px; align-items:end; width:100%; }
.qform .field{ display:flex; flex-direction:column; gap:6px; grid-column:span 1; min-width:0; }
.qform .field.span2{ grid-column:span 2; }
.qform .field.span3{ grid-column:span 3; }
.qform .field.span6{ grid-column:span 6; }
.qform label{ font-size:11.5px; font-weight:700; letter-spacing:.05em; text-transform:uppercase; color:var(--navy); }
.qform .journey-toggle{ display:flex; border:1.5px solid var(--line); border-radius:6px; overflow:hidden; }
.qform .journey-toggle button{
  flex:1; border:none; background:var(--off-white); padding:10px 6px; font-size:12.5px; font-weight:700;
  color:var(--muted); cursor:pointer;
}
.qform .journey-toggle button.active{ background:var(--navy); color:var(--white); }
.qform input, .qform select{
  border:1.5px solid var(--line); border-radius:6px; padding:11px 12px; font-size:14px;
  font-family:inherit; color:var(--ink); background:var(--white); width:100%; min-width:0;
}
.qform input:focus, .qform select:focus{ outline:none; border-color:var(--gold); }
.qform .btn{ height:44px; }
@media (max-width:900px){
  .qform{ grid-template-columns:repeat(2,1fr); }
  .qform .field.span2, .qform .field.span3, .qform .field.span6{ grid-column:span 2; }
}

/* ---------- Value / Why choose cards ---------- */
.grid{ display:grid; gap:26px; }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-4{ grid-template-columns:repeat(4,1fr); }
.grid-5{ grid-template-columns:repeat(5,1fr); }
@media (max-width:980px){ .grid-3,.grid-4,.grid-5{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px){ .grid-3,.grid-4,.grid-5{ grid-template-columns:1fr; } }

.value-card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  padding:28px 24px; text-align:left; transition:box-shadow .2s ease, transform .2s ease;
}
.value-card:hover{ box-shadow:var(--shadow-sm); transform:translateY(-3px); }
.value-card .icon{
  width:48px; height:48px; border-radius:10px; background:var(--navy); color:var(--gold-light);
  display:flex; align-items:center; justify-content:center; font-size:22px; margin-bottom:16px;
}
.value-card h3{ font-size:16.5px; margin-bottom:8px; }
.value-card p{ color:var(--muted); font-size:14px; }

/* ---------- Services ---------- */
.service-card{
  background:var(--white); border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-sm);
  border:1px solid var(--line); display:flex; flex-direction:column;
}
.service-card .service-top{
  background:linear-gradient(135deg,var(--navy),var(--navy-light)); color:var(--white);
  padding:26px 24px 20px;
}
.service-card .service-top .icon{
  width:46px; height:46px; border-radius:10px; background:rgba(255,255,255,.12);
  display:flex; align-items:center; justify-content:center; font-size:21px; margin-bottom:14px;
}
.service-card .service-top h3{ color:var(--white); font-size:18px; }
.service-card .service-body{ padding:22px 24px 26px; flex:1; display:flex; flex-direction:column; gap:14px; }
.service-card .service-body p{ color:var(--muted); font-size:14px; }
.tag-list{ display:flex; flex-wrap:wrap; gap:8px; }
.tag-list span{
  background:var(--off-white); border:1px solid var(--line); font-size:12.5px; padding:6px 11px;
  border-radius:100px; color:var(--navy); font-weight:600;
}
.service-card .service-body .btn{ margin-top:auto; }

/* ---------- Route cards ---------- */
.route-card{
  background:var(--white); border-radius:var(--radius); border:1px solid var(--line);
  overflow:hidden; box-shadow:var(--shadow-sm); display:flex; flex-direction:column;
}
.route-card .route-media{
  height:120px; background:linear-gradient(135deg,var(--navy) 0%, var(--navy-light) 60%, var(--gold) 160%);
  display:flex; align-items:center; justify-content:center; color:var(--white); font-size:13px;
  letter-spacing:.08em; text-transform:uppercase; font-weight:700; gap:8px;
}
.route-card .route-body{ padding:20px 22px 24px; flex:1; display:flex; flex-direction:column; gap:10px; }
.route-card h3{ font-size:16.5px; }
.route-card p{ color:var(--muted); font-size:13.5px; }
.route-card .btn{ margin-top:auto; align-self:flex-start; }

/* ---------- Causeway section ---------- */
.causeway{ background:var(--navy); color:var(--white); position:relative; overflow:hidden; }
.causeway::after{
  content:""; position:absolute; inset:0;
  background:radial-gradient(circle at 15% 85%, rgba(201,162,75,.18), transparent 45%);
}
.causeway-inner{ position:relative; z-index:2; display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
@media (max-width:900px){ .causeway-inner{ grid-template-columns:1fr; } }
.causeway h2{ color:var(--white); }
.causeway p{ color:#c3cede; }
.causeway-route{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14);
  border-radius:var(--radius); padding:20px; margin-top:16px;
}
.causeway-route .pt{ text-align:center; font-weight:700; font-size:14px; }
.causeway-route .line{ flex:1; height:2px; background:repeating-linear-gradient(90deg,var(--gold) 0 8px, transparent 8px 16px); position:relative; }
.causeway-route .line::after{ content:"🚗"; position:absolute; top:-11px; left:50%; transform:translateX(-50%); font-size:16px; }
.causeway-note{ font-size:13px; color:#93a2ba; margin-top:18px; line-height:1.7; }

/* ---------- Fleet ---------- */
.fleet-card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden;
  box-shadow:var(--shadow-sm); text-align:center; padding-bottom:22px;
}
.fleet-card .fleet-media{
  height:130px; background:var(--off-white); display:flex; align-items:center; justify-content:center; font-size:40px;
  border-bottom:1px solid var(--line); overflow:hidden;
}
.fleet-card .fleet-media img{ width:100%; height:100%; object-fit:cover; display:block; }
.fleet-card h3{ font-size:16px; margin:18px 22px 4px; }
.fleet-card .cap{ color:var(--gold); font-weight:700; font-size:12.5px; letter-spacing:.04em; text-transform:uppercase; }
.fleet-card p{ color:var(--muted); font-size:13.5px; margin:8px 22px 0; }

/* ---------- Corporate split ---------- */
.corporate{ background:var(--charcoal); color:#d8d8dc; }
.split{ display:grid; grid-template-columns:1.1fr .9fr; gap:56px; align-items:center; }
@media (max-width:900px){ .split{ grid-template-columns:1fr; } }
.corporate h2{ color:var(--white); }
.corporate p.lead{ color:#c3c3ca; font-size:16px; margin-top:14px; }
.check-list{ display:grid; grid-template-columns:1fr 1fr; gap:12px 18px; margin-top:22px; }
@media (max-width:520px){ .check-list{ grid-template-columns:1fr; } }
.check-list li{ display:flex; gap:10px; align-items:flex-start; font-size:14px; color:#d8d8dc; }
.check-list li::before{ content:"✓"; color:var(--gold); font-weight:800; flex-shrink:0; }
.corporate-panel{
  background:var(--charcoal-2); border:1px solid rgba(255,255,255,.08); border-radius:var(--radius);
  padding:30px;
}
.corporate-panel h3{ color:var(--white); font-size:15px; text-transform:uppercase; letter-spacing:.06em; margin-bottom:16px; }
.corporate-panel ul li{ padding:9px 0; border-bottom:1px dashed rgba(255,255,255,.1); font-size:14.5px; color:#c3c3ca; }
.corporate-panel ul li:last-child{ border-bottom:none; }

/* ---------- How it works ---------- */
.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:26px; counter-reset:step; }
@media (max-width:900px){ .steps{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .steps{ grid-template-columns:1fr; } }
.step{ position:relative; padding-top:6px; }
.step .num{
  font-family:'Poppins',sans-serif; font-weight:800; font-size:34px; color:var(--gold);
  opacity:.9; margin-bottom:6px;
}
.step h3{ font-size:16px; margin-bottom:8px; }
.step p{ color:var(--muted); font-size:14px; }

/* ---------- FAQ ---------- */
.faq-list{ max-width:820px; margin:0 auto; display:flex; flex-direction:column; gap:12px; }
.faq-item{ border:1px solid var(--line); border-radius:8px; overflow:hidden; background:var(--white); }
.faq-item summary{
  cursor:pointer; list-style:none; padding:18px 22px; font-weight:700; font-size:15px;
  display:flex; justify-content:space-between; align-items:center; color:var(--navy);
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{ content:"+"; font-size:22px; color:var(--gold); font-weight:400; }
.faq-item[open] summary::after{ content:"–"; }
.faq-item .faq-body{ padding:0 22px 20px; color:var(--muted); font-size:14.5px; }

/* ---------- CTA banner ---------- */
.cta-banner{
  background:linear-gradient(120deg,var(--navy) 0%, var(--navy-light) 100%);
  color:var(--white); text-align:center; position:relative; overflow:hidden;
}
.cta-banner::after{
  content:""; position:absolute; inset:0;
  background:radial-gradient(circle at 85% 20%, rgba(201,162,75,.28), transparent 50%);
}
.cta-banner .container{ position:relative; z-index:2; }
.cta-banner h2{ color:var(--white); font-size:clamp(26px,3.6vw,40px); }
.cta-banner p{ color:#c7d3e4; margin-top:14px; font-size:16px; }
.cta-banner .ctas{ display:flex; gap:14px; justify-content:center; margin-top:30px; flex-wrap:wrap; }

/* ---------- Breadcrumb / page hero (route pages) ---------- */
.page-hero{
  background-image:
    linear-gradient(120deg, rgba(11,31,58,.95), rgba(15,42,77,.9)),
    var(--page-hero-photo, none);
  background-position: 0 0, center;
  background-size: auto, cover;
  background-repeat: no-repeat, no-repeat;
  background-color: var(--navy);
  color:var(--white); padding:60px 0 46px;
}
.page-hero .breadcrumb{ font-size:13px; color:#9fb0c8; margin-bottom:14px; }
.page-hero .breadcrumb a:hover{ color:var(--gold-light); }
.page-hero h1{ color:var(--white); font-size:clamp(28px,4vw,42px); }
.page-hero p{ color:#c7d3e4; margin-top:12px; max-width:640px; font-size:16px; }

.info-grid{ display:grid; grid-template-columns:1fr 1fr; gap:26px; margin-top:36px; }
@media (max-width:800px){ .info-grid{ grid-template-columns:1fr; } }
.info-panel{ background:var(--off-white); border:1px solid var(--line); border-radius:var(--radius); padding:26px 26px; }
.info-panel h3{ font-size:15px; text-transform:uppercase; letter-spacing:.05em; margin-bottom:14px; color:var(--navy); }
.info-panel ul li{ padding:7px 0; font-size:14.5px; color:var(--ink); border-bottom:1px dashed var(--line); }
.info-panel ul li:last-child{ border-bottom:none; }
.pill-row{ display:flex; flex-wrap:wrap; gap:10px; }
.pill-row span{ background:var(--white); border:1px solid var(--line); padding:8px 14px; border-radius:100px; font-size:13.5px; font-weight:600; color:var(--navy); }
.notice-box{
  background:#fbf6e9; border:1px solid #ecdca6; border-radius:8px; padding:16px 20px; font-size:13.5px; color:#6b5c22;
  margin-top:30px;
}

/* ---------- Footer ---------- */
footer.site-footer{ background:var(--charcoal); color:#a9adb5; padding-top:64px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.1fr; gap:40px; padding-bottom:44px; border-bottom:1px solid rgba(255,255,255,.08); }
@media (max-width:900px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-grid h4{ color:var(--white); font-size:13.5px; text-transform:uppercase; letter-spacing:.06em; margin-bottom:18px; }
.footer-brand .logo-main{ color:var(--white); font-size:19px; font-weight:800; font-family:'Poppins',sans-serif; }
.footer-brand .logo-main span{ color:var(--gold); }
.footer-brand p{ margin-top:12px; font-size:13.5px; line-height:1.7; color:#9096a0; max-width:280px; }
.footer-social{ display:flex; gap:12px; margin-top:18px; }
.footer-social a{
  width:34px; height:34px; border-radius:50%; border:1px solid rgba(255,255,255,.18);
  display:flex; align-items:center; justify-content:center; font-size:14px; color:#c9ccd2;
}
.footer-social a:hover{ background:var(--gold); color:var(--navy); border-color:var(--gold); }
.footer-grid ul li{ margin-bottom:10px; }
.footer-grid ul a{ font-size:13.5px; color:#a9adb5; }
.footer-grid ul a:hover{ color:var(--gold-light); }
.footer-contact li{ font-size:13.5px; margin-bottom:12px; display:flex; gap:8px; }
.footer-bottom{ padding:22px 0; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px; font-size:12.5px; color:#787d87; }
.footer-bottom a{ color:#a9adb5; }
.footer-bottom a:hover{ color:var(--gold-light); }
.footer-disclaimer{ font-size:12px; color:#6d7280; line-height:1.7; padding:22px 0 0; border-top:1px solid rgba(255,255,255,.06); margin-top:6px; }
.footer-links{ display:flex; gap:16px; }

/* ---------- Sticky mobile bar ---------- */
.mobile-bar{
  display:none; position:fixed; left:0; right:0; bottom:0; z-index:1200;
  background:var(--navy); border-top:1px solid rgba(255,255,255,.1);
  box-shadow:0 -6px 20px rgba(0,0,0,.25);
}
.mobile-bar .container{ display:flex; padding:0; max-width:none; }
.mobile-bar a{
  flex:1; text-align:center; padding:13px 6px; font-size:12px; font-weight:700; color:#dfe4ec;
  border-right:1px solid rgba(255,255,255,.08); display:flex; flex-direction:column; align-items:center; gap:3px;
}
.mobile-bar a:last-child{ border-right:none; }
.mobile-bar a.wa{ background:var(--whatsapp); color:var(--white); }
.mobile-bar a .ic{ font-size:16px; }
@media (max-width:760px){
  .mobile-bar{ display:block; }
  body{ padding-bottom:58px; }
  .quote-card{ margin-top:-70px; }
  .qform{ grid-template-columns:1fr; }
  section{ padding:56px 0; }
  .hero{ padding:56px 0 130px; }
}

/* Misc */
.text-center{ text-align:center; }
.mt-30{ margin-top:30px; }
.badge-strip{
  display:flex; flex-wrap:wrap; gap:10px 28px; justify-content:center; padding:20px 0;
  border-top:1px solid var(--line); border-bottom:1px solid var(--line); font-size:13px; color:var(--muted); font-weight:600;
}
.badge-strip span::before{ content:"✓ "; color:var(--gold); font-weight:800; }

/* ---------- GCC Route Country Cards (homepage "Choose Your Route") ---------- */
.grid-4-country{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
@media (max-width:980px){ .grid-4-country{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .grid-4-country{ grid-template-columns:1fr; } }
.country-card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  overflow:hidden; box-shadow:var(--shadow-sm); text-align:center; transition:transform .2s ease, box-shadow .2s ease;
}
.country-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow); }
.country-card .flag{
  height:96px; display:flex; align-items:center; justify-content:center; font-size:38px;
  background:linear-gradient(135deg,var(--navy),var(--navy-light));
}
.country-card .body{ padding:22px 20px 26px; }
.country-card h3{ font-size:17px; }
.country-card p{ color:var(--muted); font-size:13px; margin-top:8px; min-height:34px; }
.country-card .btn{ margin-top:16px; width:100%; }

/* ---------- Journey toggle: 4-way GCC selector (booking widget) ---------- */
.journey-toggle-4{ display:grid; grid-template-columns:repeat(4,1fr); border:1.5px solid var(--line); border-radius:6px; overflow:hidden; }
.journey-toggle-4 button{
  border:none; background:var(--off-white); padding:10px 4px; font-size:11.5px; font-weight:700;
  color:var(--muted); cursor:pointer; border-right:1px solid var(--line);
}
.journey-toggle-4 button:last-child{ border-right:none; }
.journey-toggle-4 button.active{ background:var(--navy); color:var(--white); }
@media (max-width:600px){ .journey-toggle-4{ grid-template-columns:repeat(2,1fr); } }

/* ---------- Country page hero flag strip ---------- */
.page-hero .flag-strip{ font-size:34px; margin-bottom:14px; letter-spacing:.15em; }

/* ---------- Honest travel-arrangement callout ---------- */
.route-note{
  display:flex; gap:14px; align-items:flex-start; background:#fbf6e9; border:1px solid #ecdca6;
  border-radius:var(--radius); padding:20px 22px; margin-top:30px;
}
.route-note .ic{ font-size:22px; flex-shrink:0; }
.route-note h4{ font-size:14.5px; color:#6b5c22; margin-bottom:6px; }
.route-note p{ font-size:13.5px; color:#6b5c22; line-height:1.7; }

/* ---------- Destination sub-cards inside a route page ---------- */
.dest-subgrid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:30px; }
@media (max-width:900px){ .dest-subgrid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .dest-subgrid{ grid-template-columns:1fr; } }
.dest-card{
  background:var(--off-white); border:1px solid var(--line); border-radius:var(--radius);
  padding:20px 20px 22px;
}
.dest-card h4{ font-size:15px; color:var(--navy); margin-bottom:6px; }
.dest-card p{ font-size:13px; color:var(--muted); }

/* ---------- Service blocks (Limousine & Chauffeur page) ---------- */
.service-block-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
@media (max-width:900px){ .service-block-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .service-block-grid{ grid-template-columns:1fr; } }
.service-block{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius); padding:26px 24px;
}
.service-block .icon{
  width:48px; height:48px; border-radius:10px; background:var(--navy); color:var(--gold-light);
  display:flex; align-items:center; justify-content:center; font-size:21px; margin-bottom:14px;
}
.service-block h3{ font-size:16px; margin-bottom:8px; }
.service-block p{ color:var(--muted); font-size:13.5px; }

/* ---------- Airport section blocks ---------- */
.airport-block{
  border:1px solid var(--line); border-radius:var(--radius); padding:24px 26px; background:var(--white);
  display:flex; justify-content:space-between; align-items:center; gap:20px; flex-wrap:wrap; margin-bottom:16px;
}
.airport-block .meta h3{ font-size:16px; }
.airport-block .meta p{ color:var(--muted); font-size:13.5px; margin-top:6px; }
.airport-block .code{
  font-family:'Poppins',sans-serif; font-weight:800; font-size:22px; color:var(--gold);
  background:var(--navy); border-radius:8px; padding:10px 16px; flex-shrink:0;
}

/* ---------- How it works arrow steps (compact) ---------- */
.flow-compact{ display:flex; align-items:center; justify-content:center; gap:10px; flex-wrap:wrap; font-size:13.5px; color:var(--muted); font-weight:600; }
.flow-compact span.arrow{ color:var(--gold); font-weight:800; }

/* ---------- Prominent cross-page link banner ---------- */
.cross-link-banner{
  display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap;
  background:var(--navy); border-radius:var(--radius); padding:26px 30px; margin-top:44px;
  background-image:linear-gradient(120deg, rgba(11,31,58,.97), rgba(15,42,77,.92));
}
.cross-link-banner .txt h3{ color:var(--white); font-size:18px; margin-bottom:6px; }
.cross-link-banner .txt p{ color:#c7d3e4; font-size:13.5px; }
.cross-link-banner .btn{ flex-shrink:0; }
