/* EUROMOTION — Car Rental Agadir Airport
   Performance-first CSS. Mobile-first. No frameworks. */

:root {
  --navy: #0A1628;
  --navy-2: #11203A;
  --gold: #F5A623;
  --gold-2: #FFB733;
  --pearl: #F8F9FA;
  --charcoal: #1C2B3A;
  --off-white: #EDF2F7;
  --slate: #4A5568;
  --slate-2: #718096;
  --emerald: #38A169;
  --whatsapp: #25D366;
  --shadow-sm: 0 2px 8px rgba(10,22,40,.06);
  --shadow-md: 0 8px 24px rgba(10,22,40,.10);
  --shadow-lg: 0 20px 60px rgba(10,22,40,.18);
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1200px;
  --header-h: 72px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); margin-bottom: .5em; }
h3 { font-size: 1.25rem; margin-bottom: .4em; }
p { margin-bottom: 1em; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============ HEADER / NAV ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,22,40,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: .02em;
  color: #fff;
  display: flex; align-items: center; gap: 6px;
}
.logo-mark {
  display: inline-block;
  width: 26px; height: 26px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(245,166,35,.7));
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--off-white);
  font-size: .95rem;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.nav-cta,
.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 11px 32px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border-radius: 999px;
  font-weight: 700 !important;
  letter-spacing: .01em;
}
.nav-cta:hover { background: var(--gold-2); color: var(--navy) !important; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 8px;
  color: #fff;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: #fff; margin: 4px auto;
  transition: transform .25s;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; gap: 0;
    background: var(--navy);
    padding: 20px;
    transform: translateY(-120%);
    transition: transform .25s;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; border-bottom: 1px solid rgba(255,255,255,.06); }
  .nav-links a { display: block; padding: 14px 0; }
  .nav-cta { text-align: center; margin-top: 8px; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 8vh;
  display: flex; align-items: center;
  background:
    linear-gradient(135deg, rgba(10,22,40,.85) 0%, rgba(10,22,40,.55) 60%, rgba(10,22,40,.85) 100%),
    url('../assets/images/hero/hero-bg.webp') center/cover;
  color: #fff;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero {
    background:
      linear-gradient(135deg, rgba(10,22,40,.85) 0%, rgba(10,22,40,.55) 60%, rgba(10,22,40,.85) 100%),
      url('../assets/images/hero/hero-mobile.webp') center/cover;
  }
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(245,166,35,.18), transparent 60%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 880px; padding-top: 7px; padding-bottom: 7px; }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 .gold { color: var(--gold); }
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(237,242,247,.92);
  margin-bottom: 12px;
  max-width: 660px;
}
.hero-keywords {
  font-size: .85rem;
  color: rgba(237,242,247,.65);
  margin-bottom: 32px;
  font-style: italic;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform .15s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(245,166,35,.4);
}
.btn-primary:hover { background: var(--gold-2); box-shadow: 0 12px 32px rgba(245,166,35,.55); }
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}
.btn-whatsapp:hover { background: #20bd5a; }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.35);
}
.btn-outline-light:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn-dark {
  background: var(--navy);
  color: #fff;
}
.btn-dark:hover { background: var(--navy-2); }

.trust-badges {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.trust-badges span {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .9rem;
  padding: 8px 14px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 100px;
  color: var(--off-white);
}
.trust-badges span::before { content: "✓"; color: var(--gold); font-weight: 700; }

/* ============ SECTIONS ============ */
section { padding: 80px 0; }
@media (max-width: 768px) { section { padding: 60px 0; } }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.section-head .eyebrow {
  display: inline-block;
  font-size: .8rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-head p { color: var(--slate); font-size: 1.05rem; }

.bg-pearl { background: var(--pearl); }
.bg-navy { background: var(--navy); color: var(--off-white); }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: #fff; }

/* ============ FEATURE GRID ============ */
.features {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.feature-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(10,22,40,.06);
  text-align: center;
  transition: transform .2s, box-shadow .25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 1.5rem;
}
.feature-card h3 { color: var(--navy); margin-bottom: 8px; }
.feature-card p { font-size: .95rem; color: var(--slate); margin: 0; }

/* ============ FLEET CARDS ============ */
.fleet-grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.car-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(10,22,40,.06);
  transition: transform .25s, box-shadow .3s;
}
.car-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.car-image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #f0f4f8, #d9e2ec);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.car-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.car-card:hover .car-image img { transform: scale(1.05); }
.car-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--emerald); color: #fff;
  padding: 4px 10px; border-radius: 100px;
  font-size: .75rem; font-weight: 700;
}
.car-body { padding: 22px; }
.car-body h3 { color: var(--navy); margin-bottom: 6px; }
.car-class { font-size: .85rem; color: var(--slate-2); text-transform: uppercase; letter-spacing: .08em; }
.car-specs {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin: 16px 0;
  font-size: .88rem;
  color: var(--slate);
}
.car-specs span { display: inline-flex; align-items: center; gap: 4px; }
.car-price {
  display: flex; align-items: baseline; gap: 6px;
  margin: 16px 0;
  font-family: 'Space Grotesk', sans-serif;
}
.car-price .amount { font-size: 1.8rem; font-weight: 700; color: var(--navy); }
.car-price .unit { font-size: .85rem; color: var(--slate-2); }
.car-actions { display: flex; gap: 10px; }
.car-actions .btn { flex: 1; padding: 12px 16px; font-size: .9rem; }

/* ============ STEPS ============ */
.steps {
  display: grid; gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  position: relative;
}
.step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 18px;
  border: 3px solid var(--gold);
}
.step h3 { color: var(--navy); }

/* ============ REVIEWS ============ */
.review-rating-banner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 24px;
  padding: 28px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
  text-align: center;
}
.rating-big { font-family: 'Space Grotesk', sans-serif; font-size: 3rem; font-weight: 700; color: var(--navy); line-height: 1; }
.stars { color: var(--gold); font-size: 1.4rem; letter-spacing: 2px; }
.reviews-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.review-card {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(10,22,40,.06);
  box-shadow: var(--shadow-sm);
}
.review-author { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.review-author strong { display: block; color: var(--navy); }
.review-author small { color: var(--slate-2); }
.review-card .stars { font-size: 1rem; margin-bottom: 8px; }
.review-card p { font-size: .95rem; margin: 0; }

/* ============ FAQ ============ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid rgba(10,22,40,.08);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; text-align: left;
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 600; color: var(--navy);
  font-size: 1.02rem;
}
.faq-q::after {
  content: "+";
  font-size: 1.6rem; color: var(--gold);
  transition: transform .25s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 22px; }
.faq-a p { margin: 0; color: var(--slate); }

/* ============ MAP & CONTACT ============ */
.map-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
@media (max-width: 900px) { .map-block { grid-template-columns: 1fr; } }
.map-block iframe {
  width: 100%; height: 100%; min-height: 400px;
  border: 0; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.contact-block { padding: 30px 0; }
.contact-block h2 { margin-bottom: 20px; }
.contact-info-list { list-style: none; margin: 24px 0; }
.contact-info-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(10,22,40,.06);
}
.contact-info-list li strong { display: block; color: var(--navy); margin-bottom: 2px; }
.contact-icon {
  width: 42px; height: 42px;
  background: rgba(245,166,35,.12);
  color: var(--gold);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

/* ============ FORMS ============ */
.form-grid {
  display: grid; gap: 18px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-weight: 600; font-size: .9rem; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--navy);
  background: #fff;
  transition: border .2s, box-shadow .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(245,166,35,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ============ BLOG ============ */
.blog-pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap; margin-top: 40px;
}
.bp-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 14px;
  border-radius: 10px; border: 1.5px solid #e2e8f0;
  font-weight: 700; font-size: .9rem; color: var(--navy);
  background: #fff; cursor: pointer; transition: all .2s;
  text-decoration: none;
}
.bp-btn:hover { border-color: var(--gold); color: var(--gold); }
.bp-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.bp-btn:disabled { opacity: .4; cursor: default; pointer-events: none; }
.bp-dots { color: var(--slate-2); padding: 0 4px; align-self: center; }

.blog-grid {
  display: grid; gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(10,22,40,.06);
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .3s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  position: relative;
  overflow: hidden;
}
.blog-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: var(--navy);
  padding: 4px 12px; border-radius: 100px;
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
}
.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-body h3 {
  color: var(--navy); margin-bottom: 10px;
  font-size: 1.15rem; line-height: 1.3;
}
.blog-body p { color: var(--slate); font-size: .95rem; margin-bottom: 16px; flex: 1; }
.blog-meta { display: flex; gap: 12px; font-size: .82rem; color: var(--slate-2); margin-bottom: 12px; }
.blog-readmore { color: var(--gold); font-weight: 700; font-size: .92rem; }

/* ── Article page layout with sidebar ── */
.article-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
  padding: 40px 20px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .article-wrap { grid-template-columns: 1fr; }
  .article-sidebar { display: contents; }
  .sb-book { order: -1; }
}

/* Article (single blog post) */
.article {
  min-width: 0;
  padding: 20px 0 40px;
}
.article h1 { margin-bottom: 16px; }
.article .article-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 30px;
  color: var(--slate-2); font-size: .9rem;
}
.article-hero {
  width: 100%; aspect-ratio: 16/8; object-fit: cover;
  border-radius: var(--radius-lg); margin-bottom: 36px;
  box-shadow: var(--shadow-md);
}
.article h2 { margin-top: 36px; margin-bottom: 14px; }
.article h3 { margin-top: 26px; }
.article p, .article li { font-size: 1.05rem; color: #2d3748; }
.article ul, .article ol { margin: 0 0 1.4em 1.5em; }
.article li { margin-bottom: .5em; }
.article a { color: var(--gold); font-weight: 600; text-decoration: underline; }
.article a:hover { color: #d4881a; }
/* Buttons inside article must NOT inherit the gold link style */
.article .btn { text-decoration: none !important; font-weight: 700; }
.article .btn-primary { color: var(--navy) !important; }
.article .btn-whatsapp { color: #fff !important; }
.article .btn-dark { color: #fff !important; }
.article .btn-outline { color: var(--navy) !important; }
.article .btn-outline:hover { color: #fff !important; }
/* btn-outline on dark/navy backgrounds */
.cta-banner .btn-outline,
.bg-navy .btn-outline {
  color: #fff !important;
  border-color: rgba(255,255,255,.5);
}
.cta-banner .btn-outline:hover,
.bg-navy .btn-outline:hover {
  background: #fff;
  color: var(--navy) !important;
}
/* ── Article Sidebar ── */
.article-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sb-card {
  background: #fff;
  border: 1.5px solid #e8edf3;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 4px 18px rgba(10,22,40,.06);
}
.sb-book {
  background: linear-gradient(150deg, var(--navy), #11203a);
  border-color: transparent;
  text-align: center;
}
.sb-book h3 { color: #fff; font-size: 1.05rem; margin-bottom: 6px; }
.sb-book p { color: rgba(255,255,255,.75); font-size: .85rem; margin-bottom: 16px; }
.sb-book .sb-cta-btn {
  display: flex; width: 100%; justify-content: center; margin-bottom: 8px;
  text-decoration: none !important;
}
.sb-book .sb-cta-btn:last-child { margin-bottom: 0; }
.sb-guides h4, .sb-cars h4 {
  font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--slate-2); margin-bottom: 12px;
}
.sb-guides ul { list-style: none; padding: 0; margin: 0; }
.sb-guides ul li { border-bottom: 1px solid #f1f5f9; }
.sb-guides ul li:last-child { border-bottom: none; }
.sb-guides ul li a {
  display: block; padding: 9px 0; font-size: .88rem; color: var(--navy);
  font-weight: 600; text-decoration: none; transition: color .2s;
}
.sb-guides ul li a:hover { color: var(--gold); }
.sb-car {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid #f1f5f9;
}
.sb-car:last-of-type { border-bottom: none; }
.sb-car strong { display: block; font-size: .88rem; color: var(--navy); }
.sb-car span { font-size: .76rem; color: var(--slate-2); }
.sb-car-price { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; color: var(--navy); font-size: .95rem; white-space: nowrap; }
.sb-fleet-link {
  display: inline-block; margin-top: 12px;
  font-size: .85rem; font-weight: 700; color: var(--gold); text-decoration: none;
}
.sb-fleet-link:hover { text-decoration: underline; }

.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  padding: 30px;
  border-radius: var(--radius-lg);
  margin: 40px 0;
  text-align: center;
}
.cta-banner h3 { color: #fff; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,.85); margin-bottom: 20px; }

/* ============ BREADCRUMB ============ */
.breadcrumb {
  font-size: .88rem; color: var(--slate-2);
  padding: 16px 0;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* Page hero (smaller than home hero) — with background image + localized scrim behind text */
.page-hero {
  position: relative;
  background: var(--navy) url("../assets/images/hero/fleet-hero.webp") center/cover no-repeat;
  color: #fff;
  padding: 110px 0 90px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  /* subtle navy tint so cars/colors stay vivid but page stays on-brand */
  background: linear-gradient(180deg, rgba(8,17,32,.35) 0%, rgba(8,17,32,.15) 50%, rgba(8,17,32,.55) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  color: #fff;
  display: inline-block;
  width: fit-content;
  background: rgba(8,17,32,.9);
  padding: 16px 26px;
  border-radius: 16px;
  margin-bottom: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.32);
}
.page-hero p {
  color: rgba(237,242,247,.92);
  font-size: 1.1rem;
  display: inline-block;
  width: fit-content;
  max-width: 720px;
  margin: 0 auto;
  background: rgba(8,17,32,.9);
  padding: 12px 22px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}
@media (max-width: 767px) {
  .page-hero { padding: 70px 0 60px; }
  .page-hero h1 { padding: 14px 20px; }
  .page-hero p { padding: 10px 18px; font-size: 1rem; }
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--charcoal);
  color: var(--off-white);
  padding: 70px 0 24px;
}
.footer-grid {
  display: grid; gap: 40px;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  margin-bottom: 40px;
}
@media (max-width: 1000px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* Footer collapsible sections on mobile */
@media (max-width: 900px) {
  .footer-col:not(.footer-brand) .footer-toggle {
    cursor: pointer;
    padding-right: 32px;
    position: relative;
    user-select: none;
  }
  .footer-col:not(.footer-brand) .footer-toggle::after {
    content: '+';
    position: absolute; right: 0; top: 2px;
    font-size: 1.2rem; color: var(--gold);
    font-weight: 400;
  }
  .footer-col:not(.footer-brand) .footer-toggle.open::after { content: '−'; }
  .footer-col:not(.footer-brand) .footer-links {
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease;
  }
  .footer-col:not(.footer-brand) .footer-links.open { max-height: 320px; }
}
.site-footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-col h3, .footer-toggle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #fff;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}
.site-footer p, .site-footer a { font-size: .92rem; color: rgba(237,242,247,.7); }
.site-footer a:hover { color: var(--gold); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-tagline { margin: 14px 0 20px; max-width: 320px; }
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  color: #fff;
  transition: background .2s, transform .2s;
}
.socials a:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.footer-amennou {
  font-weight: 800 !important;
  color: var(--gold) !important;
  text-decoration: none;
}
.footer-amennou:hover { text-decoration: underline; }

.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px;
  font-size: .85rem; color: rgba(237,242,247,.5);
}
/* Swap order: AMENNOU credit before the language link */
.footer-bottom .footer-lang { order: 3; }

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed;
  bottom: 72px; right: 24px;
  z-index: 1000;
  width: 60px; height: 60px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
  transition: transform .2s;
  animation: pulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.1); animation: none; }
.wa-float svg { width: 30px; height: 30px; }
/* Lift floating WhatsApp by half its size on mobile + keep popup synced above it */
@media (max-width: 680px) {
  .wa-float { bottom: 102px; }
  .wa-popup { bottom: 176px; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.55); }
  50% { box-shadow: 0 8px 28px rgba(37,211,102,.5), 0 0 0 16px rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float { animation: none; }
}

/* ============ FLEET PAGE FILTERS ============ */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 20px;
  border-radius: 100px;
  background: #fff;
  color: var(--navy);
  border: 1.5px solid rgba(10,22,40,.1);
  font-weight: 600; font-size: .92rem;
  transition: all .2s;
}
.filter-btn:hover { border-color: var(--gold); }
.filter-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ============ COMPARISON TABLE ============ */
.compare-table {
  width: 100%; border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin: 30px 0;
}
.compare-table th, .compare-table td {
  padding: 16px 18px; text-align: left;
  border-bottom: 1px solid rgba(10,22,40,.06);
}
.compare-table th {
  background: var(--navy); color: #fff;
  font-weight: 700; font-size: .92rem;
}
.compare-table .check { color: var(--emerald); font-weight: 700; }
.compare-table .cross { color: #e53e3e; font-weight: 700; }

/* ============ DESTINATION CARDS ============ */
.dest-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  display: block;
  transition: transform .25s;
}
.dest-card:hover { transform: translateY(-4px); }
.dest-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.dest-card:hover img { transform: scale(1.08); }
.dest-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,22,40,.92) 100%);
}
.dest-info {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  z-index: 2; color: #fff;
}
.dest-info h3 { color: #fff; margin-bottom: 4px; }
.dest-info span { font-size: .88rem; color: rgba(255,255,255,.85); }

/* ============ UTILITIES ============ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 2rem; }
.center-cta { text-align: center; margin-top: 30px; }

/* Print */
@media print {
  .wa-float, .site-header, .site-footer { display: none; }
}

/* ============ LANGUAGE SWITCHER ============ */
.lang-switcher { display: inline-flex !important; align-items: center; margin-left: 8px; }
.lang-select {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255,255,255,.08) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(255,255,255,.55)'/%3E%3C/svg%3E") no-repeat right 8px center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px;
  color: rgba(255,255,255,.85);
  font-family: inherit;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 6px 28px 6px 12px;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  outline: none;
}
.lang-select:hover, .lang-select:focus { border-color: var(--gold); color: #fff; }
.lang-select option { background: var(--navy); color: #fff; }

/* Always-visible lang dropdown in mobile header */
.header-lang { display: none; }
@media (max-width: 900px) {
  .header-lang { display: inline-flex; align-items: center; margin-right: 6px; }
  .header-lang .lang-select { font-size: .7rem; padding: 4px 24px 4px 9px; }
  .nav-links .lang-switcher { width: 100%; justify-content: center; margin: 12px 0 4px !important; }
}

/* ============ RTL (Arabic) ============ */
html[dir="rtl"] {
  font-family: 'Tajawal', 'Inter', system-ui, sans-serif;
}
html[dir="rtl"] body {
  font-family: 'Tajawal', 'Inter', system-ui, sans-serif;
}
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3, html[dir="rtl"] h4 {
  font-family: 'Tajawal', 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0;
}

/* Mirror the WhatsApp float to the left in RTL */
html[dir="rtl"] .wa-float { right: auto; left: 24px; }

/* Contact block RTL alignment */
html[dir="rtl"] .contact-block { text-align: right; }
html[dir="rtl"] .contact-block h2 { text-align: right; }
html[dir="rtl"] .contact-info-list li > div:not(.contact-icon) { text-align: right; }
html[dir="rtl"] .contact-icon { flex-shrink: 0; }

/* Mirror nav and menu */
html[dir="rtl"] .nav-links { padding-right: 0; }
html[dir="rtl"] .logo { flex-direction: row; }

/* Hero alignment */
html[dir="rtl"] .hero-content { text-align: right; }
html[dir="rtl"] .hero-cta { justify-content: flex-start; }
html[dir="rtl"] .trust-badges { justify-content: flex-start; }

/* Section heads center stays center; left-aligned content flips */
html[dir="rtl"] .breadcrumb { text-align: right; }

/* Forms */
html[dir="rtl"] .form-group label { text-align: right; }
html[dir="rtl"] .form-group input,
html[dir="rtl"] .form-group select,
html[dir="rtl"] .form-group textarea {
  text-align: right;
  direction: rtl;
}
/* Email, tel and datetime should stay LTR even in RTL layout for readability */
html[dir="rtl"] input[type="tel"],
html[dir="rtl"] input[type="email"],
html[dir="rtl"] input[type="datetime-local"],
html[dir="rtl"] input[type="date"],
html[dir="rtl"] input[type="time"],
html[dir="rtl"] input[type="number"],
html[dir="rtl"] input[type="url"] {
  direction: ltr;
  text-align: right;
}

/* Phone numbers and addresses keep LTR direction */
html[dir="rtl"] a[href^="tel:"],
html[dir="rtl"] .ltr {
  direction: ltr;
  unicode-bidi: embed;
  display: inline-block;
}

/* Contact list flips icon to the right side */
html[dir="rtl"] .contact-info-list li { flex-direction: row-reverse; text-align: right; }

/* Footer grid layout flips */
html[dir="rtl"] .footer-bottom { flex-direction: row-reverse; }
html[dir="rtl"] .footer-links li { text-align: right; }

/* Compare table */
html[dir="rtl"] .compare-table th,
html[dir="rtl"] .compare-table td { text-align: right; }

/* Articles and blog body */
html[dir="rtl"] .article,
html[dir="rtl"] .article p,
html[dir="rtl"] .article li { text-align: right; }
html[dir="rtl"] .article ul,
html[dir="rtl"] .article ol { margin: 0 1.5em 1.4em 0; }

/* Faq question icon position */
html[dir="rtl"] .faq-q { text-align: right; flex-direction: row-reverse; }

/* Buttons keep their icons in correct order via flex-direction */
html[dir="rtl"] .btn { flex-direction: row-reverse; }

/* Arrow characters in CTAs — flip via CSS transform when arrow looks like → */
html[dir="rtl"] .blog-readmore,
html[dir="rtl"] .center-cta .btn-outline { unicode-bidi: plaintext; }

/* Car cards specs — readable RTL */
html[dir="rtl"] .car-specs { justify-content: flex-start; }
html[dir="rtl"] .car-actions { flex-direction: row-reverse; }

/* Section eyebrow left-align in RTL gets right-align */
html[dir="rtl"] .section-head { /* center stays center */ }

/* Step numbers stay centered */

/* Destination card info aligned right */
html[dir="rtl"] .dest-info { right: 20px; left: 20px; text-align: right; }

/* Reviews */
html[dir="rtl"] .review-author { flex-direction: row-reverse; text-align: right; }
html[dir="rtl"] .review-card { text-align: right; }
html[dir="rtl"] .review-card .stars { text-align: right; }

/* Filter bar */
html[dir="rtl"] .filter-bar { direction: rtl; }

/* ============ GOOGLE REVIEW BRANDING ============ */
.google-avatar {
  background: #fff !important;
  border: 2px solid #e8eaed;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.google-avatar svg { width: 22px; height: 22px; }

.google-wordmark {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -.01em;
  line-height: 1;
}
.google-wordmark .g-blue   { color: #4285F4; }
.google-wordmark .g-red    { color: #EA4335; }
.google-wordmark .g-yellow { color: #FBBC05; }
.google-wordmark .g-green  { color: #34A853; }

.review-source {
  display: flex; align-items: center; gap: 6px;
  margin-top: 10px;
  font-size: .82rem; color: var(--slate-2);
}
.review-source svg { flex-shrink: 0; }

/* ============ DESTINATIONS GRID (6 cards) ============ */
.dest-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
@media (min-width: 900px) {
  .dest-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============ ENHANCED CAR CARD ANIMATION ============ */
.car-card {
  transition: transform .38s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .3s ease;
}
.car-card:hover {
  transform: translateY(-12px) scale(1.018);
  box-shadow: 0 32px 72px rgba(10,22,40,.22), 0 0 0 2px rgba(245,166,35,.22);
}
.car-image img { transition: transform .45s ease; }
.car-card:hover .car-image img { transform: scale(1.08); }

/* ============ HERO SEARCH BAR (compact) ============ */
.hs-bar {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  background: rgba(255,255,255,.13);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 18px;
  overflow: hidden;
  max-width: 820px;
  margin-top: 28px;
  margin-bottom: 24px;
}
.hs-bar-field {
  display: flex;
  flex-direction: column;
  padding: 14px 20px;
  border-right: 1px solid rgba(255,255,255,.18);
  gap: 4px;
  min-width: 0;
}
.hs-bar-field:last-child { border-right: 0; }
.hs-bar-label {
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.65);
  white-space: nowrap;
}
.hs-bar-field input,
.hs-bar-field select,
.hs-bar .flatpickr-input {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: .92rem;
  font-weight: 600;
  font-family: inherit;
  width: 100%;
  outline: 0;
  cursor: pointer;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}
.hs-bar-field input::placeholder,
.hs-bar .flatpickr-input::placeholder { color: rgba(255,255,255,.55); }
.hs-bar-field input[readonly] { cursor: default; font-size: .85rem; opacity: .9; }
.hs-bar-field select option { color: var(--navy); background: #fff; }
@media (max-width: 700px) {
  .hs-bar { grid-template-columns: 1fr 1fr; border-radius: 14px; max-width: 100%; }
  .hs-bar-field { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .hs-bar-field:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.15); }
  .hs-bar-field:last-child, .hs-bar-field:nth-last-child(2):nth-child(odd) { border-bottom: 0; }
}

/* ============ PHONE WITH COUNTRY CODE ============ */
.phone-row {
  display: flex;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
  background: #fff;
}
.phone-row:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(245,166,35,.15);
}
.code-select {
  border: 0 !important;
  border-right: 1.5px solid #e2e8f0 !important;
  border-radius: 0 !important;
  width: 148px !important;
  flex-shrink: 0;
  padding: 14px 8px 14px 12px !important;
  font-size: .86rem !important;
  background: #f8f9fa !important;
  cursor: pointer;
  box-shadow: none !important;
}
.phone-number-input {
  border: 0 !important;
  border-radius: 0 !important;
  flex: 1;
  width: 0;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--navy);
  background: #fff;
}
.phone-number-input:focus { outline: 0; box-shadow: none !important; border-color: transparent !important; }

/* ============ CAR PICKER (booking form) ============ */
.car-picker-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  margin-top: 6px;
}
.car-pick-card {
  border: 2px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 12px;
  cursor: pointer;
  transition: border-color .25s, box-shadow .25s, transform .2s, background .2s;
  position: relative;
  background: #fff;
  display: block;
}
.car-pick-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 18px rgba(245,166,35,.2);
  transform: translateY(-2px);
}
.car-pick-card.selected {
  border-color: var(--gold);
  background: rgba(245,166,35,.05);
  box-shadow: 0 4px 22px rgba(245,166,35,.28);
}
.car-pick-card input[type="radio"] { display: none; }
.car-pick-thumb {
  width: 100%; aspect-ratio: 16/9;
  border-radius: 8px; overflow: hidden;
  margin-bottom: 10px; background: var(--pearl);
}
.car-pick-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.car-pick-card:hover .car-pick-thumb img { transform: scale(1.06); }
.car-pick-name { font-weight: 700; font-size: .88rem; color: var(--navy); margin-bottom: 2px; }
.car-pick-class { font-size: .72rem; color: var(--slate-2); text-transform: uppercase; letter-spacing: .06em; }
.car-pick-price {
  font-weight: 800; font-size: 1rem; color: var(--gold);
  margin-top: 6px;
  font-family: 'Space Grotesk', sans-serif;
}
.car-pick-price span { font-weight: 400; font-size: .78rem; color: var(--slate-2); }
.car-pick-badge {
  position: absolute; top: 8px; right: 10px;
  background: var(--gold); color: var(--navy);
  width: 22px; height: 22px; border-radius: 50%;
  font-size: .7rem; font-weight: 800;
  display: none; align-items: center; justify-content: center;
}
.car-pick-card.selected .car-pick-badge { display: flex; }

/* Return date unlock animation */
.return-field { transition: opacity .35s ease; }
.return-field.locked { opacity: .4; pointer-events: none; }
.return-hint {
  font-size: .78rem; color: var(--slate-2);
  margin-top: 4px; display: block;
  font-style: italic;
}
.return-field.locked .return-hint { display: block; }
.return-field:not(.locked) .return-hint { display: none; }

/* Date/time row layout */
.date-time-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  grid-column: 1 / -1;
}
@media (max-width: 520px) { .date-time-row { grid-template-columns: 1fr; } }

/* ============ RTL for new elements ============ */
html[dir="rtl"] .phone-row { flex-direction: row-reverse; }
html[dir="rtl"] .code-select { border-right: 0 !important; border-left: 1.5px solid #e2e8f0 !important; }
html[dir="rtl"] .car-picker-grid { direction: rtl; }
html[dir="rtl"] .car-pick-badge { right: auto; left: 10px; }
html[dir="rtl"] .hs-bar { direction: rtl; }
html[dir="rtl"] .hs-bar-field { border-right: 0; border-left: 1px solid rgba(255,255,255,.18); }
html[dir="rtl"] .hs-bar-field:last-child { border-left: 0; }
html[dir="rtl"] .car-preview-panel { flex-direction: row-reverse; }

/* ============ FLATPICKR THEME (navy / gold) ============ */
.flatpickr-calendar {
  border-radius: 14px !important;
  box-shadow: 0 20px 60px rgba(10,22,40,.22) !important;
  border: 1px solid rgba(10,22,40,.1) !important;
  font-family: 'Inter', sans-serif !important;
}
.flatpickr-months .flatpickr-month { background: var(--navy) !important; color: #fff !important; border-radius: 14px 14px 0 0; }
.flatpickr-current-month, .flatpickr-current-month input.cur-year { color: #fff !important; }
.flatpickr-monthDropdown-months { background: var(--navy) !important; color: #fff !important; }
.flatpickr-weekday { color: var(--gold) !important; font-weight: 700 !important; }
.flatpickr-prev-month svg, .flatpickr-next-month svg { fill: #fff !important; }
.flatpickr-prev-month:hover, .flatpickr-next-month:hover { background: rgba(245,166,35,.2) !important; }
.flatpickr-prev-month:hover svg, .flatpickr-next-month:hover svg { fill: var(--gold) !important; }
.flatpickr-day.selected, .flatpickr-day.selected:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
}
.flatpickr-day:hover { background: rgba(245,166,35,.12) !important; border-color: transparent !important; }
.flatpickr-day.today { border-color: var(--gold) !important; }
.flatpickr-day.today:hover { background: rgba(245,166,35,.12) !important; }
.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover { color: rgba(10,22,40,.22) !important; background: transparent !important; }
input.flatpickr-input[readonly] { cursor: pointer; }

/* ============ CAR SELECT DROPDOWN ============ */
.car-select-styled {
  width: 100%;
  padding: 14px 44px 14px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 500;
  color: var(--navy);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%234A5568' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 14px center;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color .2s, box-shadow .2s;
}
.car-select-styled:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(245,166,35,.15);
}

/* ============ PWA INSTALL SECTION ============ */
.pwa-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0f1d36 100%);
  padding: 72px 0;
}
.pwa-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}
.pwa-app-icon {
  width: 110px; height: 110px;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 24px rgba(245,166,35,.35));
}
.pwa-text { width: 100%; max-width: 600px; }
.pwa-text h2 { color: #fff; margin-bottom: 12px; }
.pwa-text > p { color: rgba(255,255,255,.72); margin-bottom: 28px; }
.pwa-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; }
.pwa-hint {
  font-size: .82rem;
  color: rgba(255,255,255,.48);
  margin: 0; line-height: 1.6;
}
@media (max-width: 700px) {
  .pwa-inner { gap: 20px; }
}

/* ============ AVAILABILITY BADGE ============ */
.avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56,161,105,.15);
  border: 1px solid rgba(56,161,105,.35);
  color: #68d391;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}
.avail-dot {
  width: 8px; height: 8px;
  background: #68d391;
  border-radius: 50%;
  animation: avail-pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes avail-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(.65); }
}

/* ============ STATS STRIP ============ */
.stats-strip {
  background: var(--navy);
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
.stat-item {
  padding: 20px 8px;
  border-right: 1px solid rgba(255,255,255,.07);
}
.stat-item:last-child { border-right: 0; }
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.2rem, 4.5vw, 2.4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: clamp(.62rem, 2.2vw, .82rem);
  color: rgba(237,242,247,.6);
  font-weight: 500;
}

/* ============ BEST FOR TAGS ============ */
.best-for {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(245,166,35,.1);
  color: #b47b12;
  border-radius: 100px;
  padding: 4px 10px;
  font-size: .74rem;
  font-weight: 700;
  margin-top: 8px;
  letter-spacing: .02em;
}
.best-for::before { content: '★'; color: var(--gold); }

/* ============ COMPARE FEATURE ============ */
.compare-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 8px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--slate);
  width: 100%;
  justify-content: center;
  transition: border-color .2s, color .2s, background .2s;
  background: #fff;
}
.compare-btn:hover { border-color: var(--gold); color: var(--navy); }
.compare-btn.active { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.compare-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  color: #fff;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 500;
  transform: translateY(100%);
  transition: transform .38s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 -8px 32px rgba(10,22,40,.35);
  flex-wrap: wrap;
}
.compare-bar.visible { transform: translateY(0); }
.compare-bar-info {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
}
.compare-bar-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.1);
  padding: 5px 10px;
  border-radius: 6px;
  font-size: .82rem; font-weight: 600;
}
.compare-bar-chip button {
  color: rgba(255,255,255,.5);
  font-size: .9rem; line-height: 1; padding: 0;
  transition: color .15s;
}
.compare-bar-chip button:hover { color: #fff; }
.compare-bar-label { color: rgba(255,255,255,.65); font-size: .85rem; }

.compare-overlay {
  position: fixed; inset: 0;
  background: rgba(10,22,40,.72);
  z-index: 600;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.compare-overlay.open { opacity: 1; pointer-events: all; }
.compare-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 960px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  transform: translateY(20px);
  transition: transform .3s cubic-bezier(0.34,1.56,0.64,1);
}
.compare-overlay.open .compare-modal { transform: translateY(0); }
.compare-modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(10,22,40,.08);
  position: sticky; top: 0; background: #fff; z-index: 2;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.compare-modal-head h3 { margin: 0; font-size: 1.15rem; }
.compare-modal-close {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--pearl);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--navy); line-height: 1;
  transition: background .2s;
}
.compare-modal-close:hover { background: #e2e8f0; }
.compare-modal-body { padding: 24px 28px 32px; overflow-x: auto; }
.cmp-table { width: 100%; border-collapse: collapse; min-width: 480px; }
.cmp-table th {
  padding: 14px 18px;
  background: var(--navy); color: #fff;
  font-size: .88rem; font-weight: 700; text-align: center;
}
.cmp-table th:first-child { background: var(--pearl); color: var(--navy); text-align: left; border-radius: 0; }
.cmp-table td {
  padding: 13px 18px;
  border-bottom: 1px solid rgba(10,22,40,.06);
  font-size: .9rem; text-align: center;
}
.cmp-table td:first-child { text-align: left; font-weight: 600; color: var(--navy); background: rgba(248,249,250,.6); }
.cmp-table .cmp-best { color: var(--gold); font-weight: 700; }
.cmp-table tr:last-child td { border-bottom: 0; }

/* ============ PRICE SUMMARY (booking form) ============ */
.price-summary {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(245,166,35,.07), rgba(245,166,35,.02));
  border: 1.5px solid rgba(245,166,35,.3);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  animation: previewIn .4s cubic-bezier(0.34,1.56,0.64,1);
}
.price-summary-detail { font-size: .88rem; color: var(--slate); line-height: 1.7; }
.price-summary-detail strong { color: var(--navy); }
.price-summary-total {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.7rem; font-weight: 700;
  color: var(--navy);
  text-align: right;
}
.price-summary-total small { display: block; font-size: .72rem; font-weight: 400; color: var(--slate-2); }
@media (max-width: 500px) {
  .price-summary { flex-direction: column; align-items: flex-start; }
  .price-summary-total { text-align: left; }
}

/* ============ WHATSAPP POPUP ============ */
.wa-popup {
  position: fixed;
  bottom: 148px; right: 20px;
  z-index: 998;
  cursor: pointer;
  background: #fff;
  border-radius: 14px 14px 4px 14px;
  padding: 14px 16px;
  max-width: 230px;
  box-shadow: 0 8px 32px rgba(10,22,40,.18);
  border: 1px solid rgba(10,22,40,.07);
  animation: popupIn .4s cubic-bezier(0.34,1.56,0.64,1);
}
.wa-popup.wa-popup-hidden { display: none; }
@keyframes popupIn {
  from { opacity: 0; transform: translateY(14px) scale(.94); }
}
.wa-popup-close {
  position: absolute; top: -9px; right: -9px;
  width: 22px; height: 22px;
  background: var(--navy); color: #fff;
  border-radius: 50%;
  font-size: .72rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.wa-popup-close:hover { background: #e53e3e; }
.wa-popup-head {
  display: flex; align-items: center; gap: 9px;
  margin-bottom: 9px;
}
.wa-popup-avatar {
  width: 34px; height: 34px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wa-popup-avatar svg { width: 18px; height: 18px; }
.wa-popup-name { font-size: .75rem; font-weight: 700; color: var(--navy); }
.wa-popup-status { font-size: .66rem; color: var(--emerald); font-weight: 500; }
.wa-popup p { margin: 0; font-size: .84rem; color: var(--navy); line-height: 1.45; }
html[dir="rtl"] .wa-popup { right: auto; left: 20px; border-radius: 14px 14px 14px 4px; }
html[dir="rtl"] .wa-popup-close { right: auto; left: -9px; }

/* ============ CAR SELECTED PREVIEW ============ */
.car-preview-panel {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  background: linear-gradient(135deg, rgba(245,166,35,.08), rgba(245,166,35,.03));
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  animation: previewIn .4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes previewIn {
  from { opacity: 0; transform: translateY(-10px) scale(.96); }
}
.csp-img {
  width: 130px; height: 82px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(10,22,40,.15);
}
.csp-info { flex: 1; min-width: 0; }
.csp-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
  letter-spacing: .04em;
}
.csp-name { font-size: 1.05rem; font-weight: 700; color: var(--navy); }
.csp-class { font-size: .8rem; color: var(--slate-2); text-transform: uppercase; letter-spacing: .07em; margin-top: 2px; }
.csp-price { font-size: 1.15rem; font-weight: 800; color: var(--gold); margin-top: 4px; font-family: 'Space Grotesk', sans-serif; }
.csp-price span { font-weight: 400; font-size: .78rem; color: var(--slate-2); }
@media (max-width: 480px) {
  .car-preview-panel { flex-direction: column; align-items: flex-start; }
  .csp-img { width: 100%; height: 140px; }
}

