/* ============================================================
   SAHAP RENT A CAR — Stylesheet
   Premium car rental · Turkey · Blue / Navy / Red on white
   ============================================================ */

/* ── DESIGN TOKENS ── */
:root {
  --blue:        #142B8C;
  --blue-hover:  #2344D5;
  --navy:        #0B1547;
  --navy-2:      #0f1d5e;
  --red:         #E53935;
  --red-hover:   #c62d2a;
  --bg:          #F5F7FB;
  --white:       #FFFFFF;
  --text:        #121826;
  --muted:       #5B6475;
  --border:      #E6EAF2;

  --font-head: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-ar:   'IBM Plex Sans Arabic', 'Inter', sans-serif;

  --radius-btn:   14px;
  --radius-card:  20px;
  --radius-input: 12px;
  --radius-img:   24px;
  --radius-pill:  100px;

  --shadow-soft: 0 12px 30px rgba(10,20,50,.08);
  --shadow-md:   0 18px 44px rgba(10,20,50,.10);
  --shadow-lg:   0 24px 60px rgba(10,20,50,.14);
  --shadow-blue: 0 14px 34px rgba(20,43,140,.22);
  --shadow-red:  0 14px 30px rgba(229,57,53,.28);

  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;

  --navbar-h: 76px;
  --section-pad: clamp(72px, 9vw, 128px);
  --maxw: 1240px;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, .brand-name { font-family: var(--font-head); }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
section { scroll-margin-top: var(--navbar-h); }

::selection { background: var(--blue); color: var(--white); }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #c5cde0; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

/* ── BRAND / LOGO ── */
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 38px; width: auto; display: block; }
/* Full-colour logo on light surfaces; whitened on dark ones */
.navbar .brand-logo { filter: brightness(0) invert(1); transition: filter var(--transition); }
.navbar.scrolled .brand-logo { filter: none; }
.footer-logo .brand-logo { height: 44px; filter: brightness(0) invert(1); }

/* ── PRELOADER ── */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-video {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  background: var(--navy);
}
.preloader-skip {
  position: absolute; bottom: 26px; right: 26px;
  padding: 9px 18px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,.12); color: #fff;
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(6px);
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.preloader-skip:hover { background: rgba(255,255,255,.24); transform: translateY(-1px); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 56px; height: 56px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 34px rgba(37,211,102,.6); }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--navbar-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 56px);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 1px 0 var(--border), var(--shadow-soft);
}
/* over-hero (default) = light text */
.navbar .brand-name { color: #fff; }
.navbar .brand-sub  { color: rgba(255,255,255,.7); }
.navbar.scrolled .brand-name { color: var(--navy); }
.navbar.scrolled .brand-sub  { color: var(--muted); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.01em;
  color: rgba(255,255,255,.82);
  border-radius: var(--radius-input);
  transition: color var(--transition-fast), background var(--transition-fast);
  position: relative;
}
.navbar.scrolled .nav-link { color: var(--muted); }
.nav-link::after {
  content: ''; position: absolute; bottom: 3px; left: 14px; right: 14px;
  height: 2px; background: var(--red); border-radius: 2px;
  transform: scaleX(0); transform-origin: center;
  transition: transform var(--transition-fast);
}
.nav-link:hover, .nav-link.active { color: #fff; }
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active { color: var(--blue); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.btn-nav {
  padding: 10px 22px;
  background: var(--red);
  color: #fff;
  font-size: 14px; font-weight: 700; letter-spacing: 0.01em;
  border-radius: var(--radius-btn);
  margin-left: 10px;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}
.btn-nav:hover { background: var(--red-hover); transform: translateY(-1px); box-shadow: var(--shadow-red); }

/* Burger */
.burger {
  display: none; flex-direction: column; justify-content: space-between;
  width: 28px; height: 18px; padding: 0;
}
.burger span {
  display: block; width: 100%; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}
.navbar.scrolled .burger span { background: var(--navy); }
.burger.open span { background: var(--navy); }
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Menu Overlay */
.menu-overlay {
  position: fixed; inset: 0; z-index: 99;
  background: var(--white);
  display: flex; align-items: stretch;
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.77,0,0.175,1);
}
.menu-overlay.open { transform: translateX(0); }
.menu-overlay-inner {
  padding: calc(var(--navbar-h) + 30px) clamp(32px, 8vw, 72px) 48px;
  display: flex; flex-direction: column; justify-content: space-between;
  height: 100%; width: 100%;
}
.menu-overlay-links { display: flex; flex-direction: column; gap: 4px; }
.menu-overlay-link {
  font-family: var(--font-head);
  font-size: clamp(28px, 6vw, 44px);
  font-weight: 700; letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.35;
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}
.menu-overlay-link:hover { color: var(--blue); transform: translateX(10px); }
.menu-overlay-bottom { color: var(--muted); font-size: 15px; line-height: 2; }
.menu-overlay-cta { margin-bottom: 20px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 30px;
  background: var(--blue);
  color: #fff;
  font-size: 15px; font-weight: 700; letter-spacing: 0.01em;
  border-radius: var(--radius-btn);
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--blue-hover); transform: translateY(-2px); box-shadow: var(--shadow-blue); }

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px;
  background: var(--white);
  color: var(--blue);
  font-size: 15px; font-weight: 700;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-btn);
  transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}
.btn-secondary:hover { border-color: var(--blue); background: var(--bg); transform: translateY(-2px); }
.btn-secondary-light {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.4);
  backdrop-filter: blur(6px);
}
.btn-secondary-light:hover { background: rgba(255,255,255,.2); border-color: #fff; }

.btn-full { width: 100%; }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: clamp(44px, 6vw, 72px); }
.section-tag {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em;
  color: var(--blue); text-transform: uppercase;
  margin-bottom: 14px;
  padding: 5px 14px;
  background: rgba(20,43,140,.07);
  border-radius: var(--radius-pill);
}
.section-tag.light { color: #fff; background: rgba(255,255,255,.14); }
.section-title {
  font-size: clamp(32px, 4.6vw, 54px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 18px;
}
.section-title.light { color: #fff; }
.section-desc {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--muted);
  max-width: 560px; margin: 0 auto; line-height: 1.7;
}
.section-desc.light { color: rgba(255,255,255,.7); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding-bottom: 160px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; background: var(--navy); }
.hero-bg-img, .hero-bg-video {
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: center;
  transform: scale(1.06);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, transparent 48%, rgba(9,16,50,.72) 80%, #0a1533 100%),
    radial-gradient(120% 90% at 15% 20%, rgba(11,21,71,.62), transparent 60%),
    linear-gradient(115deg, rgba(11,21,71,.9) 0%, rgba(20,43,140,.55) 48%, rgba(11,21,71,.72) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  padding: calc(var(--navbar-h) + 56px) clamp(24px, 8vw, 96px) 0;
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  width: min(100%, var(--maxw));
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  animation: fade-up 0.8s 0.3s both;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(229,57,53,.3);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100% { box-shadow: 0 0 0 4px rgba(229,57,53,.3); } 50% { box-shadow: 0 0 0 7px rgba(229,57,53,.05); } }
.hero-title {
  font-size: clamp(40px, 6.2vw, 80px);
  font-weight: 800; line-height: 1.03;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 16px;
  animation: fade-up 0.8s 0.5s both;
}
.hero-subtitle-ar {
  font-family: var(--font-ar);
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 600;
  color: var(--red);
  margin-bottom: 20px;
  animation: fade-up 0.8s 0.6s both;
}
.hero-subtitle {
  font-size: clamp(15px, 1.7vw, 18px);
  color: rgba(255,255,255,.8);
  max-width: 520px; line-height: 1.7;
  margin-bottom: 34px;
  animation: fade-up 0.8s 0.7s both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  animation: fade-up 0.8s 0.9s both;
}

/* Booking Card */
.booking-wrap {
  position: absolute; bottom: 36px; left: 0; right: 0; z-index: 3;
  padding: 0 clamp(24px, 8vw, 96px);
}
.booking-card {
  width: min(100%, var(--maxw));
  margin: 0 auto;
  display: flex; align-items: stretch; gap: 4px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  animation: fade-up 0.8s 1.0s both;
}
.booking-field {
  flex: 1; padding: 12px 16px;
  display: flex; flex-direction: column; gap: 6px;
  min-width: 0;
  border-radius: 14px;
  transition: background var(--transition-fast);
}
.booking-field:hover { background: var(--bg); }
.booking-field label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--muted); text-transform: uppercase;
}
.booking-control { display: flex; align-items: center; gap: 8px; }
.fld-icon { width: 17px; height: 17px; color: var(--blue); flex-shrink: 0; }
.booking-field select,
.booking-field input {
  background: transparent; border: none;
  color: var(--text);
  font-size: 14.5px; font-weight: 600;
  padding: 0; outline: none; width: 100%;
  -webkit-appearance: none; appearance: none;
  cursor: pointer;
}
.booking-field select option { color: var(--text); }
.booking-field input[type="date"]::-webkit-calendar-picker-indicator { cursor: pointer; opacity: .55; }
.btn-search {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 0 34px;
  background: var(--red);
  color: #fff;
  font-size: 15px; font-weight: 700;
  border-radius: 14px;
  flex-shrink: 0;
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
}
.btn-search:hover { background: var(--red-hover); box-shadow: var(--shadow-red); }

/* ── BRAND MARQUEE ── */
.marquee-section {
  background: var(--white);
  padding: calc(clamp(72px, 9vw, 128px) * 0.55) 0 22px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee-track {
  display: flex; align-items: center; gap: 26px;
  width: max-content;
  animation: marquee 32s linear infinite;
  color: #aeb6c9;
  font-family: var(--font-head);
  font-size: clamp(16px, 2vw, 22px); font-weight: 700; letter-spacing: 0.01em;
}
.marquee-track .dot-sep { color: var(--red); opacity: .6; }
.marquee-section:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── STATS ── */
.stats-bar { background: var(--white); padding: 24px clamp(24px, 6vw, 80px) 40px; }
.stats-inner {
  display: flex; align-items: center; justify-content: center;
  max-width: var(--maxw); margin: 0 auto;
  background: var(--navy);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.stat-item { flex: 1; text-align: center; padding: 34px 20px; }
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(32px, 3.6vw, 50px);
  font-weight: 800; letter-spacing: -0.03em;
  color: #fff; line-height: 1; margin-bottom: 8px;
}
.stat-number::after { content: '+'; font-size: 0.55em; color: var(--red); vertical-align: super; margin-left: 1px; }
.stat-label {
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em;
  color: rgba(255,255,255,.6);
}
.stat-divider { width: 1px; height: 54px; background: rgba(255,255,255,.12); flex-shrink: 0; }

/* ── FLEET ── */
.fleet-section { background: var(--bg); padding: var(--section-pad) clamp(24px, 6vw, 80px); }
.fleet-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 44px; }
.fleet-tab {
  padding: 10px 24px;
  font-size: 14px; font-weight: 600;
  color: var(--muted);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
}
.fleet-tab:hover { color: var(--blue); border-color: #c8d2e8; }
.fleet-tab.active { color: #fff; background: var(--blue); border-color: var(--blue); box-shadow: var(--shadow-blue); }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  gap: 24px;
  max-width: var(--maxw); margin: 0 auto 44px;
}
.fleet-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.fleet-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: #d5deef; }
.fleet-card.hidden { display: none; }
.fleet-card-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  padding: 6px 13px;
  background: var(--blue);
  color: #fff;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}
.fleet-card-badge.badge-red { background: var(--red); }
.fleet-card-img-wrap {
  background: linear-gradient(180deg, #eef2fa, #f7f9fd);
  padding: 26px 18px 10px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; height: 200px;
}
.fleet-card-img { max-height: 158px; width: auto; object-fit: contain; transition: transform var(--transition); }
.fleet-card:hover .fleet-card-img { transform: scale(1.07) translateX(4px); }
.fleet-card-body { padding: 24px; }
.fleet-card-class { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; color: var(--blue); text-transform: uppercase; margin-bottom: 7px; }
.fleet-card-name { font-size: 21px; font-weight: 800; color: var(--text); margin-bottom: 16px; letter-spacing: -0.02em; }
.fleet-card-specs { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; }
.spec { display: flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 500; color: var(--muted); }
.spec svg { color: var(--blue); flex-shrink: 0; }
.fleet-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; border-top: 1px solid var(--border);
}
.fleet-card-price { display: flex; align-items: baseline; gap: 4px; }
.price-amount { font-family: var(--font-head); font-size: 26px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.price-per { font-size: 13px; color: var(--muted); }
.btn-fleet {
  padding: 10px 20px;
  background: rgba(20,43,140,.08);
  color: var(--blue);
  font-size: 13px; font-weight: 700;
  border-radius: var(--radius-btn);
  transition: all var(--transition-fast);
}
.btn-fleet:hover { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.fleet-cta-wrap { text-align: center; }

/* ── FEATURES / WHY SAHAP ── */
.features-section { background: var(--white); padding: var(--section-pad) clamp(24px, 6vw, 80px); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  max-width: var(--maxw); margin: 0 auto;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px 30px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: #d5deef; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 54px; height: 54px;
  background: rgba(20,43,140,.07);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--blue);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card:hover .feature-icon { background: var(--blue); color: #fff; transition: background var(--transition-fast), color var(--transition-fast); }
.feature-card h3 { font-size: 19px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.feature-card p { font-size: 14.5px; color: var(--muted); line-height: 1.7; }

/* ── AIRPORT PICKUP ── */
.airport-section { background: var(--bg); padding: var(--section-pad) clamp(24px, 6vw, 80px); }
.airport-inner {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 72px);
  align-items: center; max-width: var(--maxw); margin: 0 auto;
}
.airport-media { position: relative; }
.airport-media img {
  width: 100%; border-radius: var(--radius-img);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3; object-fit: cover;
}
.airport-media-badge {
  position: absolute; bottom: 22px; left: 22px;
  background: var(--white);
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
}
.airport-media-badge-num { font-family: var(--font-head); font-size: 26px; font-weight: 800; color: var(--blue); line-height: 1; }
.airport-media-badge-label { font-size: 12px; color: var(--muted); margin-top: 4px; }
.airport-title { font-size: clamp(30px, 3.8vw, 46px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; color: var(--text); margin: 16px 0 16px; }
.airport-desc { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 26px; }
.airport-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.airport-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; color: var(--text); }
.airport-list .check {
  width: 26px; height: 26px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(20,43,140,.1);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.airport-list .check svg { width: 15px; height: 15px; }

/* ── OFFERS ── */
.offers-section { background: var(--white); padding: var(--section-pad) clamp(24px, 6vw, 80px); }
.offers-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px; max-width: var(--maxw); margin: 0 auto; align-items: start;
}
.offer-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.offer-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.offer-card-featured { border: 1.5px solid var(--blue); box-shadow: var(--shadow-blue); }
.offer-ribbon {
  position: absolute; top: 18px; right: 0; z-index: 2;
  padding: 6px 16px 6px 20px;
  background: var(--red); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  text-transform: uppercase;
}
.ribbon-blue { background: var(--blue); }
.ribbon-navy { background: var(--navy); }
.offer-img-wrap {
  background: linear-gradient(180deg, #eef2fa, #f7f9fd);
  height: 190px; display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 16px;
}
.offer-img { max-height: 150px; width: auto; object-fit: contain; transition: transform var(--transition); }
.offer-card:hover .offer-img { transform: scale(1.05); }
.offer-body { padding: 24px; }
.offer-tag-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; flex-wrap: wrap; gap: 8px; }
.offer-category-tag {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 11px; background: rgba(229,57,53,.1); color: var(--red); border-radius: var(--radius-pill);
}
.tag-blue { background: rgba(20,43,140,.1); color: var(--blue); }
.offer-validity { font-size: 12px; color: var(--muted); }
.offer-title { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 10px; letter-spacing: -0.01em; }
.offer-desc { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.offer-details {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border);
}
.offer-detail { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--muted); font-weight: 500; }
.offer-detail svg { color: var(--blue); }
.offer-footer { display: flex; align-items: center; justify-content: space-between; }
.offer-price-wrap { display: flex; flex-direction: column; }
.offer-was { font-size: 12.5px; color: #a9b1c2; text-decoration: line-through; margin-bottom: 2px; }
.offer-price-row { display: flex; align-items: baseline; gap: 4px; }
.offer-now { font-family: var(--font-head); font-size: 28px; font-weight: 800; color: var(--navy); letter-spacing: -0.03em; }
.offer-per { font-size: 12.5px; color: var(--muted); }
.btn-offer {
  padding: 11px 22px; background: var(--navy); color: #fff;
  font-size: 13px; font-weight: 700; border-radius: var(--radius-btn);
  transition: all var(--transition-fast);
}
.btn-offer:hover { background: var(--blue); transform: translateY(-1px); box-shadow: var(--shadow-blue); }
.btn-offer-red { background: var(--red); }
.btn-offer-red:hover { background: var(--red-hover); box-shadow: var(--shadow-red); }

/* ── APP CTA ── */
.app-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 130%);
  padding: var(--section-pad) clamp(24px, 6vw, 80px);
  position: relative; overflow: hidden;
}
.app-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 85% 20%, rgba(229,57,53,.18), transparent 60%),
    radial-gradient(50% 50% at 10% 90%, rgba(35,68,213,.28), transparent 60%);
  pointer-events: none;
}
.app-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 72px);
  align-items: center; max-width: var(--maxw); margin: 0 auto;
}
.app-title { font-size: clamp(30px, 4vw, 50px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; color: #fff; margin: 16px 0 16px; }
.app-desc { font-size: 16px; color: rgba(255,255,255,.72); line-height: 1.7; margin-bottom: 30px; max-width: 460px; }
.app-badges { display: flex; flex-wrap: wrap; gap: 14px; }
.store-badge {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 11px 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-btn);
  color: #fff;
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.store-badge:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }
.store-badge span { display: flex; flex-direction: column; line-height: 1.2; }
.store-badge small { font-size: 10px; opacity: .7; }
.store-badge strong { font-size: 15px; font-weight: 700; }

/* Phone mockup */
.app-visual { display: flex; justify-content: center; }
.phone {
  position: relative;
  width: 260px; height: 520px;
  background: #05102f;
  border-radius: 42px;
  padding: 14px;
  box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  animation: float-phone 5s ease-in-out infinite;
}
@keyframes float-phone { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-14px) rotate(-2deg); } }
.phone-notch { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 96px; height: 22px; background: #05102f; border-radius: 0 0 14px 14px; z-index: 2; }
.phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #f5f7fb, #ffffff);
  border-radius: 30px;
  padding: 34px 18px 18px;
  overflow: hidden;
}
.phone-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.phone-brand-logo { height: 15px; width: auto; }
.phone-dot { width: 22px; height: 22px; border-radius: 50%; background: rgba(20,43,140,.1); }
.phone-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 16px; box-shadow: var(--shadow-soft); margin-bottom: 14px; }
.phone-car { height: 74px; border-radius: 12px; background: linear-gradient(180deg,#eef2fa,#f7f9fd); display: flex; align-items: center; justify-content: center; color: var(--blue); margin: 10px 0; }
.phone-car svg { width: 46px; height: 46px; }
.phone-card-line { height: 9px; border-radius: 6px; background: #e3e8f2; }
.phone-card-line.short { width: 50%; margin-bottom: 4px; }
.phone-card-line.half { width: 66%; margin-top: 8px; }
.phone-btn { background: var(--red); color: #fff; text-align: center; font-size: 13px; font-weight: 700; padding: 12px; border-radius: 12px; box-shadow: var(--shadow-red); }
.phone-list { margin-top: 16px; display: flex; flex-direction: column; gap: 12px; }
.phone-row { display: flex; align-items: center; gap: 10px; }
.phone-row span:first-child { width: 32px; height: 32px; border-radius: 9px; background: rgba(20,43,140,.1); flex-shrink: 0; }
.phone-row span:last-child { height: 8px; border-radius: 6px; background: #e3e8f2; flex: 1; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--bg); padding: var(--section-pad) clamp(24px, 6vw, 80px); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; max-width: var(--maxw); margin: 0 auto; align-items: start;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 30px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.testimonial-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.testimonial-stars { color: #f5a623; font-size: 17px; letter-spacing: 2px; }
.g-mark { flex-shrink: 0; }
.testimonial-text { font-size: 15px; color: #3b4252; line-height: 1.75; margin-bottom: 22px; }
.testimonial-text:lang(ar) { font-family: var(--font-ar); direction: rtl; text-align: right; }
.testimonial-author { display: flex; align-items: center; gap: 13px; }
.testimonial-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 15px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.testimonial-name { font-size: 15px; font-weight: 700; color: var(--text); }
.testimonial-role { font-size: 12.5px; color: var(--muted); margin-top: 2px; }

/* ── FAQ ── */
.faq-section { background: var(--white); padding: var(--section-pad) clamp(24px, 6vw, 80px); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.faq-item.open { border-color: #cdd7ee; box-shadow: var(--shadow-soft); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-size: 16.5px; font-weight: 700; color: var(--text);
  transition: color var(--transition-fast);
}
.faq-q:hover { color: var(--blue); }
.faq-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--blue); border-radius: 2px;
  transition: transform var(--transition-fast);
}
.faq-icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-icon::after { top: 0; left: 8px; width: 2px; height: 18px; }
.faq-item.open .faq-icon::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--transition); }
.faq-a p { padding: 0 24px 22px; color: var(--muted); font-size: 15px; line-height: 1.7; }

/* ── CONTACT ── */
.contact-section { background: var(--bg); padding: var(--section-pad) clamp(24px, 6vw, 80px); }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(40px, 6vw, 72px);
  align-items: start; max-width: var(--maxw); margin: 0 auto;
}
.contact-left .section-tag { display: inline-block; margin-bottom: 16px; }
.contact-title { font-size: clamp(32px, 4.2vw, 50px); font-weight: 800; letter-spacing: -0.03em; color: var(--text); line-height: 1.1; margin-bottom: 16px; }
.contact-desc { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.contact-detail {
  display: flex; align-items: center; gap: 15px;
  padding: 14px 16px; border-radius: 16px;
  background: var(--white); border: 1px solid var(--border);
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}
a.contact-detail:hover { border-color: #cdd7ee; transform: translateX(3px); }
.contact-detail-icon {
  width: 46px; height: 46px; border-radius: 13px;
  background: rgba(20,43,140,.08); color: var(--blue);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; color: var(--blue); text-transform: uppercase; margin-bottom: 3px; }
.contact-detail-value { font-size: 15px; color: var(--text); font-weight: 600; }

.contact-map {
  position: relative; height: 180px; border-radius: var(--radius-img);
  overflow: hidden; border: 1px solid var(--border);
  background:
    linear-gradient(135deg, #e9eef8, #f3f6fc);
}
.contact-map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(20,43,140,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,43,140,.06) 1px, transparent 1px);
  background-size: 26px 26px;
}
.contact-map-pin {
  position: absolute; top: 44%; left: 50%; transform: translate(-50%,-50%);
  color: var(--red);
}
.contact-map-pin svg { width: 38px; height: 38px; filter: drop-shadow(0 6px 10px rgba(229,57,53,.4)); }
.contact-map-link {
  position: absolute; bottom: 14px; left: 14px;
  background: var(--white); color: var(--blue);
  font-size: 13px; font-weight: 700;
  padding: 8px 14px; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
  transition: background var(--transition-fast);
}
.contact-map-link:hover { background: var(--blue); color: #fff; }

/* Contact Form */
.contact-right {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-card); box-shadow: var(--shadow-soft);
  padding: clamp(24px, 3vw, 36px);
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 12px; font-weight: 700; letter-spacing: 0.04em; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-input);
  padding: 13px 15px;
  color: var(--text);
  font-size: 14.5px;
  transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
  resize: vertical;
  -webkit-appearance: none; appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #9aa3b5; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--blue); background: #fff;
  box-shadow: 0 0 0 4px rgba(20,43,140,.08);
}
.form-group input.invalid, .form-group select.invalid, .form-group textarea.invalid { border-color: var(--red); box-shadow: 0 0 0 4px rgba(229,57,53,.08); }

/* ── FOOTER ── */
.footer { background: var(--navy); color: rgba(255,255,255,.6); }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  padding: 72px clamp(24px, 6vw, 80px) 56px;
  max-width: 1400px; margin: 0 auto;
}
.footer-logo { margin-bottom: 16px; }
.footer .brand-name { color: #fff; }
.footer .brand-sub { color: rgba(255,255,255,.55); }
.footer-tagline { font-size: 14.5px; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 26px; max-width: 300px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all var(--transition-fast);
}
.social-btn:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-2px); }
.footer-links-group h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; color: #fff; text-transform: uppercase; margin-bottom: 20px; }
.footer-links-group ul { display: flex; flex-direction: column; gap: 11px; }
.footer-links-group a { font-size: 14.5px; color: rgba(255,255,255,.5); transition: color var(--transition-fast), padding-left var(--transition-fast); }
.footer-links-group a:hover { color: #fff; padding-left: 5px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px clamp(24px, 6vw, 80px);
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1400px; margin: 0 auto;
  font-size: 13px; color: rgba(255,255,255,.4);
}

/* ── ANIMATIONS ── */
@keyframes fade-up { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(38px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .airport-inner, .app-inner { grid-template-columns: 1fr; }
  .app-visual { order: -1; }
}
/* Short desktop viewports: tighten the hero so the booking card stays in view */
@media (min-width: 961px) and (max-height: 840px) {
  .hero-content { padding-top: calc(var(--navbar-h) + 22px); }
  .hero-title { font-size: clamp(38px, 5vw, 60px); margin-bottom: 12px; }
  .hero-subtitle-ar { margin-bottom: 14px; }
  .hero-subtitle { margin-bottom: 22px; }
  .hero-actions { gap: 12px; }
  .hero { padding-bottom: 148px; }
}

@media (max-width: 960px) {
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { display: block; min-height: auto; padding-bottom: 28px; }
  .hero-content { padding-bottom: 8px; }
  .booking-card { flex-wrap: wrap; }
  .booking-field { min-width: 42%; }
  .btn-search { width: 100%; padding: 16px; }
  .booking-wrap { position: static; transform: none; padding: 0 clamp(24px,6vw,40px); margin-top: 18px; }
  .marquee-section { margin-top: 0; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .stats-inner { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; padding: 26px 12px; }
  .stat-divider { display: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,.1); }
  .stat-item:nth-child(1), .stat-item:nth-child(3) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .stat-item:nth-child(5) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 560px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; }
  .booking-field { min-width: 100%; }
  .offers-grid, .fleet-grid, .testimonials-grid, .features-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .stat-item { flex: 0 0 50%; }
}
