/* ==========================================================================
   GulfLimo Luxury — app.css (v2.3)
   Single, maintainable stylesheet. No CDN, no build step required.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  --ink: #0a0d12;
  --ink-2: #0f141b;
  --panel: #141a23;
  --panel-2: #1b2330;
  --gold: #c6a46b;
  --gold-2: #e7cfa1;
  --gold-deep: #866a3a;
  --ivory: #f7f4ed;
  --bg: #ffffff;
  --bg-soft: #f5f4f0;
  --text: #161a20;
  --text-2: #3d444e;
  --muted: #56606c;
  --line: #e9e4da;
  --wa: #25d366;
  --wa-hover: #37dc78;
  --wa-ink: #062b16;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 10px 30px rgba(13,17,23,.06);
  --shadow-md: 0 22px 55px rgba(10,14,20,.10);
  --shadow-lg: 0 42px 90px rgba(8,11,16,.22);
  --container: 1220px;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Manrope", var(--font-sans);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
strong, b { font-weight: 700; }

/* --------------------------------------------------------------------------
   Icons
   All GulfLimo icons are stroke-based 24x24 line icons. Styling them once
   here keeps them colored like their surrounding text and vertically aligned.
   -------------------------------------------------------------------------- */
.gl-icon {
  flex: 0 0 auto;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .18s ease, fill .18s ease;
}

/* Smooth motion for interactive elements */
a, .btn, button, .nav-links a, .route-card, .vehicle-card, .service-card,
.post-card, .glx-trust-card, .gl-payment-logo-card {
  transition:
    color .18s ease,
    background-color .18s ease,
    border-color .18s ease,
    box-shadow .25s ease,
    transform .2s ease,
    opacity .18s ease;
}

.screen-reader-text, .hp {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important;
  overflow: hidden !important; clip: rect(0,0,0,0) !important;
  white-space: nowrap !important; border: 0 !important;
}

.skip-link {
  position: fixed; z-index: 9999; left: 16px; top: 16px;
  background: #fff; color: #000; padding: 12px 16px; border-radius: 10px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Anchor targets sit below the fixed header */
[id] { scroll-margin-top: 96px; }

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.container,
.narrow {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}
.narrow { width: min(calc(100% - 48px), 820px); }

.section { padding: clamp(72px, 8vw, 108px) 0; }
.section-dark { background: var(--ink); color: #fff; }
.section-dark p, .section-dark li { color: rgba(255,255,255,.76); }

/* Section heading — eyebrow above, title + supporting copy in a two-column row */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.section-head > div { min-width: 0; }
.section-head h2,
.booking-intro h2,
.contact-panel h2,
.glx-section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 54px);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin: 0;
  color: var(--text);
}
.section-head > p { max-width: 520px; margin: 0; color: var(--muted); }
.section-head.light h2,
.section-head.light p { color: #fff; }
.section-head.light > p { color: rgba(255,255,255,.74); }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.eyebrow.gold, .gold-text { color: var(--gold-2); }
.section-head.light .eyebrow.gold { color: var(--gold-2); }

/* Generic card grid */
.cards-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(18px, 2.4vw, 26px); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  transition: color .2s, gap .2s;
}
.text-link:hover { color: var(--gold-deep); gap: 11px; }

/* --------------------------------------------------------------------------
   4. Header & navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed; z-index: 1000; inset: 0 0 auto;
  background: linear-gradient(to bottom, rgba(5,7,10,.90), rgba(5,7,10,.24));
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: rgba(9,11,15,.97);
  backdrop-filter: blur(16px);
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 12px 34px rgba(0,0,0,.28);
}

.header-inner {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; color: #fff; font-weight: 800; flex: 0 0 auto; }
.brand-mark {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border: 1px solid rgba(198,164,107,.85);
  border-radius: 50%;
  font-family: Georgia, serif; font-weight: 600;
  color: var(--gold-2); font-size: 13px; letter-spacing: .1em;
}
.brand-name { font-size: 22px; letter-spacing: -.04em; }
.brand-name span { color: var(--gold); }
.custom-logo-link { display: flex; align-items: center; }
.custom-logo-link img { display: block; max-width: 220px; max-height: 48px; width: auto; object-fit: contain; }

.desktop-nav { min-width: 0; flex: 1; }
.desktop-nav ul {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; row-gap: 8px;
  gap: clamp(16px, 2.4vw, 30px);
  list-style: none; margin: 0; padding: 0;
}
.desktop-nav a {
  color: rgba(255,255,255,.84);
  font-size: 14px; font-weight: 600;
  transition: color .2s;
}
.desktop-nav a:hover,
.desktop-nav .current-menu-item > a { color: var(--gold-2); }

.header-actions { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; }
.header-phone { display: flex; align-items: center; gap: 8px; color: #fff; font-size: 13px; font-weight: 600; }
.header-phone svg { width: 17px; height: 17px; fill: none; stroke: var(--gold); stroke-width: 1.7; }

/* Language switcher (Polylang / WPML) */
.language-switcher {
  display: flex; align-items: center; gap: 4px; padding: 3px;
  border: 1px solid rgba(255,255,255,.16); border-radius: 999px;
}
.language-switcher a {
  padding: 4px 8px; border-radius: 999px;
  color: rgba(255,255,255,.55); font-size: 10px; font-weight: 800; letter-spacing: .08em;
}
.language-switcher a.current { background: rgba(255,255,255,.14); color: #fff; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px; border: 0; background: transparent; padding: 10px;
}
.menu-toggle span:not(.screen-reader-text) {
  display: block; height: 2px; background: #fff; border-radius: 2px; margin: 5px 0;
}

.mobile-menu { background: var(--ink); border-top: 1px solid rgba(255,255,255,.09); padding: 22px 0 30px; }
.mobile-menu ul { list-style: none; padding: 0; margin: 0; }
.mobile-menu a { display: block; color: #fff; padding: 11px 0; font-size: 18px; font-weight: 600; }
.mobile-menu-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  min-height: 50px; padding: 0 24px;
  border-radius: 999px;
  font-weight: 700; font-size: 14px; line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn svg, .text-link svg, .route-action svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.btn-gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #241a07;
  box-shadow: 0 12px 30px rgba(198,164,107,.28);
}
.btn-gold:hover { background: linear-gradient(180deg, var(--gold-2), var(--gold-2)); box-shadow: 0 16px 36px rgba(198,164,107,.34); }

.btn-whatsapp {
  background: var(--wa); border-color: var(--wa); color: var(--wa-ink);
  box-shadow: 0 12px 30px rgba(37,211,102,.22);
}
.btn-whatsapp:hover { background: var(--wa-hover); border-color: var(--wa-hover); box-shadow: 0 16px 36px rgba(37,211,102,.30); }
.btn-whatsapp svg:not(.gl-icon-whatsapp) { fill: none !important; stroke: currentColor !important; stroke-width: 1.8; }

.btn-ghost { border-color: rgba(255,255,255,.28); color: #fff; background: rgba(255,255,255,.04); }
.btn-ghost:hover { background: rgba(255,255,255,.10); }

.btn-outline { border-color: var(--line); background: transparent; color: var(--text); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-deep); }

.btn-sm { min-height: 42px; padding-inline: 18px; font-size: 13px; }
.btn-lg { min-height: 56px; padding-inline: 26px; font-size: 15px; }
.btn-xl { min-height: 62px; padding-inline: 30px; font-size: 16px; }
.btn-block { width: 100%; }
.header-wa { white-space: nowrap; }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(640px, 100vh, 920px);
  padding: clamp(140px, 13vw, 180px) 0 clamp(84px, 9vw, 120px);
  background:
    linear-gradient(120deg, rgba(7,9,13,.94) 0%, rgba(10,14,19,.84) 45%, rgba(13,17,24,.6) 100%),
    radial-gradient(1100px 640px at 76% 18%, rgba(198,164,107,.22), transparent 58%),
    var(--hero-img, url("../images/chauffeur-door.webp")) center / cover no-repeat #07090d;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 30% 40%, transparent 0%, rgba(0,0,0,.55) 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -22% 46%;
  height: 480px;
  border: 1px solid rgba(198,164,107,.16);
  border-radius: 50%;
  transform: rotate(-8deg);
  pointer-events: none;
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .14; pointer-events: none; }
.hero-orb-a { width: 380px; height: 380px; background: var(--gold); right: 4%; top: 14%; }
.hero-orb-b { width: 240px; height: 240px; background: #ffffff; left: -8%; bottom: -6%; }

.hero-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, .84fr);
  gap: clamp(44px, 6vw, 84px);
  align-items: center;
}
.hero-copy { min-width: 0; }
.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.8vw, 64px);
  line-height: 1.05;
  letter-spacing: -.045em;
  margin: 0;
}
.hero-copy p {
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.7;
  color: rgba(255,255,255,.78);
  max-width: 600px;
  margin: 26px 0 0;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 14px 30px;
  margin-top: 36px;
  color: rgba(255,255,255,.76);
  font-size: 13px;
}
.hero-trust span { display: flex; align-items: center; gap: 9px; }
.hero-trust svg { width: 18px; height: 18px; fill: none; stroke: var(--gold-2); stroke-width: 1.6; }

/* Hero side panel */
.hero-panel { display: flex; align-items: center; justify-content: center; min-width: 0; }
.luxury-card {
  position: relative;
  width: min(100%, 470px);
  min-height: 540px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 34px;
  background:
    radial-gradient(circle at 72% 18%, rgba(198,164,107,.26), transparent 40%),
    linear-gradient(152deg, rgba(255,255,255,.09), rgba(255,255,255,.015) 55%);
  box-shadow: 0 55px 120px rgba(0,0,0,.4);
  overflow: hidden;
}
.luxury-card::before {
  content: "GL";
  position: absolute; top: 18px; right: 22px;
  font-family: Georgia, serif; font-size: 150px;
  color: rgba(255,255,255,.04); line-height: 1;
  pointer-events: none;
}
.luxury-kicker {
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-2); font-weight: 800;
}
.luxury-card strong {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.15;
  max-width: 360px;
  margin-top: 12px;
}
.luxury-helper { color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.65; margin: 14px 0 0; }
.luxury-wa-link {
  display: inline-flex; align-items: center; gap: 9px;
  color: #fff; font-size: 13px; font-weight: 800;
  margin-top: 22px;
}
.luxury-wa-link svg { width: 19px; height: 19px; fill: none; stroke: var(--wa); stroke-width: 1.8; }
.luxury-line { height: 1px; background: linear-gradient(90deg, var(--gold), transparent); margin: 26px 0; }
.luxury-meta { display: flex; justify-content: space-between; color: rgba(255,255,255,.62); font-size: 10px; letter-spacing: .13em; }

/* --------------------------------------------------------------------------
   7. Trust section
   -------------------------------------------------------------------------- */
.glx-trust-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(70px, 8vw, 104px) 0;
  color: var(--text);
}
.glx-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  column-gap: 64px;
  align-items: end;
  margin: 0 0 clamp(28px, 3.4vw, 40px);
}
.glx-section-heading .eyebrow { grid-column: 1 / -1; margin: 0 0 12px; color: var(--gold-deep); }
.glx-section-heading > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; max-width: 560px; }

.glx-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 18px);
  align-items: stretch;
}
.glx-trust-card {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 176px;
  padding: 26px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.glx-trust-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #d8c9ab; }
.glx-trust-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border: 1px solid #e3d8c0; border-radius: 14px;
  background: var(--ivory); color: var(--gold-deep);
}
.glx-trust-icon svg.gl-icon { width: 22px; height: 22px; stroke: currentColor; }
.glx-trust-copy { min-width: 0; }
.glx-trust-copy strong { display: block; margin: 2px 0 8px; font-size: 15px; line-height: 1.35; }
.glx-trust-copy p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.glx-trust-cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  margin-top: clamp(18px, 2vw, 22px);
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.glx-trust-cta > div { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.glx-trust-cta strong { font-size: 14px; }
.glx-trust-cta span { color: var(--muted); font-size: 12px; }

/* --------------------------------------------------------------------------
   8. Services / Fleet / Routes cards
   -------------------------------------------------------------------------- */
.service-card,
.post-card {
  display: flex; flex-direction: column;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card:hover,
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d8c9ab; }

.card-media, .post-thumb { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--panel-2); }
.card-media img, .post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .card-media img, .post-card:hover .post-thumb img { transform: scale(1.045); }

.card-media-placeholder {
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(198,164,107,.22), transparent 45%),
    linear-gradient(150deg, #12161d, #262d38);
}
.card-media-placeholder span {
  font-family: Georgia, serif; font-size: 54px;
  color: rgba(198,164,107,.55);
  border: 1px solid rgba(198,164,107,.35);
  border-radius: 50%;
  width: 92px; height: 92px;
  display: grid; place-items: center;
}

.card-body, .post-card > div {
  display: flex; flex-direction: column; flex: 1;
  padding: clamp(22px, 2.6vw, 28px);
  min-width: 0;
}
.card-body h3, .post-card h3, .post-card h2 { font-size: 22px; line-height: 1.22; margin: 0 0 12px; letter-spacing: -.025em; }
.card-body p, .post-card p { color: var(--muted); font-size: 14px; margin: 0 0 22px; }
.card-body .btn, .post-card .text-link { margin-top: auto; }

/* Fleet (dark) */
.vehicle-card {
  display: flex; flex-direction: column;
  min-width: 0;
  background: linear-gradient(160deg, #12161d, #0c0f15);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.vehicle-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(198,164,107,.4); }

.vehicle-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--panel-2); }
.vehicle-media img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 50% 32%, rgba(198,164,107,.2), transparent 46%),
    linear-gradient(150deg, rgba(23,28,37,.82), rgba(38,45,56,.82)),
    var(--vehicle-img, linear-gradient(150deg, #171c25, #262d38)) center / cover no-repeat;
}
.vehicle-placeholder span { font-family: Georgia, serif; font-size: 40px; color: rgba(255,255,255,.22); letter-spacing: .14em; text-shadow: 0 2px 14px rgba(0,0,0,.5); }
.vehicle-class {
  position: absolute; left: 16px; top: 16px;
  background: rgba(8,10,13,.72);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff; padding: 7px 12px; border-radius: 999px;
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em;
  backdrop-filter: blur(6px);
}
.vehicle-body {
  display: flex; flex-direction: column; flex: 1;
  padding: clamp(22px, 2.6vw, 28px);
  min-width: 0;
}
.vehicle-body h3 { font-size: 22px; margin: 0; color: #fff; }
.vehicle-body h3 a { color: #fff; }
.vehicle-example { color: rgba(255,255,255,.62); font-size: 13px; margin: 6px 0 18px; }
.vehicle-specs { display: flex; flex-wrap: wrap; gap: 16px; color: rgba(255,255,255,.76); font-size: 12px; margin-bottom: 22px; }
.vehicle-specs span { display: flex; align-items: center; gap: 7px; }
.vehicle-specs svg { width: 17px; height: 17px; fill: none; stroke: var(--gold-2); stroke-width: 1.6; }
.vehicle-card .btn { margin-top: auto; }
.vehicle-card .btn-outline { border-color: rgba(255,255,255,.2); color: #fff; }
.vehicle-card .btn-outline:hover { border-color: var(--gold); color: var(--gold-2); }

/* Routes */
.routes-list { border-top: 1px solid var(--line); }
.route-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: clamp(20px, 2.6vw, 28px) 0;
  border-bottom: 1px solid var(--line);
  transition: padding-inline .2s ease;
}
.route-card:hover { padding-inline: 12px; }
.route-card > div:first-child { min-width: 0; }
.route-card .eyebrow { margin-bottom: 8px; }
.route-card h3 { font-size: clamp(19px, 2vw, 24px); margin: 0; letter-spacing: -.02em; overflow-wrap: anywhere; }
.route-card h3 span { color: var(--gold-deep); }
.route-action { display: flex; align-items: center; gap: 22px; flex: 0 0 auto; }
.route-action > span { font-size: 12px; color: var(--muted); }
.route-action > span strong { display: block; color: var(--text); font-size: 17px; }
.route-wa {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 0 18px;
  border-radius: 999px;
  background: var(--wa); color: var(--wa-ink);
  font-size: 12px; font-weight: 800; white-space: nowrap;
  box-shadow: 0 10px 24px rgba(37,211,102,.22);
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.route-wa:hover { background: var(--wa-hover); transform: translateY(-1px); box-shadow: 0 14px 30px rgba(37,211,102,.30); }
.route-wa svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }

/* --------------------------------------------------------------------------
   9. Payment / confidence section
   -------------------------------------------------------------------------- */
.gl-payment-v220 {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--text);
  padding: clamp(70px, 8vw, 104px) 0;
}
.gl-payment-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
  gap: clamp(44px, 6vw, 76px);
  align-items: center;
}
.gl-payment-intro { min-width: 0; }
.gl-payment-intro .eyebrow { margin-bottom: 16px; color: var(--gold-deep); }
.gl-payment-intro > h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.04; letter-spacing: -.045em;
  margin: 0; max-width: 760px;
}
.gl-payment-intro > p { margin: 18px 0 0; color: var(--muted); font-size: 16px; line-height: 1.7; max-width: 680px; }

.gl-payment-logos { display: flex; align-items: stretch; flex-wrap: wrap; gap: 12px; margin: 32px 0 24px; }
.gl-payment-logo-card {
  display: flex; align-items: center; justify-content: center;
  height: 64px; min-width: 132px; padding: 10px 14px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.gl-payment-logo-card-wide { min-width: 166px; }
.gl-payment-logo-card-secure { min-width: 184px; background: #fbfdfb; border-color: #d8e6da; }
.gl-payment-logo-card img { width: auto; height: 44px; max-width: 100%; object-fit: contain; }

.gl-payment-notice {
  display: grid; grid-template-columns: 44px minmax(0,1fr); gap: 14px; align-items: center;
  max-width: 690px; margin: 0; padding: 16px 18px;
  background: #fff; border: 1px solid var(--line); border-radius: 15px;
  box-shadow: var(--shadow-sm);
}
.gl-payment-notice-icon {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  background: var(--ivory); border: 1px solid #e6d8bd;
  color: var(--gold-deep); border-radius: 12px;
}
.gl-payment-notice-icon svg.gl-icon { width: 20px; height: 20px; stroke: currentColor; fill: none; }
.gl-payment-notice strong { display: block; margin: 0 0 3px; font-size: 13px; }
.gl-payment-notice div { min-width: 0; }
.gl-payment-notice span:not(.gl-payment-notice-icon) { display: block; color: var(--muted); font-size: 12px; line-height: 1.5; }

.gl-payment-confidence {
  min-width: 0;
  padding: clamp(26px, 3vw, 36px);
  background: linear-gradient(150deg, #0b0f15, #161d28);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  color: #fff;
}
.gl-payment-confidence > .eyebrow { margin-bottom: 12px; color: var(--gold-2); }
.gl-payment-confidence > h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.16; letter-spacing: -.035em;
  margin: 0 0 22px;
}
.gl-payment-feature {
  display: grid; grid-template-columns: 46px minmax(0,1fr); gap: 15px; align-items: start;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.09);
}
.gl-payment-feature:first-child { border-top: 0; }
.gl-payment-feature > span {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  background: rgba(198,164,107,.1); border: 1px solid rgba(198,164,107,.24);
  color: var(--gold-2); border-radius: 12px;
}
.gl-payment-feature > span svg.gl-icon { width: 20px; height: 20px; stroke: currentColor; fill: none; }
.gl-payment-feature strong { display: block; margin: 1px 0 4px; font-size: 14px; }
.gl-payment-feature p { margin: 0; color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.6; }
.gl-payment-confidence > .btn { display: flex; width: 100%; margin-top: 22px; }

/* --------------------------------------------------------------------------
   10. Booking section + form
   -------------------------------------------------------------------------- */
.booking-section {
  background: linear-gradient(135deg, #0a0d12, #131a24);
  color: #fff;
}
.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(40px, 5vw, 64px);
  align-items: start;
}
.booking-intro { position: sticky; top: 120px; min-width: 0; }
.booking-intro h2 { color: #fff; }
.booking-intro > p { color: rgba(255,255,255,.74); max-width: 470px; }
.booking-contact { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.booking-contact a { display: flex; align-items: center; gap: 14px; color: #fff; }
.booking-contact svg { width: 23px; height: 23px; fill: none; stroke: var(--gold-2); stroke-width: 1.6; }
.booking-contact span { display: flex; flex-direction: column; }
.booking-contact small { color: rgba(255,255,255,.62); font-size: 11px; }
.booking-contact strong { font-size: 15px; }

.booking-card {
  min-width: 0;
  background: #fff; color: var(--text);
  border-radius: 28px; padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-lg);
}

.booking-form label { display: block; }
.booking-form label > span {
  display: block;
  font-size: 11px; text-transform: uppercase; letter-spacing: .09em;
  font-weight: 800; color: var(--muted);
  margin-bottom: 7px;
}
.booking-form input,
.booking-form select {
  width: 100%; height: 52px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 0 14px;
  background: #fcfbf9; color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.booking-form input::placeholder { color: #79828d; opacity: 1; }
.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--gold); background: #fff;
  box-shadow: 0 0 0 3px rgba(198,164,107,.16);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-grid-3 { grid-template-columns: 1fr 1fr .75fr; }

.booking-submit { display: flex; align-items: center; gap: 18px; margin-top: 10px; }
.booking-submit p { font-size: 11px; color: var(--muted); line-height: 1.5; margin: 0; }
.booking-submit .btn-whatsapp { width: auto; }

.booking-alert {
  padding: 14px 16px; border-radius: var(--radius-sm);
  margin-bottom: 16px; font-size: 13px; line-height: 1.5;
}
.booking-alert.success { background: #ecf8f0; color: #1c6834; border: 1px solid #cfe8d6; }
.booking-alert.error { background: #fff1f0; color: #a12c25; border: 1px solid #f2d4d1; }
.booking-alert a { text-decoration: underline; font-weight: 800; }

/* --------------------------------------------------------------------------
   11. Final CTA
   -------------------------------------------------------------------------- */
.final-wa-cta {
  background:
    radial-gradient(circle at 82% 18%, rgba(198,164,107,.18), transparent 36%),
    var(--ink);
  padding: clamp(60px, 7vw, 84px) 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.final-wa-inner { display: flex; align-items: center; justify-content: space-between; gap: 44px; }
.final-wa-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.04; letter-spacing: -.045em;
  margin: 0; max-width: 760px; color: #fff;
}
.final-wa-inner p { color: rgba(255,255,255,.74); max-width: 640px; margin: 16px 0 0; }
.final-wa-inner .btn { flex: 0 0 auto; }

/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: #06080b; color: #fff; }
.gl-footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.28fr) minmax(130px, .62fr) minmax(220px, .95fr) minmax(190px, .78fr);
  gap: clamp(36px, 5vw, 56px);
  align-items: start;
  padding: clamp(56px, 6vw, 76px) 0 50px;
}
.gl-footer-brand-col, .gl-footer-col { min-width: 0; }
.gl-footer-logo { display: flex; align-items: center; min-height: 52px; margin: 0 0 20px; }
.gl-footer-logo .custom-logo-link { display: inline-flex; align-items: center; }
.gl-footer-logo .custom-logo { width: auto; max-width: 230px; max-height: 58px; object-fit: contain; }
.gl-footer-logo .brand { gap: 12px; }
.gl-footer-logo .brand-mark { width: 46px; height: 46px; font-size: 14px; }
.gl-footer-logo .brand-name { font-size: 24px; }

.gl-footer-description { max-width: 360px; margin: 0 0 22px; color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.75; }
.gl-footer-wa {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 12px 15px;
  border: 1px solid rgba(37,211,102,.26);
  border-radius: 14px;
  background: rgba(37,211,102,.07);
  max-width: 100%;
  transition: background .2s, border-color .2s;
}
.gl-footer-wa:hover { background: rgba(37,211,102,.13); border-color: rgba(37,211,102,.45); }
.gl-footer-wa svg.gl-icon { width: 20px; height: 20px; }
.gl-footer-wa svg.gl-icon:not(.gl-icon-whatsapp) { stroke: #58dc8a; fill: none; }
.gl-footer-wa > span { display: flex; flex-direction: column; min-width: 0; gap: 1px; }

.gl-footer-social { display: flex; align-items: center; gap: 10px; margin-top: 18px; }
.gl-footer-social a {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  color: rgba(255,255,255,.8);
}
.gl-footer-social a:hover { color: #fff; border-color: rgba(198,164,107,.65); background: rgba(198,164,107,.1); transform: translateY(-2px); }
.gl-footer-social svg.gl-icon { width: 18px; height: 18px; stroke-width: 1.7; }
.gl-footer-wa small { color: #58dc8a; font-size: 9px; line-height: 1.2; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.gl-footer-wa strong { color: #fff; font-size: 12px; line-height: 1.35; }

.gl-footer-col > h3 {
  margin: 8px 0 22px;
  color: var(--gold-2);
  font-size: 10px; line-height: 1.2; font-weight: 800;
  text-transform: uppercase; letter-spacing: .15em;
}
.gl-footer-links {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 12px; margin: 0; padding: 0; list-style: none;
}
.gl-footer-links li {
  display: flex; align-items: center; gap: 8px;
  width: 100%; margin: 0; padding: 0;
  color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.55;
}
.gl-footer-links a {
  display: inline-flex; align-items: center; gap: 8px;
  max-width: 100%; color: rgba(255,255,255,.8);
  font-size: 13px; line-height: 1.55;
  transition: color .18s;
}
.gl-footer-links a:hover { color: #fff; }
.gl-footer-contact .gl-footer-links a > svg.gl-icon { width: 16px; height: 16px; stroke: var(--gold); fill: none; }
.gl-mail-dot, .gl-location-dot {
  display: grid; place-items: center;
  width: 16px; height: 16px; min-width: 16px;
  color: var(--gold); font-size: 12px; font-weight: 800;
}

.gl-footer-confidence {
  display: grid;
  grid-template-columns: minmax(270px, .85fr) minmax(0, 1.15fr);
  gap: 38px; align-items: center;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.gl-footer-confidence-copy { display: grid; grid-template-columns: 48px minmax(0,1fr); gap: 14px; align-items: center; min-width: 0; }
.gl-footer-shield {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  background: rgba(198,164,107,.1); border: 1px solid rgba(198,164,107,.26);
  color: var(--gold-2); border-radius: 14px;
}
.gl-footer-shield svg.gl-icon { width: 21px; height: 21px; stroke: currentColor; fill: none; }
.gl-footer-confidence-copy strong { display: block; margin: 0 0 4px; font-size: 14px; }
.gl-footer-confidence-copy span:not(.gl-footer-shield) { display: block; color: rgba(255,255,255,.64); font-size: 11px; line-height: 1.55; }

.gl-footer-badge-groups { display: flex; align-items: flex-end; justify-content: flex-end; gap: 30px; flex-wrap: wrap; min-width: 0; }
.gl-footer-badge-group { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; min-width: 0; }
.gl-footer-group-label { color: rgba(255,255,255,.58); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.gl-footer-brand-badges { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.gl-footer-brand-badges img { width: auto; height: 42px; max-width: 180px; object-fit: contain; border-radius: 8px; }

.gl-footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 0 30px; }
.gl-footer-bottom p { margin: 0; color: rgba(255,255,255,.56); font-size: 11px; }
.gl-footer-bottom > div { display: flex; align-items: center; gap: 20px; }
.gl-footer-bottom a { color: rgba(255,255,255,.62); font-size: 11px; transition: color .18s; }
.gl-footer-bottom a:hover { color: #fff; }

/* --------------------------------------------------------------------------
   13. Floating WhatsApp + mobile quick bar
   -------------------------------------------------------------------------- */
.floating-whatsapp {
  position: fixed; z-index: 1090; right: 24px; bottom: 24px;
  display: flex; align-items: center; gap: 10px;
  background: var(--wa); color: var(--wa-ink);
  border-radius: 999px; padding: 14px 18px;
  box-shadow: 0 18px 46px rgba(0,0,0,.28);
  font-size: 13px; font-weight: 800;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.floating-whatsapp:hover { transform: translateY(-2px); background: var(--wa-hover); box-shadow: 0 22px 52px rgba(0,0,0,.34); }
.floating-whatsapp svg { width: 22px; height: 22px; }
.mobile-bar { display: none; }

/* --------------------------------------------------------------------------
   14. Inner pages
   -------------------------------------------------------------------------- */
.page-hero, .detail-hero {
  padding: clamp(150px, 15vw, 190px) 0 clamp(70px, 8vw, 96px);
  background:
    radial-gradient(900px 520px at 82% 12%, rgba(198,164,107,.14), transparent 55%),
    linear-gradient(120deg, #080a0e, #131a24);
  color: #fff;
}
.page-hero h1, .detail-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.6vw, 76px);
  line-height: 1.02; letter-spacing: -.05em;
  margin: 0; max-width: 980px;
}
.page-hero p, .detail-hero p, .archive-description { color: rgba(255,255,255,.74); max-width: 720px; font-size: 17px; margin: 20px 0 0; }
.article-hero h1 { font-size: clamp(38px, 5vw, 64px); }
.post-meta { margin-top: 22px; color: rgba(255,255,255,.62); font-size: 13px; }

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .78fr);
  gap: clamp(40px, 5vw, 60px);
  align-items: center;
}
.detail-grid > div { min-width: 0; }
.detail-image img { border-radius: 26px; box-shadow: var(--shadow-lg); }
.detail-specs { display: flex; flex-wrap: wrap; gap: 20px; margin: 26px 0; }
.detail-specs span { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.76); }
.detail-specs svg { width: 19px; height: 19px; fill: none; stroke: var(--gold-2); stroke-width: 1.6; }
.route-summary { display: flex; flex-wrap: wrap; gap: 30px; margin: 26px 0; }
.route-summary span { display: flex; flex-direction: column; color: rgba(255,255,255,.62); font-size: 12px; }
.route-summary strong { font-size: 18px; color: #fff; margin-top: 2px; }

.about-grid { align-items: start; }
.about-points {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: 26px;
  padding: 10px 28px;
  background: #fff; box-shadow: var(--shadow-sm);
}
.about-points > div { padding: 24px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 34px 1fr; column-gap: 13px; }
.about-points > div:last-child { border-bottom: 0; }
.about-points svg { grid-row: 1 / 3; width: 25px; height: 25px; fill: none; stroke: var(--gold-deep); stroke-width: 1.5; }
.about-points strong { font-size: 15px; }
.about-points span { font-size: 13px; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 34px; align-items: start; }
.contact-panel { padding: clamp(24px, 3vw, 36px); border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: var(--shadow-sm); }
.contact-row { display: flex; align-items: center; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-row:last-child { border-bottom: 0; }
.contact-row svg, .contact-icon { width: 24px; height: 24px; fill: none; stroke: var(--gold-deep); stroke-width: 1.5; color: var(--gold-deep); display: grid; place-items: center; }
.contact-row span:last-child { display: flex; flex-direction: column; min-width: 0; }
.contact-row small { color: var(--muted); font-size: 11px; }
.contact-row strong { font-size: 15px; overflow-wrap: anywhere; }

/* Search, pagination, 404 */
.search-result { padding: 28px 0; border-bottom: 1px solid var(--line); }
.search-result h2 { margin: 0; font-size: 26px; }
.search-result p { color: var(--muted); }
.pagination { margin-top: 44px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.page-numbers {
  display: grid; place-items: center;
  min-width: 42px; height: 42px; padding: 0 12px;
  border: 1px solid var(--line); border-radius: 10px;
  font-size: 14px; font-weight: 600;
  transition: border-color .18s, background .18s, color .18s;
}
.page-numbers:hover { border-color: var(--gold); color: var(--gold-deep); }
.page-numbers.current { background: var(--ink); border-color: var(--ink); color: #fff; }
.error-page { min-height: 78vh; display: flex; align-items: center; padding: clamp(150px, 15vw, 180px) 0 90px; background: var(--ink); color: #fff; }
.error-page h1 { font-family: var(--font-display); font-size: clamp(40px, 5.4vw, 72px); letter-spacing: -.05em; line-height: 1.03; margin: 0; }
.error-page p { color: rgba(255,255,255,.74); font-size: 18px; margin: 20px 0 30px; }

/* --------------------------------------------------------------------------
   15. Prose & WordPress content
   -------------------------------------------------------------------------- */
.gulflimo-theme .prose { color: var(--text-2); max-width: 100%; overflow-wrap: anywhere; font-size: 17px; line-height: 1.8; }
.gulflimo-theme .prose > *:first-child { margin-top: 0; }
.gulflimo-theme .prose > *:last-child { margin-bottom: 0; }
.gulflimo-theme .prose h1,
.gulflimo-theme .prose h2,
.gulflimo-theme .prose h3,
.gulflimo-theme .prose h4,
.gulflimo-theme .prose h5,
.gulflimo-theme .prose h6 { color: var(--text); line-height: 1.2; letter-spacing: -.025em; font-family: var(--font-display); }
.gulflimo-theme .prose h2 { font-size: 34px; margin-top: 1.8em; }
.gulflimo-theme .prose h3 { font-size: 24px; margin-top: 1.6em; }
.gulflimo-theme .prose a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.gulflimo-theme .prose ul, .gulflimo-theme .prose ol { padding-inline-start: 1.25rem; }
.gulflimo-theme .prose img, .gulflimo-theme .prose iframe, .gulflimo-theme .prose video { max-width: 100%; height: auto; }
.gulflimo-theme .prose blockquote { margin: 35px 0; padding: 20px 26px; border-inline-start: 3px solid var(--gold); background: var(--ivory); border-radius: 0 14px 14px 0; }
.gulflimo-theme .prose table { width: 100%; border-collapse: collapse; display: block; overflow-x: auto; }
.gulflimo-theme .prose th, .gulflimo-theme .prose td { padding: 12px 14px; border: 1px solid var(--line); text-align: start; }
.gulflimo-theme .prose th { background: var(--bg-soft); }
.page-feature { border-radius: 24px; margin-bottom: 38px; width: 100%; }
.service-intro { margin-bottom: clamp(32px, 4vw, 46px); }

.gulflimo-theme .wp-block-columns { gap: 28px; }
.gulflimo-theme .wp-block-column { min-width: 0; }
.gulflimo-theme .alignwide { width: min(calc(100% - 48px), 1200px); max-width: 1200px; margin-inline: auto; }
.gulflimo-theme .alignfull { width: 100vw; max-width: 100vw; margin-inline: calc(50% - 50vw); }
.gulflimo-theme .wp-block-button__link { color: #241a07; background: var(--gold); text-decoration: none; border-radius: 999px; }
.gulflimo-theme .wp-block-button.is-style-outline .wp-block-button__link { background: transparent; border-color: var(--gold-deep); color: var(--gold-deep); }
.gulflimo-theme :where(.has-white-color) { color: #fff !important; }
.gulflimo-theme :where(.has-black-color) { color: var(--text) !important; }

/* Dark-section icon svgs consistently */
.gulflimo-theme .glx-trust-icon svg.gl-icon,
.gulflimo-theme .gl-payment-notice-icon svg.gl-icon,
.gulflimo-theme .gl-payment-feature > span svg.gl-icon,
.gulflimo-theme .gl-footer-shield svg.gl-icon,
.gulflimo-theme .gl-footer-wa svg.gl-icon:not(.gl-icon-whatsapp) { fill: none; }

/* --------------------------------------------------------------------------
   16. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1180px) {
  .desktop-nav ul { gap: 18px; }
  .desktop-nav a { font-size: 13px; }
  .header-actions { gap: 10px; }
  .custom-logo-link img { max-width: 185px; }
}

@media (max-width: 1050px) {
  .desktop-nav, .header-phone { display: none; }
  .menu-toggle { display: block; }
  .header-wa span { display: none; }

  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-panel { max-width: 520px; width: 100%; margin-inline: auto; }
  .cards-3 { grid-template-columns: 1fr 1fr; }
  .cards-3 > *:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: none; }
  .glx-trust-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .glx-section-heading { grid-template-columns: 1fr; gap: 12px; }
  .gl-payment-shell { grid-template-columns: 1fr; gap: 40px; }
  .gl-payment-confidence { max-width: 760px; }
  .booking-layout, .contact-grid { grid-template-columns: 1fr; }
  .booking-intro { position: static; }
  .final-wa-inner { align-items: flex-start; flex-direction: column; gap: 28px; }
  .final-wa-inner .btn { flex: 0 0 auto; }

  .gl-footer-main { grid-template-columns: 1.2fr .8fr .9fr; gap: 42px; }
  .gl-footer-contact { grid-column: 2 / 4; }
  .gl-footer-confidence { grid-template-columns: 1fr; gap: 24px; }
  .gl-footer-badge-groups { justify-content: flex-start; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .section-head { align-items: flex-start; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-image { order: -1; }
}

@media (max-width: 760px) {
  .container, .narrow { width: min(calc(100% - 32px), var(--container)); }
  .header-inner { height: 72px; }
  .header-actions .btn { display: none; }
  .brand-name { font-size: 20px; }
  .brand-mark { width: 38px; height: 38px; }

  .hero { min-height: 0; padding: 128px 0 60px; }
  .hero-copy h1 { font-size: clamp(40px, 12vw, 60px); line-height: 1.02; }
  .hero-copy p { font-size: 16px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { flex-direction: column; gap: 10px; }
  .luxury-card { min-height: 0; padding: 30px 26px; border-radius: 24px; }
  .luxury-card strong { font-size: 23px; }
  .luxury-card::before { font-size: 110px; }

  .section-head { display: block; margin-bottom: 30px; }
  .section-head > p { margin-top: 14px; }
  .section-head .text-link { margin-top: 18px; }
  .cards-3 { grid-template-columns: 1fr; }
  .cards-3 > *:last-child:nth-child(odd) { grid-column: auto; max-width: none; }
  .glx-trust-grid { grid-template-columns: 1fr; }
  .glx-trust-card { min-height: 0; padding: 22px; }
  .glx-trust-cta { align-items: stretch; flex-direction: column; }
  .glx-trust-cta .btn { width: 100%; }

  .gl-payment-logos { gap: 8px; }
  .gl-payment-logo-card, .gl-payment-logo-card-wide, .gl-payment-logo-card-secure { flex: 1 1 140px; min-width: 0; }
  .gl-payment-confidence { padding: 26px 20px; border-radius: 22px; }

  .booking-card { padding: 22px; border-radius: 22px; }
  .form-grid, .form-grid-3 { grid-template-columns: 1fr; }
  .booking-submit { display: block; }
  .booking-submit .btn { width: 100%; margin-bottom: 12px; }

  .final-wa-inner .btn { width: 100%; }
  .route-card { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 14px; }
  .route-card:hover { padding-inline: 0; }
  .route-action { gap: 12px; }
  .route-action > span { display: none; }
  .route-wa span { display: none; }
  .route-wa { width: 46px; height: 46px; min-height: 46px; padding: 0; border-radius: 50%; }
  .floating-whatsapp { display: none; }
  .mobile-bar {
    position: fixed; z-index: 1100; left: 10px; right: 10px; bottom: 10px;
    height: 62px;
    background: rgba(9,11,15,.98);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    display: flex;
    box-shadow: 0 18px 40px rgba(0,0,0,.3);
    overflow: hidden;
  }
  .mobile-bar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px; color: #fff; font-size: 11px; font-weight: 800; }
  .mobile-bar a + a { border-left: 1px solid rgba(255,255,255,.1); }
  .mobile-bar .mobile-wa { background: var(--wa); color: var(--wa-ink); flex: 1.55; }
  .mobile-bar svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }

  .page-hero, .detail-hero { padding: 128px 0 60px; }
  .page-hero h1, .detail-hero h1 { font-size: clamp(36px, 11vw, 54px); }
  .route-summary { flex-direction: column; gap: 14px; }
  .prose { font-size: 16px; }
  .wp-block-columns { display: block; }
  .wp-block-column + .wp-block-column { margin-top: 24px; }

  .gl-footer-main { grid-template-columns: 1fr 1fr; gap: 38px 28px; padding: 58px 0 40px; }
  .gl-footer-brand-col { grid-column: 1 / -1; }
  .gl-footer-contact { grid-column: auto; }
  .gl-footer-confidence { gap: 20px; }
  .gl-footer-badge-groups { display: grid; grid-template-columns: 1fr; gap: 18px; width: 100%; }
  .gl-footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; padding-bottom: 100px; }
  .site-footer { padding-bottom: 0; }
}

@media (max-width: 480px) {
  .glx-trust-grid { grid-template-columns: 1fr; }
  .gl-payment-logos { display: grid; grid-template-columns: 1fr 1fr; }
  .gl-payment-logo-card-secure { grid-column: 1 / -1; }
  .gl-footer-main { grid-template-columns: 1fr; }
  .gl-footer-brand-col, .gl-footer-contact { grid-column: auto; }
  .gl-footer-brand-badges { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .gl-footer-brand-badges img { width: 100%; max-width: none; height: 42px; }
}

/* --------------------------------------------------------------------------
   17. How it works
   -------------------------------------------------------------------------- */
.how-it-works { background: var(--bg-soft); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 26px);
  margin-top: clamp(32px, 4vw, 46px);
}
.step-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  padding: clamp(24px, 2.6vw, 32px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.step-num {
  display: grid; place-items: center;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #241a07;
  font-family: var(--font-display);
  font-weight: 800; font-size: 19px;
  box-shadow: 0 12px 26px rgba(198,164,107,.3);
}
.step-card h3 { margin: 4px 0 8px; font-family: var(--font-display); font-size: 19px; line-height: 1.25; letter-spacing: -.02em; }
.step-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

/* --------------------------------------------------------------------------
   18. Popular destinations
   -------------------------------------------------------------------------- */
.section-destinations { background: #fff; }
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 22px);
  margin-top: clamp(32px, 4vw, 46px);
}
.dest-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 4 / 5;
  padding: 22px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(to top, rgba(7,9,13,.88) 0%, rgba(7,9,13,.28) 46%, rgba(7,9,13,.06) 100%),
    var(--dest-img, linear-gradient(150deg, #171c25, #262d38)) center / cover no-repeat;
  border: 1px solid rgba(255,255,255,.08);
  isolation: isolate;
}
.dest-card::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.14);
  opacity: 0;
  transition: opacity .22s ease;
  z-index: -1;
}
.dest-card:hover { transform: translateY(-4px); }
.dest-card:hover::after { opacity: 1; }
.dest-name {
  position: relative;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700; font-size: 19px;
  letter-spacing: -.02em;
  line-height: 1.2;
}
.dest-cta {
  position: relative;
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 12px;
  color: var(--gold-2);
  font-size: 13px; font-weight: 700;
}
.dest-cta svg.gl-icon { width: 15px; height: 15px; stroke-width: 2; }

/* Responsive rules for the new sections (kept after their base rules) */
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .dest-card { aspect-ratio: 4 / 4.6; padding: 18px; }
  .dest-name { font-size: 17px; }
  .step-card { grid-template-columns: 46px 1fr; gap: 14px; padding: 20px; }
  .step-num { width: 46px; height: 46px; font-size: 16px; }
}

/* --------------------------------------------------------------------------
   19. Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}


/* GulfLimo 2.5.0 — advanced footer controls */
.site-footer.gl-footer-v220 { background: var(--footer-bg, #06080b); color: var(--footer-text, #d7dbe1); }
.gl-footer-custom-logo { display:inline-flex; align-items:center; max-width:240px; }
.gl-footer-custom-logo img { display:block; width:auto; max-width:240px; max-height:64px; object-fit:contain; }
.gl-footer-col > h3, .gl-footer-confidence-copy strong { color: var(--footer-heading, #fff); }
.gl-footer-description, .gl-footer-links, .gl-footer-links a, .gl-footer-contact .gl-footer-links li { color: var(--footer-text, #d7dbe1); }
.gl-footer-group-label, .gl-footer-confidence-copy span:not(.gl-footer-shield), .gl-footer-bottom p, .gl-footer-bottom a { color: var(--footer-muted, #8f98a5); }
.gl-footer-confidence, .gl-footer-bottom { border-color: var(--footer-border, #232831); }
.gl-footer-wa { border-color: color-mix(in srgb, var(--footer-wa, #25d366) 45%, transparent); background: color-mix(in srgb, var(--footer-wa, #25d366) 8%, transparent); }
.gl-footer-wa small, .gl-footer-wa svg.gl-icon { color: var(--footer-wa, #25d366); }
.gl-footer-wa svg.gl-icon:not(.gl-icon-whatsapp) { stroke: var(--footer-wa, #25d366); }
.gl-footer-social a:last-child { color: var(--footer-wa, #25d366); }
@supports not (background: color-mix(in srgb, #000 10%, transparent)) {
  .gl-footer-wa { border-color: rgba(37,211,102,.35); background: rgba(37,211,102,.08); }
}

/* --------------------------------------------------------------------------
   19. v2.6 editor compatibility + WhatsApp icon normalization
   -------------------------------------------------------------------------- */
.gulflimo-theme .gl-icon-whatsapp {
  width: 1.15em;
  height: 1.15em;
  display: inline-block;
  flex: 0 0 auto;
  fill: currentColor !important;
  stroke: none !important;
  vertical-align: -0.14em;
}
.gulflimo-theme .gl-icon-whatsapp path {
  fill: currentColor !important;
  stroke: none !important;
}
.gulflimo-theme .btn-whatsapp .gl-icon-whatsapp,
.gulflimo-theme .gl-footer-wa .gl-icon-whatsapp,
.gulflimo-theme .floating-whatsapp .gl-icon-whatsapp,
.gulflimo-theme .mobile-wa .gl-icon-whatsapp,
.gulflimo-theme .gl-footer-social .gl-icon-whatsapp {
  fill: currentColor !important;
  stroke: none !important;
}

/* Do not constrain Elementor/Gutenberg full-width builder pages. */
.gl-editor-page-full {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: clip;
}
.gl-editor-page-full > .elementor,
.gl-editor-page-full > .elementor-location-single,
.gl-editor-page-full > .wp-site-blocks,
.gl-editor-page-full > .entry-content {
  width: 100%;
  max-width: none;
}

/* Keep theme buttons and compact icons aligned even when page-builder CSS is present. */
.gulflimo-theme :is(.btn,.gl-footer-wa,.floating-whatsapp,.mobile-bar a,.contact-row) > svg.gl-icon {
  flex: 0 0 auto;
}
.gulflimo-theme .btn-whatsapp {
  align-items: center;
  justify-content: center;
  gap: 9px;
}


/* ==========================================================================\n   2.7 Inner-page design system\n   ========================================================================== */
.gl-inner-hero { position: relative; overflow: hidden; isolation: isolate; min-height: 520px; display:flex; align-items:flex-end; }
.gl-inner-hero::before { content:""; position:absolute; inset:0; z-index:-2; background: radial-gradient(820px 520px at 78% 18%, rgba(198,164,107,.18), transparent 58%), linear-gradient(120deg,#07090c,#141b25); }
.gl-inner-hero-image::before { background-image: linear-gradient(90deg,rgba(5,7,10,.96) 0%,rgba(5,7,10,.82) 46%,rgba(5,7,10,.34) 100%), var(--gl-page-hero-image); background-size:cover; background-position:center; }
.gl-inner-hero::after { content:""; position:absolute; inset:auto -8% -48% 40%; height:72%; z-index:-1; border:1px solid rgba(198,164,107,.16); border-radius:50%; transform:rotate(-7deg); }
.gl-inner-hero-grid { width:100%; display:grid; grid-template-columns:minmax(0,1fr) minmax(260px,.55fr); gap:48px; align-items:end; }
.gl-inner-hero-copy { max-width:820px; }
.gl-inner-hero-copy h1 { color:#fff; }
.gl-inner-hero-copy p { color:rgba(255,255,255,.76); max-width:680px; font-size:clamp(16px,1.7vw,19px); line-height:1.75; }
.gl-inner-hero-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:30px; }
.btn-ghost-light { border:1px solid rgba(255,255,255,.28); color:#fff; background:rgba(255,255,255,.04); }
.btn-ghost-light:hover { border-color:var(--gold); color:var(--gold-2); }
.gl-inner-hero-mark { align-self:end; justify-self:end; width:min(100%,320px); aspect-ratio:1/.78; border:1px solid rgba(255,255,255,.12); border-radius:30px; background:linear-gradient(145deg,rgba(255,255,255,.08),rgba(255,255,255,.02)); display:flex; flex-direction:column; justify-content:flex-end; padding:30px; backdrop-filter:blur(8px); }
.gl-inner-hero-mark span { font-family:Georgia,serif; font-size:88px; line-height:.8; color:rgba(198,164,107,.34); }
.gl-inner-hero-mark small { margin-top:28px; color:rgba(255,255,255,.56); text-transform:uppercase; letter-spacing:.16em; font-size:10px; }
.gl-section-heading { max-width:850px; margin-bottom:38px; }
.gl-section-heading h2 { font-family:var(--font-display); font-size:clamp(34px,4.3vw,58px); line-height:1.06; letter-spacing:-.045em; margin:10px 0 0; }
.gl-section-heading p { color:var(--muted); font-size:17px; line-height:1.7; }
.gl-section-heading-split { max-width:none; display:grid; grid-template-columns:minmax(0,1fr) minmax(300px,.72fr); gap:50px; align-items:end; }
.gl-section-heading-split p { margin:0 0 6px; }
.gl-section-heading-dark h2 { color:#fff; }
.gl-section-heading-dark p { color:rgba(255,255,255,.66); }
.gl-inner-soft { background:#f3f0e9; }
.gl-inner-dark { background:#090c11; color:#fff; }
.gl-value-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.gl-value-card { padding:30px; border:1px solid var(--line); border-radius:24px; background:#fff; min-width:0; }
.gl-value-card > svg, .gl-value-icon { width:48px; height:48px; display:grid; place-items:center; border:1px solid rgba(198,164,107,.32); border-radius:14px; color:var(--gold-deep); background:rgba(198,164,107,.08); }
.gl-value-card > svg { padding:12px; }
.gl-value-icon svg { width:22px; height:22px; }
.gl-value-card h3 { margin:22px 0 8px; font-size:21px; }
.gl-value-card p { margin:0; color:var(--muted); line-height:1.65; }
.gl-value-grid-dark .gl-value-card { background:#121821; border-color:rgba(255,255,255,.1); }
.gl-value-grid-dark .gl-value-card h3 { color:#fff; }
.gl-value-grid-dark .gl-value-card p { color:rgba(255,255,255,.65); }
.gl-value-grid-dark .gl-value-card > svg { color:var(--gold-2); }
.gl-story-grid { display:grid; grid-template-columns:minmax(0,.88fr) minmax(360px,1.12fr); gap:clamp(48px,7vw,90px); align-items:center; }
.gl-story-copy h2 { font-family:var(--font-display); font-size:clamp(36px,4.6vw,60px); line-height:1.06; letter-spacing:-.045em; margin:12px 0 22px; }
.gl-story-copy p { color:var(--muted); font-size:17px; line-height:1.8; }
.gl-story-copy .btn { margin-top:18px; }
.gl-story-visual { position:relative; }
.gl-story-visual img { display:block; width:100%; aspect-ratio:1.08/.84; object-fit:cover; border-radius:30px; box-shadow:var(--shadow-lg); }
.gl-story-badge { position:absolute; left:24px; bottom:24px; padding:16px 20px; border-radius:16px; background:rgba(7,9,12,.9); color:#fff; backdrop-filter:blur(10px); display:flex; flex-direction:column; }
.gl-story-badge strong { font-size:16px; }.gl-story-badge span { font-size:11px; color:rgba(255,255,255,.62); margin-top:2px; }
.gl-contact-cards { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; margin-bottom:56px; }
.gl-contact-card { min-width:0; display:grid; grid-template-columns:44px minmax(0,1fr) 20px; gap:14px; align-items:center; padding:22px; border:1px solid var(--line); border-radius:20px; background:#fff; transition:.2s ease; }
.gl-contact-card:hover { transform:translateY(-2px); border-color:rgba(198,164,107,.55); box-shadow:var(--shadow-sm); }
.gl-contact-card > svg:first-child, .gl-contact-card > .contact-icon { width:44px; height:44px; padding:11px; border-radius:12px; background:rgba(198,164,107,.09); color:var(--gold-deep); }
.gl-contact-card-wa > svg:first-child { color:#25d366; background:rgba(37,211,102,.1); }
.gl-contact-card > svg:last-child { width:18px; height:18px; color:var(--muted); }
.gl-contact-card span:nth-child(2) { min-width:0; display:flex; flex-direction:column; }
.gl-contact-card small { color:var(--muted); letter-spacing:.11em; font-weight:700; font-size:9px; }
.gl-contact-card strong { color:var(--text); font-size:16px; margin-top:3px; overflow-wrap:anywhere; }
.gl-contact-card em { color:var(--muted); font-style:normal; font-size:12px; margin-top:3px; }
.gl-contact-booking-grid { display:grid; grid-template-columns:minmax(310px,.72fr) minmax(0,1.28fr); gap:24px; align-items:stretch; }
.gl-contact-office { border-radius:28px; padding:clamp(30px,4vw,48px); background:#0d1219; color:#fff; }
.gl-contact-office h2 { font-family:var(--font-display); font-size:clamp(32px,3.8vw,48px); line-height:1.08; letter-spacing:-.04em; margin:12px 0 16px; color:#fff; }
.gl-contact-office > p { color:rgba(255,255,255,.67); line-height:1.7; }
.gl-contact-office-list { margin-top:30px; }
.gl-contact-office-list > div { display:grid; grid-template-columns:38px 1fr; gap:14px; padding:18px 0; border-top:1px solid rgba(255,255,255,.1); align-items:start; }
.gl-contact-office-list svg,.gl-contact-office-list .contact-icon { width:38px; height:38px; padding:9px; border-radius:11px; border:1px solid rgba(198,164,107,.28); color:var(--gold-2); }
.gl-contact-office-list span:last-child { display:flex; flex-direction:column; }
.gl-contact-office-list strong { color:#fff; font-size:14px; }.gl-contact-office-list small { color:rgba(255,255,255,.58); margin-top:3px; font-size:12px; }
.gl-contact-booking-card { border-radius:28px; overflow:hidden; box-shadow:var(--shadow-md); }
.gl-inner-cta { padding-top:0; }
.gl-inner-cta-box { background:linear-gradient(120deg,#0b0f15,#171e29); color:#fff; border:1px solid rgba(198,164,107,.18); border-radius:28px; padding:clamp(30px,4vw,52px); display:flex; justify-content:space-between; gap:30px; align-items:center; }
.gl-inner-cta-box h2 { color:#fff; margin:8px 0 0; font-family:var(--font-display); font-size:clamp(30px,3.6vw,46px); letter-spacing:-.04em; }
.gl-standard-content { max-width:960px; }
.gl-content-card { padding:clamp(28px,5vw,62px); border:1px solid var(--line); border-radius:28px; background:#fff; box-shadow:var(--shadow-sm); }
.gl-inner-service-grid .service-card, .gl-fleet-inner-grid .vehicle-card { height:100%; }
@media(max-width:980px){.gl-inner-hero-grid,.gl-section-heading-split,.gl-story-grid,.gl-contact-booking-grid{grid-template-columns:1fr}.gl-inner-hero-mark{display:none}.gl-contact-cards,.gl-value-grid{grid-template-columns:1fr}.gl-inner-hero-image::before{background-image:linear-gradient(90deg,rgba(5,7,10,.93),rgba(5,7,10,.68)),var(--gl-page-hero-image)}.gl-section-heading-split{gap:14px}.gl-inner-cta-box{align-items:flex-start;flex-direction:column}}
@media(max-width:640px){.gl-inner-hero{min-height:auto}.gl-inner-hero-actions{flex-direction:column;align-items:stretch}.gl-inner-hero-actions .btn{justify-content:center}.gl-contact-card{grid-template-columns:42px minmax(0,1fr) 18px;padding:18px}.gl-content-card{border-radius:20px;padding:24px}.gl-inner-cta-box{border-radius:22px}.gl-story-visual img{border-radius:22px}}


/* --------------------------------------------------------------------------
   2.8.0 Mobile form, fallback image branding and logo controls
   -------------------------------------------------------------------------- */
.gl-fallback-media,
.vehicle-media { position: relative; }
.gl-fallback-media > img,
.vehicle-fallback-img { display:block; width:100%; height:100%; object-fit:cover; }
.gl-image-watermark {
  position:absolute; z-index:3; pointer-events:none; user-select:none;
  font-family:var(--font-display); font-weight:800; letter-spacing:.02em;
  color:rgba(255,255,255,.88); background:rgba(5,7,10,.54);
  border:1px solid rgba(255,255,255,.16); backdrop-filter:blur(8px);
  text-shadow:0 2px 8px rgba(0,0,0,.45);
}
.gl-image-watermark-corner {
  right:12px; bottom:12px; padding:6px 9px; border-radius:8px;
  font-size:10px; line-height:1;
}
.gl-image-watermark-center {
  left:50%; top:50%; transform:translate(-50%,-50%);
  padding:8px 12px; border-radius:10px; font-size:14px;
}

@media (max-width: 767px) {
  .booking-card { width:100%; min-width:0; overflow:hidden; padding:20px 16px; }
  .booking-form, .booking-form .form-grid, .booking-form label { width:100%; min-width:0; }
  .booking-form .form-grid, .booking-form .form-grid-3 { display:grid; grid-template-columns:minmax(0,1fr); gap:14px; margin-bottom:14px; }
  .booking-form label > span { margin:0 0 7px; line-height:1.25; }
  .booking-form input,
  .booking-form select {
    display:block; width:100%; max-width:100%; min-width:0;
    height:56px; min-height:56px; padding:0 14px;
    border-radius:14px; font-size:16px; line-height:1.2;
    box-sizing:border-box; margin:0;
  }
  .booking-form input[type="date"],
  .booking-form input[type="time"] { -webkit-appearance:none; appearance:none; text-align:left; }
  [dir="rtl"] .booking-form input[type="date"],
  [dir="rtl"] .booking-form input[type="time"] { text-align:right; }
  .booking-submit { margin-top:16px; padding-bottom:8px; }
  .booking-submit .btn { min-height:56px; }
  .booking-section { padding-bottom:104px; }
  .gl-editor-page, .gl-inner-page { padding-bottom:84px; }
}


/* --------------------------------------------------------------------------
   2.8.1 Service image + watermark correction
   -------------------------------------------------------------------------- */
.gl-service-media,
.vehicle-media {
  position: relative;
  overflow: hidden;
}
.gl-service-media > img,
.vehicle-media > img,
.vehicle-fallback-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.gl-service-media {
  aspect-ratio: 16 / 10;
  background: var(--panel-2);
}
/* Retained for backwards compatibility only; never show branding text. */
.vehicle-placeholder > span,
.card-media-placeholder > span {
  display: none !important;
}
.gl-image-watermark {
  max-width: max-content !important;
  width: auto !important;
  height: auto !important;
  inset: auto !important;
}
.gl-image-watermark-corner {
  right: 12px !important;
  bottom: 12px !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
}
.gl-image-watermark-center {
  left: 50% !important;
  top: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translate(-50%,-50%) !important;
}


/* --------------------------------------------------------------------------
   2.8.3 Mobile menu + footer logo repair
   Narrowly scoped to mobile only.
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  /* Footer branding: prevent uploaded/custom logo from taking over the footer. */
  .site-footer .custom-logo-link,
  .site-footer .footer-logo,
  .site-footer .brand-logo,
  .gl-footer-brand .custom-logo-link,
  .gl-footer-brand .footer-logo {
    display: inline-flex !important;
    align-items: center !important;
    width: auto !important;
    max-width: 190px !important;
    height: auto !important;
  }

  .site-footer .custom-logo,
  .site-footer .footer-logo img,
  .site-footer .brand-logo img,
  .gl-footer-brand .custom-logo,
  .gl-footer-brand .footer-logo img {
    display: block !important;
    width: auto !important;
    height: 38px !important;
    max-width: 170px !important;
    object-fit: contain !important;
    object-position: left center !important;
  }

  [dir="rtl"] .site-footer .custom-logo,
  [dir="rtl"] .site-footer .footer-logo img,
  [dir="rtl"] .site-footer .brand-logo img,
  [dir="rtl"] .gl-footer-brand .custom-logo,
  [dir="rtl"] .gl-footer-brand .footer-logo img {
    object-position: right center !important;
  }

  /* Mobile navigation panel: isolate it from Elementor/plugin global menu colors. */
  .mobile-nav,
  .mobile-menu,
  .site-mobile-nav,
  .gl-mobile-nav,
  .nav-mobile-panel {
    background: #0b0e12 !important;
    color: #ffffff !important;
  }

  .mobile-nav a,
  .mobile-menu a,
  .site-mobile-nav a,
  .gl-mobile-nav a,
  .nav-mobile-panel a,
  .mobile-nav .menu-item > a,
  .mobile-menu .menu-item > a,
  .site-mobile-nav .menu-item > a,
  .gl-mobile-nav .menu-item > a {
    color: #ffffff !important;
    background: transparent !important;
    text-decoration: none !important;
  }

  .mobile-nav a:hover,
  .mobile-menu a:hover,
  .site-mobile-nav a:hover,
  .gl-mobile-nav a:hover,
  .nav-mobile-panel a:hover,
  .mobile-nav .current-menu-item > a,
  .mobile-menu .current-menu-item > a,
  .site-mobile-nav .current-menu-item > a,
  .gl-mobile-nav .current-menu-item > a {
    color: var(--gold, #d7b56d) !important;
    background: rgba(255,255,255,.04) !important;
  }

  /* Make sure submenu text does not inherit black from WP/Elementor. */
  .mobile-nav .sub-menu,
  .mobile-menu .sub-menu,
  .site-mobile-nav .sub-menu,
  .gl-mobile-nav .sub-menu {
    background: #11151b !important;
  }

  .mobile-nav .sub-menu a,
  .mobile-menu .sub-menu a,
  .site-mobile-nav .sub-menu a,
  .gl-mobile-nav .sub-menu a {
    color: #f3f5f7 !important;
  }

  /* Hamburger and close controls stay visible against the dark panel. */
  .mobile-menu-toggle,
  .menu-toggle,
  .nav-toggle,
  .mobile-nav-close,
  .mobile-menu-close {
    color: #ffffff !important;
  }

  .mobile-menu-toggle svg,
  .menu-toggle svg,
  .nav-toggle svg,
  .mobile-nav-close svg,
  .mobile-menu-close svg {
    stroke: currentColor !important;
    color: currentColor !important;
  }
}

/* 2.9.0 Performance: reserve media geometry before images decode. */
.gl-service-media { aspect-ratio: 16 / 10; }
.vehicle-media { aspect-ratio: 16 / 9; }
.gl-story-visual img { aspect-ratio: 3 / 2; object-fit: cover; }




/* --------------------------------------------------------------------------
   2.9.4 Stable hero restore
   Uses the proven pre-2.9 CSS-background implementation on all breakpoints.
   -------------------------------------------------------------------------- */
.hero {
  background:
    linear-gradient(120deg, rgba(7,9,13,.94) 0%, rgba(10,14,19,.84) 45%, rgba(13,17,24,.60) 100%),
    radial-gradient(1100px 640px at 76% 18%, rgba(198,164,107,.22), transparent 58%),
    var(--hero-img, url("../images/chauffeur-door.webp")) center / cover no-repeat #07090d !important;
}

.hero .hero-copy,
.hero .hero-panel,
.hero .hero-grid {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  color: #fff !important;
}

.hero-copy > p,
.hero-trust {
  color: rgba(255,255,255,.78) !important;
}

@media (max-width: 760px) {
  .hero {
    min-height: 0 !important;
    padding: 128px 0 60px !important;
    background:
      linear-gradient(180deg, rgba(7,9,13,.88) 0%, rgba(8,11,16,.82) 48%, rgba(7,9,13,.94) 100%),
      var(--hero-img, url("../images/chauffeur-door.webp")) center / cover no-repeat #07090d !important;
  }

  .hero-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 34px !important;
    align-items: stretch !important;
  }

  .hero-copy,
  .hero-panel {
    width: 100% !important;
    min-width: 0 !important;
  }

  .hero-copy h1 {
    font-size: clamp(40px, 12vw, 60px) !important;
    line-height: 1.02 !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .hero-copy p {
    font-size: 16px !important;
  }

  .luxury-card {
    width: 100% !important;
    min-height: 0 !important;
    padding: 30px 26px !important;
    border-radius: 24px !important;
  }
}


/* ==========================================================================
   2.10 Modern conversion enhancements — additive, original layout preserved
   ========================================================================== */
.gl-modern-proof-strip{background:#0b0e12;color:#fff;border-top:1px solid rgba(255,255,255,.08);border-bottom:1px solid rgba(255,255,255,.08)}
.gl-modern-proof-grid{min-height:76px;display:flex;align-items:center;justify-content:center;gap:0}
.gl-modern-proof-grid>div{display:grid;align-content:center;min-height:42px;padding:0 clamp(18px,3vw,34px);border-right:1px solid rgba(255,255,255,.12)}
.gl-modern-proof-grid>div:last-child{border-right:0}.gl-modern-proof-grid strong{font-size:15px;color:#fff}.gl-modern-proof-grid span{font-size:11px;color:rgba(255,255,255,.62)}
.gl-modern-payments{display:flex!important;grid-auto-flow:column;gap:10px;align-items:center}.gl-modern-payments img{display:block;object-fit:contain;background:#fff;border-radius:6px;padding:4px;max-height:30px;width:auto}.gl-modern-payments>span{border:1px solid rgba(255,255,255,.16);padding:6px 9px;border-radius:7px;color:#fff!important;font-weight:700}
.gl-modern-review-strip{background:#f5f0e6;border-bottom:1px solid #e8decb}.gl-modern-review-inner{display:grid;grid-template-columns:auto 1fr auto;gap:18px;align-items:center;padding-top:20px;padding-bottom:20px}.gl-modern-stars{color:#b78a35;letter-spacing:.08em}.gl-modern-review-inner blockquote{margin:0;font-size:15px;font-weight:650;color:#25282d}.gl-modern-review-inner>div{display:grid;text-align:right}.gl-modern-review-inner>div span{font-size:11px;color:#70757d}
.step-time{display:inline-flex!important;color:#9a722c!important;font-weight:800!important;font-size:11px!important;margin:0 0 6px!important;letter-spacing:.02em}
.gl-modern-fleet-price{display:grid;gap:2px;border-top:1px solid rgba(255,255,255,.10);padding-top:12px;margin-top:auto}.gl-modern-fleet-price small{color:rgba(255,255,255,.55)!important;font-size:11px}.gl-modern-fleet-price strong{color:#fff!important;font-size:18px}
.gl-modern-route-price{display:grid!important;text-align:right;color:var(--muted)!important;font-size:11px}.gl-modern-route-price strong{display:block;color:var(--text)!important;font-size:17px}
.gl-benefitpay{font-size:15px;color:#18222d}
.hero-trust span{min-height:22px}
@media(max-width:767px){
  .gl-modern-proof-grid{justify-content:flex-start;overflow:auto;padding:14px 18px;min-height:0}.gl-modern-proof-grid>div{flex:0 0 auto;padding:0 20px 0 0;margin-right:20px}
  .gl-modern-review-inner{grid-template-columns:1fr;gap:8px}.gl-modern-review-inner>div{text-align:left}
  .gl-modern-route-price{text-align:left}
}


/* ==========================================================================
   2.10.2 Mobile navigation + icon normalization
   ========================================================================== */
@media (max-width: 767px) {
  /* Mobile menu shell */
  .mobile-nav,
  .mobile-menu,
  .site-mobile-nav,
  .gl-mobile-nav,
  .nav-mobile-panel,
  .mobile-drawer,
  .site-nav.is-open,
  .main-navigation.is-open {
    background: #0a0d12 !important;
    color: #ffffff !important;
    border-color: rgba(255,255,255,.10) !important;
  }

  /* Main menu links */
  .mobile-nav a,
  .mobile-menu a,
  .site-mobile-nav a,
  .gl-mobile-nav a,
  .nav-mobile-panel a,
  .mobile-drawer a,
  .site-nav.is-open a,
  .main-navigation.is-open a,
  .mobile-nav .menu-item > a,
  .mobile-menu .menu-item > a,
  .site-mobile-nav .menu-item > a,
  .gl-mobile-nav .menu-item > a {
    color: #ffffff !important;
    background: transparent !important;
    text-decoration: none !important;
  }

  .mobile-nav a:hover,
  .mobile-menu a:hover,
  .site-mobile-nav a:hover,
  .gl-mobile-nav a:hover,
  .nav-mobile-panel a:hover,
  .mobile-drawer a:hover,
  .mobile-nav .current-menu-item > a,
  .mobile-menu .current-menu-item > a,
  .site-mobile-nav .current-menu-item > a,
  .gl-mobile-nav .current-menu-item > a {
    color: var(--gold, #c6a46b) !important;
    background: rgba(255,255,255,.045) !important;
  }

  /* Submenu */
  .mobile-nav .sub-menu,
  .mobile-menu .sub-menu,
  .site-mobile-nav .sub-menu,
  .gl-mobile-nav .sub-menu,
  .mobile-drawer .sub-menu {
    background: #11161d !important;
    border-color: rgba(255,255,255,.08) !important;
  }

  .mobile-nav .sub-menu a,
  .mobile-menu .sub-menu a,
  .site-mobile-nav .sub-menu a,
  .gl-mobile-nav .sub-menu a,
  .mobile-drawer .sub-menu a {
    color: #eef1f4 !important;
  }

  /* Hamburger / close buttons */
  .mobile-menu-toggle,
  .menu-toggle,
  .nav-toggle,
  .mobile-nav-close,
  .mobile-menu-close,
  .drawer-close {
    color: #ffffff !important;
    background: transparent !important;
    width: 44px !important;
    min-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
  }

  /* Normalize all SVGs used by mobile nav controls */
  .mobile-menu-toggle svg,
  .menu-toggle svg,
  .nav-toggle svg,
  .mobile-nav-close svg,
  .mobile-menu-close svg,
  .drawer-close svg,
  .mobile-nav svg,
  .mobile-menu svg,
  .site-mobile-nav svg,
  .gl-mobile-nav svg,
  .nav-mobile-panel svg {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    min-height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
    stroke: currentColor !important;
    color: currentColor !important;
    fill: none !important;
    flex: 0 0 22px !important;
  }

  /* WhatsApp icon uses its own filled mark */
  .gl-icon-whatsapp,
  .btn-whatsapp .gl-icon-whatsapp,
  .floating-whatsapp .gl-icon-whatsapp,
  .mobile-bar .gl-icon-whatsapp,
  .mobile-wa .gl-icon-whatsapp {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
    fill: currentColor !important;
    stroke: none !important;
    flex: 0 0 20px !important;
  }

  /* Bottom mobile action bar icons */
  .mobile-bar a {
    min-height: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    font-size: 16px !important;
    line-height: 1 !important;
  }

  .mobile-bar a svg {
    width: 19px !important;
    height: 19px !important;
    min-width: 19px !important;
    min-height: 19px !important;
    max-width: 19px !important;
    max-height: 19px !important;
    flex: 0 0 19px !important;
  }

  /* Keep menu list text vertically aligned */
  .mobile-nav .menu-item > a,
  .mobile-menu .menu-item > a,
  .site-mobile-nav .menu-item > a,
  .gl-mobile-nav .menu-item > a,
  .mobile-drawer .menu-item > a {
    min-height: 48px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 12px 16px !important;
    font-size: 16px !important;
    line-height: 1.35 !important;
  }
}


/* 2.10.3 exact menu-toggle state */
@media(max-width:1050px){
  .site-header .menu-toggle > span:not(.screen-reader-text){
    transition:transform .18s ease,opacity .18s ease !important;
  }
  .site-header .menu-toggle[aria-expanded="true"] > span:not(.screen-reader-text):nth-child(1){
    transform:translateY(7px) rotate(45deg) !important;
  }
  .site-header .menu-toggle[aria-expanded="true"] > span:not(.screen-reader-text):nth-child(2){
    opacity:0 !important;
  }
  .site-header .menu-toggle[aria-expanded="true"] > span:not(.screen-reader-text):nth-child(3){
    transform:translateY(-7px) rotate(-45deg) !important;
  }
}


/* 2.10.5 mobile drawer base */
@media(max-width:1050px){
  #mobile-menu.mobile-menu[hidden]{display:none!important}
  #mobile-menu.mobile-menu:not([hidden]){position:fixed;top:84px;right:0;bottom:0;left:0;z-index:9999;overflow:auto;background:#090c11}
  #mobile-menu .gulflimo-mobile-nav-list{list-style:none!important;margin:0!important;padding:0!important}
  #mobile-menu .gulflimo-mobile-nav-list li{list-style:none!important}
  #mobile-menu .gulflimo-mobile-nav-list li::marker{content:""!important}
  body.menu-open{overflow:hidden}
  body.menu-open .mobile-bar,body.menu-open .floating-whatsapp{display:none!important}
}


/* 2.10.6 AEO quick answers */
.gl-aeo-faq{background:#f7f6f2}
.gl-aeo-faq-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
.gl-aeo-faq details{background:#fff;border:1px solid #e3e1da;border-radius:14px;padding:0 18px}
.gl-aeo-faq summary{cursor:pointer;list-style:none;min-height:58px;display:flex;align-items:center;justify-content:space-between;gap:18px;font-weight:750;color:#171a1f}
.gl-aeo-faq summary::-webkit-details-marker{display:none}
.gl-aeo-faq summary:after{content:"+";font-size:22px;font-weight:400;color:#9a722c}
.gl-aeo-faq details[open] summary:after{content:"−"}
.gl-aeo-faq details p{margin:0;padding:0 0 18px;color:var(--muted);line-height:1.65}
@media(max-width:767px){.gl-aeo-faq-grid{grid-template-columns:1fr}.gl-aeo-faq summary{font-size:16px}}


/* ==========================================================================
   2.10.7 iPhone viewport containment + exact mobile menu
   ========================================================================== */
html, body {
  max-width: 100%;
  overflow-x: clip;
}
@supports not (overflow: clip) {
  html, body { overflow-x: hidden; }
}

@media (max-width: 760px) {
  html, body {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-x: hidden !important;
  }

  body * {
    box-sizing: border-box;
  }

  .container,
  .narrow {
    width: calc(100% - 28px) !important;
    max-width: calc(100% - 28px) !important;
    min-width: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .site-header,
  .site-header .header-inner,
  .hero,
  .hero-grid,
  .hero-copy,
  .hero-panel,
  .luxury-card,
  .hero-actions,
  .hero-trust,
  .section,
  .site-footer,
  main {
    max-width: 100vw !important;
    min-width: 0 !important;
  }

  .header-inner {
    width: calc(100% - 24px) !important;
    max-width: calc(100% - 24px) !important;
    gap: 8px !important;
  }

  .brand {
    min-width: 0 !important;
    max-width: 45vw !important;
    overflow: hidden !important;
  }

  .brand-name {
    font-size: 18px !important;
    white-space: nowrap !important;
  }

  .custom-logo-link img {
    max-width: 132px !important;
    max-height: 36px !important;
  }

  .header-actions {
    gap: 6px !important;
    min-width: 0 !important;
  }

  .language-switcher {
    flex: 0 0 auto !important;
  }

  .menu-toggle {
    flex: 0 0 44px !important;
  }

  .hero {
    padding: 104px 0 48px !important;
    overflow: hidden !important;
  }

  .hero-grid {
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 28px !important;
    overflow: hidden !important;
  }

  .hero-copy,
  .hero-panel {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .hero-copy h1,
  .hero-copy p,
  .luxury-card strong,
  .luxury-helper {
    max-width: 100% !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 10vw, 48px) !important;
    line-height: 1.04 !important;
  }

  .hero-actions {
    width: 100% !important;
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .hero-actions .btn,
  .hero-actions a {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    white-space: normal !important;
  }

  .hero-trust {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-trust span {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .luxury-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 24px 20px !important;
  }

  .luxury-meta {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0,1fr)) !important;
    gap: 6px !important;
  }

  .luxury-meta span {
    min-width: 0 !important;
    font-size: 8px !important;
    letter-spacing: .08em !important;
    text-align: center !important;
    white-space: normal !important;
  }

  #mobile-menu.mobile-menu:not([hidden]) {
    top: 72px !important;
    width: 100vw !important;
    max-width: 100vw !important;
    left: 0 !important;
    right: 0 !important;
  }

  #mobile-menu.mobile-menu:not([hidden]) > .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 18px 20px calc(30px + env(safe-area-inset-bottom)) !important;
  }

  #mobile-menu.mobile-menu ul,
  #mobile-menu.mobile-menu li {
    list-style: none !important;
    list-style-type: none !important;
    list-style-image: none !important;
    margin: 0 !important;
    padding-left: 0 !important;
  }

  #mobile-menu.mobile-menu li::before,
  #mobile-menu.mobile-menu li::marker {
    content: none !important;
    display: none !important;
  }

  #mobile-menu.mobile-menu a:not(.btn),
  #mobile-menu.mobile-menu a:not(.btn):link,
  #mobile-menu.mobile-menu a:not(.btn):visited,
  #mobile-menu.mobile-menu a:not(.btn) * {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    opacity: 1 !important;
  }

  #mobile-menu.mobile-menu .current-menu-item > a,
  #mobile-menu.mobile-menu .current-menu-item > a *,
  #mobile-menu.mobile-menu .current_page_item > a,
  #mobile-menu.mobile-menu .current_page_item > a * {
    color: #d7b56d !important;
    -webkit-text-fill-color: #d7b56d !important;
  }

  img, svg, video, iframe {
    max-width: 100% !important;
  }
}




/* 2.10.8 mobile Call button */
@media(max-width:767px){
  .mobile-bar .mobile-call{
    background:#0d1015!important;
    color:#fff!important;
    -webkit-text-fill-color:#fff!important;
  }
  .mobile-bar .mobile-call span{
    color:#fff!important;
    -webkit-text-fill-color:#fff!important;
  }
  .mobile-bar .mobile-call svg{
    color:#fff!important;
    stroke:#fff!important;
    fill:none!important;
  }
}


/* ==========================================================================
   2.11.0 Modern mobile menu + desktop floating contact actions
   ========================================================================== */

/* Desktop floating actions */
.gl-desktop-floating-actions{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:1095;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:10px;
}
.gl-desktop-float{
  min-height:50px;
  display:inline-flex;
  align-items:center;
  justify-content:flex-start;
  gap:10px;
  padding:0 16px;
  border-radius:999px;
  text-decoration:none!important;
  font-size:13px;
  font-weight:800;
  box-shadow:0 14px 36px rgba(0,0,0,.26);
  transition:transform .18s ease,box-shadow .18s ease,background .18s ease;
}
.gl-desktop-float:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 44px rgba(0,0,0,.32);
}
.gl-desktop-float svg{
  width:20px!important;
  height:20px!important;
  min-width:20px!important;
  max-width:20px!important;
  flex:0 0 20px!important;
}
.gl-desktop-float span{
  color:#fff!important;
  -webkit-text-fill-color:#fff!important;
}
.gl-desktop-float-call{
  background:#11161d!important;
  color:#fff!important;
  border:1px solid rgba(255,255,255,.12);
}
.gl-desktop-float-call svg,
.gl-desktop-float-call svg *{
  stroke:#fff!important;
  fill:none!important;
}
.gl-desktop-float-whatsapp{
  background:#25d366!important;
  color:#fff!important;
}
.gl-desktop-float-whatsapp svg,
.gl-desktop-float-whatsapp svg *{
  fill:#fff!important;
  stroke:none!important;
}

/* Mobile drawer polish */
@media(max-width:1050px){
  .gl-desktop-floating-actions{
    display:none!important;
  }

  #mobile-menu.mobile-menu:not([hidden]) > .container{
    padding-top:22px!important;
  }

  .gl-mobile-menu-kicker{
    margin:0 0 12px!important;
    padding:0 2px 10px!important;
    color:#d7b56d!important;
    -webkit-text-fill-color:#d7b56d!important;
    font-size:10px!important;
    font-weight:850!important;
    letter-spacing:.18em!important;
    text-transform:uppercase!important;
    border-bottom:1px solid rgba(255,255,255,.08)!important;
  }

  #mobile-menu .gulflimo-mobile-nav-list{
    display:grid!important;
    gap:6px!important;
  }

  #mobile-menu .gulflimo-mobile-nav-list > li{
    border:0!important;
    border-radius:12px!important;
    overflow:hidden!important;
  }

  #mobile-menu .gulflimo-mobile-nav-list > li > a{
    min-height:50px!important;
    padding:0 14px!important;
    border-radius:12px!important;
    background:rgba(255,255,255,.025)!important;
    border:1px solid rgba(255,255,255,.06)!important;
    color:#f5f7fa!important;
    -webkit-text-fill-color:#f5f7fa!important;
    font-size:16px!important;
    font-weight:650!important;
    transition:background .16s ease,border-color .16s ease,color .16s ease!important;
  }

  #mobile-menu .gulflimo-mobile-nav-list > li > a:hover,
  #mobile-menu .gulflimo-mobile-nav-list > li > a:focus{
    background:rgba(255,255,255,.065)!important;
    border-color:rgba(215,181,109,.26)!important;
  }

  #mobile-menu .gulflimo-mobile-nav-list > li.current-menu-item > a,
  #mobile-menu .gulflimo-mobile-nav-list > li.current_page_item > a{
    background:rgba(215,181,109,.10)!important;
    border-color:rgba(215,181,109,.32)!important;
    color:#d7b56d!important;
    -webkit-text-fill-color:#d7b56d!important;
  }

  #mobile-menu .gulflimo-mobile-nav-list .sub-menu{
    margin:6px 0 0!important;
    padding:6px!important;
    background:#0e1319!important;
    border:1px solid rgba(255,255,255,.06)!important;
    border-radius:10px!important;
  }

  #mobile-menu .gulflimo-mobile-nav-list .sub-menu a{
    min-height:44px!important;
    padding:0 12px!important;
    border-radius:8px!important;
    background:transparent!important;
    border:0!important;
    font-size:14px!important;
    color:#e7ebef!important;
    -webkit-text-fill-color:#e7ebef!important;
  }

  /* Text-only drawer actions: intentionally no icons. */
  #mobile-menu .gl-modern-mobile-actions{
    display:grid!important;
    grid-template-columns:1fr!important;
    gap:10px!important;
    margin:22px 0 0!important;
    padding:18px 0 0!important;
    border-top:1px solid rgba(255,255,255,.08)!important;
  }

  #mobile-menu .gl-mobile-menu-action{
    min-height:50px!important;
    width:100%!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    padding:0 16px!important;
    border-radius:12px!important;
    text-align:center!important;
    font-size:14px!important;
    font-weight:800!important;
    text-decoration:none!important;
  }

  #mobile-menu .gl-mobile-menu-action-primary,
  #mobile-menu .gl-mobile-menu-action-primary:link,
  #mobile-menu .gl-mobile-menu-action-primary:visited{
    background:#25d366!important;
    color:#fff!important;
    -webkit-text-fill-color:#fff!important;
    border:1px solid #25d366!important;
  }

  #mobile-menu .gl-mobile-menu-action-secondary,
  #mobile-menu .gl-mobile-menu-action-secondary:link,
  #mobile-menu .gl-mobile-menu-action-secondary:visited{
    background:#12171e!important;
    color:#fff!important;
    -webkit-text-fill-color:#fff!important;
    border:1px solid rgba(255,255,255,.13)!important;
  }

  #mobile-menu .gl-modern-mobile-actions svg,
  #mobile-menu .gl-mobile-menu-action svg{
    display:none!important;
  }
}

/* Mobile bottom bar remains the only mobile floating contact UI. */
@media(max-width:767px){
  .gl-desktop-floating-actions{
    display:none!important;
  }
}


/* ==========================================================================
   2.11.1 Production go-live cleanup
   ========================================================================== */

/* Desktop floating actions: compact icon-only controls */
.gl-desktop-floating-actions{
  right:24px;
  bottom:24px;
  gap:10px;
}
.gl-desktop-float{
  width:50px!important;
  height:50px!important;
  min-width:50px!important;
  min-height:50px!important;
  max-width:50px!important;
  max-height:50px!important;
  padding:0!important;
  border-radius:50%!important;
  display:grid!important;
  place-items:center!important;
  overflow:hidden!important;
}
.gl-desktop-float svg{
  width:21px!important;
  height:21px!important;
  min-width:21px!important;
  max-width:21px!important;
  margin:0!important;
}
.gl-desktop-float span{
  display:none!important;
}

/* Footer navigation/list cleanup: never show browser/theme bullets */
.site-footer ul,
.site-footer ol,
.site-footer li,
.footer-nav,
.footer-nav ul,
.footer-nav li,
.footer-links,
.footer-links ul,
.footer-links li,
.footer-menu,
.footer-menu ul,
.footer-menu li{
  list-style:none!important;
  list-style-type:none!important;
  list-style-image:none!important;
}
.site-footer ul,
.site-footer ol,
.footer-nav,
.footer-links,
.footer-menu{
  margin-left:0!important;
  padding-left:0!important;
}
.site-footer li::marker,
.site-footer li::before,
.footer-nav li::marker,
.footer-nav li::before,
.footer-links li::marker,
.footer-links li::before,
.footer-menu li::marker,
.footer-menu li::before{
  content:none!important;
  display:none!important;
}

/* Debug/version marker stays subtle when intentionally enabled */
.gl-theme-build{
  font-size:10px!important;
  letter-spacing:.08em!important;
  color:rgba(255,255,255,.38)!important;
  text-align:center!important;
  padding:8px 12px 10px!important;
}

/* Prevent debug marker spacing from affecting normal live footer */
.site-footer + .gl-theme-build,
.gl-theme-build:empty{
  display:none!important;
}

@media(max-width:1050px){
  /* desktop floating actions stay desktop-only */
  .gl-desktop-floating-actions{
    display:none!important;
  }
}


/* ==========================================================================
   2.11.1 hotfix — bottom gap + desktop floating icons
   ========================================================================== */

/* Remove any residual page/footer gap without changing section layout */
html,
body{
  margin:0 !important;
  padding:0 !important;
  background:#090b0e !important;
}
body,
#page,
.site{
  min-height:100%;
}
main,
.site-main,
.site-footer{
  margin-bottom:0 !important;
}
.site-footer{
  background:#090b0e !important;
}
body > *:last-child{
  margin-bottom:0 !important;
}

/* If the optional debug marker is disabled, it must contribute zero space */
.gl-theme-build:empty{
  display:none !important;
}
.gl-theme-build{
  margin:0 !important;
}

/* Desktop floating actions: exact same size and alignment */
@media (min-width:1051px){
  .gl-desktop-floating-actions{
    position:fixed !important;
    right:24px !important;
    bottom:24px !important;
    width:52px !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:flex-end !important;
    gap:10px !important;
    margin:0 !important;
    padding:0 !important;
    z-index:1095 !important;
  }

  .gl-desktop-floating-actions .gl-desktop-float{
    width:52px !important;
    height:52px !important;
    min-width:52px !important;
    min-height:52px !important;
    max-width:52px !important;
    max-height:52px !important;
    margin:0 !important;
    padding:0 !important;
    border-radius:50% !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    flex:0 0 52px !important;
    box-sizing:border-box !important;
    overflow:hidden !important;
  }

  .gl-desktop-floating-actions .gl-desktop-float svg{
    display:block !important;
    width:21px !important;
    height:21px !important;
    min-width:21px !important;
    min-height:21px !important;
    max-width:21px !important;
    max-height:21px !important;
    margin:0 !important;
    padding:0 !important;
    flex:0 0 21px !important;
    transform:none !important;
  }

  .gl-desktop-floating-actions .gl-desktop-float-call{
    background:#11161d !important;
    border:1px solid rgba(215,181,109,.35) !important;
    box-shadow:0 10px 28px rgba(0,0,0,.28) !important;
  }
  .gl-desktop-floating-actions .gl-desktop-float-call svg,
  .gl-desktop-floating-actions .gl-desktop-float-call svg *{
    stroke:#ffffff !important;
    fill:none !important;
  }

  .gl-desktop-floating-actions .gl-desktop-float-whatsapp{
    background:#25d366 !important;
    border:1px solid rgba(255,255,255,.18) !important;
    box-shadow:0 10px 28px rgba(0,0,0,.28) !important;
  }
  .gl-desktop-floating-actions .gl-desktop-float-whatsapp svg,
  .gl-desktop-floating-actions .gl-desktop-float-whatsapp svg *{
    fill:#ffffff !important;
    stroke:none !important;
  }

  .gl-desktop-floating-actions .gl-desktop-float:hover{
    transform:translateY(-2px) !important;
  }
}


/* ==========================================================================
   2.11.3 Restore original light homepage section backgrounds
   ========================================================================== */

/* Keep the footer/body gap fix, but restore the original light content sections. */
.services-section,
.gl-services-section,
.routes-section,
.gl-routes-section,
#services,
#routes,
section.services,
section.routes,
.home-services,
.home-routes {
  background:#ffffff !important;
  color:var(--text) !important;
}

/* Ensure headings/body copy inside the restored light sections use the original dark palette. */
.services-section h2,
.services-section h3,
.gl-services-section h2,
.gl-services-section h3,
.routes-section h2,
.routes-section h3,
.gl-routes-section h2,
.gl-routes-section h3,
#services h2,
#services h3,
#routes h2,
#routes h3 {
  color:var(--text) !important;
}

.services-section p,
.gl-services-section p,
.routes-section p,
.gl-routes-section p,
#services p,
#routes p {
  color:var(--muted) !important;
}


/* ==========================================================================
   2.11.4 Exact homepage light-section restoration
   ========================================================================== */
.gl-home-services-light,
.gl-home-routes-light{
  background:#ffffff !important;
  color:#15181d !important;
}

.gl-home-services-light .section-head h2,
.gl-home-services-light .section-head h3,
.gl-home-routes-light .section-head h2,
.gl-home-routes-light .section-head h3,
.gl-home-routes-light .route-card h3,
.gl-home-services-light .service-card h3{
  color:#15181d !important;
  -webkit-text-fill-color:#15181d !important;
}

.gl-home-services-light .section-head p,
.gl-home-services-light .section-copy,
.gl-home-routes-light .section-head p,
.gl-home-routes-light .section-copy,
.gl-home-services-light .service-card p,
.gl-home-routes-light .route-card p{
  color:#66707a !important;
  -webkit-text-fill-color:#66707a !important;
}

.gl-home-services-light .eyebrow,
.gl-home-routes-light .eyebrow{
  color:#8b6b31 !important;
  -webkit-text-fill-color:#8b6b31 !important;
}

.gl-home-services-light .text-link,
.gl-home-services-light .text-link *,
.gl-home-routes-light .text-link,
.gl-home-routes-light .text-link *{
  color:#171a1f !important;
  -webkit-text-fill-color:#171a1f !important;
}

.gl-home-routes-light .route-card{
  background:#ffffff !important;
  border-color:#d8dadd !important;
}

.gl-home-routes-light .route-card h3 > span{
  color:#b08a43 !important;
  -webkit-text-fill-color:#b08a43 !important;
}

.gl-home-services-light .service-card{
  background:#ffffff !important;
  color:#15181d !important;
}

.gl-home-services-light .service-card .card-body,
.gl-home-services-light .service-card .card-content{
  background:#ffffff !important;
}

@media(max-width:767px){
  .gl-home-services-light,
  .gl-home-routes-light{
    background:#ffffff !important;
  }
}
