/* =====================================================================
   PINDI BOYS CAR RENTAL LLC — Luxury Dubai Mobility
   Design System  ·  Dark · Navy · Gold · Electric-Blue · Glassmorphism
   Hand-coded, dependency-free, mobile-first, Core-Web-Vitals friendly.
   ===================================================================== */

/* ---------- Design Tokens ------------------------------------------- */
:root {
  /* Surfaces */
  --bg:        #05070d;
  --bg-2:      #080c18;
  --bg-3:      #0b1124;
  --navy:      #0b1a3a;
  --navy-2:    #0a1730;

  /* Brand accents */
  --gold:      #d4af37;
  --gold-2:    #f5d77a;
  --gold-soft: rgba(212,175,55,.16);
  --blue:      #2f7bff;
  --blue-2:    #5fb0ff;
  --blue-soft: rgba(47,123,255,.18);

  /* Text */
  --ink:       #f4f6fb;
  --ink-soft:  #c5cee0;
  --ink-mute:  #8893ac;

  /* Glass */
  --glass:        rgba(255,255,255,.045);
  --glass-strong: rgba(255,255,255,.07);
  --glass-brd:    rgba(255,255,255,.10);
  --glass-brd-2:  rgba(255,255,255,.16);

  /* Shadows / glow */
  --shadow:    0 24px 60px -22px rgba(0,0,0,.75);
  --shadow-lg: 0 40px 90px -30px rgba(0,0,0,.85);
  --glow-gold: 0 0 40px -6px rgba(212,175,55,.45);
  --glow-blue: 0 0 50px -8px rgba(47,123,255,.55);

  /* Layout */
  --maxw:      1560px;
  --gutter:    clamp(14px, 2.5vw, 24px);
  --radius:    20px;
  --radius-sm: 14px;
  --radius-lg: 28px;

  /* Type */
  --font-head: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --ease:      cubic-bezier(.22,.61,.36,1);
  --header-h:  74px;
}

/* ---------- Reset --------------------------------------------------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,svg,video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }
input,select,textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--blue-2); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--gold); color: #1a1300; }

/* ---------- Ambient cinematic background ---------------------------- */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(1100px 720px at 78% -8%, rgba(47,123,255,.20), transparent 60%),
    radial-gradient(900px 620px at 8% 12%, rgba(212,175,55,.12), transparent 58%),
    radial-gradient(1200px 900px at 50% 110%, rgba(11,26,58,.85), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 45%, var(--bg) 100%);
}
body::after {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 80%);
}

/* ---------- Layout helpers ------------------------------------------ */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 130px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 90px); }
.grid { display: grid; gap: clamp(18px, 2.4vw, 30px); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.maxw-720 { max-width: 720px; }

/* ---------- Typography ---------------------------------------------- */
h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.06; letter-spacing: -.02em; }
.display { font-size: clamp(2rem, 4.2vw, 3rem); font-weight: 800; }
.h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
.lead { font-size: clamp(1.02rem, 1.5vw, 1.2rem); color: var(--ink-soft); }
.muted { color: var(--ink-mute); }
.text-gold { color: var(--gold-2); }

.gold-text {
  background: linear-gradient(95deg, var(--gold) 0%, var(--gold-2) 45%, #fff6da 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.blue-text {
  background: linear-gradient(95deg, var(--blue) 0%, var(--blue-2) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600;
  font-size: .76rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold-2);
  padding: 8px 16px; border-radius: 100px;
  background: var(--gold-soft); border: 1px solid rgba(212,175,55,.32);
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: var(--glow-gold); }

.section-head { max-width: 680px; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head.center { margin-inline: auto; }
.section-head .lead { margin-top: 16px; }

/* ---------- Buttons ------------------------------------------------- */
.btn {
  --b: var(--gold);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  padding: 14px 26px; border-radius: 100px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
  white-space: nowrap; position: relative; isolation: isolate;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-3px); }

.btn-gold {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #1c1500; box-shadow: var(--glow-gold), 0 14px 30px -14px rgba(212,175,55,.7);
}
.btn-gold:hover { box-shadow: 0 0 60px -4px rgba(212,175,55,.7), 0 20px 40px -16px rgba(212,175,55,.8); }

.btn-wa { background: linear-gradient(120deg,#25d366 0%,#1dad53 100%); color: #04250f; box-shadow: 0 0 40px -8px rgba(37,211,102,.6); }
.btn-wa:hover { box-shadow: 0 0 60px -4px rgba(37,211,102,.75); }

.btn-ghost { background: var(--glass); border: 1px solid var(--glass-brd-2); color: var(--ink); backdrop-filter: blur(12px); }
.btn-ghost:hover { background: var(--glass-strong); border-color: rgba(255,255,255,.3); }

.btn-blue { background: linear-gradient(120deg,var(--blue) 0%, var(--blue-2) 100%); color: #021024; box-shadow: var(--glow-blue); }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 18px; font-size: .85rem; }

/* ---------- Glass cards --------------------------------------------- */
.glass {
  background: linear-gradient(160deg, var(--glass-strong), var(--glass));
  border: 1px solid var(--glass-brd);
  border-radius: var(--radius);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}
.card {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, rgba(255,255,255,.06), rgba(255,255,255,.018));
  border: 1px solid var(--glass-brd);
  border-radius: var(--radius);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.card::after { /* top sheen */
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  opacity: .6;
}
.card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-brd-2);
  box-shadow: var(--shadow-lg), 0 0 44px -16px rgba(47,123,255,.5);
}
.card-pad { padding: clamp(22px, 3vw, 30px); }

/* ---------- Media frame (Seedream image slots) --------------------- */
.media {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background:
    radial-gradient(120% 80% at 70% 0%, rgba(47,123,255,.30), transparent 55%),
    radial-gradient(100% 90% at 10% 100%, rgba(212,175,55,.22), transparent 55%),
    linear-gradient(145deg, var(--navy) 0%, var(--bg) 100%);
  isolation: isolate;
}
.media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover .media img { transform: scale(1.06); }
.media::before { /* cinematic vignette + light streak when no image present */
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, transparent 40%, rgba(0,0,0,.55) 100%),
    radial-gradient(60% 40% at 80% 15%, rgba(95,176,255,.25), transparent 60%);
}
.media .placeholder { /* fallback behind the image: a loaded photo always covers it */
  position: absolute; inset: 0; z-index: -1; display: grid; place-content: center; gap: 8px; text-align: center;
  color: var(--ink-mute); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
}
.media .placeholder svg { width: 42px; height: 42px; opacity: .5; margin-inline: auto; }
.ratio-16-9 { aspect-ratio: 16/9; }
.ratio-4-3  { aspect-ratio: 4/3; }
.ratio-3-2  { aspect-ratio: 3/2; }
.ratio-1-1  { aspect-ratio: 1/1; }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px;
  background: var(--blue-soft); color: var(--blue-2); border: 1px solid rgba(95,176,255,.3);
}
.tag-gold { background: var(--gold-soft); color: var(--gold-2); border-color: rgba(212,175,55,.32); }

/* =====================================================================
   HEADER
   ===================================================================== */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(6,9,16,.72);
  backdrop-filter: blur(18px) saturate(160%); -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--glass-brd);
  box-shadow: 0 18px 40px -28px rgba(0,0,0,.9);
}
.nav { display: flex; align-items: center; gap: 24px; height: var(--header-h); }

.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; letter-spacing: -.01em; }
.brand .mark {
  width: 40px; height: 40px; border-radius: 11px; flex: none;
  display: grid; place-content: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #1a1300; font-weight: 800; font-size: .95rem;
  box-shadow: var(--glow-gold);
}
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-2); }
.brand-logo { gap: 0; }
.brand-logo img { height: 44px; width: auto; display: block; }
.footer .brand-logo img { height: 58px; }
@media (max-width: 620px) { .brand-logo img { height: 38px; } }

.nav-links { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.nav-links a {
  position: relative; padding: 9px 14px; border-radius: 100px;
  font-size: .92rem; color: var(--ink-soft); font-weight: 500;
  transition: color .3s var(--ease), background .3s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2)); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold-2); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-content: center;
  background: var(--glass); border: 1px solid var(--glass-brd);
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.icon-btn:hover { transform: translateY(-2px); border-color: var(--glass-brd-2); background: var(--glass-strong); }
.icon-btn svg { width: 19px; height: 19px; }

.burger { display: none; width: 44px; height: 44px; border-radius: 12px; background: var(--glass); border: 1px solid var(--glass-brd); position: relative; }
.burger span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--ink); border-radius: 2px; transition: .35s var(--ease); }
.burger span:nth-child(1){ top: 16px; } .burger span:nth-child(2){ top: 21px; } .burger span:nth-child(3){ top: 26px; }
body.menu-open .burger span:nth-child(1){ top: 21px; transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2){ opacity: 0; }
body.menu-open .burger span:nth-child(3){ top: 21px; transform: rotate(-45deg); }

/* Mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 99; display: none; }
.drawer .scrim { position: absolute; inset: 0; background: rgba(3,5,10,.6); backdrop-filter: blur(6px); opacity: 0; transition: opacity .35s var(--ease); }
.drawer .panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 360px);
  background: linear-gradient(180deg, var(--bg-3), var(--bg));
  border-left: 1px solid var(--glass-brd);
  padding: calc(var(--header-h) + 16px) 26px 30px;
  transform: translateX(100%); transition: transform .4s var(--ease);
  display: flex; flex-direction: column; gap: 8px;
}
.drawer.open { display: block; }
body.menu-open .drawer .scrim { opacity: 1; }
body.menu-open .drawer .panel { transform: translateX(0); }
.drawer a { padding: 14px 16px; border-radius: 14px; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--ink-soft); transition: .3s var(--ease); }
.drawer a:hover, .drawer a.active { background: var(--glass); color: var(--gold-2); }
.drawer .btn { margin-top: 8px; }
.drawer-foot { margin-top: auto; color: var(--ink-mute); font-size: .85rem; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero { position: relative; padding-top: calc(var(--header-h) + clamp(10px, 2vw, 28px)); padding-bottom: clamp(28px, 4vw, 56px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.hero h1 { margin-block: 18px 20px; }
.hero .lead { max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: clamp(20px,4vw,46px); margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--glass-brd); }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.6rem,3vw,2.3rem); }
.stat .lbl { font-size: .82rem; color: var(--ink-mute); letter-spacing: .04em; }

.hero-visual { position: relative; }
.hero-visual .media { aspect-ratio: 16/10; box-shadow: var(--shadow-lg), var(--glow-blue); border: 1px solid var(--glass-brd-2); }
.float-card {
  position: absolute; z-index: 3; padding: 14px 18px; border-radius: 16px;
  background: rgba(8,12,24,.82); border: 1px solid var(--glass-brd-2);
  backdrop-filter: blur(14px); box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px; animation: floaty 6s var(--ease) infinite;
}
.float-card .ic { width: 38px; height: 38px; border-radius: 10px; display: grid; place-content: center; background: var(--gold-soft); color: var(--gold-2); }
.float-card .ic svg { width: 20px; height: 20px; }
.float-card b { font-family: var(--font-head); font-size: .95rem; }
.float-card span { display: block; font-size: .76rem; color: var(--ink-mute); }
.float-card.fc-1 { top: 8%; left: -6%; }
.float-card.fc-2 { bottom: 12%; right: -5%; animation-delay: -3s; }
@keyframes floaty { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-12px); } }

.hero-orb { position: absolute; border-radius: 50%; filter: blur(70px); z-index: -1; }
.orb-blue { width: 380px; height: 380px; background: rgba(47,123,255,.4); top: -120px; right: -80px; }
.orb-gold { width: 300px; height: 300px; background: rgba(212,175,55,.28); bottom: -120px; left: -60px; }

/* Marquee trust bar */
.trust-bar { border-block: 1px solid var(--glass-brd); background: rgba(255,255,255,.02); overflow: hidden; }
.marquee { display: flex; gap: 56px; padding: 18px 0; width: max-content; animation: marquee 28s linear infinite; }
.marquee span { font-family: var(--font-head); font-weight: 600; color: var(--ink-mute); font-size: .95rem; letter-spacing: .04em; white-space: nowrap; display: inline-flex; align-items: center; gap: 14px; }
.marquee span::after { content: "◆"; color: var(--gold); font-size: .6rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =====================================================================
   BOOKING CARD
   ===================================================================== */
.booking {
  position: relative; z-index: 5; margin-top: -34px;
}
.booking-card { padding: clamp(20px, 3vw, 30px); }
.booking-grid { display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 14px; align-items: end; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); }
.field .control {
  display: flex; align-items: center; gap: 10px;
  background: rgba(4,6,12,.6); border: 1px solid var(--glass-brd); border-radius: 12px;
  padding: 12px 14px; transition: border-color .3s var(--ease);
}
.field .control:focus-within { border-color: var(--blue-2); box-shadow: 0 0 0 3px rgba(47,123,255,.18); }
.field .control svg { width: 18px; height: 18px; color: var(--gold-2); flex: none; }
.field input, .field select { width: 100%; background: transparent; border: 0; outline: none; font-size: .92rem; }
.field select option { background: var(--bg-3); color: var(--ink); }

/* =====================================================================
   FLEET / CAR CARDS
   ===================================================================== */
.fleet-grid { grid-template-columns: repeat(3, 1fr); }
.fleet-category { margin-bottom: clamp(40px, 5vw, 64px); }
.fleet-category:last-of-type { margin-bottom: 0; }
.fleet-cat-head { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px 16px; margin-bottom: clamp(20px, 2.5vw, 30px); padding-bottom: 14px; border-bottom: 1px solid rgba(212,175,55,.18); }
.fleet-cat-title { font-size: clamp(1.3rem, 2.4vw, 1.85rem); font-weight: 800; letter-spacing: -.01em; }
.fleet-cat-title::before { content: ""; display: inline-block; width: 26px; height: 3px; border-radius: 3px; background: linear-gradient(90deg, var(--gold), transparent); vertical-align: middle; margin-right: 12px; transform: translateY(-5px); }
.fleet-cat-sub { color: var(--muted); font-size: .95rem; }
.car-card { display: flex; flex-direction: column; }
.car-card .media { aspect-ratio: 4/3; border-radius: var(--radius) var(--radius) 0 0; }
.car-card .ribbon { position: absolute; top: 14px; left: 14px; z-index: 3; }
.car-card .fav { position: absolute; top: 14px; right: 14px; z-index: 3; }
.car-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.car-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.car-name { font-family: var(--font-head); font-weight: 700; font-size: 1.18rem; }
.car-name small { display: block; font-weight: 500; font-size: .8rem; color: var(--ink-mute); }
.car-price { text-align: right; }
.car-price .now { font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: var(--gold-2); }
.car-price .per { font-size: .74rem; color: var(--ink-mute); }
.car-price .month { font-size: .82rem; color: var(--ink-soft); margin-top: 2px; }
.specs { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; padding: 14px 0; border-block: 1px solid var(--glass-brd); }
.spec { display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; font-size: .8rem; color: var(--ink-soft); }
.spec svg { width: 20px; height: 20px; color: var(--blue-2); }
.car-actions { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin-top: auto; }

/* Filter chips */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.chip {
  padding: 10px 18px; border-radius: 100px; font-size: .88rem; font-weight: 500;
  background: var(--glass); border: 1px solid var(--glass-brd); color: var(--ink-soft);
  transition: .3s var(--ease);
}
.chip:hover { border-color: var(--glass-brd-2); color: var(--ink); }
.chip.active { background: linear-gradient(120deg,var(--gold),var(--gold-2)); color:#1c1500; border-color: transparent; box-shadow: var(--glow-gold); }
.is-hidden { display: none !important; }

/* =====================================================================
   FEATURE / SERVICE CARDS
   ===================================================================== */
.cols-3 { grid-template-columns: repeat(3,1fr); }
.cols-4 { grid-template-columns: repeat(4,1fr); }
.cols-2 { grid-template-columns: repeat(2,1fr); }

.feature { padding: clamp(22px,3vw,30px); display: flex; flex-direction: column; gap: 14px; }
.feature .ic {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-content: center;
  background: linear-gradient(135deg, rgba(212,175,55,.2), rgba(47,123,255,.18));
  border: 1px solid var(--glass-brd); color: var(--gold-2);
}
.feature .ic svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.18rem; }
.feature p { color: var(--ink-soft); font-size: .95rem; }

/* Service card (chauffeur) */
.service { display: flex; flex-direction: column; overflow: hidden; }
.service .media { aspect-ratio: 16/9; border-radius: var(--radius) var(--radius) 0 0; }
.service .s-body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.service h3 { font-size: 1.22rem; }
.service ul.ticks { display: flex; flex-direction: column; gap: 8px; margin: 4px 0 6px; }
.service ul.ticks li { display: flex; gap: 10px; font-size: .9rem; color: var(--ink-soft); }
.service ul.ticks li::before { content: "✓"; color: var(--gold-2); font-weight: 700; }
.service .s-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.service .from { font-size: .82rem; color: var(--ink-mute); }
.service .from b { font-family: var(--font-head); font-size: 1.15rem; color: var(--gold-2); }

/* =====================================================================
   REVIEWS SLIDER
   ===================================================================== */
.reviews-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 36px; }
.gscore { display: flex; align-items: center; gap: 14px; }
.gscore .big { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }
.slider { position: relative; }
.slides { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; scrollbar-width: none; }
.slides::-webkit-scrollbar { display: none; }
.review { flex: 0 0 clamp(280px, 32vw, 380px); scroll-snap-align: start; padding: 26px 28px; display: flex; flex-direction: column; gap: 14px; }
.review .quote { font-size: 1rem; color: var(--ink-soft); }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review .avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg,var(--blue),var(--gold)); display: grid; place-content: center; font-family: var(--font-head); font-weight: 700; color: #04101f; }
.review .who b { font-family: var(--font-head); font-size: .95rem; }
.review .who span { font-size: .8rem; color: var(--ink-mute); }
.slider-nav { display: flex; gap: 10px; margin-top: 22px; }
.slider-nav button { width: 46px; height: 46px; }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq { overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { width: 30px; height: 30px; border-radius: 50%; flex: none; display: grid; place-content: center; background: var(--gold-soft); color: var(--gold-2); transition: transform .35s var(--ease); font-size: 1.2rem; }
.faq[open] summary .pm { transform: rotate(45deg); }
.faq .a { padding: 0 24px 22px; color: var(--ink-soft); font-size: .96rem; }

/* =====================================================================
   BLOG
   ===================================================================== */
.blog-grid { grid-template-columns: repeat(3,1fr); }
.post { display: flex; flex-direction: column; overflow: hidden; }
.post .media { aspect-ratio: 16/10; border-radius: var(--radius) var(--radius) 0 0; }
.post .p-body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.post .p-meta { display: flex; gap: 14px; font-size: .78rem; color: var(--ink-mute); }
.post h3 { font-size: 1.18rem; line-height: 1.3; }
.post h3 a { transition: color .3s var(--ease); }
.post:hover h3 a { color: var(--gold-2); }
.post .more { margin-top: auto; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--gold-2); display: inline-flex; gap: 8px; align-items: center; }
.post.feature-post { grid-column: span 2; }
.blog-toolbar { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.search { display: flex; align-items: center; gap: 10px; background: var(--glass); border: 1px solid var(--glass-brd); border-radius: 100px; padding: 11px 18px; min-width: min(320px,100%); }
.search input { background: transparent; border: 0; outline: none; width: 100%; }
.search svg { width: 18px; height: 18px; color: var(--ink-mute); }

/* =====================================================================
   ABOUT
   ===================================================================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,60px); align-items: center; }
.stat-band { grid-template-columns: repeat(4,1fr); text-align: center; }
.stat-band .glass { padding: 26px 18px; }
.stat-band .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.8rem,4vw,2.6rem); }
.value-list { display: flex; flex-direction: column; gap: 16px; }
.value { display: flex; gap: 16px; align-items: flex-start; }
.value .ic { width: 46px; height: 46px; flex: none; border-radius: 13px; display: grid; place-content: center; background: var(--gold-soft); color: var(--gold-2); border: 1px solid rgba(212,175,55,.3); }
.value .ic svg { width: 22px; height: 22px; }
.value h4 { font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 4px; }
.value p { font-size: .9rem; color: var(--ink-soft); }

/* Page hero (inner pages) */
.page-hero { position: relative; overflow: hidden; padding-top: calc(var(--header-h) + clamp(14px,2.5vw,36px)); padding-bottom: clamp(28px,4vw,52px); text-align: center; }
.page-hero .lead { margin: 16px auto 0; max-width: 620px; }
.breadcrumb { display: inline-flex; gap: 8px; align-items: center; font-size: .82rem; color: var(--ink-mute); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--gold-2); }

/* =====================================================================
   CTA BANNER
   ===================================================================== */
.cta-banner { position: relative; overflow: hidden; padding: clamp(40px,6vw,72px); border-radius: var(--radius-lg); text-align: center;
  background:
    radial-gradient(120% 120% at 50% -20%, rgba(47,123,255,.28), transparent 60%),
    radial-gradient(80% 120% at 50% 120%, rgba(212,175,55,.22), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--bg) 100%);
  border: 1px solid var(--glass-brd-2); box-shadow: var(--shadow-lg);
}
.cta-banner .btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 28px; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { border-top: 1px solid var(--glass-brd); margin-top: clamp(40px,6vw,80px); background: rgba(4,6,12,.5); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-block: clamp(46px,6vw,72px); }
.footer h5 { font-family: var(--font-head); font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 18px; }
.footer a { color: var(--ink-soft); font-size: .92rem; display: inline-block; padding: 5px 0; transition: color .3s var(--ease); }
.footer a:hover { color: var(--gold-2); }
.footer .about-col p { color: var(--ink-mute); font-size: .92rem; margin: 14px 0 18px; max-width: 320px; }
.socials { display: flex; gap: 10px; }
.footer-bottom { border-top: 1px solid var(--glass-brd); padding-block: 22px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; color: var(--ink-mute); font-size: .85rem; }

/* =====================================================================
   FLOATING WHATSAPP CHATBOT
   ===================================================================== */
.wa-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg,#25d366,#1dad53); color:#fff;
  display: grid; place-content: center; box-shadow: 0 0 0 0 rgba(37,211,102,.55), 0 14px 30px -8px rgba(37,211,102,.6);
  animation: wapulse 2.6s infinite; transition: transform .3s var(--ease);
}
.wa-fab:hover { transform: scale(1.07); }
.wa-fab svg { width: 30px; height: 30px; }
.wa-fab .dot { position: absolute; top: 2px; right: 2px; width: 16px; height: 16px; border-radius: 50%; background: var(--gold); color:#1a1300; font-size: .62rem; font-weight: 800; display: grid; place-content: center; border: 2px solid #0a3; }
@keyframes wapulse { 0%{ box-shadow: 0 0 0 0 rgba(37,211,102,.5), 0 14px 30px -8px rgba(37,211,102,.6);} 70%{ box-shadow: 0 0 0 18px rgba(37,211,102,0), 0 14px 30px -8px rgba(37,211,102,.6);} 100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 14px 30px -8px rgba(37,211,102,.6);} }

.wa-panel {
  position: fixed; right: 22px; bottom: 94px; z-index: 200;
  width: min(92vw, 360px); border-radius: 22px; overflow: hidden;
  background: linear-gradient(180deg, var(--bg-3), var(--bg));
  border: 1px solid var(--glass-brd-2); box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(.96); opacity: 0; pointer-events: none;
  transform-origin: bottom right; transition: .35s var(--ease);
}
.wa-panel.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.wa-head { background: linear-gradient(135deg,#1dad53,#128c41); padding: 18px 20px; display: flex; align-items: center; gap: 12px; }
.wa-head .av { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.18); display: grid; place-content: center; font-weight: 800; }
.wa-head b { font-family: var(--font-head); font-size: 1rem; color: #fff; }
.wa-head span { font-size: .78rem; color: rgba(255,255,255,.85); display: flex; align-items: center; gap: 6px; }
.wa-head span::before { content:""; width: 8px; height: 8px; border-radius: 50%; background: #b6ffce; }
.wa-head .x { margin-left: auto; color: #fff; opacity: .85; font-size: 1.4rem; line-height: 1; }
.wa-body { padding: 18px; max-height: 50vh; overflow-y: auto; }
.wa-msg { background: var(--glass-strong); border: 1px solid var(--glass-brd); padding: 12px 14px; border-radius: 4px 16px 16px 16px; font-size: .92rem; color: var(--ink-soft); margin-bottom: 14px; }
.wa-opts { display: flex; flex-direction: column; gap: 9px; }
.wa-opt { text-align: left; padding: 12px 15px; border-radius: 12px; background: var(--glass); border: 1px solid var(--glass-brd); font-size: .92rem; font-weight: 500; transition: .25s var(--ease); display: flex; align-items: center; gap: 10px; }
.wa-opt:hover { border-color: #25d366; background: rgba(37,211,102,.1); transform: translateX(3px); }
.wa-opt .e { font-size: 1.05rem; }
.wa-foot { padding: 14px 18px 18px; }

/* =====================================================================
   LOGIN / REGISTER MODAL
   ===================================================================== */
.modal { position: fixed; inset: 0; z-index: 300; display: none; place-content: center; padding: 20px; }
.modal.open { display: grid; }
.modal .scrim { position: absolute; inset: 0; background: rgba(3,5,10,.72); backdrop-filter: blur(8px); }
.modal-card { position: relative; width: min(440px, 100%); padding: 34px 32px; border-radius: var(--radius-lg);
  background: linear-gradient(165deg, var(--bg-3), var(--bg)); border: 1px solid var(--glass-brd-2); box-shadow: var(--shadow-lg);
  animation: pop .4s var(--ease); }
@keyframes pop { from { transform: translateY(16px) scale(.97); opacity: 0; } }
.modal-card .x { position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border-radius: 11px; background: var(--glass); display: grid; place-content: center; }
.modal-card h3 { font-size: 1.6rem; }
.modal-tabs { display: flex; gap: 6px; background: var(--glass); border: 1px solid var(--glass-brd); border-radius: 100px; padding: 5px; margin: 20px 0 22px; }
.modal-tabs button { flex: 1; padding: 10px; border-radius: 100px; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--ink-mute); transition: .3s var(--ease); }
.modal-tabs button.active { background: linear-gradient(120deg,var(--gold),var(--gold-2)); color:#1c1500; }
.form-field { margin-bottom: 14px; }
.form-field label { display: block; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 7px; }
.form-field input { width: 100%; background: rgba(4,6,12,.6); border: 1px solid var(--glass-brd); border-radius: 12px; padding: 13px 15px; outline: none; transition: border-color .3s var(--ease); }
.form-field input:focus { border-color: var(--blue-2); box-shadow: 0 0 0 3px rgba(47,123,255,.18); }
.modal .form-note { font-size: .82rem; color: var(--ink-mute); margin-top: 14px; text-align: center; }
.hidden { display: none; }

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1080px) {
  .fleet-grid, .blog-grid, .cols-3 { grid-template-columns: repeat(2,1fr); }
  .cols-4, .stat-band { grid-template-columns: repeat(2,1fr); }
  .post.feature-post { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .nav-actions .desktop-only { display: none; }
  .hero-grid, .about-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .float-card.fc-1 { left: 4%; } .float-card.fc-2 { right: 4%; }
  .booking-grid { grid-template-columns: 1fr 1fr; }
  .booking-grid .field:last-of-type, .booking-grid .btn { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .fleet-grid, .blog-grid, .cols-3, .cols-4, .cols-2, .stat-band, .footer-grid { grid-template-columns: 1fr; }
  .post.feature-post { grid-column: auto; }
  .booking-grid { grid-template-columns: 1fr; }
  .display { font-size: clamp(1.75rem, 7vw, 2.3rem); }
  .specs { grid-template-columns: repeat(3,1fr); }
  .hero-cta .btn, .cta-banner .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ===================== Zoomable spec-sheet tiles + lightbox ===================== */
.media.zoomable { display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; font: inherit; color: inherit; }
.zoom-hint {
  position: absolute; bottom: 12px; right: 12px; z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 11px; border-radius: 100px; color: #fff;
  background: rgba(0,0,0,.55); border: 1px solid var(--glass-brd-2);
  backdrop-filter: blur(4px); transition: background .25s var(--ease), color .25s var(--ease);
}
.media.zoomable:hover .zoom-hint { background: var(--gold-2); color: #1a1206; }

.lightbox { position: fixed; inset: 0; z-index: 200; display: none; place-items: center; padding: 4vmin; }
.lightbox.open { display: grid; }
.lightbox .lb-scrim { position: absolute; inset: 0; background: rgba(3,6,16,.86); backdrop-filter: blur(6px); cursor: zoom-out; }
.lightbox .lb-img { position: relative; max-width: min(980px, 96vw); max-height: 92vh; width: auto; height: auto; border-radius: 14px; box-shadow: var(--shadow-lg); }
.lightbox .lb-close {
  position: absolute; top: 18px; right: 22px; z-index: 2; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--glass-brd-2); background: rgba(0,0,0,.55); color: #fff; font-size: 1.7rem; line-height: 1; cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.lightbox .lb-close:hover { background: var(--gold-2); color: #1a1206; }
.lightbox .lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-content: center;
  border: 1px solid var(--glass-brd-2); background: rgba(0,0,0,.5); color: #fff; font-size: 2rem; line-height: 1; cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.lightbox .lb-prev { left: 18px; }
.lightbox .lb-next { right: 18px; }
.lightbox .lb-nav:hover { background: var(--gold-2); color: #1a1206; }
.lightbox .lb-counter {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 2;
  color: #fff; font-size: .82rem; letter-spacing: .1em; background: rgba(0,0,0,.5);
  padding: 6px 14px; border-radius: 100px; border: 1px solid var(--glass-brd-2);
}
.lightbox .lb-nav[hidden], .lightbox .lb-counter[hidden] { display: none; }

.gallery-badge {
  position: absolute; bottom: 12px; left: 12px; z-index: 3; display: inline-flex; align-items: center; gap: 6px;
  font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 100px; color: #fff;
  background: rgba(0,0,0,.55); border: 1px solid var(--glass-brd-2); backdrop-filter: blur(4px);
}
.gallery-badge[hidden] { display: none; }

.rental-note {
  display: flex; align-items: center; gap: 7px; margin-top: -4px;
  font-size: .72rem; letter-spacing: .01em; color: var(--ink-mute);
}
.rental-note svg { width: 14px; height: 14px; flex: none; color: var(--gold-2); }
.rental-note b { color: var(--gold-2); font-weight: 600; }
.car-price .per { white-space: nowrap; }

/* =====================================================================
   AI-GENERATED ATMOSPHERIC BACKGROUNDS (Dubai/luxury) — top & bottom
   ===================================================================== */
.page-hero {
  background:
    linear-gradient(180deg, rgba(6,8,14,.74) 0%, rgba(6,8,14,.58) 42%, rgba(6,8,14,.93) 100%),
    url("../images/ai-hero-dubai.jpg") center 30% / cover no-repeat;
  border-bottom: 1px solid rgba(212,175,55,.14);
}
.cta-banner {
  background:
    linear-gradient(155deg, rgba(6,8,14,.86) 0%, rgba(6,8,14,.6) 55%, rgba(6,8,14,.82) 100%),
    url("../images/ai-cta-dubai.jpg") center / cover no-repeat;
}
.footer {
  background:
    linear-gradient(180deg, rgba(4,6,12,.84) 0%, rgba(4,6,12,.68) 100%),
    url("../images/ai-footer-dubai.jpg") center / cover no-repeat;
}
.hero {
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(47,123,255,.20), transparent 55%),
    linear-gradient(180deg, rgba(6,8,14,.80) 0%, rgba(6,8,14,.72) 55%, rgba(6,8,14,.92) 100%),
    url("../images/ai-cta-dubai.jpg") center 35% / cover no-repeat;
}
