/* ═══════════════════════════════════════════════
   AFANDI CARS RENTAL — Premium Redesign v4
   Colors: Navy #002D47 · Gold #C8A951 · White #FAFAFA
   Fonts: Playfair Display + Outfit
═══════════════════════════════════════════════ */
:root {
  --navy:      #002D47;
  --navy-2:    #003A5C;
  --navy-3:    #00466B;
  --gold:      #C8A951;
  --gold-2:    #D9BC75;
  --gold-glow: rgba(200,169,81,.18);
  --cream:     #F7F5F1;
  --white:     #FFFFFF;
  --gray-1:    #F0EDE8;
  --gray-2:    #E0DDD8;
  --gray-3:    #9CA3AF;
  --text:      #1A1A2E;
  --text-2:    #4B5563;
  --green-wa:  #25D366;
  --r-lg:      12px;
  --r-md:      12px;
  --r-sm:      12px;
  --shadow:    0 4px 32px rgba(0,45,71,.10);
  --shadow-lg: 0 16px 64px rgba(0,45,71,.18);
  --trans:     all .25s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
address { font-style: normal; }

/* ─── UTILS ──────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px,5vw,60px);
}

.section { padding: clamp(60px, 8vw, 110px) 0; }

.section-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label.light { color: var(--gold-2); }

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--navy);
  margin-bottom: 18px;
}
h2 em { font-style: italic; color: var(--gold); }
.h2-light { color: var(--white); }
.h2-light em { color: var(--gold-2); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 960px;
  line-height: 1.75;
  margin-bottom: 52px;
}

/* ─── BUTTONS ────────────────────────────────── */
.btn-primary, .btn-outline, .btn-submit, .btn-hero-primary, .btn-hero-ghost, .cta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  transition: var(--trans);
  text-align: center;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 28px;
  border-radius: var(--r-md);
  font-size: .95rem;
  font-weight: 600;
}
.btn-primary:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,169,81,.3); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  padding: 13px 28px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--gray-2);
  font-size: .95rem;
}
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }

.btn-submit {
  background: var(--gold);
  color: var(--navy);
  padding: 18px 28px;
  border-radius: var(--r-md);
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
}
.btn-submit:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(200,169,81,.35); }

/* ─── HEADER ─────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: var(--trans);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
  padding: 0 clamp(20px,5vw,60px);
  background: rgba(0,45,71,.90);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(200,169,81,.15);
}
.header.scrolled .header-inner { background: rgba(0,45,71,.98); }

.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 38px; width: auto; object-fit: contain; }

.main-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.main-nav a {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  letter-spacing: .04em;
  position: relative;
  padding-bottom: 2px;
  transition: color .2s;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.main-nav a:hover { color: #fff; }
.main-nav a:hover::after { transform: scaleX(1); }

.cta-pill {
  background: var(--gold);
  color: var(--navy);
  padding: 9px 20px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .03em;
  white-space: nowrap;
  flex-shrink: 0;
}
.cta-pill:hover { background: var(--gold-2); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,.8);
  padding: 4px;
  margin-left: auto;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--navy);
  border-bottom: 1px solid rgba(200,169,81,.2);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  padding: 16px clamp(20px,5vw,60px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s, background .2s;
}
.mobile-menu a:hover { color: #fff; background: rgba(255,255,255,.04); }
.mobile-menu .mobile-cta {
  margin: 16px clamp(20px,5vw,60px);
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  border-radius: var(--r-md);
  padding: 14px;
  font-weight: 600;
  border-bottom: none;
}

/* ─── HERO ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 68px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,45,71,.55) 0%,
    rgba(0,45,71,.35) 40%,
    rgba(0,45,71,.75) 75%,
    rgba(0,45,71,.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(60px,10vw,120px) clamp(20px,6vw,80px) 48px;
  max-width: 780px;
  animation: slideUp .9s ease both;
}
.hero-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,169,81,.35);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.75);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 16px 32px;
  border-radius: var(--r-md);
  font-size: 1rem;
  font-weight: 600;
}
.btn-hero-primary:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(200,169,81,.4); }
.btn-hero-ghost {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.3);
  padding: 16px 32px;
  border-radius: var(--r-md);
  font-size: 1rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
}
.btn-hero-ghost:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.5); }

.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(200,169,81,.2);
  padding: 24px clamp(20px,6vw,80px);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 clamp(20px,3vw,40px);
  flex: 1;
}
.stat:first-child { padding-left: 0; }
.stat-n {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-l {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* ─── TRUST BAR ──────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 clamp(20px,5vw,60px);
  flex-wrap: wrap;
  min-height: 60px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 14px 24px;
  white-space: nowrap;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }
.trust-sep { width: 1px; height: 24px; background: var(--gray-2); }

/* ─── FAHRZEUG ───────────────────────────────── */
.car-showcase {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: start;
}
.gallery-block {}
.gallery-main-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-1);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-2);
}
.gallery-main-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-main-wrap:hover .gallery-main-img { transform: scale(1.03); }

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.gthumb {
  border-radius: var(--r-sm);
  aspect-ratio: 4/3;
  object-fit: cover;
  cursor: pointer;
  border: 2.5px solid transparent;
  opacity: .6;
  transition: var(--trans);
}
.gthumb:hover { opacity: .85; }
.gthumb.active { border-color: var(--gold); opacity: 1; }

/* Specs card */
.specs-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-2);
  position: sticky;
  top: 84px;
}
.specs-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1.5px solid var(--gray-1);
}
.specs-model { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 700; color: var(--navy); line-height: 1; }
.specs-year  { font-size: .8rem; color: var(--text-2); margin-top: 4px; }
.specs-price { text-align: right; }
.price-big   { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; display: block; }
.price-unit  { font-size: .82rem; color: var(--text-2); }

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
}
.spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--cream);
  border-radius: var(--r-sm);
  border: 1px solid var(--gray-1);
}
.spec-ico { font-size: 1.1rem; flex-shrink: 0; }
.spec-data { display: flex; flex-direction: column; gap: 1px; }
.spec-val { font-size: .88rem; font-weight: 600; color: var(--navy); line-height: 1.1; }
.spec-key { font-size: .68rem; color: var(--text-2); text-transform: uppercase; letter-spacing: .07em; }

.platform-hint {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 14px;
  background: rgba(200,169,81,.07);
  border: 1px solid rgba(200,169,81,.2);
  border-radius: var(--r-sm);
  font-size: .8rem;
  color: #7A6120;
  line-height: 1.5;
  margin-bottom: 22px;
}
.platform-hint svg { flex-shrink: 0; margin-top: 1px; color: var(--gold); }

.specs-btns { display: flex; gap: 10px; }
.specs-btns .btn-primary,
.specs-btns .btn-outline { flex: 1; padding: 12px 16px; font-size: .88rem; }

/* ─── FEATURES STRIP ─────────────────────────── */
.features-strip {
  background: var(--navy);
  padding: 48px 0;
}
.features-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: rgba(255,255,255,.85);
}
.feature svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.feature strong { display: block; font-size: .95rem; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.feature span   { font-size: .8rem; color: rgba(255,255,255,.55); line-height: 1.4; }

/* ─── BOOKING SECTION ────────────────────────── */
.section-book { background: var(--navy); }

.book-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.book-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  margin: 16px 0 36px;
  line-height: 1.7;
}
.book-perks { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.perk {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}
.perk-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.wa-direct {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--green-wa);
  color: var(--white);
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: .92rem;
  transition: var(--trans);
}
.wa-direct svg { flex-shrink: 0; }
.wa-direct:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.35); }

.book-form-wrap { }
.book-form {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }

label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-2);
}
input, select, textarea {
  font-family: 'Outfit', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--gray-2);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  width: 100%;
  transition: var(--trans);
  appearance: none;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200,169,81,.1);
}
textarea { resize: vertical; }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239CA3AF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.price-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: linear-gradient(135deg, rgba(200,169,81,.08), rgba(200,169,81,.03));
  border: 1.5px solid rgba(200,169,81,.25);
  border-radius: var(--r-sm);
  gap: 12px;
}
.price-box-left { display: flex; flex-direction: column; gap: 3px; }
.price-box-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-2); }
.price-box-val { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 700; color: var(--gold); line-height: 1; }
.price-box-note { font-size: .75rem; color: var(--text-2); text-align: right; }

/* ─── STANDORTE ──────────────────────────────── */
.section-locs { background: var(--cream); }

.locs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.loc-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  border: 1px solid var(--gray-2);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: var(--trans);
}
.loc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}
.loc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.loc-card:hover::after { transform: scaleX(1); }

.loc-card-dark { background: var(--navy); border-color: transparent; }
.loc-card-dark h3 { color: var(--white); }
.loc-card-dark address { color: rgba(255,255,255,.55); }
.loc-card-dark .loc-number { color: rgba(200,169,81,.25); }
.loc-card-dark .loc-map-link { color: var(--gold-2); }

.loc-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(200,169,81,.2);
  line-height: 1;
  margin-bottom: 8px;
}
.loc-icon { font-size: 1.6rem; margin-bottom: 16px; }
.loc-card h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.loc-card address { font-size: .88rem; color: var(--text-2); line-height: 1.7; margin-bottom: 24px; }
.loc-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--gold);
  transition: gap .2s;
}
.loc-map-link:hover { gap: 10px; }

/* ─── CONTACT ────────────────────────────────── */
.section-contact {
  background: linear-gradient(135deg, var(--navy) 0%, #002D47 100%);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.contact-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  margin-top: 16px;
}

.contact-right { display: flex; flex-direction: column; gap: 14px; }
.contact-channel {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  color: var(--white);
  transition: var(--trans);
}
.contact-channel:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(200,169,81,.35);
  transform: translateX(6px);
}
.ch-whatsapp:hover { border-color: rgba(37,211,102,.35); }

.ch-ico {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ch-ico-phone { background: rgba(200,169,81,.12); border: 1px solid rgba(200,169,81,.2); color: var(--gold); }
.ch-ico-wa    { background: rgba(37,211,102,.12);  border: 1px solid rgba(37,211,102,.2);  color: var(--green-wa); }
.ch-ico-mail  { background: rgba(200,169,81,.12); border: 1px solid rgba(200,169,81,.2); color: var(--gold); }

.ch-text { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.ch-label { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.ch-val   { font-size: 1rem; font-weight: 500; color: var(--white); }
.ch-arrow { color: rgba(255,255,255,.3); flex-shrink: 0; }

/* ─── FOOTER ─────────────────────────────────── */
.footer {
  background: #002D47;
  border-top: 1px solid rgba(200,169,81,.15);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 32px;
  flex-wrap: wrap;
}
.footer-brand {}
.footer-logo { height: 32px; width: auto; opacity: .8; margin-bottom: 10px; }
.footer-brand p { font-size: .8rem; color: rgba(255,255,255,.35); line-height: 1.6; }

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-nav a:hover { color: var(--gold); }

.footer-platforms {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer-platforms a {
  color: var(--gold-2);
  font-weight: 500;
  transition: color .2s;
}
.footer-platforms a:hover { color: var(--gold); }

.footer-legal {
  font-size: .73rem;
  color: rgba(255,255,255,.22);
  line-height: 1.7;
  padding-bottom: 28px;
  max-width: 960px;
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 20px;
}

/* ─── ANIMATIONS ─────────────────────────────── */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .car-showcase { grid-template-columns: 1fr; }
  .specs-card { position: static; }
  .gallery-strip { grid-template-columns: repeat(5, 1fr); }
  .features-inner { grid-template-columns: repeat(2, 1fr); }
  .book-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .cta-pill  { display: none; }
  .nav-toggle { display: flex; }

  .trust-bar { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; gap: 0; }
  .trust-sep { display: none; }

  .locs-grid { grid-template-columns: 1fr; }
  .features-inner { grid-template-columns: 1fr; gap: 20px; }

  .hero-stats { flex-wrap: wrap; }
  .stat { min-width: 120px; }
  .stat-sep { display: none; }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(3, 1fr); }
  .specs-btns { flex-direction: column; }
  .hero-btns .btn-hero-primary,
  .hero-btns .btn-hero-ghost { width: 100%; }
  .book-form { padding: 28px 22px; }
  .specs-card { padding: 26px 22px; }
}

/* ═══ LOGO HEADER (new icon style) ═══════════ */
.logo-link { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
}
.logo-sub {
  font-size: .6rem;
  font-weight: 400;
  letter-spacing: .12em;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  margin-top: 3px;
}

/* ═══ DELIVERY SECTION ════════════════════════ */
.section-delivery { background: var(--white); }

.delivery-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.delivery-desc {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.75;
  margin: 16px 0 36px;
}
.delivery-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.df-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.df-icon {
  font-size: 1.4rem;
  width: 44px; height: 44px;
  background: rgba(200,169,81,.1);
  border: 1px solid rgba(200,169,81,.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.df-item strong { display: block; font-size: .95rem; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.df-item p { font-size: .83rem; color: var(--text-2); line-height: 1.5; margin: 0; }

.btn-delivery {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 15px 30px;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--trans);
}
.btn-delivery:hover { background: var(--navy-2); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,45,71,.25); }

/* Map-Card */
.at-map-card {
  background: linear-gradient(145deg, var(--navy), #002D47);
  border-radius: var(--r-lg);
  padding: 36px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(200,169,81,.15);
}
.at-map-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.at-flag { font-size: 2rem; }
.at-map-header strong { display: block; font-size: 1rem; font-weight: 600; }
.at-map-header span  { font-size: .78rem; color: rgba(255,255,255,.5); }

.at-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.city-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px;
  font-size: .8rem;
  color: rgba(255,255,255,.8);
  transition: var(--trans);
}
.city-chip:hover { background: rgba(255,255,255,.12); }
.city-chip-home { background: rgba(200,169,81,.15); border-color: rgba(200,169,81,.3); color: var(--gold-2); }
.city-chip-more { background: rgba(200,169,81,.1); border-color: rgba(200,169,81,.25); color: var(--gold-2); font-weight: 600; }
.chip-note { font-size: .65rem; color: var(--gold-2); opacity: .8; }

.at-note {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 22px;
  line-height: 1.5;
}
.at-note svg { flex-shrink: 0; margin-top: 1px; }

.at-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: #25D366;
  color: var(--white);
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: .92rem;
  transition: var(--trans);
}
.at-cta:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.35); }

/* ═══ DELIVERY TOGGLE in form ════════════════ */
.delivery-toggle {
  padding: 14px 16px;
  background: rgba(200,169,81,.05);
  border: 1.5px solid rgba(200,169,81,.2);
  border-radius: var(--r-sm);
}
.toggle-label {
  display: flex !important;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: .88rem !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--text) !important;
}
.toggle-label input[type="checkbox"] { display: none; }
.toggle-track {
  width: 42px; height: 24px;
  background: var(--gray-2);
  border-radius: 12px;
  position: relative;
  flex-shrink: 0;
  transition: background .25s;
}
.toggle-label input:checked + .toggle-track { background: var(--gold); }
.toggle-thumb {
  width: 18px; height: 18px;
  background: var(--white);
  border-radius: 50%;
  position: absolute;
  top: 3px; left: 3px;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
  transition: transform .25s;
}
.toggle-label input:checked + .toggle-track .toggle-thumb { transform: translateX(18px); }
.toggle-text { font-size: .88rem !important; }

.delivery-fields {
  animation: slideDown .25s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══ LOCATIONS 4-grid ═══════════════════════ */
.locs-grid { grid-template-columns: repeat(4, 1fr); }

/* ═══ FOOTER LOGO ════════════════════════════ */
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-icon {
  width: 32px; height: 32px;
  border-radius: 7px;
  object-fit: cover;
  opacity: .85;
}
.footer-logo-text {
  display: flex;
  flex-direction: column;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  line-height: 1.1;
}
.footer-logo-text span {
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: .12em;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
}

/* ═══ RESPONSIVE additions ═══════════════════ */
@media (max-width: 1024px) {
  .delivery-layout { grid-template-columns: 1fr; gap: 48px; }
  .locs-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .locs-grid { grid-template-columns: 1fr !important; }
  .at-cities { gap: 8px; }
}

/* ══════════════════════════════════════
   LANGUAGE SWITCHER
══════════════════════════════════════ */
.lang-switcher {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 4px;
  flex-shrink: 0;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: rgba(255,255,255,.5);
  padding: 5px 10px;
  border-radius: 5px;
  transition: all .2s;
  line-height: 1;
}
.lang-btn:hover { color: rgba(255,255,255,.85); background: rgba(255,255,255,.08); }
.lang-btn.active { background: var(--gold); color: var(--navy); }

.mobile-lang {
  display: flex;
  gap: 8px;
  padding: 16px clamp(20px,5vw,60px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-lang .lang-btn {
  flex: 1;
  padding: 10px 8px;
  border-radius: 8px;
  font-size: .8rem;
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.08);
}
.mobile-lang .lang-btn.active { background: var(--gold); color: var(--navy); border-color: transparent; }




/* === AFANDI minimal fixes: original design preserved === */
.btn-hero-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #002D47;
  border: 1px solid rgba(37,211,102,.85);
  padding: 16px 32px;
  border-radius: var(--r-md);
  font-size: 1rem;
  font-weight: 700;
  transition: var(--trans);
}
.btn-hero-whatsapp:hover {
  background: #2be370;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,.28);
}
.mobile-menu .mobile-cta-secondary {
  margin-top: 0;
  background: rgba(255,255,255,.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.16);
}
.top-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 300;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 800;
  box-shadow: 0 14px 36px rgba(0,45,71,.22);
  border: 1px solid rgba(255,255,255,.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .22s ease, transform .22s ease, background .22s ease;
}
.top-button.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.top-button:hover { background: var(--gold-2); }

/* Mobile refinements without changing the design */
@media (max-width: 600px) {
  body { overflow-x: hidden; }
  .hero-btns {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .hero-btns .btn-hero-primary,
  .hero-btns .btn-hero-ghost,
  .hero-btns .btn-hero-whatsapp {
    width: 100%;
  }
  .hero-bg-img {
    object-position: center center;
  }
  .top-button {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
  .gallery-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* === AFANDI mobile stats fix: original design preserved === */
@media (max-width: 768px) {
  .hero-stats {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
    padding: 18px 18px !important;
    overflow: hidden !important;
  }

  .hero-stats .stat {
    min-width: 0 !important;
    width: 100% !important;
    padding: 14px 10px !important;
    border-right: 1px solid rgba(255,255,255,.14);
    border-bottom: 1px solid rgba(255,255,255,.10);
  }

  .hero-stats .stat:nth-child(4n),
  .hero-stats .stat:last-child {
    border-right: 0;
  }

  .hero-stats .stat-sep {
    display: none !important;
  }

  .hero-stats .stat-n {
    font-size: clamp(1.35rem, 7vw, 2rem) !important;
    line-height: 1.05 !important;
    word-break: break-word;
  }

  .hero-stats .stat-l {
    font-size: .64rem !important;
    letter-spacing: .16em !important;
  }
}

@media (max-width: 420px) {
  .hero-stats {
    grid-template-columns: 1fr !important;
    padding: 14px 18px !important;
  }

  .hero-stats .stat {
    border-right: 0 !important;
    padding: 13px 4px !important;
  }

  .hero-stats .stat-n {
    font-size: 1.65rem !important;
  }
}


/* === Toyota extension (design preserved) === */
.section-vehicle-alt {
  padding-top: 8px;
}
.vehicle-select-wrap {
  margin-bottom: 18px;
}
.vehicle-select-wrap select {
  width: 100%;
}
@media (max-width: 768px) {
  .section-vehicle-alt {
    padding-top: 0;
  }
}


/* === AFANDI Top Button – same premium design === */
.top-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 400;
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 12px 34px rgba(0,45,71,.22);
  border: 1px solid rgba(255,255,255,.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: var(--trans);
}
.top-button.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.top-button:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(0,45,71,.28);
}
@media (max-width: 600px) {
  .top-button {
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
    border-radius: var(--r-sm);
    font-size: 1.15rem;
  }
}


/* === AFANDI Mobile Top Button Fix === */
@media (max-width: 768px) {
  .top-button {
    display: grid !important;
    position: fixed !important;
    right: 16px !important;
    bottom: calc(18px + env(safe-area-inset-bottom, 0px)) !important;
    z-index: 9999 !important;
    width: 48px !important;
    height: 48px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }
}








/* === AFANDI stable functional cleanup === */
.wa-icon {
  flex: 0 0 auto;
  display: inline-block;
  vertical-align: -2px;
}
.wa-nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
}
.wa-nav-cta:hover {
  background: var(--gold-2) !important;
}

.afandi-scroll-top {
  position: fixed !important;
  right: 24px !important;
  bottom: 24px !important;
  z-index: 2147483647 !important;
  width: 54px !important;
  height: 54px !important;
  border-radius: var(--r-md) !important;
  display: grid !important;
  place-items: center !important;
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.4rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  box-shadow: 0 16px 44px rgba(0,45,71,.32) !important;
  border: 1px solid rgba(255,255,255,.34) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  cursor: pointer !important;
  transform: translateY(14px) !important;
  transition: opacity .24s ease, visibility .24s ease, transform .24s ease, background .24s ease !important;
  -webkit-tap-highlight-color: transparent !important;
  touch-action: manipulation !important;
}
.afandi-scroll-top.is-visible {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}
.afandi-scroll-top:hover,
.afandi-scroll-top:focus-visible {
  background: var(--gold-2) !important;
  transform: translateY(-2px) !important;
  outline: none !important;
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-menu.open { display: flex; }
  .mobile-menu .wa-nav-cta {
    margin: 16px clamp(20px,5vw,60px) !important;
    width: auto !important;
  }
  .specs-btns {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }
  .specs-btns a {
    width: 100% !important;
  }
}
@media (max-width: 600px) {
  .afandi-scroll-top {
    right: 16px !important;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px)) !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: var(--r-sm) !important;
    font-size: 1.2rem !important;
  }
}


/* === AFANDI FINAL MOBILE RESPONSIVE MENU FIX === */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.logo-text {
  min-width: 0;
}

.nav-toggle {
  align-items: center !important;
  justify-content: center !important;
  min-width: 44px !important;
  min-height: 44px !important;
  border-radius: var(--r-sm) !important;
  position: relative !important;
  z-index: 1002 !important;
}

@media (max-width: 1100px) {
  .header-inner {
    gap: 14px !important;
  }

  .main-nav {
    gap: 16px !important;
  }

  .cta-pill {
    padding: 9px 14px !important;
  }
}

@media (max-width: 920px) {
  .header {
    position: fixed !important;
    z-index: 1000 !important;
  }

  .header-inner {
    height: 66px !important;
    padding: 0 16px !important;
  }

  .logo-link {
    min-width: 0 !important;
    flex: 1 1 auto !important;
  }

  .logo-icon {
    width: 38px !important;
    height: 38px !important;
    object-fit: contain !important;
    flex: 0 0 auto !important;
  }

  .logo-text {
    font-size: 1rem !important;
    white-space: nowrap !important;
  }

  .logo-sub {
    font-size: .66rem !important;
  }

  .main-nav,
  .header-inner > .lang-switcher,
  .header-inner > .cta-pill {
    display: none !important;
  }

  .nav-toggle {
    display: inline-flex !important;
    color: rgba(255,255,255,.92) !important;
    background: rgba(255,255,255,.08) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    margin-left: auto !important;
  }

  .mobile-menu {
    position: fixed !important;
    top: 66px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 999 !important;
    display: none !important;
    max-height: calc(100svh - 66px) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    background: rgba(0,45,71,.98) !important;
    box-shadow: 0 20px 44px rgba(0,0,0,.32) !important;
    border-bottom: 1px solid rgba(200,169,81,.22) !important;
    padding: 8px 0 18px !important;
  }

  .mobile-menu.open {
    display: flex !important;
  }

  .mobile-menu a {
    display: flex !important;
    align-items: center !important;
    min-height: 48px !important;
    padding: 14px 20px !important;
    font-size: 1rem !important;
    line-height: 1.25 !important;
  }

  .mobile-lang {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 14px 20px !important;
    border-bottom: 1px solid rgba(255,255,255,.08) !important;
  }

  .mobile-lang .lang-btn {
    width: 100% !important;
    min-height: 42px !important;
    border-radius: var(--r-sm) !important;
    justify-content: center !important;
  }

  .mobile-menu .wa-nav-cta,
  .mobile-menu .mobile-cta {
    margin: 14px 20px 0 !important;
    min-height: 50px !important;
    border-radius: var(--r-md) !important;
    justify-content: center !important;
    color: var(--navy) !important;
    background: var(--gold) !important;
    font-weight: 700 !important;
    text-align: center !important;
  }

  body.menu-open {
    overflow: hidden !important;
  }

  .hero {
    min-height: 100svh !important;
    padding-top: 66px !important;
  }

  .hero-content {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .hero h1,
  .hero-content h1 {
    font-size: clamp(2.6rem, 14vw, 4.6rem) !important;
  }

  .hero-sub {
    font-size: 1rem !important;
    max-width: 100% !important;
  }

  .hero-stats {
    width: calc(100% - 24px) !important;
    margin: 0 12px 12px !important;
    border-radius: var(--r-md) !important;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 18px !important;
  }

  .section {
    padding: 56px 0 !important;
  }

  .car-showcase,
  .book-layout,
  .delivery-layout,
  .contact-layout {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .gallery-main-img {
    aspect-ratio: 4 / 3 !important;
    object-fit: cover !important;
  }

  .gallery-strip {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .gthumb {
    width: 100% !important;
    aspect-ratio: 4 / 3 !important;
    object-fit: cover !important;
    min-width: 0 !important;
  }

  .specs-card {
    position: static !important;
  }

  .specs-header {
    gap: 14px !important;
    align-items: flex-start !important;
  }

  .specs-price {
    text-align: right !important;
    min-width: 110px !important;
  }

  .price-big {
    font-size: clamp(1.65rem, 8vw, 2.2rem) !important;
    white-space: nowrap !important;
  }

  .specs-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  .specs-btns {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .specs-btns a {
    width: 100% !important;
    min-height: 50px !important;
  }

  .form-row {
    grid-template-columns: 1fr !important;
  }

  .book-form-wrap,
  .book-form {
    width: 100% !important;
  }

  input,
  select,
  textarea,
  button {
    font-size: 16px !important;
  }

  .features-inner,
  .locs-grid {
    grid-template-columns: 1fr !important;
  }

  .trust-bar {
    flex-wrap: wrap !important;
    gap: 10px !important;
    justify-content: center !important;
    padding: 14px 18px !important;
  }

  .trust-sep {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: .92rem !important;
  }

  .hero-tag {
    font-size: .68rem !important;
  }

  .hero h1,
  .hero-content h1 {
    font-size: clamp(2.35rem, 16vw, 3.55rem) !important;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr !important;
  }

  .hero-stats .stat {
    padding: 12px 8px !important;
  }

  .hero-stats .stat-n {
    font-size: clamp(1.15rem, 7vw, 1.75rem) !important;
  }

  .specs-grid {
    grid-template-columns: 1fr !important;
  }

  .gallery-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .afandi-scroll-top {
    right: 14px !important;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px)) !important;
  }
}


/* === AFANDI WhatsApp alternative: split text + clean gold button === */
.no-account-whatsapp {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.no-account-text {
  color: var(--text-2);
  font-size: .95rem;
  font-weight: 500;
}

.btn-whatsapp-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--navy);
  padding: 13px 24px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--gold);
  font-size: .95rem;
  font-weight: 700;
  transition: var(--trans);
  text-align: center;
}

.btn-whatsapp-gold:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(200,169,81,.28);
}

@media (max-width: 768px) {
  .no-account-whatsapp {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .btn-whatsapp-gold {
    width: 100% !important;
    min-height: 50px !important;
  }
}








/* === AFANDI final Audi buttons + real footer spacing === */

/* Audi buttons: desktop clean, mobile stacked */
.specs-btns-audi {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(180px, 1fr)) !important;
  gap: 12px !important;
  align-items: stretch !important;
}

.specs-btns-audi .btn-primary,
.specs-btns-audi .btn-outline {
  width: 100% !important;
  min-height: 50px !important;
  padding-left: 18px !important;
  padding-right: 18px !important;
  white-space: nowrap !important;
}

.specs-btns-audi .no-account-whatsapp {
  grid-column: 1 / -1 !important;
  display: grid !important;
  grid-template-columns: auto minmax(220px, 1fr) !important;
  align-items: center !important;
  gap: 12px !important;
  margin-top: 2px !important;
  padding-top: 2px !important;
}

.specs-btns-audi .no-account-text {
  white-space: nowrap !important;
}

.specs-btns-audi .btn-whatsapp-gold {
  width: 100% !important;
  min-height: 50px !important;
}

/* Footer: all spacing stays inside footer */
.footer {
  position: relative !important;
  display: block !important;
  background: #002D47 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  border-top: 1px solid rgba(200,169,81,.15) !important;
}

.footer .container {
  box-sizing: border-box !important;
}

.footer-inner {
  padding-top: 54px !important;
  padding-bottom: 34px !important;
  gap: 34px !important;
}

.footer-logo-wrap {
  margin-bottom: 16px !important;
}

.footer-brand p {
  margin-top: 10px !important;
  margin-bottom: 0 !important;
}

.footer-legal {
  display: block !important;
  box-sizing: border-box !important;
  margin: 0 auto !important;
  padding-top: 24px !important;
  padding-bottom: 46px !important;
  max-width: 960px !important;
  border-top: 1px solid rgba(255,255,255,.06) !important;
  line-height: 1.8 !important;
}

@media (max-width: 768px) {
  .specs-btns-audi {
    grid-template-columns: 1fr !important;
  }

  .specs-btns-audi .btn-primary,
  .specs-btns-audi .btn-outline,
  .specs-btns-audi .btn-whatsapp-gold {
    width: 100% !important;
    white-space: normal !important;
  }

  .specs-btns-audi .no-account-whatsapp {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .specs-btns-audi .no-account-text {
    white-space: normal !important;
    padding-left: 2px !important;
  }

  .footer {
    margin-top: 0 !important;
    padding: 0 !important;
  }

  .footer-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 28px !important;
    padding-top: 58px !important;
    padding-bottom: 30px !important;
  }

  .footer-brand,
  .footer-nav,
  .footer-platforms {
    width: 100% !important;
  }

  .footer-logo-wrap {
    margin-bottom: 18px !important;
  }

  .footer-brand p {
    margin-top: 12px !important;
    line-height: 1.75 !important;
  }

  .footer-nav {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .footer-nav a {
    display: block !important;
    padding: 4px 0 !important;
  }

  .footer-platforms {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 8px 10px !important;
  }

  .footer-legal {
    width: calc(100% - 36px) !important;
    margin: 0 18px !important;
    padding-top: 24px !important;
    padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px)) !important;
    font-size: .82rem !important;
    line-height: 1.9 !important;
    text-align: left !important;
  }

  html[dir="rtl"] .footer-inner {
    align-items: flex-end !important;
  }

  html[dir="rtl"] .footer-legal {
    text-align: right !important;
  }
}


/* === AFANDI general hero text/stat safeguard === */
.hero-stats .stat-n {
  white-space: nowrap;
}
@media (max-width: 480px) {
  .hero-stats .stat-n {
    font-size: clamp(1.08rem, 6.4vw, 1.6rem) !important;
  }
}


/* === AFANDI hero combined cover === */
.hero.hero-combined-cover {
  position: relative !important;
  background-image:
    linear-gradient(90deg, rgba(6, 14, 27, 0.78) 0%, rgba(6, 14, 27, 0.64) 34%, rgba(6, 14, 27, 0.38) 58%, rgba(6, 14, 27, 0.26) 100%),
    linear-gradient(180deg, rgba(6, 14, 27, 0.10) 0%, rgba(6, 14, 27, 0.18) 100%),
    url('assets/img/hero-cover-audi-landcruiser.png') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.hero.hero-combined-cover::before,
.hero.hero-combined-cover::after {
  content: none !important;
}

.hero-cover-preload {
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 920px) {
  .hero.hero-combined-cover {
    background-position: 62% center !important;
  }
}

@media (max-width: 640px) {
  .hero.hero-combined-cover {
    background-image:
      linear-gradient(180deg, rgba(6, 14, 27, 0.82) 0%, rgba(6, 14, 27, 0.55) 38%, rgba(6, 14, 27, 0.34) 100%),
      url('assets/img/hero-cover-audi-landcruiser.png') !important;
    background-position: 64% center !important;
  }
}


/* === AFANDI refined hero cover and text === */
.hero.hero-combined-cover .hero-bg-img {
  object-fit: cover !important;
  object-position: center center !important;
  filter: none !important;
}

.hero.hero-combined-cover .hero-overlay {
  background:
    linear-gradient(90deg, rgba(6,14,27,.74) 0%, rgba(6,14,27,.58) 32%, rgba(6,14,27,.34) 56%, rgba(6,14,27,.20) 100%),
    linear-gradient(180deg, rgba(6,14,27,.08) 0%, rgba(6,14,27,.14) 35%, rgba(6,14,27,.58) 100%) !important;
}

.hero-content {
  max-width: 980px !important;
  width: min(980px, calc(100% - 40px)) !important;
  padding: clamp(58px, 9vw, 110px) clamp(22px, 6vw, 82px) 44px !important;
}

.hero h1 {
  font-family: 'Outfit', 'Playfair Display', sans-serif !important;
  font-size: clamp(2.8rem, 6.4vw, 5.4rem) !important;
  font-weight: 600 !important;
  line-height: 0.98 !important;
  letter-spacing: -0.03em !important;
  margin-bottom: 18px !important;
  max-width: 760px !important;
}

.hero h1 em {
  font-style: normal !important;
  color: var(--gold) !important;
  font-weight: 600 !important;
}

.hero-sub {
  max-width: 720px !important;
  font-size: clamp(1rem, 1.9vw, 1.18rem) !important;
  line-height: 1.75 !important;
  color: rgba(255,255,255,.80) !important;
}

@media (max-width: 920px) {
  .hero.hero-combined-cover .hero-bg-img {
    object-position: 62% center !important;
  }

  .hero-content {
    max-width: 100% !important;
    width: calc(100% - 36px) !important;
  }

  .hero h1 {
    max-width: 100% !important;
    font-size: clamp(2.6rem, 10vw, 4.4rem) !important;
  }

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

@media (max-width: 640px) {
  .hero.hero-combined-cover .hero-bg-img {
    object-position: 68% center !important;
  }

  .hero-content {
    padding: 88px 20px 34px !important;
    width: calc(100% - 24px) !important;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 12vw, 3.4rem) !important;
    line-height: 1.02 !important;
  }
}


/* === INTERNAL PAGES === */
.page-shell main { background: linear-gradient(180deg, #faf8f3 0%, #ffffff 100%); }
.page-hero {
  padding: 150px 0 70px;
  background: radial-gradient(circle at top right, rgba(200,169,81,.18), transparent 30%), linear-gradient(135deg, #002D47 0%, #07172c 100%);
  color: var(--white);
}
.page-hero .section-label { color: var(--gold); border-color: rgba(200,169,81,.35); }
.page-hero h1 { font-family:'Outfit', sans-serif; font-size: clamp(2rem, 5vw, 3.6rem); line-height:1.02; margin-bottom:16px; }
.page-hero p { max-width: 760px; color: rgba(255,255,255,.82); font-size:1.02rem; line-height:1.8; }
.page-section { padding: 70px 0; }
.page-grid { display:grid; grid-template-columns: 1.2fr .8fr; gap: 34px; align-items:start; }
.info-card, .legal-card {
  background:#fff; border:1px solid var(--gray-2); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm); padding:28px;
}
.info-card h3, .legal-card h3 { font-size:1.16rem; margin-bottom:12px; color: var(--navy); }
.info-card p, .legal-card p, .legal-card li { color: var(--text-2); line-height:1.8; }
.mini-cards { display:grid; grid-template-columns: repeat(3, 1fr); gap:18px; margin-top:24px; }
.mini-card { background:#fff; border:1px solid var(--gray-2); border-radius: var(--r-md); padding:22px; box-shadow:var(--shadow-sm); }
.mini-card h4 { margin-bottom:8px; color: var(--navy); font-size:1rem; }
.mini-card p { color: var(--text-2); line-height:1.7; font-size:.95rem; }
.contact-list { display:grid; gap:16px; }
.contact-row { display:flex; gap:14px; align-items:flex-start; padding:18px 0; border-bottom:1px solid var(--gray-2); }
.contact-row:last-child { border-bottom:none; }
.contact-ico { width:42px; height:42px; border-radius:50%; background:rgba(200,169,81,.12); color:var(--gold); display:grid; place-items:center; flex-shrink:0; }
.contact-row strong { display:block; color:var(--navy); margin-bottom:4px; }
.contact-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:22px; }
.legal-card ul { padding-left: 18px; margin: 0; }
.legal-card li+li { margin-top:8px; }
.legal-nav { display:flex; gap:10px; flex-wrap:wrap; margin-top:24px; }
.legal-nav a { padding: 10px 16px; border:1px solid var(--gray-2); border-radius:999px; background:#fff; color:var(--navy); }
.legal-nav a:hover { border-color:var(--gold); color:var(--gold); }

@media (max-width: 980px) {
  .page-grid { grid-template-columns: 1fr; }
  .mini-cards { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .hero-content {
    width: calc(100% - 32px) !important;
    padding: 96px 18px 120px !important;
  }
  .hero h1 { max-width: 100% !important; font-size: clamp(2.15rem, 10vw, 4rem) !important; }
  .hero-sub { max-width: 100% !important; }
  .footer-meta-links { width:100%; margin-top:18px; }
}
@media (max-width: 640px) {
  .hero.hero-combined-cover .hero-bg-img { object-position: 60% center !important; }
  .hero-content { padding: 86px 16px 96px !important; }
  .page-hero { padding: 124px 0 52px; }
  .contact-row { gap:12px; }
}





/* === HERO LAYOUT REFINEMENT / MOVE TEXT UP === */
.hero.hero-combined-cover {
  min-height: clamp(760px, 100svh, 980px) !important;
  justify-content: flex-end !important;
}

.hero-content {
  max-width: 980px !important;
  width: min(980px, calc(100% - 40px)) !important;
  padding: clamp(92px, 11vw, 145px) clamp(22px, 6vw, 82px) clamp(250px, 25vh, 300px) !important;
}

.hero h1 {
  font-family: 'Outfit', 'Playfair Display', sans-serif !important;
  font-size: clamp(2.45rem, 5.8vw, 5.15rem) !important;
  line-height: .98 !important;
  max-width: 620px !important;
}

.hero-sub {
  max-width: 580px !important;
  font-size: clamp(1rem, 1.8vw, 1.16rem) !important;
}

/* === AFANDI HERO BENEFIT BAR 1ZU1 === */
.hero .trust-bar {
  position: absolute !important;
  left: 50% !important;
  bottom: 52px !important;
  transform: translateX(-50%) !important;
  z-index: 4 !important;

  width: min(1560px, calc(100% - 120px)) !important;
  min-height: 122px !important;

  display: grid !important;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr !important;
  align-items: stretch !important;
  justify-content: stretch !important;

  padding: 0 !important;
  margin: 0 !important;
  gap: 0 !important;

  border: 1px solid rgba(255,255,255,.08) !important;
  border-radius: 18px !important;
  background: rgba(7, 15, 28, .72) !important;
  backdrop-filter: blur(17px) !important;
  -webkit-backdrop-filter: blur(17px) !important;
  box-shadow: 0 24px 78px rgba(0,0,0,.34) !important;
  overflow: hidden !important;
}

.hero .trust-item {
  min-width: 0 !important;
  display: grid !important;
  grid-template-columns: 76px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 18px !important;
  padding: 27px 34px !important;
  color: #fff !important;
  white-space: normal !important;
}

.hero .trust-item svg {
  width: 52px !important;
  height: 52px !important;
  color: var(--gold) !important;
  justify-self: center !important;
  align-self: center !important;
  stroke-width: 1.8 !important;
}

.hero .trust-item span {
  display: block !important;
  color: #fff !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: clamp(.98rem, 1vw, 1.08rem) !important;
  font-weight: 700 !important;
  line-height: 1.24 !important;
  letter-spacing: .01em !important;
}

.hero .trust-item small {
  display: block !important;
  margin-top: 7px !important;
  color: rgba(255,255,255,.74) !important;
  font-size: .86rem !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
  letter-spacing: .01em !important;
}

.hero .trust-sep {
  width: 1px !important;
  height: 66px !important;
  align-self: center !important;
  background: rgba(255,255,255,.16) !important;
  flex: 0 0 1px !important;
}

body > .trust-bar {
  display: none !important;
}

@media (max-width: 1200px) {
  .hero .trust-bar {
    width: min(1040px, calc(100% - 56px)) !important;
    grid-template-columns: 1fr auto 1fr !important;
    min-height: auto !important;
    bottom: 34px !important;
  }

  .hero .trust-item {
    padding: 22px 26px !important;
  }

  .hero .trust-sep:nth-of-type(4) {
    display: none !important;
  }
}

@media (max-width: 760px) {
  .hero.hero-combined-cover {
    min-height: auto !important;
  }

  .hero-content {
    width: calc(100% - 28px) !important;
    padding: 92px 18px 24px !important;
  }

  .hero h1 {
    max-width: 100% !important;
    font-size: clamp(2.1rem, 11vw, 3.4rem) !important;
  }

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

  .hero .trust-bar {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;

    width: calc(100% - 28px) !important;
    margin: 0 auto 24px !important;
    grid-template-columns: 1fr !important;
    border-radius: 16px !important;
  }

  .hero .trust-sep {
    display: none !important;
  }

  .hero .trust-item {
    grid-template-columns: 48px 1fr !important;
    gap: 14px !important;
    padding: 17px 18px !important;
    border-bottom: 1px solid rgba(255,255,255,.10) !important;
  }

  .hero .trust-item:last-child {
    border-bottom: 0 !important;
  }

  .hero .trust-item svg {
    width: 36px !important;
    height: 36px !important;
  }

  .hero .trust-item span {
    font-size: .98rem !important;
  }

  .hero .trust-item small {
    font-size: .80rem !important;
  }
}


/* === AFANDI PREMIUM SUBPAGES FINAL === */
.page-shell {
  background: #fbfaf7;
}

.premium-page {
  background:
    radial-gradient(circle at top right, rgba(200,169,81,.10), transparent 34%),
    linear-gradient(180deg, #fbfaf7 0%, #fff 42%, #fbfaf7 100%);
}

.premium-page-hero {
  position: relative;
  padding: 150px 0 74px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(6,14,27,.92), rgba(0,45,71,.86)),
    url('assets/img/hero-cover-audi-landcruiser.png') center center / cover no-repeat;
  color: #fff;
}

.premium-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 76% 20%, rgba(200,169,81,.18), transparent 32%);
  pointer-events: none;
}

.premium-page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 34px;
  align-items: center;
}

.premium-page-hero .section-label {
  color: var(--gold);
  border-color: rgba(200,169,81,.45);
  background: rgba(200,169,81,.08);
}

.premium-page-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.15rem, 5vw, 4.1rem);
  font-weight: 650;
  letter-spacing: -.035em;
  line-height: 1.02;
  max-width: 780px;
  margin: 20px 0 18px;
}

.premium-page-hero p {
  max-width: 760px;
  color: rgba(255,255,255,.82);
  line-height: 1.85;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
}

.premium-hero-panel {
  padding: 28px;
  border-radius: 22px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 70px rgba(0,0,0,.26);
}

.premium-hero-panel span,
.premium-hero-panel small {
  display: block;
  color: rgba(255,255,255,.68);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .72rem;
}

.premium-hero-panel strong {
  display: block;
  color: var(--gold);
  font-size: 2rem;
  line-height: 1.05;
  margin: 10px 0;
}

.premium-page-section {
  padding: 76px 0;
}

.premium-split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: 28px;
  align-items: start;
}

.premium-card,
.legal-premium-card {
  background: #fff;
  border: 1px solid rgba(0,45,71,.08);
  border-radius: 24px;
  box-shadow: 0 22px 70px rgba(0,45,71,.08);
}

.premium-card {
  padding: 30px;
}

.premium-card-large {
  padding: 34px;
}

.card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.premium-card h2,
.legal-premium-card h2 {
  font-family: 'Outfit', sans-serif;
  color: var(--navy);
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
  line-height: 1.16;
  letter-spacing: -.025em;
  margin-bottom: 14px;
}

.premium-card p,
.legal-premium-card p {
  color: var(--text-2);
  line-height: 1.82;
}

.premium-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.premium-mini {
  padding: 20px;
  border-radius: 18px;
  background: #fbfaf7;
  border: 1px solid rgba(0,45,71,.07);
}

.premium-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(200,169,81,.12);
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 700;
}

.premium-mini h3 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 8px;
}

.premium-mini p {
  font-size: .92rem;
  line-height: 1.72;
}

.premium-side-card {
  position: sticky;
  top: 100px;
}

.premium-info-list {
  display: grid;
  gap: 0;
  margin-top: 22px;
  border-top: 1px solid rgba(0,45,71,.08);
}

.premium-info-list div {
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,45,71,.08);
}

.premium-info-list strong {
  display: block;
  color: var(--navy);
  font-size: .95rem;
  margin-bottom: 5px;
}

.premium-info-list span {
  color: var(--text-2);
  line-height: 1.55;
}

.premium-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.premium-actions .btn-hero-primary,
.premium-actions .btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}

.premium-actions .btn-hero-ghost {
  color: var(--navy);
  border-color: rgba(0,45,71,.18);
  background: #fff;
}

.premium-actions-main {
  margin-top: 30px;
}

.premium-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.premium-contact-tile {
  display: grid;
  gap: 7px;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(0,45,71,.08);
  background: #fbfaf7;
  color: var(--text);
  transition: var(--trans);
}

.premium-contact-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,45,71,.10);
  border-color: rgba(200,169,81,.35);
}

.premium-contact-tile span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(200,169,81,.12);
}

.premium-contact-tile strong {
  color: var(--navy);
}

.premium-contact-tile small {
  color: var(--text-2);
  line-height: 1.5;
}

.platform-stack {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.platform-stack a {
  padding: 15px 18px;
  border-radius: 16px;
  background: #fbfaf7;
  border: 1px solid rgba(0,45,71,.08);
  color: var(--navy);
  font-weight: 700;
  transition: var(--trans);
}

.platform-stack a:hover {
  background: var(--navy);
  color: #fff;
}

.legal-premium-card {
  padding: clamp(28px, 5vw, 48px);
}

.legal-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,45,71,.08);
  margin-bottom: 26px;
}

.legal-badge {
  flex: 0 0 auto;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(200,169,81,.12);
  color: var(--gold);
  font-weight: 700;
  font-size: .85rem;
}

.legal-lead {
  font-size: 1.02rem;
  padding: 20px;
  border-radius: 18px;
  background: #fbfaf7;
  border: 1px solid rgba(0,45,71,.08);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.legal-grid section {
  padding: 22px;
  border: 1px solid rgba(0,45,71,.08);
  border-radius: 18px;
  background: #fff;
}

.legal-grid h3 {
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 1.02rem;
}

@media (max-width: 980px) {
  .premium-page-hero-inner,
  .premium-split {
    grid-template-columns: 1fr;
  }

  .premium-hero-panel,
  .premium-side-card {
    position: static;
  }

  .premium-mini-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .premium-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .premium-page-hero {
    padding: 124px 0 52px;
  }

  .premium-card,
  .premium-card-large,
  .legal-premium-card {
    padding: 22px;
    border-radius: 20px;
  }

  .premium-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .premium-actions a {
    width: 100%;
  }

  .legal-head {
    display: grid;
  }
}


/* === AFANDI GOLF PLACEHOLDER === */
.gallery-placeholder-wrap {
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(200,169,81,.18), transparent 32%),
    linear-gradient(135deg, #0a213d 0%, #122f52 55%, #1e1e1e 100%);
  min-height: 100%;
}

.gallery-placeholder {
  min-height: 420px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #fff;
}

.gallery-placeholder-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.88);
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.gallery-placeholder strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -.03em;
}

.gallery-placeholder small {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-size: .95rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gallery-placeholder p {
  margin-top: 14px;
  max-width: 420px;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
}

@media (max-width: 640px) {
  .gallery-placeholder {
    min-height: 280px;
    padding: 22px;
  }
}


/* === AFANDI FINAL ORDER + GOLF IMAGES + CONTACT MOBILE FIX === */
#golf .gallery-main-img {
  object-fit: cover !important;
  object-position: center center !important;
}

.premium-hero-panel .premium-panel-phone {
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  direction: ltr;
  unicode-bidi: isolate;
}

@media (max-width: 640px) {
  .premium-hero-panel {
    width: 100% !important;
    text-align: left !important;
  }

  .premium-hero-panel span,
  .premium-hero-panel strong,
  .premium-hero-panel small {
    display: block !important;
    width: 100% !important;
  }

  .premium-hero-panel .premium-panel-phone {
    margin-top: 8px !important;
    font-size: .96rem !important;
    line-height: 1.35 !important;
    letter-spacing: .02em !important;
  }

  html[dir="rtl"] .premium-hero-panel {
    text-align: right !important;
  }
}

/* ═══════════════════════════════════════════════
   DATENSCHUTZ PAGE — LEGAL DOCUMENT STYLES
═══════════════════════════════════════════════ */
.legal-doc {
  padding: clamp(32px,5vw,56px) clamp(24px,5vw,56px);
}
.legal-section {
  margin-bottom: 2.4rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid var(--gray-1);
}
.legal-section:last-of-type { border-bottom: none; }
.legal-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
}
.legal-section p {
  font-size: .93rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: .8rem;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-list {
  list-style: none;
  margin: 12px 0 12px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legal-list li {
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.65;
  padding-left: 22px;
  position: relative;
}
.legal-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}

.legal-address-box {
  background: var(--gray-1);
  border: 1px solid var(--gray-2);
  border-radius: var(--r-md);
  padding: 18px 20px;
  font-size: .88rem;
  line-height: 1.85;
  color: var(--text);
  margin: 14px 0;
}
.legal-address-box a { color: var(--navy); text-decoration: underline; }
.legal-address-box a:hover { color: var(--gold); }

.legal-inline-link {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}
.legal-inline-link:hover { color: var(--gold); }

/* Platform boxes for GoMore / Getaround */
.legal-platform-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 18px 0;
}
.lpb-item {
  background: var(--navy);
  border-radius: var(--r-md);
  padding: 20px;
  border: 1px solid rgba(200,169,81,.15);
}
.lpb-item strong {
  display: block;
  color: var(--gold-2);
  font-size: 1rem;
  margin-bottom: 8px;
}
.lpb-item p {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin-bottom: 12px !important;
}
.legal-ext-link {
  display: inline-flex;
  align-items: center;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold-2);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s;
}
.legal-ext-link:hover { color: var(--gold); }

/* Cookie table */
.legal-cookie-table {
  border: 1px solid var(--gray-2);
  border-radius: var(--r-md);
  overflow: hidden;
  margin: 16px 0;
  font-size: .82rem;
}
.lct-header {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr .8fr;
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 10px 16px;
  gap: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  font-size: .72rem;
  text-transform: uppercase;
}
.lct-row {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr .8fr;
  padding: 12px 16px;
  gap: 12px;
  border-top: 1px solid var(--gray-1);
  align-items: center;
  color: var(--text-2);
}
.lct-row:hover { background: var(--gray-1); }
.lct-row code { font-size: .8rem; background: var(--cream); padding: 2px 6px; border-radius: 4px; font-family: monospace; color: var(--navy); }
.lct-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.lct-essential { background: rgba(200,169,81,.15); color: #7A6120; border: 1px solid rgba(200,169,81,.3); }

/* ═══════════════════════════════════════════════
   GENERAL POLISH & OPTIMIZATIONS
═══════════════════════════════════════════════ */

/* Section alternating backgrounds — smoother rhythm */
.section-vehicle-alt { background: var(--gray-1); }

/* Vehicle card: GoMore + Getaround equal-weight refinement */
.specs-btns-audi {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.specs-btns-audi .btn-primary,
.specs-btns-audi .btn-outline {
  width: 100%;
  font-size: .9rem;
  padding: 13px 16px;
  justify-content: center;
}
.no-account-whatsapp {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px dashed var(--gray-2);
  flex-wrap: wrap;
}
.no-account-text {
  font-size: .78rem;
  color: var(--text-2);
  white-space: nowrap;
}
.btn-whatsapp-gold {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  background: rgba(37,211,102,.1);
  border: 1.5px solid rgba(37,211,102,.3);
  color: #1a7a3f;
  border-radius: var(--r-sm);
  font-size: .82rem;
  font-weight: 600;
  transition: all .2s;
}
.btn-whatsapp-gold:hover {
  background: var(--green-wa);
  color: white;
  border-color: var(--green-wa);
  transform: translateY(-1px);
}

/* Footer meta links polish */
.footer-meta-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-meta-links a {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  transition: color .2s;
  white-space: nowrap;
}
.footer-meta-links a:hover { color: var(--gold-2); }

/* WhatsApp nav CTA */
.wa-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.wa-icon { flex-shrink: 0; }

/* Smooth image loading */
img { loading: lazy; }

/* Section anchor offset for fixed header */
[id] { scroll-margin-top: 80px; }

/* Responsive additions for cookie + legal pages */
@media (max-width: 680px) {
  .legal-platform-box { grid-template-columns: 1fr; }
  .lct-header { grid-template-columns: 1fr 2fr; }
  .lct-header span:nth-child(3),
  .lct-header span:nth-child(4) { display: none; }
  .lct-row { grid-template-columns: 1fr 2fr; }
  .lct-row span:nth-child(3),
  .lct-row span:nth-child(4) { display: none; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .cookie-btn-accept { flex: 1; }
}
.section-compare, .section-fit, .section-process, .section-faq, .section-availability {
  background: #fbfaf7;
}

.compare-table-wrap {
  overflow-x: auto;
  border-radius: 22px;
  border: 1px solid rgba(0,45,71,.08);
  box-shadow: 0 20px 60px rgba(0,45,71,.06);
  background: #fff;
}

.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.compare-table th, .compare-table td {
  padding: 20px 22px;
  text-align: left;
  border-bottom: 1px solid rgba(0,45,71,.08);
}

.compare-table th {
  color: var(--navy);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  background: #f8f6ef;
}

.compare-table td {
  color: var(--text-2);
}

.compare-table td strong { color: var(--navy); }

.fit-grid, .steps-grid, .trust-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-detail-grid {
  grid-template-columns: repeat(4, 1fr);
}

.fit-card, .step-card, .trust-detail-grid > div {
  background: #fff;
  border: 1px solid rgba(0,45,71,.08);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 18px 54px rgba(0,45,71,.06);
}

.fit-card span, .step-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(200,169,81,.12);
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 18px;
}

.fit-card h3, .step-card h3, .trust-detail-grid strong {
  display: block;
  color: var(--navy);
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.fit-card p, .step-card p, .trust-detail-grid p {
  color: var(--text-2);
  line-height: 1.75;
}

.fit-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold);
  font-weight: 700;
}

.section-longterm, .section-final-cta {
  background: var(--navy);
  color: #fff;
}

.longterm-inner, .final-cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 46px;
  border-radius: 28px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 22px 80px rgba(0,0,0,.18);
}

.longterm-inner p, .final-cta-box p {
  max-width: 760px;
  color: rgba(255,255,255,.78);
  line-height: 1.8;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}

.faq-list details {
  background: #fff;
  border: 1px solid rgba(0,45,71,.08);
  border-radius: 18px;
  padding: 0;
  box-shadow: 0 12px 40px rgba(0,45,71,.05);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--navy);
  font-weight: 750;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list p {
  padding: 0 24px 22px;
  color: var(--text-2);
  line-height: 1.75;
}

.availability-box {
  padding: 28px 34px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(200,169,81,.30);
  box-shadow: 0 18px 60px rgba(0,45,71,.07);
}

.availability-box strong {
  display: block;
  color: var(--navy);
  font-size: 1.18rem;
  margin-bottom: 8px;
}

.availability-box p {
  color: var(--text-2);
  line-height: 1.75;
}

.platform-privacy-note {
  margin-top: 28px;
  padding: 24px;
  border-radius: 20px;
  background: #fbfaf7;
  border: 1px solid rgba(0,45,71,.08);
}

.platform-privacy-note h3 {
  color: var(--navy);
  margin-bottom: 10px;
}

.platform-privacy-note p {
  color: var(--text-2);
  line-height: 1.75;
}

.privacy-grid {
  grid-template-columns: repeat(2, 1fr);
}

.imprint-gisa-list {
  margin-top: 24px;
}

@media (max-width: 980px) {
  .fit-grid, .steps-grid, .trust-detail-grid, .privacy-grid {
    grid-template-columns: 1fr;
  }

  .longterm-inner, .final-cta-box {
    grid-template-columns: 1fr;
    padding: 30px;
  }
}

@media (max-width: 640px) {
  .compare-table {
    min-width: 680px;
  }

  .fit-card, .step-card, .trust-detail-grid > div,
  .availability-box {
    padding: 22px;
    border-radius: 20px;
  }

  .longterm-inner, .final-cta-box {
    padding: 24px;
    border-radius: 22px;
  }

  .longterm-inner .btn-hero-primary,
  .final-cta-box .btn-hero-primary {
    width: 100%;
  }
}

/* ─── PLATFORM STACK LINKS (Datenschutz) ──── */
.platform-stack {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.platform-stack a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: var(--navy);
  color: var(--gold-2);
  border: 1px solid rgba(200,169,81,.25);
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}
.platform-stack a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* ═══════════════════════════════════════════════
   COOKIE POPUP MODAL — Premium centered overlay
═══════════════════════════════════════════════ */
.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(6,14,27,0);
  pointer-events: none;
  transition: background .4s ease;
}
.cookie-overlay.visible {
  background: rgba(6,14,27,0.72);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  padding: clamp(28px,5vw,48px);
  max-width: 500px;
  width: 100%;
  box-shadow: 0 32px 100px rgba(0,0,0,.45);
  border: 1px solid rgba(200,169,81,.2);
  transform: translateY(32px) scale(.96);
  opacity: 0;
  transition: transform .45s cubic-bezier(.4,0,.2,1),
              opacity .45s cubic-bezier(.4,0,.2,1);
}
.cookie-overlay.visible .cookie-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.cookie-modal-icon {
  font-size: 2.6rem;
  margin-bottom: 16px;
  line-height: 1;
}
.cookie-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #002D47;
  margin-bottom: 12px;
}
.cookie-modal-desc {
  font-size: .88rem;
  color: #4B5563;
  line-height: 1.7;
  margin-bottom: 10px;
}
.cookie-modal-platforms {
  font-size: .82rem;
  color: #6B7280;
  line-height: 1.65;
  margin-bottom: 24px;
}
.cookie-modal-link {
  color: #C8A951;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-modal-link:hover { color: #002D47; }
.cookie-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-btn-accept {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
  background: #C8A951;
  color: #002D47;
  border: none;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.cookie-btn-accept:hover {
  background: #D9BC75;
  transform: translateY(-1px);
}
.cookie-btn-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 11px 24px;
  background: transparent;
  color: #6B7280;
  border: 1.5px solid #E0DDD8;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.cookie-btn-more:hover {
  border-color: #002D47;
  color: #002D47;
}
@media (max-width: 480px) {
  .cookie-modal { border-radius: 18px; padding: 24px 20px; }
  .cookie-modal-title { font-size: 1.2rem; }
}

/* ═══════════════════════════════════════════════════════════════
   ARABIC / RTL — Complete, clean, systematic
   Strategy: set direction globally, then fix specific exceptions.
   Uses Cairo font for all Arabic text.
═══════════════════════════════════════════════════════════════ */

/* ── 1. GLOBAL: font + direction ──────────────────────────── */
html[dir="rtl"] {
  direction: rtl;
}

html[dir="rtl"] body,
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3, html[dir="rtl"] h4,
html[dir="rtl"] p, html[dir="rtl"] span, html[dir="rtl"] a, html[dir="rtl"] li,
html[dir="rtl"] label, html[dir="rtl"] button,
html[dir="rtl"] input, html[dir="rtl"] select, html[dir="rtl"] textarea,
html[dir="rtl"] strong, html[dir="rtl"] small, html[dir="rtl"] em {
  font-family: 'Cairo', sans-serif;
  letter-spacing: 0;
}

/* ── 2. HEADER ────────────────────────────────────────────── */
html[dir="rtl"] .header-inner {
  flex-direction: row-reverse;
}
html[dir="rtl"] .logo-link {
  flex-direction: row-reverse;
}
html[dir="rtl"] .main-nav {
  margin-left: 0;
  margin-right: auto;
}
html[dir="rtl"] .main-nav a::after {
  transform-origin: right;
  left: auto;
  right: 0;
}
html[dir="rtl"] .nav-toggle {
  margin-left: 0;
  margin-right: auto;
}

/* ── 3. MOBILE MENU ───────────────────────────────────────── */
html[dir="rtl"] .mobile-menu a {
  text-align: right;
  padding-right: clamp(16px,5vw,60px);
  padding-left: 16px;
}
html[dir="rtl"] .mobile-lang {
  flex-direction: row-reverse;
}
html[dir="rtl"] .mobile-cta {
  text-align: center;
}

/* ── 4. HERO ──────────────────────────────────────────────── */
html[dir="rtl"] .hero-content {
  text-align: right;
}
html[dir="rtl"] .hero-tag {
  display: inline-block;
}
html[dir="rtl"] .hero-btns {
  justify-content: flex-end;
}
html[dir="rtl"] .hero-btns .btn-hero-primary,
html[dir="rtl"] .hero-btns .btn-hero-ghost,
html[dir="rtl"] .hero-btns .btn-hero-secondary {
  flex-direction: row-reverse;
}
html[dir="rtl"] .hero-stats {
  flex-direction: row-reverse;
}
html[dir="rtl"] .stat:last-child {
  padding-right: 0;
  padding-left: clamp(20px,3vw,40px);
}
html[dir="rtl"] .stat:first-child {
  padding-left: clamp(20px,3vw,40px);
  padding-right: clamp(20px,3vw,40px);
}

/* ── 5. TRUST BAR ─────────────────────────────────────────── */
html[dir="rtl"] .trust-bar {
  flex-direction: row-reverse;
}
html[dir="rtl"] .trust-item {
  flex-direction: row-reverse;
}
html[dir="rtl"] .trust-item span {
  text-align: right;
}

/* ── 6. VEHICLE / GALLERY / SPECS ─────────────────────────── */
html[dir="rtl"] .car-showcase {
  direction: rtl;
}
html[dir="rtl"] .gallery-strip {
  direction: rtl;
}
html[dir="rtl"] .specs-header {
  flex-direction: row-reverse;
}
html[dir="rtl"] .specs-price {
  text-align: left;
}
html[dir="rtl"] .spec-item {
  flex-direction: row-reverse;
  text-align: right;
}
html[dir="rtl"] .spec-data {
  text-align: right;
}
html[dir="rtl"] .platform-hint {
  flex-direction: row-reverse;
  text-align: right;
}
html[dir="rtl"] .platform-hint svg {
  flex-shrink: 0;
}
html[dir="rtl"] .specs-btns {
  flex-direction: row-reverse;
}
html[dir="rtl"] .specs-btns-audi {
  direction: rtl;
}
html[dir="rtl"] .no-account-whatsapp {
  flex-direction: row-reverse;
}

/* ── 7. FEATURES STRIP ────────────────────────────────────── */
html[dir="rtl"] .features-inner {
  direction: rtl;
}
html[dir="rtl"] .feature {
  flex-direction: row-reverse;
  text-align: right;
}

/* ── 8. DELIVERY SECTION ──────────────────────────────────── */
html[dir="rtl"] .delivery-layout {
  direction: rtl;
}
html[dir="rtl"] .delivery-text {
  text-align: right;
}
html[dir="rtl"] .delivery-features {
  text-align: right;
}
html[dir="rtl"] .df-item {
  flex-direction: row-reverse;
  text-align: right;
}
html[dir="rtl"] .df-item strong,
html[dir="rtl"] .df-item p {
  text-align: right;
}
html[dir="rtl"] .btn-delivery {
  flex-direction: row-reverse;
}
html[dir="rtl"] .at-map-card {
  text-align: right;
}
html[dir="rtl"] .at-map-header {
  flex-direction: row-reverse;
  text-align: right;
}
html[dir="rtl"] .at-cities {
  direction: rtl;
}
html[dir="rtl"] .at-note {
  flex-direction: row-reverse;
  text-align: right;
}
html[dir="rtl"] .at-cta {
  flex-direction: row-reverse;
}

/* ── 9. BOOKING FORM ──────────────────────────────────────── */
html[dir="rtl"] .book-layout {
  direction: rtl;
}
html[dir="rtl"] .book-info {
  text-align: right;
}
html[dir="rtl"] .book-perks {
  text-align: right;
}
html[dir="rtl"] .perk {
  flex-direction: row-reverse;
}
html[dir="rtl"] .wa-direct {
  flex-direction: row-reverse;
}
html[dir="rtl"] .book-form {
  text-align: right;
}
html[dir="rtl"] .form-row {
  direction: rtl;
}
html[dir="rtl"] .form-group {
  text-align: right;
}
html[dir="rtl"] input,
html[dir="rtl"] textarea {
  text-align: right;
  direction: rtl;
}
html[dir="rtl"] select {
  text-align: right;
  direction: rtl;
  /* Arrow on left side */
  background-position: left 14px center;
  padding-left: 38px;
  padding-right: 14px;
}
html[dir="rtl"] .delivery-toggle {
  text-align: right;
}
html[dir="rtl"] .toggle-label {
  flex-direction: row-reverse;
  text-align: right;
}
html[dir="rtl"] .toggle-label input:checked + .toggle-track .toggle-thumb {
  transform: translateX(-18px);
}
html[dir="rtl"] .delivery-fields {
  text-align: right;
}
html[dir="rtl"] .price-box {
  flex-direction: row-reverse;
}
html[dir="rtl"] .price-box-left {
  text-align: right;
}
html[dir="rtl"] .price-box-note {
  text-align: left;
}
html[dir="rtl"] .btn-submit {
  flex-direction: row-reverse;
}

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

/* ── 11. FIT / STEPS / TRUST-DETAIL ──────────────────────── */
html[dir="rtl"] .fit-grid,
html[dir="rtl"] .steps-grid,
html[dir="rtl"] .trust-detail-grid {
  direction: rtl;
}
html[dir="rtl"] .fit-card,
html[dir="rtl"] .step-card,
html[dir="rtl"] .trust-detail-grid > div {
  text-align: right;
}
html[dir="rtl"] .fit-card a {
  flex-direction: row-reverse;
}

/* ── 12. LONGTERM / FINAL CTA ─────────────────────────────── */
html[dir="rtl"] .longterm-inner,
html[dir="rtl"] .final-cta-box {
  direction: rtl;
  text-align: right;
}

/* ── 13. FAQ ──────────────────────────────────────────────── */
html[dir="rtl"] .faq-list {
  direction: rtl;
}
html[dir="rtl"] .faq-list summary {
  text-align: right;
}
html[dir="rtl"] .faq-list p {
  text-align: right;
}

/* ── 14. AVAILABILITY BOX ─────────────────────────────────── */
html[dir="rtl"] .availability-box {
  text-align: right;
}

/* ── 15. LOCATIONS ────────────────────────────────────────── */
html[dir="rtl"] .locs-grid {
  direction: rtl;
}
html[dir="rtl"] .loc-card {
  text-align: right;
}
html[dir="rtl"] .loc-card::after {
  transform-origin: right;
}
html[dir="rtl"] .loc-map-link {
  flex-direction: row-reverse;
}
html[dir="rtl"] .loc-map-link:hover {
  gap: 10px;
}

/* ── 16. CONTACT SECTION ──────────────────────────────────── */
html[dir="rtl"] .contact-layout {
  direction: rtl;
}
html[dir="rtl"] .contact-left {
  text-align: right;
}
html[dir="rtl"] .contact-right {
  direction: rtl;
}
html[dir="rtl"] .contact-channel {
  flex-direction: row-reverse;
}
html[dir="rtl"] .contact-channel:hover {
  transform: translateX(-6px);
}
html[dir="rtl"] .ch-text {
  text-align: right;
}
html[dir="rtl"] .ch-arrow {
  transform: rotate(180deg);
}

/* ── 17. FOOTER ───────────────────────────────────────────── */
html[dir="rtl"] .footer-inner {
  flex-direction: row-reverse;
}
html[dir="rtl"] .footer-brand {
  text-align: right;
}
html[dir="rtl"] .footer-logo-wrap {
  flex-direction: row-reverse;
}
html[dir="rtl"] .footer-nav {
  flex-direction: row-reverse;
}
html[dir="rtl"] .footer-platforms {
  flex-direction: row-reverse;
}
html[dir="rtl"] .footer-meta-links {
  flex-direction: row-reverse;
}
html[dir="rtl"] .footer-legal {
  text-align: right;
}

/* ── 18. SCROLL-TO-TOP: move to left side in RTL ─────────── */
html[dir="rtl"] .afandi-scroll-top {
  right: auto !important;
  left: 24px !important;
}
@media (max-width: 600px) {
  html[dir="rtl"] .afandi-scroll-top {
    left: 16px !important;
    right: auto !important;
  }
}

/* ── 19. PREMIUM PAGES (About, Contact, Impressum, AGB) ──── */
html[dir="rtl"] .premium-page-hero-inner {
  direction: rtl;
  text-align: right;
}
html[dir="rtl"] .premium-page-hero p {
  text-align: right;
}
html[dir="rtl"] .premium-split {
  direction: rtl;
}
html[dir="rtl"] .premium-card,
html[dir="rtl"] .legal-premium-card {
  text-align: right;
}
html[dir="rtl"] .premium-info-list {
  direction: rtl;
}
html[dir="rtl"] .premium-info-list div {
  flex-direction: row-reverse;
  text-align: right;
}
html[dir="rtl"] .premium-mini-grid {
  direction: rtl;
}
html[dir="rtl"] .premium-mini {
  text-align: right;
}
html[dir="rtl"] .premium-contact-grid {
  direction: rtl;
}
html[dir="rtl"] .premium-contact-tile {
  text-align: right;
}
html[dir="rtl"] .premium-actions {
  flex-direction: row-reverse;
}

/* ── 20. LEGAL PAGES (AGB, Impressum, Datenschutz) ────────── */
html[dir="rtl"] .legal-premium-card {
  direction: rtl;
}
html[dir="rtl"] .legal-head {
  flex-direction: row-reverse;
}
html[dir="rtl"] .legal-grid {
  direction: rtl;
}
html[dir="rtl"] .legal-grid section {
  text-align: right;
}
html[dir="rtl"] .legal-section {
  text-align: right;
}
html[dir="rtl"] .legal-section h3 {
  /* Gold left-border becomes right-border in RTL */
  padding-left: 0;
  padding-right: 14px;
  border-left: none;
  border-right: 3px solid var(--gold);
}
html[dir="rtl"] .legal-list li {
  padding-left: 0;
  padding-right: 22px;
}
html[dir="rtl"] .legal-list li::before {
  left: auto;
  right: 0;
}
html[dir="rtl"] .legal-address-box {
  text-align: right;
}
html[dir="rtl"] .legal-platform-box {
  direction: rtl;
}
html[dir="rtl"] .lpb-item {
  text-align: right;
}
html[dir="rtl"] .legal-cookie-table {
  direction: rtl;
}
html[dir="rtl"] .lct-header,
html[dir="rtl"] .lct-row {
  direction: rtl;
  text-align: right;
}
html[dir="rtl"] .platform-stack {
  direction: rtl;
}
html[dir="rtl"] .availability-box {
  direction: rtl;
}

/* ── 21. COOKIE MODAL ─────────────────────────────────────── */
html[dir="rtl"] .cookie-modal {
  text-align: right;
}
html[dir="rtl"] .cookie-modal-actions {
  direction: rtl;
}

/* ── 22. LANGUAGE SWITCHER ────────────────────────────────── */
html[dir="rtl"] .lang-switcher {
  flex-direction: row-reverse;
}

/* ── 23. SECTION LABEL / EYEBROW ─────────────────────────── */
html[dir="rtl"] .section-label,
html[dir="rtl"] .card-kicker {
  text-align: right;
}

/* ── 24. MOBILE RESPONSIVE RTL ───────────────────────────── */
@media (max-width: 768px) {
  html[dir="rtl"] .hero-btns {
    flex-direction: column;
    align-items: flex-end;
  }
  html[dir="rtl"] .hero-btns .btn-hero-primary,
  html[dir="rtl"] .hero-btns .btn-hero-ghost,
  html[dir="rtl"] .hero-btns .btn-hero-secondary {
    width: 100%;
    flex-direction: row-reverse;
    justify-content: center;
  }
  html[dir="rtl"] .footer-inner {
    align-items: flex-end;
  }
  html[dir="rtl"] .footer-nav {
    flex-direction: column;
    align-items: flex-end;
  }
  html[dir="rtl"] .specs-btns {
    flex-direction: column;
  }
  html[dir="rtl"] .premium-actions {
    flex-direction: column;
    align-items: flex-end;
  }
}

@media (max-width: 560px) {
  html[dir="rtl"] .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  html[dir="rtl"] .hero-stats .stat {
    text-align: right;
  }
}

/* === AFANDI Fleet Extension – compact premium cards + modal === */
.section-more-fleet {
  background:
    radial-gradient(circle at 12% 8%, rgba(200,169,81,.10), transparent 28%),
    linear-gradient(180deg, var(--cream) 0%, #fff 100%);
}

.section-more-fleet .section-desc {
  max-width: 1040px;
  margin-bottom: 46px;
}

.fleet-note-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: -22px 0 28px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--gray-2);
  border-radius: var(--r-md);
  box-shadow: var(--shadow);
}
.fleet-note-strip strong {
  display: block;
  color: var(--navy);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.fleet-note-strip span {
  display: block;
  color: var(--text-2);
  font-size: .88rem;
  line-height: 1.5;
}
.fleet-note-strip .btn-outline {
  flex: 0 0 auto;
  padding: 11px 20px;
}

.fleet-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.fleet-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-2);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  transition: var(--trans);
}
.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,169,81,.38);
}
.fleet-card-media {
  position: relative;
  aspect-ratio: 16 / 10.4;
  overflow: hidden;
  background: var(--gray-1);
}
.fleet-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.fleet-card:hover .fleet-card-media img { transform: scale(1.04); }
.fleet-card-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0,45,71,.92);
  color: var(--gold-2);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}
.fleet-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px;
}
.fleet-card-meta {
  margin-bottom: 7px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.fleet-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1.1;
  margin-bottom: 10px;
}
.fleet-card p {
  color: var(--text-2);
  font-size: .9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.fleet-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}
.fleet-card-actions .btn-primary,
.fleet-card-actions .btn-outline,
.fleet-card-actions button {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  font-size: .84rem;
}
.fleet-card-actions button {
  appearance: none;
}

.fleet-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 5000;
}
.fleet-modal.is-open { display: block; }
.fleet-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6,14,27,.74);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.fleet-modal-dialog {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  max-height: min(850px, calc(100svh - 34px));
  overflow: auto;
  margin: 17px auto;
  background: var(--white);
  border-radius: calc(var(--r-lg) + 4px);
  box-shadow: 0 32px 90px rgba(0,0,0,.38);
  border: 1px solid rgba(200,169,81,.25);
  outline: none;
}
.fleet-modal-close {
  position: sticky;
  top: 18px;
  float: right;
  z-index: 2;
  width: 44px;
  height: 44px;
  margin: 18px 18px -62px 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--r-sm);
  background: rgba(0,45,71,.92);
  color: var(--white);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  transition: var(--trans);
}
.fleet-modal-close:hover { background: var(--gold); color: var(--navy); }
.fleet-modal-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 34px;
  padding: 34px;
  clear: both;
}
.fleet-modal-main-wrap {
  overflow: hidden;
  border-radius: var(--r-lg);
  aspect-ratio: 16 / 10.3;
  background: var(--gray-1);
  border: 1px solid var(--gray-2);
  box-shadow: var(--shadow-lg);
}
#fleetModalMain {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fleet-modal-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.fleet-modal-thumb {
  overflow: hidden;
  border: 2.5px solid transparent;
  border-radius: var(--r-sm);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  background: var(--gray-1);
  opacity: .68;
  padding: 0;
  transition: var(--trans);
}
.fleet-modal-thumb:hover { opacity: .9; }
.fleet-modal-thumb.active { opacity: 1; border-color: var(--gold); }
.fleet-modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fleet-modal-info h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  margin-bottom: 12px;
}
.fleet-modal-desc {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 24px;
}
.fleet-modal-price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1.5px solid var(--gray-1);
}
.fleet-modal-price span {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  line-height: 1;
  color: var(--gold);
  font-weight: 700;
}
.fleet-modal-price small {
  color: var(--text-2);
  font-size: .9rem;
  padding-bottom: 4px;
}
.fleet-modal-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
}
.fleet-modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.fleet-modal-actions .btn-primary,
.fleet-modal-actions .btn-outline {
  min-height: 50px;
  padding: 12px 16px;
  font-size: .9rem;
}
body.fleet-modal-open { overflow: hidden; }

html[dir="rtl"] .fleet-modal-close {
  float: left;
  margin: 18px 0 -62px 18px;
}
html[dir="rtl"] .fleet-card-badge {
  left: 14px;
  right: auto;
}

@media (max-width: 1024px) {
  .fleet-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fleet-modal-grid { grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 768px) {
  .fleet-note-strip {
    align-items: stretch;
    flex-direction: column;
    margin-top: -12px;
  }
  .fleet-note-strip .btn-outline { width: 100%; }
  .fleet-card-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 84vw);
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .fleet-card { scroll-snap-align: start; }
  .fleet-modal-dialog {
    width: min(100% - 18px, 960px);
    margin: 9px auto;
    max-height: calc(100svh - 18px);
    border-radius: var(--r-lg);
  }
  .fleet-modal-grid { padding: 18px; }
  .fleet-modal-close {
    top: 10px;
    margin: 10px 10px -54px 0;
  }
  .fleet-modal-specs,
  .fleet-modal-actions { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .fleet-card-actions { grid-template-columns: 1fr; }
  .fleet-modal-thumbs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}


/* === AFANDI v14 – breitere Abschnittsbeschreibungen + Datum/Uhrzeit im Formular === */
.section-desc,
.vehicle-desc,
.delivery-desc,
.loc-desc,
.contact-sub,
.book-desc {
  max-width: min(1120px, 100%) !important;
}

.section-more-fleet .section-desc {
  max-width: min(1180px, 100%) !important;
}

.date-time-inputs {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(116px, .65fr);
  gap: 10px;
  align-items: center;
}

.date-time-inputs input[type="time"] {
  text-align: center;
  font-variant-numeric: tabular-nums;
  letter-spacing: .02em;
  padding-left: 12px;
  padding-right: 12px;
}

.date-time-group label::after {
  content: " · Datum & Uhrzeit";
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .08em;
}

html[lang="en"] .date-time-group label::after {
  content: " · Date & time";
}

html[lang="ar"] .date-time-group label::after,
html[dir="rtl"] .date-time-group label::after {
  content: " · التاريخ والوقت";
}

@media (max-width: 680px) {
  .date-time-inputs {
    grid-template-columns: 1fr;
  }

  .date-time-inputs input[type="time"] {
    text-align: left;
  }
}

/* ═══════════════════════════════════════════════
   AGB & MIETABLAUF — AFANDI premium legal page
═══════════════════════════════════════════════ */
.legal-page-v2 .premium-page-section {
  padding: clamp(54px, 7vw, 86px) 0;
}

.legal-hero-v2 {
  background:
    linear-gradient(90deg, rgba(6,14,27,.94), rgba(0,45,71,.86)),
    url('assets/img/hero-cover-audi-landcruiser.png') center center / cover no-repeat;
}

.legal-hero-summary small {
  max-width: 220px;
  line-height: 1.6;
  letter-spacing: .08em;
}

.legal-top-card {
  overflow: hidden;
}

.legal-highlight-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.legal-highlight-card {
  padding: 20px;
  border-radius: 18px;
  background: #fbfaf7;
  border: 1px solid rgba(0,45,71,.08);
}

.legal-highlight-card span,
.step-number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(200,169,81,.14);
  color: var(--gold);
  font-weight: 800;
  font-size: .82rem;
  margin-bottom: 14px;
}

.legal-highlight-card strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 8px;
}

.legal-highlight-card p {
  color: var(--text-2);
  font-size: .92rem;
  line-height: 1.65;
}

.legal-section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.legal-section-heading.narrow {
  max-width: 760px;
}

.legal-section-heading h2 {
  font-family: 'Outfit', sans-serif;
  color: var(--navy);
  font-size: clamp(1.65rem, 3.2vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: -.035em;
  margin: 0 0 14px;
}

.legal-section-heading p {
  color: var(--text-2);
  font-size: 1.02rem;
  line-height: 1.8;
}

.legal-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.legal-process-step {
  position: relative;
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(0,45,71,.08);
  box-shadow: 0 18px 55px rgba(0,45,71,.06);
  min-height: 260px;
}

.legal-process-step h3,
.legal-feature-list h3,
.legal-checklist-grid h3 {
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.3;
  margin-bottom: 10px;
}

.legal-process-step p,
.legal-feature-list p {
  color: var(--text-2);
  font-size: .94rem;
  line-height: 1.72;
}

.legal-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: start;
}

.legal-care-card {
  padding: clamp(26px, 4vw, 42px);
}

.legal-lead.compact {
  margin: 18px 0 24px;
}

.legal-feature-list {
  display: grid;
  gap: 16px;
}

.legal-feature-list > div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
  background: #fbfaf7;
  border: 1px solid rgba(0,45,71,.08);
}

.legal-feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: rgba(200,169,81,.14);
  color: var(--gold);
  font-weight: 800;
  font-size: .82rem;
}

.legal-side-note {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 96px;
}

.side-note-card {
  padding: 26px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(0,45,71,.08);
  box-shadow: 0 18px 55px rgba(0,45,71,.06);
}

.side-note-card.dark {
  background: linear-gradient(145deg, var(--navy), #071a33);
  color: #fff;
  border-color: rgba(200,169,81,.2);
}

.side-note-card span {
  display: block;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 10px;
}

.side-note-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.3rem;
  line-height: 1.25;
  margin-bottom: 10px;
}

.side-note-card.dark strong {
  color: #fff;
  font-size: 1.65rem;
}

.side-note-card p {
  color: var(--text-2);
  line-height: 1.72;
  font-size: .94rem;
}

.side-note-card.dark p {
  color: rgba(255,255,255,.76);
}

.legal-grid.extended {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.legal-grid.extended section {
  background: #fff;
  box-shadow: 0 14px 45px rgba(0,45,71,.045);
}

.legal-grid.extended p {
  font-size: .94rem;
}

.legal-accordion-card {
  padding: clamp(28px, 5vw, 48px);
}

.legal-head.compact-head {
  margin-bottom: 20px;
}

.legal-info-band {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(200,169,81,.11);
  border: 1px solid rgba(200,169,81,.22);
  color: var(--text-2);
  line-height: 1.72;
  margin-bottom: 24px;
}

.legal-info-band strong {
  color: var(--navy);
  flex: 0 0 auto;
}

.legal-checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.legal-checklist {
  list-style: none;
  display: grid;
  gap: 11px;
  margin-top: 14px;
}

.legal-checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--text-2);
  line-height: 1.65;
}

.legal-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .48em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(200,169,81,.12);
}

.legal-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-pill-list span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  border: 1px solid rgba(0,45,71,.08);
  box-shadow: 0 12px 38px rgba(0,45,71,.045);
  font-weight: 600;
  font-size: .92rem;
}

.legal-final-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: clamp(30px, 5vw, 48px);
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(251,250,247,.98));
}

.legal-final-actions {
  display: grid;
  gap: 12px;
  min-width: 230px;
}

.legal-final-actions a {
  width: 100%;
}

@media (max-width: 1080px) {
  .legal-highlight-row,
  .legal-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .legal-grid.extended {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .legal-two-column {
    grid-template-columns: 1fr;
  }
  .legal-side-note {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .legal-highlight-row,
  .legal-process-grid,
  .legal-grid.extended,
  .legal-checklist-grid,
  .legal-side-note,
  .legal-final-card {
    grid-template-columns: 1fr;
  }
  .legal-process-step {
    min-height: auto;
  }
  .legal-feature-list > div {
    grid-template-columns: 1fr;
  }
  .legal-info-band {
    display: grid;
  }
  .legal-final-actions {
    min-width: 0;
  }
}

/* ============================================================
   AFANDI Cars Rental – AGB v16 multilingual + StVO / emergency
   ============================================================ */
.legal-multilang-page .legal-lang-panel {
  display: none;
}
html[lang="de"] .legal-multilang-page .legal-lang-panel[data-lang-panel="de"],
html[lang="en"] .legal-multilang-page .legal-lang-panel[data-lang-panel="en"],
html[lang="ar"] .legal-multilang-page .legal-lang-panel[data-lang-panel="ar"] {
  display: block;
}
.legal-language-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: -12px;
}
.legal-language-card h2 {
  margin: 8px 0 8px;
}
.legal-language-card p {
  margin: 0;
  color: rgba(15, 30, 45, .72);
  max-width: 780px;
}
.legal-language-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.legal-language-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(0, 45, 71, .08);
  border: 1px solid rgba(0, 45, 71, .12);
  color: #002D47;
  font-weight: 700;
  font-size: .88rem;
}
.legal-stvo-card,
.legal-emergency-card {
  overflow: hidden;
}
.legal-stvo-grid,
.emergency-number-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.legal-stvo-grid section,
.emergency-number-grid > div {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(0,45,71,.11);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 16px 38px rgba(0, 45, 71, .06);
}
.legal-stvo-grid h3,
.emergency-number-grid strong {
  display: block;
  margin: 0 0 10px;
  color: #10243d;
}
.emergency-number-grid span {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #002D47, #003A5C);
  color: #fff;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow: 0 12px 28px rgba(0,45,71,.22);
}
.emergency-number-grid p {
  margin: 0;
  color: rgba(15, 30, 45, .72);
  line-height: 1.65;
}
.legal-stvo-grid .legal-checklist,
.legal-emergency-card .legal-checklist {
  margin-top: 10px;
}
html[dir="rtl"] .legal-multilang-page .legal-head,
html[dir="rtl"] .legal-multilang-page .legal-language-card,
html[dir="rtl"] .legal-multilang-page .legal-final-card {
  direction: rtl;
}
html[dir="rtl"] .legal-multilang-page .legal-language-pills {
  justify-content: flex-start;
}
html[dir="rtl"] .legal-multilang-page .step-number,
html[dir="rtl"] .legal-multilang-page .emergency-number-grid span {
  font-family: 'Outfit', system-ui, sans-serif;
}
@media (max-width: 900px) {
  .legal-language-card {
    align-items: flex-start;
    flex-direction: column;
  }
  .legal-language-pills {
    justify-content: flex-start;
  }
  .legal-stvo-grid,
  .emergency-number-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   AFANDI v18 Korrektur: Design erhalten, Primärfarbe #002D47,
   Buttons 6px, Karten/Container 12px, saubere Hover-Zustände,
   Logo sichtbar, AGB mehrsprachig/RTL responsive.
   ============================================================ */
:root {
  --navy: #002D47;
  --navy-2: #003A5C;
  --navy-3: #00466B;
  --r-lg: 12px;
  --r-md: 12px;
  --r-sm: 12px;
  --shadow: 0 4px 32px rgba(0,45,71,.10);
  --shadow-lg: 0 16px 64px rgba(0,45,71,.18);
}

/* Header/Logo stabilisieren – AFANDI bleibt oben sichtbar */
.logo-link,
.header .logo-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  opacity: 1 !important;
  visibility: visible !important;
  min-width: 0 !important;
}
.logo-icon,
.header .logo-icon {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  object-fit: contain !important;
}
.logo-text,
.header .logo-text {
  display: flex !important;
  flex-direction: column !important;
  color: #fff !important;
  opacity: 1 !important;
  visibility: visible !important;
  white-space: nowrap !important;
  text-shadow: 0 1px 1px rgba(0,0,0,.18);
}
.logo-sub,
.header .logo-sub { color: rgba(255,255,255,.68) !important; }

/* Normale Rundungen: nicht mehr 6px überall – Karten/Boxen sauber 12px */
.premium-card,
.legal-premium-card,
.info-card,
.legal-card,
.mini-card,
.specs-card,
.car-card,
.feature-card,
.loc-card,
.contact-card,
.contact-method,
.delivery-form,
.book-form,
.at-map-card,
.compare-table-wrap,
.fit-card,
.step-card,
.trust-detail-grid > div,
.faq-list details,
.availability-box,
.platform-privacy-note,
.legal-highlight-card,
.legal-process-step,
.legal-feature-list > div,
.side-note-card,
.legal-grid section,
.legal-info-band,
.legal-stvo-grid section,
.emergency-number-grid > div,
.legal-checklist-grid > div,
.legal-language-card,
.legal-final-card,
.premium-hero-panel,
.premium-contact-tile,
.premium-info-card {
  border-radius: 12px !important;
}

/* Buttons bleiben bewusst 6px */
button,
.btn-primary,
.btn-outline,
.btn-submit,
.btn-hero-primary,
.btn-hero-ghost,
.btn-hero-whatsapp,
.btn-delivery,
.btn-whatsapp-gold,
.cta-pill,
.wa-nav-cta,
.mobile-cta,
.mobile-menu .wa-nav-cta,
.premium-actions .btn-hero-primary,
.premium-actions .btn-hero-ghost,
.specs-btns .btn-primary,
.specs-btns .btn-outline,
.specs-btns-audi .btn-primary,
.specs-btns-audi .btn-outline,
.specs-btns-audi .btn-whatsapp-gold,
.cookie-btn-accept,
.cookie-btn-more,
.legal-nav a,
.legal-language-pills span,
.legal-action-btn,
input[type="submit"] {
  border-radius: 6px !important;
}

/* Top/Scroll-Button: Gold, gut sichtbar, 12px Radius */
.top-button,
.afandi-scroll-top {
  background: var(--gold) !important;
  color: var(--navy) !important;
  border-radius: 12px !important;
  border-color: rgba(255,255,255,.32) !important;
}
.top-button:hover,
.top-button:focus-visible,
.afandi-scroll-top:hover,
.afandi-scroll-top:focus-visible {
  background: var(--gold-2) !important;
  color: var(--navy) !important;
  transform: translateY(-2px) !important;
  outline: none !important;
}

/* Header-Button: Gold + lesbarer Hover */
.header .wa-nav-cta,
.header .cta-pill,
.mobile-menu .wa-nav-cta,
.mobile-menu .mobile-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  border: 1px solid rgba(200,169,81,.42) !important;
  border-radius: 6px !important;
}
.header .wa-nav-cta:hover,
.header .cta-pill:hover,
.mobile-menu .wa-nav-cta:hover,
.mobile-menu .mobile-cta:hover {
  background: var(--gold-2) !important;
  color: var(--navy) !important;
  border-color: rgba(217,188,117,.65) !important;
}

/* Button-Hover sauber: Schrift bleibt immer sichtbar */
.btn-primary:hover,
.btn-submit:hover,
.btn-hero-primary:hover,
.btn-whatsapp-gold:hover,
.cookie-btn-accept:hover,
.legal-action-btn:hover {
  background: var(--gold-2) !important;
  color: var(--navy) !important;
  border-color: var(--gold-2) !important;
}
.btn-outline:hover,
.btn-delivery:hover,
.cookie-btn-more:hover,
.legal-nav a:hover {
  background: var(--navy) !important;
  color: #fff !important;
  border-color: var(--navy) !important;
}
.btn-hero-ghost:hover {
  color: #fff !important;
  border-color: rgba(255,255,255,.55) !important;
  background: rgba(255,255,255,.18) !important;
}
.btn-hero-whatsapp:hover {
  background: #2be370 !important;
  color: var(--navy) !important;
  border-color: rgba(37,211,102,.9) !important;
}
.wa-nav-cta svg,
.btn-hero-whatsapp svg,
.btn-whatsapp-gold svg { color: currentColor !important; }

/* Primärfarbe konsistent */
.header-inner,
.mobile-menu,
.section-book,
.footer,
.page-hero,
.premium-hero-panel,
.loc-card-dark,
.at-map-card,
.legal-hero-v2,
.legal-final-card.dark,
.side-note-card.dark {
  --navy: #002D47;
}

/* AGB: kompakter, professioneller und robust responsive */
.legal-page-v2 .premium-page-section {
  padding: clamp(44px, 6vw, 76px) 0;
}
.legal-process-grid,
.legal-grid.extended,
.legal-stvo-grid,
.emergency-number-grid,
.legal-checklist-grid {
  align-items: stretch;
}
.legal-process-step,
.legal-grid section,
.legal-stvo-grid section,
.emergency-number-grid > div {
  min-width: 0;
}
.legal-process-step h3,
.legal-grid h3,
.legal-stvo-grid h3,
.emergency-number-grid strong {
  color: var(--navy) !important;
}
.emergency-number-grid span {
  background: linear-gradient(135deg, var(--navy), var(--navy-2)) !important;
  border-radius: 12px !important;
}

/* Arabisch: echtes RTL, rechte Ausrichtung, saubere Listen */
html[lang="ar"],
html[dir="rtl"] body {
  direction: rtl;
}
html[lang="ar"] body,
html[lang="ar"] .legal-multilang-page {
  font-family: 'Cairo', 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}
html[lang="ar"] .legal-multilang-page,
html[lang="ar"] .legal-multilang-page p,
html[lang="ar"] .legal-multilang-page h1,
html[lang="ar"] .legal-multilang-page h2,
html[lang="ar"] .legal-multilang-page h3,
html[lang="ar"] .legal-multilang-page li,
html[lang="ar"] .legal-multilang-page .section-label,
html[lang="ar"] .legal-multilang-page .card-kicker {
  text-align: right !important;
}
html[lang="ar"] .legal-multilang-page .legal-head,
html[lang="ar"] .legal-multilang-page .legal-language-card,
html[lang="ar"] .legal-multilang-page .legal-final-card,
html[lang="ar"] .legal-multilang-page .legal-info-band {
  direction: rtl !important;
}
html[lang="ar"] .legal-multilang-page .legal-language-pills,
html[lang="ar"] .legal-multilang-page .legal-pill-list {
  justify-content: flex-start !important;
}
html[lang="ar"] .legal-checklist li {
  padding-left: 0 !important;
  padding-right: 28px !important;
}
html[lang="ar"] .legal-checklist li::before {
  left: auto !important;
  right: 0 !important;
}
html[lang="ar"] .legal-head .legal-badge,
html[lang="ar"] .compact-head .legal-badge {
  margin-left: 0 !important;
  margin-right: auto !important;
}

/* Mobile: alle Seiten ruhig stapeln, keine horizontalen Überläufe */
html,
body { max-width: 100%; overflow-x: hidden; }
img, video, iframe { max-width: 100%; }
@media (max-width: 1100px) {
  .main-nav { gap: 16px !important; }
  .header-inner { gap: 14px !important; }
}
@media (max-width: 920px) {
  .header-inner { height: 66px !important; padding: 0 16px !important; }
  .logo-link { flex: 1 1 auto !important; }
  .logo-text { font-size: .98rem !important; }
  .logo-sub { font-size: .62rem !important; }
  .header-inner > .lang-switcher,
  .header-inner > .cta-pill,
  .main-nav { display: none !important; }
  .nav-toggle { display: inline-flex !important; }
  .mobile-menu { background: rgba(0,45,71,.98) !important; }
}
@media (max-width: 768px) {
  .container { padding-left: 18px !important; padding-right: 18px !important; }
  .section,
  .premium-page-section,
  .legal-page-v2 .premium-page-section { padding: 48px 0 !important; }
  .car-showcase,
  .book-layout,
  .delivery-layout,
  .contact-layout,
  .footer-inner,
  .premium-page-hero-inner,
  .premium-grid,
  .premium-split,
  .legal-two-column,
  .legal-highlight-row,
  .legal-process-grid,
  .legal-grid.extended,
  .legal-stvo-grid,
  .emergency-number-grid,
  .legal-checklist-grid {
    grid-template-columns: 1fr !important;
  }
  .hero-btns,
  .specs-btns,
  .specs-btns-audi,
  .premium-actions {
    flex-direction: column !important;
    width: 100% !important;
  }
  .hero-btns a,
  .specs-btns a,
  .specs-btns-audi a,
  .premium-actions a,
  .btn-primary,
  .btn-outline,
  .btn-submit,
  .btn-hero-primary,
  .btn-hero-ghost,
  .btn-hero-whatsapp {
    width: 100%;
  }
  .legal-language-card,
  .legal-head,
  .compact-head,
  .legal-info-band,
  .legal-final-card {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .legal-language-pills { justify-content: flex-start !important; }
  .compare-table-wrap { overflow-x: auto !important; -webkit-overflow-scrolling: touch; }
  .compare-table { min-width: 620px; }
}
@media (max-width: 480px) {
  .logo-icon { width: 34px !important; height: 34px !important; }
  .logo-text { font-size: .86rem !important; }
  .logo-sub { font-size: .56rem !important; }
  .hero h1,
  .hero-content h1,
  .premium-page-hero h1 { font-size: clamp(2.05rem, 12vw, 3.25rem) !important; }
  .section-desc,
  .legal-section-heading p,
  .legal-lead { font-size: .98rem !important; }
  .legal-process-step,
  .legal-grid section,
  .legal-stvo-grid section,
  .emergency-number-grid > div { padding: 18px !important; }
}


/* ============================================================
   AFANDI v19 – Mobile Titel kompakter + AGB Blockabstand
   ============================================================ */
@media (max-width: 768px) {
  .premium-page-hero,
  .page-hero {
    padding: 104px 0 42px !important;
    min-height: auto !important;
  }

  .premium-page-hero h1,
  .page-hero h1,
  .hero h1,
  .hero-content h1 {
    font-size: clamp(2rem, 8.4vw, 2.85rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.03em !important;
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    hyphens: auto !important;
    text-wrap: balance;
  }

  .premium-page-hero p,
  .page-hero p,
  .hero p,
  .hero-content p {
    font-size: 1rem !important;
    line-height: 1.65 !important;
  }

  .section-title,
  .section-head h2,
  .premium-section-head h2,
  .legal-section-heading h2,
  .legal-language-card h2,
  .legal-head h2,
  .legal-final-card h2,
  .legal-stvo-card h2,
  .legal-emergency-card h2 {
    font-size: clamp(1.45rem, 5.6vw, 2rem) !important;
    line-height: 1.16 !important;
    letter-spacing: -0.02em !important;
    overflow-wrap: anywhere !important;
    text-wrap: balance;
  }

  .legal-top-card .legal-lead,
  .legal-top-card > p {
    margin-bottom: 0 !important;
  }

  .legal-top-card .legal-info-band {
    margin-top: 24px !important;
    margin-bottom: 0 !important;
    border-radius: 12px !important;
  }
}

@media (max-width: 480px) {
  .premium-page-hero,
  .page-hero {
    padding: 94px 0 36px !important;
  }

  .premium-page-hero h1,
  .page-hero h1,
  .hero h1,
  .hero-content h1 {
    font-size: clamp(1.82rem, 8vw, 2.25rem) !important;
    line-height: 1.1 !important;
  }

  .section-title,
  .section-head h2,
  .premium-section-head h2,
  .legal-section-heading h2,
  .legal-language-card h2,
  .legal-head h2,
  .legal-final-card h2,
  .legal-stvo-card h2,
  .legal-emergency-card h2 {
    font-size: clamp(1.32rem, 5.4vw, 1.72rem) !important;
    line-height: 1.18 !important;
  }

  .legal-page-v2 .premium-page-section,
  .premium-page-section {
    padding: 38px 0 !important;
  }

  .legal-premium-card,
  .premium-card,
  .premium-card-large {
    padding: 20px !important;
  }

  .legal-top-card .legal-info-band {
    margin-top: 26px !important;
    padding: 18px !important;
  }
}

/* ============================================================
   AFANDI v20 – Desktop-Titel ruhiger + Standortkarten sauberer
   Hinweis: Design bleibt erhalten, nur Größen/Abstände/Kartenlogik.
   ============================================================ */
@media (min-width: 769px) {
  h2,
  .section-head h2,
  .premium-section-head h2,
  .legal-section-heading h2,
  .legal-language-card h2,
  .legal-head h2,
  .legal-final-card h2,
  .legal-stvo-card h2,
  .legal-emergency-card h2 {
    font-size: clamp(1.85rem, 3.15vw, 2.85rem) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.018em !important;
  }

  .hero h1,
  .hero-content h1 {
    font-size: clamp(2.55rem, 5.35vw, 4.65rem) !important;
    line-height: 1.02 !important;
  }

  .page-hero h1,
  .premium-page-hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem) !important;
    line-height: 1.04 !important;
  }

  .section-desc,
  .loc-desc,
  .premium-page-hero p,
  .page-hero p {
    font-size: 1rem !important;
    line-height: 1.72 !important;
  }
}

/* Standortblock: kompaktere, gleich hohe und besser lesbare Karten */
.section-locs .section-label {
  margin-bottom: 10px !important;
}

.section-locs h2 {
  max-width: 820px !important;
  margin-bottom: 14px !important;
}

.section-locs .section-desc,
.section-locs .loc-desc {
  max-width: 780px !important;
  margin-bottom: 36px !important;
}

.locs-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 22px !important;
  align-items: stretch !important;
}

.loc-card {
  display: flex !important;
  flex-direction: column !important;
  min-height: 260px !important;
  padding: 26px 26px 24px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(0,45,71,.10) !important;
  box-shadow: 0 10px 28px rgba(0,45,71,.08) !important;
}

.loc-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 16px 34px rgba(0,45,71,.13) !important;
}

.loc-number {
  font-size: 2rem !important;
  line-height: 1 !important;
  margin-bottom: 18px !important;
  color: rgba(200,169,81,.18) !important;
}

.loc-icon {
  font-size: 1.35rem !important;
  line-height: 1 !important;
  margin-bottom: 18px !important;
}

.loc-card h3 {
  font-size: 1.08rem !important;
  line-height: 1.26 !important;
  margin-bottom: 12px !important;
  letter-spacing: -.01em !important;
}

.loc-card address {
  flex: 1 1 auto !important;
  font-size: .92rem !important;
  line-height: 1.65 !important;
  margin-bottom: 22px !important;
  color: rgba(75,85,99,.95) !important;
}

.loc-map-link {
  margin-top: auto !important;
  font-size: .78rem !important;
  line-height: 1.2 !important;
  color: var(--gold) !important;
}

.loc-card-dark {
  background: var(--navy) !important;
  border-color: transparent !important;
}

.loc-card-dark h3 {
  color: var(--white) !important;
}

.loc-card-dark address {
  color: rgba(255,255,255,.74) !important;
}

.loc-card-dark .loc-map-link {
  color: var(--gold-2) !important;
}

.loc-card-dark .loc-number {
  color: rgba(200,169,81,.20) !important;
}

@media (max-width: 1100px) {
  .locs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .loc-card {
    min-height: 230px !important;
  }
}

@media (max-width: 640px) {
  .section-locs .section-desc,
  .section-locs .loc-desc {
    margin-bottom: 22px !important;
  }
  .locs-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .loc-card {
    min-height: auto !important;
    padding: 20px !important;
  }
  .loc-number {
    font-size: 1.55rem !important;
    margin-bottom: 12px !important;
  }
  .loc-icon {
    font-size: 1.15rem !important;
    margin-bottom: 14px !important;
  }
  .loc-card h3 {
    font-size: 1rem !important;
  }
  .loc-card address {
    font-size: .9rem !important;
    margin-bottom: 16px !important;
  }
}

/* ============================================================
   AFANDI v21 – FAQ erweitert: Plus/Minus + sanftes Aufklappen
   Nur FAQ-Feinschliff, Grunddesign bleibt unverändert.
   ============================================================ */
.section-faq .faq-list {
  max-width: 1040px;
  gap: 14px;
}

.section-faq .faq-list details {
  border-radius: 12px !important;
  border-color: rgba(0, 45, 71, .10);
  transition: height .32s cubic-bezier(.2, .8, .2, 1),
              box-shadow .24s ease,
              border-color .24s ease,
              background-color .24s ease;
  will-change: height;
}

.section-faq .faq-list details[open] {
  border-color: rgba(200, 169, 81, .34);
  box-shadow: 0 18px 54px rgba(0, 45, 71, .075);
}

.section-faq .faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 20px 70px 20px 24px;
  color: #002D47;
  font-weight: 750;
  line-height: 1.35;
  outline: none;
  transition: background-color .2s ease, color .2s ease;
}

.section-faq .faq-list summary:hover,
.section-faq .faq-list summary:focus-visible {
  background: rgba(200, 169, 81, .08);
  color: #002D47;
}

.section-faq .faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 6px;
  background: rgba(200, 169, 81, .16);
  color: #002D47;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  transition: background-color .2s ease, color .2s ease, transform .24s ease;
}

.section-faq .faq-list details[open] summary::after {
  content: "−";
  background: #C8A951;
  color: #002D47;
  transform: translateY(-50%) rotate(180deg);
}

.section-faq .faq-list details[open] summary {
  background: linear-gradient(180deg, rgba(200,169,81,.10), rgba(200,169,81,.045));
}

.section-faq .faq-content {
  padding: 0 24px 22px;
  color: var(--text-2);
  line-height: 1.75;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .24s ease, transform .24s ease;
}

.section-faq .faq-list details:not([open]) .faq-content {
  opacity: 0;
  transform: translateY(-4px);
}

.section-faq .faq-content p,
.section-faq .faq-list .faq-content p {
  margin: 0;
  padding: 0;
  color: var(--text-2);
  line-height: 1.75;
}

html[dir="rtl"] .section-faq .faq-list summary {
  padding: 20px 24px 20px 70px;
  text-align: right;
}

html[dir="rtl"] .section-faq .faq-list summary::after {
  right: auto;
  left: 22px;
}

html[dir="rtl"] .section-faq .faq-content,
html[dir="rtl"] .section-faq .faq-content p {
  text-align: right;
}

@media (max-width: 720px) {
  .section-faq .faq-list {
    gap: 10px;
  }

  .section-faq .faq-list summary {
    min-height: 58px;
    padding: 16px 58px 16px 18px;
    font-size: .96rem;
  }

  .section-faq .faq-list summary::after {
    right: 16px;
    width: 28px;
    height: 28px;
    font-size: 1.12rem;
  }

  .section-faq .faq-content {
    padding: 0 18px 18px;
  }

  html[dir="rtl"] .section-faq .faq-list summary {
    padding: 16px 18px 16px 58px;
  }

  html[dir="rtl"] .section-faq .faq-list summary::after {
    left: 16px;
  }
}


/* ============================================================
   AFANDI v22 – Startseite kompakt + Detailseiten
   ============================================================ */
.section-home-hub {
  background: linear-gradient(180deg, #fff 0%, #f7f5f1 100%);
  padding-top: clamp(54px, 7vw, 82px);
  padding-bottom: clamp(58px, 7vw, 88px);
}
.section-home-hub h2 {
  max-width: 760px;
}
.section-home-hub .section-desc {
  max-width: 660px;
  margin-bottom: 34px;
}
.home-hub-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
}
.home-hub-card {
  min-height: 245px;
  background: #fff;
  border: 1px solid rgba(0,45,71,.10);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 12px 34px rgba(0,45,71,.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.home-hub-card:hover,
.home-hub-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(200,169,81,.58);
  box-shadow: 0 18px 48px rgba(0,45,71,.13);
  outline: none;
}
.home-hub-card .hub-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(200,169,81,.14);
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 700;
}
.home-hub-card strong {
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.25;
}
.home-hub-card small {
  color: var(--text-2);
  line-height: 1.7;
  font-size: .94rem;
}
.home-hub-card b {
  margin-top: auto;
  color: var(--gold);
  font-size: .92rem;
  letter-spacing: .02em;
}
.section-home-short-cta {
  background: var(--navy);
  padding: clamp(42px, 6vw, 70px) 0;
}
.compact-content-hero {
  padding-top: clamp(118px, 13vw, 150px) !important;
  padding-bottom: clamp(52px, 8vw, 74px) !important;
}
.compact-content-hero h1 {
  font-size: clamp(2.05rem, 4.4vw, 3.35rem) !important;
  line-height: 1.05 !important;
  max-width: 860px;
}
.compact-content-hero p {
  max-width: 820px;
}
@media (max-width: 1100px) {
  .home-hub-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px) {
  .home-hub-grid { grid-template-columns: 1fr; gap: 14px; }
  .home-hub-card { min-height: 0; padding: 20px; }
  .section-home-hub .section-desc { margin-bottom: 24px; }
  .compact-content-hero h1 { font-size: clamp(1.86rem, 9.6vw, 2.55rem) !important; }
  .compact-content-hero { padding-top: 112px !important; padding-bottom: 42px !important; }
}

/* ============================================================
   v23 – compact pages, complete navigation, refined responsive
   ============================================================ */
.logo-link { text-decoration: none !important; }

.main-nav {
  gap: clamp(12px, 1.25vw, 22px) !important;
}
.main-nav a {
  font-size: clamp(.72rem, .72vw, .82rem) !important;
  white-space: nowrap;
}

.breadcrumb-rail {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: rgba(255,255,255,.72);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.breadcrumb-rail a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
}
.breadcrumb-rail a:hover { color: var(--gold); }
.breadcrumb-rail span:last-child { color: var(--gold); }

/* Desktop titles: calmer, more elegant */
@media (min-width: 901px) {
  .hero h1 {
    font-size: clamp(3.15rem, 6.6vw, 6.4rem) !important;
    line-height: .95 !important;
  }
  .section h2,
  .vehicle-info h2,
  .specs-model,
  .legal-section-heading h2 {
    font-size: clamp(1.72rem, 3vw, 2.75rem) !important;
    line-height: 1.12 !important;
  }
  .page-hero h1,
  .premium-page-hero h1 {
    font-size: clamp(1.95rem, 3.45vw, 3.15rem) !important;
    line-height: 1.07 !important;
    max-width: 780px;
  }
}

/* Homepage hub – more premium, less emoji */
.section-home-hub {
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%) !important;
}
.home-hub-grid {
  align-items: stretch;
}
.home-hub-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px !important;
  min-height: 220px;
  background: #fff !important;
  border: 1px solid rgba(0,45,71,.10) !important;
  box-shadow: 0 18px 50px rgba(0,45,71,.06) !important;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}
.home-hub-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), rgba(200,169,81,.26));
}
.home-hub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(0,45,71,.12) !important;
  border-color: rgba(200,169,81,.42) !important;
}
.hub-ico {
  width: 46px !important;
  height: 46px !important;
  border-radius: 12px !important;
  background: rgba(0,45,71,.06) !important;
  color: var(--navy) !important;
  display: grid !important;
  place-items: center !important;
  margin-bottom: 18px !important;
  font-size: 0 !important;
}
.hub-ico svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.home-hub-card b::after { content: " →"; }
html[dir="rtl"] .home-hub-card b::after { content: " ←"; }
.home-hub-card strong {
  color: var(--navy);
  letter-spacing: -.015em;
}
.home-hub-card small {
  line-height: 1.65 !important;
}

/* Content subpages: same premium page background as legal pages */
.content-subpage main,
body.content-subpage main {
  background: linear-gradient(180deg, #faf8f3 0%, #ffffff 42%, #fbfaf7 100%) !important;
}
.content-subpage .compact-content-hero {
  background:
    linear-gradient(90deg, rgba(6,14,27,.93), rgba(0,45,71,.86)),
    url('assets/img/hero-cover-audi-landcruiser.png') center center / cover no-repeat !important;
}

/* Request page: no full dark page, only refined cards */
.request-page .section-book {
  background: linear-gradient(180deg, #fbfaf7 0%, #ffffff 100%) !important;
  color: var(--text) !important;
}
.request-page .book-layout {
  align-items: stretch;
}
.request-page .book-info {
  background: #fff;
  border: 1px solid rgba(0,45,71,.10);
  border-radius: 12px;
  box-shadow: 0 18px 55px rgba(0,45,71,.06);
  padding: clamp(24px, 4vw, 42px);
}
.request-page .book-info .section-label.light {
  color: var(--gold) !important;
  border-color: rgba(200,169,81,.36) !important;
  background: rgba(200,169,81,.08) !important;
}
.request-page .book-info .h2-light {
  color: var(--navy) !important;
}
.request-page .book-desc,
.request-page .book-info p,
.request-page .perk span {
  color: var(--text-2) !important;
}
.request-page .perk-dot {
  background: var(--gold) !important;
  box-shadow: 0 0 0 6px rgba(200,169,81,.12) !important;
}
.request-page .wa-direct {
  background: var(--navy) !important;
  color: #fff !important;
  border-radius: 6px !important;
}
.request-page .wa-direct:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}
.request-page .book-form-wrap {
  border-radius: 12px !important;
  box-shadow: 0 22px 70px rgba(0,45,71,.10) !important;
}

/* CTA blocks: balanced top/bottom on mobile */
.compact-final-cta {
  padding-top: clamp(48px, 7vw, 76px) !important;
  padding-bottom: clamp(48px, 7vw, 76px) !important;
}
.compact-final-cta .final-cta-box {
  border-radius: 12px !important;
}

@media (max-width: 1180px) {
  .main-nav { display: none !important; }
  .nav-toggle { display: inline-flex !important; }
}
@media (max-width: 720px) {
  .page-hero,
  .premium-page-hero,
  .content-subpage .compact-content-hero {
    padding-top: 112px !important;
    padding-bottom: 46px !important;
  }
  .page-hero h1,
  .premium-page-hero h1,
  .section h2,
  .vehicle-info h2 {
    font-size: clamp(1.55rem, 7vw, 2.1rem) !important;
    line-height: 1.12 !important;
  }
  .page-hero p,
  .premium-page-hero p,
  .section-desc {
    font-size: .95rem !important;
    line-height: 1.72 !important;
  }
  .breadcrumb-rail {
    font-size: .78rem;
    margin-bottom: 14px;
  }
  .home-hub-card {
    min-height: auto;
    padding: 22px !important;
  }
  .compact-final-cta {
    padding-top: 34px !important;
    padding-bottom: 34px !important;
  }
  .compact-final-cta .final-cta-box {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
  .request-page .section-book {
    padding-top: 46px !important;
    padding-bottom: 46px !important;
  }
}

/* RTL polish for new pages */
html[dir="rtl"] .breadcrumb-rail,
html[dir="rtl"] .home-hub-card,
html[dir="rtl"] .request-page .book-info {
  text-align: right;
}
html[dir="rtl"] .breadcrumb-rail {
  flex-direction: row-reverse;
  justify-content: flex-end;
}
html[dir="rtl"] .hub-ico {
  margin-left: auto;
  margin-right: 0;
}


/* ============================================================
   AFANDI v24 – Navigation kompakter, Schrift größer + hellere CTA-Umgebung
   ============================================================ */
@media (min-width: 1181px) {
  .main-nav {
    gap: clamp(18px, 1.7vw, 34px) !important;
    align-items: center !important;
  }
  .main-nav > a,
  .nav-more-button {
    font-size: clamp(.9rem, .88vw, 1.02rem) !important;
    font-weight: 600 !important;
    letter-spacing: .055em !important;
  }
}

.nav-more-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-more-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.78);
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  padding: 2px 0 4px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color .2s ease;
}
.nav-more-button:hover,
.nav-more-dropdown:focus-within .nav-more-button,
.nav-more-dropdown:hover .nav-more-button {
  color: #fff;
}
.nav-more-chevron {
  color: var(--gold);
  font-size: .72em;
  line-height: 1;
  transform: translateY(1px);
}
.nav-more-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 184px;
  padding: 8px;
  border-radius: 12px;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(0,45,71,.10);
  box-shadow: 0 18px 54px rgba(0,45,71,.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 250;
}
.nav-more-dropdown:hover .nav-more-panel,
.nav-more-dropdown:focus-within .nav-more-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-more-panel a {
  display: block;
  padding: 10px 12px !important;
  border-radius: 6px;
  color: var(--navy) !important;
  font-size: .92rem !important;
  font-weight: 650 !important;
  letter-spacing: .02em !important;
}
.nav-more-panel a::after { display: none !important; }
.nav-more-panel a:hover {
  background: rgba(200,169,81,.16);
  color: var(--navy) !important;
}
html[dir="rtl"] .nav-more-panel {
  right: auto;
  left: 0;
  text-align: right;
}
html[dir="rtl"] .nav-more-button {
  flex-direction: row-reverse;
}

/* Heller Hintergrund außerhalb der dunklen CTA-Boxen */
.section-home-short-cta,
.section-final-cta {
  background: linear-gradient(180deg, #fbfaf7 0%, #f3efe7 100%) !important;
  color: var(--text) !important;
}
.section-home-short-cta .final-cta-box,
.section-final-cta .final-cta-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-2)) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
}

/* Mobile Menü: klare Reihenfolge mit Mehr-Gruppe */
.mobile-menu-group {
  display: flex;
  flex-direction: column;
  padding: 10px clamp(20px,5vw,60px) 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  gap: 2px;
}
.mobile-menu-group > span {
  color: var(--gold);
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 8px 0 6px;
}
.mobile-menu-group a {
  padding: 10px 0 10px 18px !important;
  border-bottom: 0 !important;
  font-size: 1.03rem !important;
  color: rgba(255,255,255,.86) !important;
}
.mobile-menu-group a::before {
  content: "– ";
  color: var(--gold);
}
.mobile-menu > a {
  font-size: 1.06rem !important;
  font-weight: 650 !important;
  letter-spacing: .035em !important;
}
html[dir="rtl"] .mobile-menu-group,
html[dir="rtl"] .mobile-menu-group a,
html[dir="rtl"] .mobile-menu > a {
  text-align: right;
}
html[dir="rtl"] .mobile-menu-group a {
  padding-right: 18px !important;
  padding-left: 0 !important;
}
html[dir="rtl"] .mobile-menu-group a::before {
  content: "– ";
}

/* ============================================================
   AFANDI v25 – Footer kompakt, CTA-Umgebung heller, Nav größer,
   RTL/Arabic UI polish
   ============================================================ */

/* Header-Navigation: gewünschte Reihenfolge bleibt, Schrift besser lesbar */
@media (min-width: 1181px) {
  .main-nav {
    gap: clamp(20px, 1.85vw, 36px) !important;
  }
  .main-nav > a,
  .nav-more-button {
    font-size: clamp(.96rem, .92vw, 1.08rem) !important;
    font-weight: 650 !important;
    letter-spacing: .055em !important;
  }
}

/* Heller Bereich außerhalb der dunklen CTA-Box */
.section-home-short-cta,
.section-final-cta,
.compact-final-cta {
  background: linear-gradient(180deg, #fcfbf8 0%, #f6f1e8 100%) !important;
  color: var(--text) !important;
}
.section-home-short-cta .final-cta-box,
.section-final-cta .final-cta-box,
.compact-final-cta .final-cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, #063f61 100%) !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  box-shadow: 0 22px 70px rgba(0,45,71,.18) !important;
}

/* Footer: sauberer, kompakter, ohne Link-Wiederholungen */
.footer.footer-compact {
  background: var(--navy) !important;
  color: rgba(255,255,255,.78) !important;
  padding: clamp(34px, 5vw, 58px) 0 22px !important;
  border-top: 1px solid rgba(200,169,81,.16);
}
.footer-compact-grid {
  display: grid;
  grid-template-columns: minmax(210px, 1.15fr) minmax(140px, .8fr) minmax(145px, .8fr) minmax(220px, 1fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: start;
}
.footer-brand-compact p {
  margin-top: 14px !important;
  max-width: 240px;
  font-size: .92rem !important;
  line-height: 1.55 !important;
  color: rgba(255,255,255,.66) !important;
}
.footer-compact .footer-logo-wrap {
  margin-bottom: 0 !important;
}
.footer-compact .footer-icon {
  width: 38px !important;
  height: 38px !important;
}
.footer-compact .footer-logo-text {
  font-size: 1rem !important;
  line-height: 1.05 !important;
}
.footer-compact .footer-logo-text span {
  font-size: .68rem !important;
  letter-spacing: .16em !important;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.footer-col h4 {
  color: var(--gold) !important;
  font-size: .74rem !important;
  line-height: 1.2;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin: 0 0 6px !important;
}
.footer-col a,
.footer-col span {
  color: rgba(255,255,255,.72) !important;
  font-size: .9rem !important;
  line-height: 1.38 !important;
  transition: color .2s ease, transform .2s ease;
}
.footer-col a:hover {
  color: var(--gold) !important;
  transform: translateX(2px);
}
.footer-platforms-inline {
  display: flex !important;
  flex-wrap: wrap;
  gap: 7px !important;
  margin-top: 10px !important;
  align-items: center;
}
.footer-platforms-inline span,
.footer-platforms-inline a {
  font-size: .84rem !important;
}
.footer-platforms-inline a {
  color: var(--gold) !important;
  font-weight: 700 !important;
}
.footer-bottom-compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px !important;
  margin-top: 28px !important;
  border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.52) !important;
  font-size: .78rem !important;
  line-height: 1.4;
}
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-legal-links a {
  color: rgba(255,255,255,.62) !important;
  font-size: .78rem !important;
}
.footer-legal-links a:hover {
  color: var(--gold) !important;
}

/* Alte Footer-Elemente sicher ausblenden, falls Browser gecachte Struktur trifft */
.footer-compact .footer-nav,
.footer-compact .footer-meta-links,
.footer-compact .footer-legal {
  display: none !important;
}

/* Arabic / RTL: saubere Leseführung und rechte Ausrichtung */
html[dir="rtl"] body {
  direction: rtl;
  text-align: right;
  font-family: 'Cairo', 'Outfit', sans-serif;
}
html[dir="rtl"] .header-inner,
html[dir="rtl"] .mobile-lang,
html[dir="rtl"] .cookie-modal-actions {
  direction: rtl;
}
html[dir="rtl"] .logo-link,
html[dir="rtl"] .footer-logo-wrap,
html[dir="rtl"] .cta-pill,
html[dir="rtl"] .btn-primary,
html[dir="rtl"] .btn-outline,
html[dir="rtl"] .btn-submit,
html[dir="rtl"] .btn-hero-primary,
html[dir="rtl"] .btn-hero-ghost,
html[dir="rtl"] .wa-direct,
html[dir="rtl"] .mobile-cta {
  direction: ltr;
}
html[dir="rtl"] .main-nav,
html[dir="rtl"] .nav-more-panel,
html[dir="rtl"] .mobile-menu,
html[dir="rtl"] .section,
html[dir="rtl"] .page-hero,
html[dir="rtl"] .premium-page-hero,
html[dir="rtl"] .compact-content-hero,
html[dir="rtl"] .hero-content,
html[dir="rtl"] .vehicle-info,
html[dir="rtl"] .home-hub-card,
html[dir="rtl"] .footer-col,
html[dir="rtl"] .footer-brand-compact,
html[dir="rtl"] .legal-premium-card,
html[dir="rtl"] .legal-text-card,
html[dir="rtl"] .legal-premium-card section,
html[dir="rtl"] .book-info,
html[dir="rtl"] .book-form,
html[dir="rtl"] .faq-list details,
html[dir="rtl"] .faq-list summary,
html[dir="rtl"] .loc-card,
html[dir="rtl"] .contact-card,
html[dir="rtl"] .service-card,
html[dir="rtl"] .fleet-card,
html[dir="rtl"] .cookie-modal {
  direction: rtl;
  text-align: right;
}
html[dir="rtl"] .main-nav {
  margin-left: 0 !important;
  margin-right: auto !important;
}
html[dir="rtl"] .main-nav a::after {
  transform-origin: right;
}
html[dir="rtl"] .nav-more-panel {
  right: auto !important;
  left: 0 !important;
}
html[dir="rtl"] .section-desc,
html[dir="rtl"] .hero-sub,
html[dir="rtl"] .page-hero p,
html[dir="rtl"] .premium-page-hero p,
html[dir="rtl"] .compact-content-hero p,
html[dir="rtl"] .final-cta-box p {
  margin-left: auto;
  margin-right: 0;
}
html[dir="rtl"] .home-hub-card,
html[dir="rtl"] .final-cta-box,
html[dir="rtl"] .book-layout,
html[dir="rtl"] .contact-grid,
html[dir="rtl"] .locs-grid,
html[dir="rtl"] .fleet-grid,
html[dir="rtl"] .footer-compact-grid,
html[dir="rtl"] .footer-bottom-compact {
  direction: rtl;
}
html[dir="rtl"] .home-hub-card b::after { content: " ←" !important; }
html[dir="rtl"] .footer-col a:hover {
  transform: translateX(-2px);
}
html[dir="rtl"] input,
html[dir="rtl"] select,
html[dir="rtl"] textarea {
  direction: rtl;
  text-align: right;
}
html[dir="rtl"] select {
  background-position: left 14px center;
  padding-left: 38px;
  padding-right: 16px;
}
html[dir="rtl"] ul,
html[dir="rtl"] ol {
  padding-right: 1.25rem;
  padding-left: 0;
}
html[dir="rtl"] .breadcrumb-rail {
  flex-direction: row-reverse;
  justify-content: flex-end;
}
html[dir="rtl"] .mobile-menu-group a::before {
  content: "– ";
}

@media (max-width: 980px) {
  .footer-compact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-bottom-compact {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 640px) {
  .footer.footer-compact {
    padding-top: 32px !important;
    padding-bottom: 18px !important;
  }
  .footer-compact-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .footer-col {
    gap: 7px;
  }
  .footer-bottom-compact {
    margin-top: 22px !important;
    padding-top: 18px !important;
    gap: 12px;
  }
  .footer-legal-links {
    gap: 14px;
  }
}


/* ============================================================
   AFANDI v26 – Footer Logo Spacing, Button Hover, Premium Icons
   ============================================================ */
.footer-compact .footer-logo-text {
  line-height: 1.08 !important;
}
.footer-compact .footer-logo-text span,
.footer-logo-text span {
  margin-top: 5px !important;
  display: block !important;
  letter-spacing: .18em !important;
}

/* Buttons auf hellen Karten: Hover bleibt lesbar */
.premium-actions .btn-hero-ghost:hover,
.premium-actions .btn-hero-ghost:focus-visible,
.contact-page .premium-actions .btn-hero-ghost:hover,
.about-page .premium-actions .btn-hero-ghost:hover,
a.btn-hero-ghost[href^="mailto:"]:hover,
a.btn-hero-ghost[href*="#toyota"]:hover {
  background: var(--navy) !important;
  color: #fff !important;
  border-color: var(--navy) !important;
  box-shadow: 0 12px 28px rgba(0,45,71,.18) !important;
  transform: translateY(-2px) !important;
}
.premium-actions .btn-hero-ghost:hover *,
a.btn-hero-ghost[href^="mailto:"]:hover *,
a.btn-hero-ghost[href*="#toyota"]:hover * {
  color: currentColor !important;
}
.premium-actions .btn-hero-ghost:focus-visible {
  outline: 2px solid rgba(200,169,81,.75) !important;
  outline-offset: 3px !important;
}

/* Startseiten-Karten: hochwertigere Icon-Kacheln */
.home-hub-card .hub-ico {
  background: linear-gradient(145deg, rgba(0,45,71,.075), rgba(200,169,81,.12)) !important;
  border: 1px solid rgba(0,45,71,.10) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 10px 24px rgba(0,45,71,.06) !important;
  color: var(--navy) !important;
}
.home-hub-card:hover .hub-ico,
.home-hub-card:focus-visible .hub-ico {
  background: var(--navy) !important;
  color: var(--gold) !important;
  border-color: rgba(200,169,81,.45) !important;
}
.home-hub-card .hub-ico svg {
  width: 26px !important;
  height: 26px !important;
  stroke-width: 1.7 !important;
}

/* Premium-/Kontakt-Karten: SVG statt Emoji sauber anzeigen */
.premium-icon,
.premium-contact-tile span.contact-line-icon {
  color: var(--navy) !important;
  background: linear-gradient(145deg, rgba(0,45,71,.055), rgba(200,169,81,.13)) !important;
  border: 1px solid rgba(0,45,71,.09) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75), 0 8px 20px rgba(0,45,71,.05) !important;
}
.premium-icon svg,
.premium-contact-tile span.contact-line-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.premium-mini:hover .premium-icon,
.premium-contact-tile:hover span.contact-line-icon {
  background: var(--navy) !important;
  color: var(--gold) !important;
  border-color: rgba(200,169,81,.42) !important;
}

/* RTL: Icon-Abstände bleiben sauber */
html[dir="rtl"] .footer-compact .footer-logo-text span,
html[dir="rtl"] .footer-logo-text span {
  margin-top: 5px !important;
}
