/* ═══════════════════════════════════════════════════════════════
   DRIVE57 THEME — MAIN STYLESHEET
   Palette: Anthracite & Or  |  Version: 1.0.0
═══════════════════════════════════════════════════════════════ */

/* ── CSS CUSTOM PROPERTIES (overridden by Customizer via wp_head) ── */
/* ─────────────────────────────────────────────────────────────
   CSS variables are injected dynamically by drive57_css_vars()
   in functions.php — based on the selected colour theme.
   Do NOT redefine :root here or it will override the theme.
   Fallback values kept as CSS custom property declarations only
   if the PHP injection fails for some reason.
───────────────────────────────────────────────────────────── */
:root {
  --wa:   #25D366;
  --wa-d: #1aab55;
  --r:    8px;
  --tr:   .25s ease;
}

/* ── RESET ── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body {
  background: var(--bg); color: var(--tx1);
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-weight: 400; line-height: 1.65;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
body.rtl { font-family: 'Cairo', 'DM Sans', system-ui, sans-serif; direction: rtl; }
a { color: var(--ac); text-decoration: none; transition: color var(--tr); }
a:hover { color: var(--ac-d); }
a:focus-visible { outline: 2px solid var(--ac); outline-offset: 3px; border-radius: 2px; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.1; color: var(--tx1); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── LAYOUT ── */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.container-full { width: 100%; padding: 0 20px; }
.section-padded { padding: 84px 0; }
.centered { text-align: center; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 28px; background: var(--ac); color: var(--fg);
  font-size: 14px; font-weight: 700; border-radius: var(--r);
  border: none; cursor: pointer;
  transition: background var(--tr), transform var(--tr), box-shadow var(--tr);
  box-shadow: 0 4px 20px var(--ac-g); white-space: nowrap; text-decoration: none;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--ac-d); transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--ac-g); color: var(--fg);
}
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; background: transparent; color: var(--tx1);
  font-size: 14px; font-weight: 500; border-radius: var(--r);
  border: 1.5px solid var(--bdr);
  transition: border-color var(--tr), color var(--tr), transform var(--tr);
  text-decoration: none; white-space: nowrap; cursor: pointer;
}
.btn-outline:hover, .btn-outline:focus-visible {
  border-color: var(--ac); color: var(--ac); transform: translateY(-2px);
}
.btn-hdr {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 18px; background: var(--ac); color: var(--fg);
  font-size: 13px; font-weight: 700; border-radius: var(--r);
  transition: background var(--tr), transform var(--tr);
  white-space: nowrap; flex-shrink: 0; text-decoration: none;
}
.btn-hdr:hover { background: var(--ac-d); transform: translateY(-1px); color: var(--fg); }
.btn-pricing {
  display: block; width: 100%; text-align: center; padding: 13px;
  border-radius: var(--r); font-size: 13px; font-weight: 600;
  border: 1.5px solid var(--bdr); color: var(--tx1);
  background: transparent; cursor: pointer; transition: all var(--tr); text-decoration: none;
}
.btn-pricing:hover, .btn-pricing:focus-visible { background: var(--ac); border-color: var(--ac); color: var(--fg); }

/* ── HEADER ── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background var(--tr), border-color var(--tr), box-shadow var(--tr);
}
#site-header.scrolled {
  background: rgba(14,13,11,.97); border-bottom: 1px solid var(--bdr);
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 20px;
}
.site-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.site-logo img { height: 46px; width: auto; object-fit: contain; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 800; color: var(--tx1); letter-spacing: -.02em; text-decoration: none; }
.logo-text em { color: var(--ac); font-style: normal; }
.site-nav { display: flex; align-items: center; }
.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-menu li a { font-size: 13px; font-weight: 500; color: var(--tx2); letter-spacing: .02em; transition: color var(--tr); position: relative; text-decoration: none; }
.nav-menu li a::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 100%; height: 1.5px; background: var(--ac); transition: right var(--tr); }
.nav-menu li a:hover, .nav-menu li.current-menu-item a { color: var(--ac); }
.nav-menu li a:hover::after, .nav-menu li.current-menu-item a::after { right: 0; }
.header-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.lang-switcher { display: flex; background: var(--bg-el); border: 1px solid var(--bdr); border-radius: 6px; overflow: hidden; }
.lang-btn { display: block; padding: 7px 12px; font-size: 11px; font-weight: 600; letter-spacing: .07em; color: var(--tx3); transition: all .2s; cursor: pointer; text-decoration: none; }
.lang-btn.active, .lang-btn:hover { background: var(--ac); color: var(--fg); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; flex-shrink: 0; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--tx1); border-radius: 2px; transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-nav {
  display: flex; flex-direction: column; gap: 4px;
  position: fixed; top: 68px; left: 0; right: 0;
  background: var(--bg-s); border-bottom: 1px solid var(--bdr);
  padding: 16px; z-index: 999;
  transform: translateY(-110%); opacity: 0; pointer-events: none;
  transition: transform .3s ease, opacity .3s ease;
}
.mobile-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-nav-menu li a { display: block; padding: 13px 16px; font-size: 15px; font-weight: 500; color: var(--tx2); border-radius: var(--r); transition: all .2s; text-decoration: none; }
.mobile-nav-menu li a:hover { background: var(--bg-el); color: var(--ac); }
.mob-wa-btn { margin-top: 8px; display: flex !important; align-items: center; justify-content: center; gap: 9px; padding: 15px !important; background: var(--wa) !important; color: #fff !important; font-size: 15px; font-weight: 600; border-radius: 10px !important; text-decoration: none; }
.mobile-nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 998; opacity: 0; pointer-events: none; transition: opacity .3s; }
.mobile-nav-overlay.is-open { opacity: 1; pointer-events: auto; }

/* ── HERO ── */
.hero-section { min-height: 100svh; min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 100px 0 60px; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(110deg,rgba(14,13,11,.97) 0%,rgba(14,13,11,.82) 55%,rgba(14,13,11,.42) 100%); }
.hero-content { position: relative; z-index: 1; max-width: 580px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--ac); margin-bottom: 20px; }
.hero-eyebrow::before { content: ''; width: 26px; height: 1.5px; background: var(--ac); display: block; }
body.rtl .hero-eyebrow { flex-direction: row-reverse; }
body.rtl .hero-eyebrow::before { order: 2; }
.hero-h1 { font-size: clamp(30px,5.5vw,62px); font-weight: 800; line-height: 1.08; color: var(--tx1); margin-bottom: 18px; letter-spacing: -.025em; }
.hero-accent { color: var(--ac); }
.hero-sub { font-size: 15px; font-weight: 400; line-height: 1.7; color: var(--tx2); max-width: 440px; margin-bottom: 32px; padding-left: 16px; border-left: 3px solid var(--ac); }
body.rtl .hero-sub { border-left: none; border-right: 3px solid var(--ac); padding-left: 0; padding-right: 16px; }
body.rtl .hero-ctas { flex-direction: row-reverse; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.hero-checks { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--bdr); }
.hero-check { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--tx2); }
.hero-check-icon { color: var(--ac); font-size: 15px; font-weight: 700; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--bg-s); border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-item { display: flex; align-items: center; gap: 13px; padding: 22px; border-right: 1px solid var(--bdr); transition: background .2s; }
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--bg-el); }
body.rtl .trust-item { flex-direction: row-reverse; border-right: none; border-left: 1px solid var(--bdr); }
body.rtl .trust-item:last-child { border-left: none; }
.trust-icon { width: 38px; height: 38px; border-radius: 9px; background: var(--ac-g); border: 1px solid rgba(var(--ac-rgb),.22); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.trust-title { display: block; font-size: 13px; font-weight: 600; color: var(--tx1); margin-bottom: 2px; }
.trust-desc { display: block; font-size: 11.5px; color: var(--tx3); line-height: 1.35; }

/* ── SECTION HEADERS ── */
.section-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 10.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--ac); margin-bottom: 12px; font-family: 'DM Sans',sans-serif; }
.section-eyebrow::before { content: ''; width: 22px; height: 1.5px; background: var(--ac); display: block; }
body.rtl .section-eyebrow { flex-direction: row-reverse; }
body.rtl .section-eyebrow::before { order: 2; }
.section-header.centered .section-eyebrow { justify-content: center; }
.section-title { font-size: clamp(26px,3.8vw,44px); font-weight: 800; letter-spacing: -.02em; color: var(--tx1); margin-bottom: 12px; }
.section-sub { font-size: 15px; color: var(--tx3); line-height: 1.7; max-width: 500px; font-weight: 300; }
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ── WHY ── */
.why-section { background: var(--bg); }
.why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
body.rtl .why-layout { direction: rtl; }
.why-visual { position: relative; border-radius: 12px; overflow: hidden; height: 400px; border: 1px solid var(--bdr); }
.why-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.88); }
.why-badge { position: absolute; bottom: 20px; left: 20px; background: var(--ac); color: var(--fg); padding: 10px 18px; border-radius: var(--r); font-family: 'Playfair Display',serif; font-size: 13px; font-weight: 700; }
body.rtl .why-badge { left: auto; right: 20px; }
.why-list { display: flex; flex-direction: column; margin-top: 26px; }
.why-item { display: flex; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--bdr-s); }
.why-item:first-child { padding-top: 0; }
.why-item:last-child { border-bottom: none; padding-bottom: 0; }
body.rtl .why-item { flex-direction: row-reverse; text-align: right; }
.why-num { font-family: 'Playfair Display',serif; font-size: 12px; font-weight: 700; color: var(--ac); width: 26px; flex-shrink: 0; padding-top: 3px; }
.why-item-title { display: block; font-size: 14.5px; font-weight: 600; color: var(--tx1); margin-bottom: 4px; font-family: 'DM Sans',sans-serif; }
.why-item-desc { font-size: 13px; color: var(--tx3); line-height: 1.65; font-family: 'DM Sans',sans-serif; }

/* ── HOW IT WORKS ── */
.how-section { background: var(--bg); }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); }
body.rtl .steps-grid { direction: rtl; }
.step { padding: 0 24px; }
.step:not(:last-child) { border-right: 1px solid var(--bdr-s); }
body.rtl .step:not(:last-child) { border-right: none; border-left: 1px solid var(--bdr-s); }
.step-circle { width: 50px; height: 50px; border-radius: 50%; background: var(--ac-g); border: 2px solid rgba(var(--ac-rgb),.35); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display',serif; font-size: 19px; font-weight: 800; color: var(--ac); margin-bottom: 18px; }
.step-title { font-size: 15px; font-weight: 600; color: var(--tx1); margin-bottom: 7px; font-family: 'DM Sans',sans-serif; }
.step-desc { font-size: 13px; color: var(--tx3); line-height: 1.65; font-family: 'DM Sans',sans-serif; }

/* ── PRICING ── */
.pricing-section { background: var(--bg-s); }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-bottom: 24px; }
body.rtl .pricing-grid { direction: rtl; }
.pricing-card { background: var(--bg-card); border: 1px solid var(--bdr); border-radius: 14px; padding: 34px 26px; position: relative; transition: transform .28s; }
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured { border-color: var(--ac); box-shadow: 0 0 0 1px rgba(var(--ac-rgb),.18); }
.pricing-popular { position: absolute; top: -1px; right: 24px; background: var(--ac); color: var(--fg); font-size: 9.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 12px; border-radius: 0 0 7px 7px; }
body.rtl .pricing-popular { right: auto; left: 24px; }
.pricing-cat { font-size: 10.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--tx3); margin-bottom: 7px; font-family: 'DM Sans',sans-serif; }
.pricing-name { font-size: 22px; font-weight: 800; color: var(--tx1); margin-bottom: 22px; }
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 5px; }
.pricing-amount { font-size: 44px; font-weight: 800; color: var(--tx1); line-height: 1; }
.pricing-currency { font-size: 17px; color: var(--ac); font-weight: 700; }
.pricing-period { font-size: 13px; color: var(--tx3); }
.pricing-divider { height: 1px; background: var(--bdr-s); margin: 22px 0; }
.pricing-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.pricing-features li { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--tx2); }
body.rtl .pricing-features li { flex-direction: row-reverse; }
.pf-check { color: var(--ac); font-size: 14px; flex-shrink: 0; font-weight: 700; }
.pricing-caution { font-size: 12px; color: var(--tx3); margin-bottom: 20px; }
.pricing-note { background: var(--bg-el); border: 1px solid var(--bdr); border-left: 3px solid var(--ac); border-radius: var(--r); padding: 16px 20px; font-size: 13px; color: var(--tx3); line-height: 1.7; }
body.rtl .pricing-note { border-left: none; border-right: 3px solid var(--ac); }

/* ── CONDITIONS ── */
.conditions-section { background: var(--bg); }
.conditions-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
body.rtl .conditions-grid { direction: rtl; }
.condition-item { background: var(--bg-card); border: 1px solid var(--bdr); border-radius: 12px; padding: 24px 20px; transition: all var(--tr); }
.condition-item:hover { border-color: rgba(var(--ac-rgb),.42); transform: translateY(-2px); }
.condition-icon { font-size: 24px; margin-bottom: 12px; }
.condition-title { display: block; font-size: 13.5px; font-weight: 600; color: var(--tx1); margin-bottom: 6px; font-family: 'DM Sans',sans-serif; }
.condition-desc { font-size: 12px; color: var(--tx3); line-height: 1.6; font-family: 'DM Sans',sans-serif; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--bg-s); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
body.rtl .testimonials-grid { direction: rtl; }
.testimonial-card { background: var(--bg-card); border: 1px solid var(--bdr); border-radius: 14px; padding: 30px 26px; transition: all var(--tr); }
.testimonial-card:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(var(--ac-rgb),.09); }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 16px; font-size: 13px; }
.testimonial-text p { font-size: 14px; color: var(--tx2); line-height: 1.75; font-style: italic; margin-bottom: 22px; }
.testimonial-author { display: flex; align-items: center; gap: 11px; padding-top: 16px; border-top: 1px solid var(--bdr-s); }
.testimonial-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--ac-g); border: 1.5px solid rgba(var(--ac-rgb),.3); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display',serif; font-size: 16px; font-weight: 700; color: var(--ac); flex-shrink: 0; }
.testimonial-name { display: block; font-size: 13.5px; font-weight: 600; color: var(--tx1); font-style: normal; }
.testimonial-city { display: block; font-size: 11.5px; color: var(--tx3); }

/* ── FAQ ── */
.faq-section { background: var(--bg); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--bdr-s); }
.faq-item:first-child { border-top: 1px solid var(--bdr-s); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 19px 0; font-size: 14.5px; font-weight: 500; color: var(--tx1); text-align: left; cursor: pointer; transition: color var(--tr); background: none; border: none; font-family: 'DM Sans',sans-serif; }
body.rtl .faq-question { text-align: right; flex-direction: row-reverse; }
.faq-question:hover, .faq-question[aria-expanded="true"] { color: var(--ac); }
.faq-icon { width: 25px; height: 25px; border-radius: 50%; border: 1.5px solid var(--bdr); display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--tx3); flex-shrink: 0; transition: all var(--tr); }
.faq-question[aria-expanded="true"] .faq-icon { background: var(--ac); border-color: var(--ac); color: var(--fg); transform: rotate(180deg); }
.faq-answer { overflow: hidden; transition: height .35s ease; }
.faq-answer[hidden] { display: block; height: 0; }
.faq-answer-inner { padding: 0 0 18px; font-size: 13.5px; color: var(--tx3); line-height: 1.75; font-family: 'DM Sans',sans-serif; }
body.rtl .faq-answer-inner { text-align: right; }

/* ── CONTACT ── */
.contact-section { background: var(--bg-s); }
.contact-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: start; }
body.rtl .contact-layout { direction: rtl; }
.reservation-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.reservation-form .form-group { margin-bottom: 16px; }
.reservation-form label { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--tx2); margin-bottom: 7px; letter-spacing: .01em; }
.reservation-form input,
.reservation-form select,
.reservation-form textarea { width: 100%; background: var(--bg-el); border: 1.5px solid var(--bdr); color: var(--tx1); font-size: 14px; padding: 13px 15px; border-radius: 10px; outline: none; transition: border-color .2s, box-shadow .2s, background .2s; appearance: none; -webkit-appearance: none; }
.reservation-form textarea { resize: vertical; min-height: 80px; }
.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus { border-color: var(--ac); box-shadow: 0 0 0 3px var(--ac-g); }
.reservation-form input::placeholder,
.reservation-form textarea::placeholder { color: var(--tx3); opacity: .8; }
.form-error { color: #ef4444; font-size: 13px; padding: 10px 0; }
.btn-submit { width: 100%; }
.contact-block { display: flex; align-items: flex-start; gap: 14px; padding: 20px 0; border-bottom: 1px solid var(--bdr-s); }
.contact-block:first-child { padding-top: 0; }
.contact-block:last-child { border-bottom: none; }
body.rtl .contact-block { flex-direction: row-reverse; text-align: right; }
.contact-block-icon { width: 44px; height: 44px; border-radius: 9px; background: var(--bg-el); border: 1px solid var(--bdr); display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; }
.contact-block-text strong { display: block; font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--tx3); margin-bottom: 3px; }
.contact-block-text span { font-size: 14.5px; font-weight: 500; color: var(--tx1); }
.contact-block-text small { display: block; font-size: 12px; color: var(--tx3); margin-top: 2px; }
.contact-block-text a { color: var(--tx1); }
.contact-block-text a:hover { color: var(--ac); }
.map-placeholder { margin-top: 22px; border-radius: 10px; overflow: hidden; border: 1px solid var(--bdr); }

/* ── ABOUT ── */
.about-section { background: var(--bg); border-top: 1px solid var(--bdr); }
.about-inner { max-width: 660px; margin: 0 auto; text-align: center; }
.about-text { font-size: 15px; color: var(--tx3); line-height: 1.8; margin: 18px 0 30px; }

/* ── FOOTER ── */

/* ════════════════════════════════════════════════════════════════
   FOOTER — Professional 4-column layout
   Dark themes · Light themes · RTL · Mobile-first
════════════════════════════════════════════════════════════════ */
#site-footer {
    background: var(--bg);
    border-top: 1px solid var(--bdr);
    padding: 56px 0 0;
}

/* ── 4-column main grid ── */
.ft-main {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

/* Brand col */
.ft-logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--tx1);
    display: block;
    margin-bottom: 10px;
    letter-spacing: -.02em;
}
.ft-logo-text em { color: var(--ac); font-style: normal; }
.ft-tagline {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--tx3);
    margin-bottom: 12px;
}
.ft-about {
    font-size: 12.5px;
    color: var(--tx3);
    line-height: 1.7;
    max-width: 220px;
    margin-bottom: 14px;
}
.ft-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--bg-el);
    border: 1px solid var(--bdr);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 11.5px;
}
.ft-badge-text { color: var(--tx2); font-size: 11px; }

/* Column titles */
.ft-col-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--tx1);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--bdr);
}

/* Links list */
.ft-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ft-links li { margin-bottom: 8px; }
.ft-links li a {
    font-size: 12.5px;
    color: var(--tx3);
    text-decoration: none;
    transition: color .18s;
    line-height: 1.5;
    display: block;
}
.ft-links li a:hover { color: var(--ac); }

/* Contact items */
.ft-contacts { display: flex; flex-direction: column; gap: 9px; }
.ft-contact {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 12.5px;
    color: var(--tx3);
    text-decoration: none;
    transition: color .18s;
    line-height: 1.4;
}
.ft-contact:hover { color: var(--ac); }
.ft-contact svg   { flex-shrink: 0; opacity: .6; }
.ft-contact--info { cursor: default; }
.ft-contact--info:hover { color: var(--tx3); }
.ft-wa { color: var(--wa) !important; }
.ft-wa svg { opacity: 1; }
.ft-wa:hover { color: var(--wa-d) !important; }

/* RTL */
body.rtl .ft-main     { direction: rtl; }
body.rtl .ft-contact  { flex-direction: row-reverse; }
body.rtl .ft-about    { max-width: 100%; }
body.rtl .ft-col-title { text-align: right; }
body.rtl .ft-links li a { text-align: right; }
body.rtl .ft-badge    { flex-direction: row-reverse; }

/* Bottom bar */
.ft-bottom {
    border-top: 1px solid var(--bdr);
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.ft-copy {
    font-size: 11.5px;
    color: var(--tx3);
}
.ft-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}
.ft-legal li a {
    font-size: 11.5px;
    color: var(--tx3);
    text-decoration: none;
    transition: color .18s;
}
.ft-legal li a:hover { color: var(--ac); }

body.rtl .ft-bottom { flex-direction: row-reverse; }
body.rtl .ft-legal  { flex-direction: row-reverse; }

/* ── Light themes ── */
body.theme-light #site-footer  { background: var(--bg-el); border-color: var(--bdr); }
body.theme-light .ft-logo-text { color: var(--tx1); }
body.theme-light .ft-tagline   { color: var(--tx3); }
body.theme-light .ft-about     { color: var(--tx2); }
body.theme-light .ft-badge     { background: var(--bg-card); border-color: var(--bdr); }
body.theme-light .ft-col-title { color: var(--tx1); border-color: var(--bdr); }
body.theme-light .ft-links li a { color: var(--tx3); }
body.theme-light .ft-contact   { color: var(--tx3); }
body.theme-light .ft-bottom    { border-color: var(--bdr); }
body.theme-light .ft-copy      { color: var(--tx3); }
body.theme-light .ft-legal li a { color: var(--tx3); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .ft-main { grid-template-columns: 1fr 1fr; gap: 32px 40px; }
}
@media (max-width: 640px) {
    #site-footer { padding: 40px 0 0; }
    .ft-main { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
    .ft-about { max-width: 100%; }
    .ft-bottom { flex-direction: column; text-align: center; gap: 10px; }
    body.rtl .ft-bottom { flex-direction: column; }
}

/* Hide old footer classes */
.footer-grid, .footer-brand, .footer-col, .footer-nav-list,
.footer-contacts, .footer-contact-item, .footer-bottom,
.footer-seo-band, .footer-seo-nav, .footer-seo-group,
.footer-seo-links, .seo-links-section { display: none !important; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET ≤1024px
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  body.rtl .trust-item:nth-child(2) { border-left: none; }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-top: 1px solid var(--bdr); }
  .why-layout { grid-template-columns: 1fr; gap: 36px; }
  .why-visual { height: 280px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto 24px; }
  .conditions-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .contact-layout { grid-template-columns: 1fr; gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-grid { grid-template-columns: repeat(2,1fr); gap: 28px; }
  .step:not(:last-child) { border-right: none; }
  body.rtl .step:not(:last-child) { border-left: none; }
  .step:nth-child(1), .step:nth-child(2) { border-bottom: 1px solid var(--bdr-s); padding-bottom: 28px; }
  .site-nav, .btn-hdr { display: none; }
  .hamburger { display: flex; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — IPHONE ≤640px
══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .section-padded { padding: 60px 0; }
  .container { padding: 0 16px; }
  .header-inner { height: 60px; }
  .mobile-nav { top: 60px; }
  .hero-section { padding: 80px 0 40px; }
  .hero-h1 { font-size: 30px; }
  .hero-sub { font-size: 14px; max-width: 100%; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .btn-primary, .btn-outline { width: 100%; padding: 15px; font-size: 14.5px; border-radius: 10px; }
  .hero-checks { gap: 14px; margin-top: 26px; padding-top: 20px; }
  .hero-check { font-size: 12px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none !important; border-left: none !important; border-bottom: 1px solid var(--bdr); padding: 16px 0; }
  .trust-item:last-child { border-bottom: none; }
  body.rtl .trust-item { border-right: none !important; border-left: none !important; }
  .why-visual { height: 210px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step { padding: 0 0 26px; margin-bottom: 26px; border-right: none !important; border-left: none !important; border-bottom: 1px solid var(--bdr-s); }
  .step:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .step:nth-child(1), .step:nth-child(2) { border-bottom: 1px solid var(--bdr-s); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 100%; gap: 14px; }
  .pricing-card { padding: 26px 18px; }
  .pricing-amount { font-size: 40px; }
  .conditions-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .condition-item { padding: 18px 14px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }
  .faq-question { font-size: 13.5px; }
  .reservation-form .form-row { grid-template-columns: 1fr; gap: 0; }
  .btn-submit { padding: 15px; font-size: 14.5px; border-radius: 10px; }
  .section-title { font-size: 26px; }
  .section-header { margin-bottom: 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .footer-legal-list { flex-direction: column; align-items: center; gap: 6px; }
  .footer-about { max-width: 100%; }
  .wa-float { bottom: 86px; right: 12px; } /* above sticky bar (70px) */
  body.rtl .wa-float { right: auto; left: 12px; }
}

@media (max-width: 380px) {
  .hero-h1 { font-size: 28px; }
  .conditions-grid { grid-template-columns: 1fr; }
}

/* ── Prix à discuter (pricing cards) ── */
.pricing-discuter {
    display: inline-block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--ac);
    background: var(--ac-g);
    border: 1.5px solid rgba(var(--ac-rgb), .35);
    padding: 8px 16px;
    border-radius: 20px;
    letter-spacing: .02em;
    margin-bottom: 5px;
}
/* ═══════════════════════════════════════════════════════════════
   DRIVE57 REDESIGN — v3.1 Clean
   Sections: Hero · Brand CTAs · Trust · Form · Accessibility
   No duplicates — all hero/form base rules patched above.
═══════════════════════════════════════════════════════════════ */

/* ────────────────────────────────────────────────────────────
   HERO ENHANCEMENTS
   Base .hero-h1 / .hero-sub / .hero-ctas patched above.
   Only additive rules here.
──────────────────────────────────────────────────────────── */

/* Atmospheric gradient overlay (additive layer over hero-bg::after) */
.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(14,13,11,.1) 0%,
        transparent 25%,
        transparent 55%,
        rgba(14,13,11,.7) 100%
    );
    z-index: 0;
    pointer-events: none;
}

/* Live availability dot */
.hero-eyebrow-wrap {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
}
.hero-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #5dba72;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 0 0 0 rgba(93,186,114,.5);
    animation: livePulse 2.4s ease-in-out infinite;
}
@keyframes livePulse {
    0%   { box-shadow: 0 0 0 0 rgba(93,186,114,.5); }
    60%  { box-shadow: 0 0 0 8px rgba(93,186,114,0); }
    100% { box-shadow: 0 0 0 0 rgba(93,186,114,0); }
}

/* ────────────────────────────────────────────────────────────
   BRAND CTA SYSTEM
   Gold primary — premium, consistent with identity.
   WhatsApp green only for direct contact actions.
──────────────────────────────────────────────────────────── */

/* PRIMARY: Gold — used for main hero CTA and section CTAs */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--ac);
    color: var(--fg);
    font-size: 14px;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 6px 22px rgba(var(--ac-rgb), .35);
    line-height: 1;
    white-space: nowrap;
}
.btn-hero-primary:hover {
    background: var(--ac-d);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(var(--ac-rgb), .45);
    color: var(--fg);
}
.btn-hero-primary .btn-icon { font-size: 18px; flex-shrink: 0; }
.btn-hero-primary .btn-text {
    display: flex;
    align-items: center;
    gap: 10px;
}
.btn-hero-primary .btn-sub {
    font-size: 10px;
    font-weight: 500;
    opacity: .8;
    padding-left: 10px;
    border-left: 1px solid rgba(14,13,11,.25);
    white-space: nowrap;
}
body.rtl .btn-hero-primary .btn-sub {
    padding-left: 0;
    padding-right: 10px;
    border-left: none;
    border-right: 1px solid rgba(14,13,11,.25);
}

/* SECONDARY: Ghost — for scroll-down / secondary navigation */
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 24px;
    background: rgba(242,237,228,.07);
    color: var(--tx1);
    font-size: 14px;
    font-weight: 500;
    border-radius: 12px;
    border: 1.5px solid rgba(242,237,228,.18);
    text-decoration: none;
    transition: background .2s, border-color .2s, transform .2s;
    white-space: nowrap;
}
.btn-hero-secondary:hover {
    background: rgba(242,237,228,.12);
    border-color: rgba(242,237,228,.3);
    color: var(--tx1);
    transform: translateY(-2px);
}

/* WHATSAPP: Green — contact-only contexts (cards, form submit, float) */
.btn-wa-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    background: #25D366;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: background .2s, transform .2s;
    box-shadow: 0 4px 14px rgba(37,211,102,.28);
    white-space: nowrap;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.btn-wa-action:hover {
    background: #1aab55;
    transform: translateY(-2px);
    color: #fff;
}

/* ────────────────────────────────────────────────────────────
   HERO TRUST PILLS
──────────────────────────────────────────────────────────── */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 26px;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--tx2);
    background: rgba(242,237,228,.06);
    border: 1px solid rgba(242,237,228,.12);
    padding: 6px 12px;
    border-radius: 20px;
}
.hti-icon { color: var(--ac); font-size: 12px; font-weight: 700; }

/* ────────────────────────────────────────────────────────────
   HERO CONTACT STRIP
──────────────────────────────────────────────────────────── */
.hero-contact-strip {
    display: inline-flex;
    align-items: center;
    background: rgba(242,237,228,.05);
    border: 1px solid rgba(242,237,228,.12);
    border-radius: 12px;
    overflow: hidden;
    max-width: 100%;
}
.hcs-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    text-decoration: none;
    transition: background .2s;
    min-width: 0;
}
.hcs-item:hover { background: rgba(242,237,228,.08); }
.hcs-divider { width: 1px; height: 34px; background: rgba(242,237,228,.12); flex-shrink: 0; }
.hcs-icon { font-size: 17px; flex-shrink: 0; }
.hcs-label {
    display: block;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--tx3);
    line-height: 1;
    margin-bottom: 3px;
}
.hcs-val {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--tx1);
    line-height: 1;
    white-space: nowrap;
}

/* ────────────────────────────────────────────────────────────
   FORM REDESIGN
   Base label/input rules already patched above.
   Only additive rules here.
──────────────────────────────────────────────────────────── */

/* Form trust bar */
.form-trust-bar {
    display: flex;
    flex-wrap: wrap;
    background: var(--bg-el);
    border: 1px solid var(--bdr);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 36px;
}
.ftb-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px 18px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--tx2);
    flex: 1;
    min-width: 140px;
    border-right: 1px solid var(--bdr);
    white-space: nowrap;
}
.ftb-item:last-child { border-right: none; }
.ftb-icon { font-size: 15px; flex-shrink: 0; }
body.rtl .ftb-item {
    flex-direction: row-reverse;
    border-right: none;
    border-left: 1px solid var(--bdr);
}
body.rtl .ftb-item:last-child { border-left: none; }

/* Form card */
.form-card {
    background: var(--bg-card);
    border: 1px solid var(--bdr);
    border-radius: 16px;
    padding: 30px 28px;
}

/* Step indicator */
.form-steps {
    display: flex;
    align-items: center;
    margin-bottom: 26px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--bdr-s);
    gap: 0;
}
.form-step { display: flex; align-items: center; gap: 7px; flex-shrink: 0; }
.fs-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-el);
    border: 1.5px solid var(--bdr);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--tx3);
    flex-shrink: 0;
    transition: background .25s, border-color .25s, color .25s;
}
.form-step.active .fs-num {
    background: var(--ac);
    border-color: var(--ac);
    color: var(--fg);
}
.fs-label { font-size: 11px; font-weight: 500; color: var(--tx3); white-space: nowrap; }
.form-step.active .fs-label { color: var(--tx1); font-weight: 600; }
.form-step-line {
    flex: 1;
    height: 1px;
    background: var(--bdr);
    margin: 0 8px;
    min-width: 16px;
}

/* Label icon */
.label-icon { font-size: 13px; flex-shrink: 0; }

/* Phone field highlight */
.form-group--highlight input {
    border-color: rgba(37,211,102,.3);
    background: rgba(37,211,102,.03);
}
.form-group--highlight input:focus {
    border-color: #25D366;
    box-shadow: 0 0 0 3px rgba(37,211,102,.12);
    background: var(--bg-card);
}

/* Form hint */
.form-hint {
    display: block;
    font-size: 11px;
    color: var(--tx3);
    margin-top: 5px;
}

/* Duration display */
.form-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    background: rgba(var(--ac-rgb), .08);
    border: 1px solid rgba(var(--ac-rgb), .2);
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ac);
}
.fd-icon { font-size: 14px; flex-shrink: 0; }

/* Submit button — brand-consistent gold + WA context */
.btn-submit-wa {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 5px 18px rgba(37,211,102,.32);
    margin-bottom: 14px;
}
.btn-submit-wa:hover {
    background: #1aab55;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(37,211,102,.42);
}
.btn-submit-wa:active { transform: translateY(0); }
.bsw-icon { font-size: 20px; flex-shrink: 0; }
.bsw-text { display: flex; flex-direction: column; gap: 2px; text-align: left; }
.bsw-main { font-size: 14px; font-weight: 700; line-height: 1.25; display: block; }
.bsw-sub  { font-size: 10.5px; font-weight: 400; opacity: .85; line-height: 1.2; display: block; }

/* Legal note */
.form-legal {
    text-align: center;
    font-size: 11px;
    color: var(--tx3);
    line-height: 1.65;
    padding: 0 8px;
}

/* ────────────────────────────────────────────────────────────
   MISSING RTL RULES
──────────────────────────────────────────────────────────── */
body.rtl .hero-trust      { flex-direction: row-reverse; }
body.rtl .hero-contact-strip { flex-direction: row-reverse; }
body.rtl .hcs-item        { flex-direction: row-reverse; }
body.rtl .btn-hero-primary { flex-direction: row-reverse; }
body.rtl .form-steps      { flex-direction: row-reverse; }
body.rtl .form-trust-bar  { flex-direction: row-reverse; }
body.rtl .bsw-text        { text-align: right; }
body.rtl .hcs-label,
body.rtl .hcs-val         { text-align: right; }

/* ────────────────────────────────────────────────────────────
   RESPONSIVE ADDITIONS (mobile-only, no conflicts with base)
──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .ftb-item { min-width: calc(50% - 1px); }
    .ftb-item:nth-child(2) { border-right: none; }
    .ftb-item:nth-child(3),
    .ftb-item:nth-child(4) { border-top: 1px solid var(--bdr); }
    body.rtl .ftb-item:nth-child(2) { border-left: none; }
}

@media (max-width: 640px) {
    /* Hero */
    .hero-eyebrow-wrap { margin-bottom: 14px; }
    .hero-trust        { gap: 7px; }
    .hero-trust-item   { font-size: 11.5px; padding: 5px 10px; }
    .hero-contact-strip { width: 100%; }
    .hcs-item          { flex: 1; justify-content: center; }
    .btn-hero-primary,
    .btn-hero-secondary { width: 100%; justify-content: center; }
    .btn-hero-primary .btn-sub { display: none; }

    /* Form */
    .form-trust-bar { flex-direction: column; }
    .ftb-item       { border-right: none; border-bottom: 1px solid var(--bdr); min-width: 100%; }
    .ftb-item:last-child { border-bottom: none; }
    body.rtl .ftb-item { border-left: none; border-bottom: 1px solid var(--bdr); }
    .form-card      { padding: 20px 16px; border-radius: 12px; }
    .fs-label       { display: none; }
    .form-step-line { min-width: 10px; margin: 0 4px; }
    .bsw-main       { font-size: 14px; }
}

/* ═══════════════════════════════════════════════════════════════
   BOOKING SECTION — Premium Redesign
   All selectors prefixed .booking-* / .bf-* / .bsb-*
   Zero conflicts with previous rules.
═══════════════════════════════════════════════════════════════ */

/* ── Section wrapper ── */
.booking-section {
    background: var(--bg);
    border-top: 1px solid var(--bdr);
    padding: 96px 0 104px;
}

/* ── Intro ── */
.booking-intro {
    margin-bottom: 56px;
    max-width: 560px;
}
.booking-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: var(--tx1);
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-top: 10px;
}

/* ── 2-column layout: 55% form / 45% sidebar ── */
.booking-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: start;
}
body.rtl .booking-layout { direction: rtl; }

/* ════════════════════════════════════════════════════════
   FORM — Left column
════════════════════════════════════════════════════════ */
.booking-form-col { display: flex; flex-direction: column; }

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Row (2-col within form) */
.bf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}
.bf-row--dates { margin-bottom: 0; }

/* Field group */
.bf-group { margin-bottom: 20px; }
.bf-group:last-of-type { margin-bottom: 0; }

/* Labels — clean, readable */
.bf-group label {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--tx3);
    margin-bottom: 8px;
    line-height: 1;
}

/* Inputs — generous, premium feel */
.bf-group input,
.bf-group select {
    width: 100%;
    background: var(--bg-card);
    border: 1.5px solid var(--bdr);
    color: var(--tx1);
    font-size: 15px;
    font-weight: 400;
    padding: 14px 16px;
    border-radius: 10px;
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
    appearance: none;
    -webkit-appearance: none;
    font-family: inherit;
    cursor: pointer;
}
.bf-group input:focus,
.bf-group select:focus {
    border-color: var(--ac);
    box-shadow: 0 0 0 3px var(--ac-g);
    background: var(--bg-el);
}
.bf-group input::placeholder { color: var(--tx3); opacity: .6; }

/* Date inputs — consistent cross-browser */
.bf-group input[type="date"] {
    color-scheme: dark;
}

/* ── Phone hero field ── */
.bf-group--phone { margin-bottom: 20px; }
.bf-phone-wrap {
    display: flex;
    align-items: stretch;
    border: 1.5px solid var(--bdr);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
    background: var(--bg-card);
}
.bf-phone-wrap:focus-within {
    border-color: var(--ac);
    box-shadow: 0 0 0 3px var(--ac-g);
}
.bf-phone-prefix {
    display: flex;
    align-items: center;
    padding: 0 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--tx2);
    background: var(--bg-el);
    border-right: 1.5px solid var(--bdr);
    flex-shrink: 0;
    user-select: none;
    letter-spacing: .02em;
}
body.rtl .bf-phone-prefix {
    border-right: none;
    border-left: 1.5px solid var(--bdr);
}
.bf-phone-wrap input {
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    flex: 1;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 500;
    min-width: 0;
}
.bf-phone-wrap input:focus {
    border: none;
    box-shadow: none;
    background: transparent;
}
.bf-hint {
    display: block;
    font-size: 11px;
    color: var(--tx3);
    margin-top: 6px;
    padding-left: 2px;
}
body.rtl .bf-hint { padding-left: 0; padding-right: 2px; text-align: right; }

/* ── Duration badge ── */
.bf-duration {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0 20px;
    padding: 10px 14px;
    background: rgba(var(--ac-rgb), .07);
    border: 1px solid rgba(var(--ac-rgb), .2);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ac);
}
.bfd-icon { font-size: 9px; opacity: .7; }

/* ── Error ── */
.bf-error {
    padding: 12px 14px;
    background: rgba(220,38,38,.08);
    border: 1px solid rgba(220,38,38,.25);
    border-radius: 8px;
    font-size: 13px;
    color: #f87171;
    margin-bottom: 16px;
}

/* ── Submit button — dominant ── */
.bf-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 18px 28px;
    margin-top: 8px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 6px 24px rgba(37,211,102,.32);
}
.bf-submit:hover {
    background: #1aab55;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37,211,102,.42);
}
.bf-submit:active { transform: translateY(0); box-shadow: none; }
.bfs-icon { font-size: 22px; flex-shrink: 0; }
.bfs-body { display: flex; flex-direction: column; gap: 3px; text-align: left; }
body.rtl .bfs-body { text-align: right; }
.bfs-main { font-size: 15px; font-weight: 700; line-height: 1.2; display: block; }
.bfs-sub  { font-size: 11px; font-weight: 400; opacity: .8; line-height: 1.2; display: block; }

/* ── Legal ── */
.bf-legal {
    margin-top: 14px;
    text-align: center;
    font-size: 11px;
    color: var(--tx3);
    line-height: 1.7;
}

/* ════════════════════════════════════════════════════════
   SIDEBAR — Right column
════════════════════════════════════════════════════════ */
.booking-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* Align to top of form, with slight offset for visual balance */
    padding-top: 38px;
}
body.rtl .booking-sidebar { direction: rtl; }

/* ── Shared card base ── */
.bsb-card {
    background: var(--bg-card);
    border: 1px solid var(--bdr);
    border-radius: 14px;
    overflow: hidden;
}

/* ── Call card ── */
.bsb-card--call { padding: 24px 24px 20px; }
.bsb-card-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--tx3);
    margin-bottom: 16px;
}
.bsb-contacts { display: flex; flex-direction: column; gap: 0; }
.bsb-contact-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    text-decoration: none;
    transition: opacity .2s;
}
.bsb-contact-line:hover { opacity: .75; }
body.rtl .bsb-contact-line { flex-direction: row-reverse; }
.bsb-contact-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--tx2);
}
.bsb-contact-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--tx1);
    letter-spacing: .01em;
}
.bsb-contact-divider {
    height: 1px;
    background: var(--bdr-s);
}

/* ── WhatsApp action button ── */
.bsb-wa {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: #25D366;
    border-radius: 14px;
    text-decoration: none;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 18px rgba(37,211,102,.28);
}
.bsb-wa:hover {
    background: #1aab55;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,.4);
}
body.rtl .bsb-wa { flex-direction: row-reverse; }
.bsb-wa-icon { font-size: 24px; flex-shrink: 0; }
.bsb-wa-text { display: flex; flex-direction: column; gap: 2px; }
body.rtl .bsb-wa-text { text-align: right; }
.bsb-wa-main { font-size: 14px; font-weight: 700; color: #fff; line-height: 1.2; display: block; }
.bsb-wa-sub  { font-size: 11px; font-weight: 400; color: rgba(255,255,255,.8); line-height: 1.2; display: block; }

/* ── Info card ── */
.bsb-card--info { padding: 0; }
.bsb-info-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 22px;
}
body.rtl .bsb-info-row { flex-direction: row-reverse; }
.bsb-info-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.bsb-info-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}
body.rtl .bsb-info-body { text-align: right; }
.bsb-info-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--tx3);
    line-height: 1;
}
.bsb-info-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--tx1);
    line-height: 1.4;
}
.bsb-info-sub {
    font-size: 12px;
    color: var(--tx3);
    line-height: 1.4;
}
.bsb-info-sep {
    height: 1px;
    background: var(--bdr-s);
    margin: 0 22px;
}

/* ── Map — integrated, not afterthought ── */
.bsb-map {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--bdr);
    height: 180px;
    position: relative;
}
.bsb-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(40%) contrast(1.05);
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — Tablet 768–1024px
════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .booking-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .booking-sidebar {
        padding-top: 0;
        /* On tablet stack, reorder: sidebar info above map */
    }
    .bsb-map { height: 200px; }
    .booking-intro { margin-bottom: 40px; }
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — Mobile ≤640px
════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
    .booking-section { padding: 64px 0 72px; }
    .booking-intro { margin-bottom: 32px; }
    .booking-title { font-size: 26px; }

    /* Form rows become single column */
    .bf-row { grid-template-columns: 1fr; gap: 0; }
    .bf-group { margin-bottom: 16px; }

    /* Bigger touch targets */
    .bf-group input,
    .bf-group select { padding: 15px 14px; font-size: 16px; }
    .bf-phone-wrap input { font-size: 16px; }

    /* Submit full width, bigger */
    .bf-submit { padding: 17px 20px; border-radius: 10px; }
    .bfs-main { font-size: 15px; }

    /* Sidebar */
    .bsb-card--call { padding: 20px 18px 16px; }
    .bsb-contact-num { font-size: 16px; }
    .bsb-wa { padding: 16px 18px; border-radius: 12px; }
    .bsb-map { height: 160px; border-radius: 12px; }

    /* Info rows */
    .bsb-info-row { padding: 15px 18px; }
}

/* ════════════════════════════════════════════════════════
   RTL — Booking section
════════════════════════════════════════════════════════ */
body.rtl .booking-intro { text-align: right; }
body.rtl .bf-row        { direction: rtl; }
body.rtl .bf-legal      { text-align: right; }

/* ═══════════════════════════════════════════════════════════════
   DRIVE57 — v2.0 PATCH
   Sticky bar · SVP styles · Missing breakpoints · Hero fix
═══════════════════════════════════════════════════════════════ */

/* ────────────────────────────────────────────────────────────
   STICKY MOBILE CTA BAR
──────────────────────────────────────────────────────────── */
.d57-sticky-bar {
    display: none; /* hidden on desktop */
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 1400;
    background: var(--bg-card);
    border-top: 1px solid var(--bdr);
    padding: 10px 16px;
    gap: 10px;
    align-items: center;
    box-shadow: 0 -4px 24px rgba(0,0,0,.3);
    transform: translateY(100%);
    transition: transform .35s ease;
}
.d57-sticky-bar.is-visible { transform: translateY(0); }
.d57-sticky-wa {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--wa);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: background .2s;
    white-space: nowrap;
}
.d57-sticky-wa:hover { background: var(--wa-d); color: #fff; }
.d57-sticky-label { line-height: 1; }
.d57-sticky-call {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 14px;
    background: var(--bg-el);
    color: var(--tx1);
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid var(--bdr);
    text-decoration: none;
    flex-shrink: 0;
    white-space: nowrap;
    transition: border-color .2s, color .2s;
}
.d57-sticky-call:hover { border-color: var(--ac); color: var(--ac); }

/* ────────────────────────────────────────────────────────────
   SINGLE VEHICLE PAGE (SVP) — svp-* classes
──────────────────────────────────────────────────────────── */
.svp-main { padding-top: 68px; }
.svp-wrap { padding: 32px 0 80px; }

.svp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--tx3);
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.svp-breadcrumb a { color: var(--tx3); text-decoration: none; transition: color .2s; }
.svp-breadcrumb a:hover { color: var(--ac); }
.svp-breadcrumb span[aria-hidden] { color: var(--tx3); opacity: .5; }

.svp-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: start;
    margin-bottom: 72px;
}

/* Image column */
.svp-image-col { display: flex; flex-direction: column; gap: 20px; }
.svp-image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #1C1A16;
    border: 1px solid var(--bdr);
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.svp-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 20px;
    background: #1C1A16;
    display: block;
}
.svp-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    height: 100%;
    color: var(--tx3);
    font-size: 13px;
    text-align: center;
    padding: 24px;
}
.svp-avail-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
}
.svp-avail-badge--ok  { background: rgba(76,175,80,.15); color: #5dba72; border: 1px solid rgba(76,175,80,.3); }
.svp-avail-badge--no  { background: rgba(220,38,38,.1);  color: #f87171; border: 1px solid rgba(220,38,38,.25); }
html[dir="rtl"] .svp-avail-badge { left: auto; right: 14px; }

/* Trust signals row */
.svp-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.svp-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--tx2);
}
.svp-trust-icon { color: var(--ac); font-weight: 700; font-size: 13px; }

/* Info column */
.svp-info-col { display: flex; flex-direction: column; }

.svp-category {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ac);
    margin-bottom: 10px;
}
.svp-title {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: var(--tx1);
    line-height: 1.08;
    letter-spacing: -.02em;
    margin-bottom: 8px;
}
.svp-subtitle {
    font-size: 14px;
    color: var(--tx3);
    margin-bottom: 24px;
}

/* Price */
.svp-price-block { margin-bottom: 28px; }
.svp-price-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--tx3);
    margin-bottom: 4px;
}
.svp-price-row { display: flex; align-items: baseline; gap: 6px; }
.svp-price-amt {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 52px;
    font-weight: 800;
    color: var(--tx1);
    line-height: 1;
}
.svp-price-unit { font-size: 16px; color: var(--tx3); }
.svp-price-discuter {
    display: inline-flex;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--ac);
    background: var(--ac-g);
    border: 1.5px solid rgba(var(--ac-rgb),.3);
    padding: 10px 20px;
    border-radius: 24px;
}

/* Specs DL */
.svp-divider { height: 1px; background: var(--bdr-s); margin: 20px 0; }
.svp-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 0;
}
.svp-spec dt {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--tx3);
    margin-bottom: 3px;
}
.svp-spec dd {
    font-size: 14px;
    font-weight: 500;
    color: var(--tx1);
}

/* CTAs */
.svp-btn-wa {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--wa);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-family: inherit;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 6px 22px rgba(37,211,102,.32);
    margin-bottom: 12px;
}
.svp-btn-wa:hover { background: var(--wa-d); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,.42); color: #fff; }
.svp-btn-wa svg { flex-shrink: 0; width: 22px; height: 22px; }
.svp-btn-text { display: flex; flex-direction: column; gap: 2px; }
.svp-btn-main { font-size: 15px; font-weight: 700; display: block; line-height: 1.2; }
.svp-btn-sub  { font-size: 11px; font-weight: 400; opacity: .85; display: block; }
.svp-btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    background: var(--bg-el);
    color: var(--tx1);
    border: 1.5px solid var(--bdr);
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: border-color .2s, color .2s;
    margin-bottom: 16px;
}
.svp-btn-call:hover { border-color: var(--ac); color: var(--ac); }
.svp-unavail { display: flex; flex-direction: column; gap: 12px; color: var(--tx3); font-size: 14px; }
.svp-legal { font-size: 11px; color: var(--tx3); line-height: 1.65; }

/* Related section */
.svp-related { margin-top: 64px; }
.svp-related .section-eyebrow { margin-bottom: 24px; }

/* RTL SVP */
html[dir="rtl"] .svp-layout { direction: rtl; }
html[dir="rtl"] .svp-breadcrumb { flex-direction: row-reverse; }
html[dir="rtl"] .svp-trust { flex-direction: row-reverse; }
html[dir="rtl"] .svp-price-row { flex-direction: row-reverse; }
html[dir="rtl"] .svp-btn-wa { flex-direction: row-reverse; }
html[dir="rtl"] .svp-btn-text { text-align: right; }

/* ────────────────────────────────────────────────────────────
   HERO — Mobile fix: reduce to 80vh max, no more full-screen
──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        min-height: 80svh;
        padding: 84px 0 48px;
    }
}
@media (max-width: 640px) {
    .hero-section {
        min-height: 75vh;
        min-height: 75svh;
        padding: 78px 0 40px;
        align-items: flex-start;
    }
    .hero-content { padding-top: 12px; }
}

/* ────────────────────────────────────────────────────────────
   RESPONSIVE — 768px TABLET (the missing breakpoint)
──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    /* Layout */
    .container { padding: 0 18px; }
    .section-padded { padding: 68px 0; }

    /* Hero */
    .hero-h1 { font-size: 34px; }
    .hero-sub { font-size: 15px; }

    /* Vehicle grid: 2→1 col at 768 */
    .d57-vehicles-grid { grid-template-columns: 1fr; }

    /* Booking */
    .booking-layout { grid-template-columns: 1fr; gap: 36px; }
    .booking-sidebar { padding-top: 0; }

    /* Pricing */
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }

    /* Conditions */
    .conditions-grid { grid-template-columns: repeat(2, 1fr); }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr 1fr; }

    /* Steps */
    .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

    /* Why layout */
    .why-layout { grid-template-columns: 1fr; }

    /* SVP */
    .svp-layout { grid-template-columns: 1fr; gap: 32px; }
    .svp-title { font-size: 30px; }
    .svp-price-amt { font-size: 42px; }
}

/* ────────────────────────────────────────────────────────────
   RESPONSIVE — 414px (large iPhone, Pixel)
──────────────────────────────────────────────────────────── */
@media (max-width: 414px) {
    .container { padding: 0 14px; }
    .section-padded { padding: 56px 0; }
    .section-title { font-size: 24px; }
    .booking-title { font-size: 24px; }

    /* Hero */
    .hero-h1 { font-size: 27px; }
    .hero-sub { font-size: 13.5px; }
    .hero-contact-strip { flex-direction: column; }
    .hcs-divider { width: 100%; height: 1px; }

    /* Booking form */
    .form-card { padding: 18px 14px; }
    .bf-row { grid-template-columns: 1fr; gap: 0; }

    /* Pricing */
    .pricing-amount { font-size: 36px; }
    .pricing-card { padding: 22px 16px; }

    /* Conditions */
    .conditions-grid { grid-template-columns: 1fr; }
    .condition-item { padding: 16px 12px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; }

    /* Sticky bar */
    .d57-sticky-label { font-size: 13px; }
}

/* ────────────────────────────────────────────────────────────
   RESPONSIVE — 390px (iPhone 14/15 standard)
──────────────────────────────────────────────────────────── */
@media (max-width: 390px) {
    .hero-h1 { font-size: 26px; letter-spacing: -.03em; }
    .btn-hero-primary,
    .btn-hero-secondary { padding: 13px 18px; font-size: 13.5px; }
    .hero-trust { gap: 6px; }
    .hero-trust-item { font-size: 11px; padding: 5px 9px; }
    .d57-vc-name { font-size: 17px; }
    .d57-price-amt { font-size: 24px; }
    .bsb-contact-num { font-size: 15px; }
}

/* ────────────────────────────────────────────────────────────
   RESPONSIVE — 375px (iPhone SE, iPhone 12 mini)
──────────────────────────────────────────────────────────── */
@media (max-width: 375px) {
    .container { padding: 0 12px; }
    .hero-h1 { font-size: 24px; }
    .hero-sub { font-size: 13px; }
    .section-title { font-size: 22px; }
    .booking-title { font-size: 22px; }
    .nav-menu { gap: 20px; }
    .faq-question { font-size: 13px; }
    .d57-sticky-wa { font-size: 13px; padding: 12px 12px; }
    .d57-sticky-call { font-size: 12px; padding: 12px 10px; }
}

/* ────────────────────────────────────────────────────────────
   RESPONSIVE — 320px (iPhone SE 1st gen, very small Android)
──────────────────────────────────────────────────────────── */
@media (max-width: 320px) {
    .container { padding: 0 10px; }
    .hero-h1 { font-size: 22px; }
    .logo-text { font-size: 22px; }
    .lang-btn { padding: 6px 9px; font-size: 10px; }
    .section-title { font-size: 20px; }
    .booking-title { font-size: 20px; }
    .svp-title { font-size: 22px; }
    .svp-price-amt { font-size: 36px; }
    .d57-sticky-call { display: none; }
    .d57-sticky-wa { border-radius: 8px; }
}

/* ────────────────────────────────────────────────────────────
   STICKY BAR — Show only on mobile (≤768px)
──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .d57-sticky-bar { display: flex; }
    /* Add bottom padding to page so sticky bar doesn't cover content */
    body { padding-bottom: 70px; }
}

/* ────────────────────────────────────────────────────────────
   RTL — Sticky bar
──────────────────────────────────────────────────────────── */
body.rtl .d57-sticky-bar { flex-direction: row-reverse; }
body.rtl .d57-sticky-wa  { flex-direction: row-reverse; }

/* ═══════════════════════════════════════════════════════════════
   DRIVE57 v2.1 — CTA SYSTEM PATCH
   Green = WhatsApp/contact only. Gold = discovery/navigation only.
═══════════════════════════════════════════════════════════════ */

/* ── Hero WhatsApp CTA (green — primary conversion action) ── */
.btn-hero-wa {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 26px;
    background: var(--wa);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 6px 22px rgba(37,211,102,.35);
    white-space: nowrap;
    flex-shrink: 0;
}
.btn-hero-wa:hover {
    background: var(--wa-d);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37,211,102,.45);
    color: #fff;
}
.btn-hero-wa:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}
.btn-hero-wa-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
body.rtl .btn-hero-wa-text { text-align: right; }
.btn-hero-wa-main {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    display: block;
}
.btn-hero-wa-sub {
    font-size: 10.5px;
    font-weight: 400;
    opacity: .85;
    line-height: 1.2;
    display: block;
}
body.rtl .btn-hero-wa { flex-direction: row-reverse; }

/* WhatsApp SVG icon in buttons */
.btn-wa-svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: block;
}

/* Hero contact strip WA icon sizing */
.hcs-icon--wa svg {
    width: 20px;
    height: 20px;
    display: block;
}

/* ── Gold discovery CTA (btn-hero-primary stays gold — unchanged) ── */
/* Gold = navigate, discover, explore. Already defined at L499. */

/* ── Vehicles section WA CTA override ── */
.vehicles-cta .btn-hero-wa,
.about-section .btn-hero-wa {
    padding: 14px 24px;
}

/* ─── Responsive: hero WA btn full width on mobile ─── */
@media (max-width: 640px) {
    .btn-hero-wa {
        width: 100%;
        justify-content: center;
    }
    .btn-hero-wa-sub { display: none; } /* keep it clean on mobile */
}

/* ── SVG SAFETY — prevent unconstrained SVG expansion ── */
.btn-wa-svg,
.d57-wa-svg,
.hcs-icon--wa svg,
.btn-hero-wa svg,
.mob-wa-label + svg,
.d57-sticky-wa svg,
.svp-btn-wa svg,
.bsb-wa svg {
    max-width: 28px !important;
    max-height: 28px !important;
    flex-shrink: 0;
}
/* Explicit sizes per context */
.btn-wa-svg   { width: 22px; height: 22px; }
.d57-wa-svg   { width: 18px; height: 18px; }
.hcs-icon--wa svg { width: 20px; height: 20px; }
.svp-btn-wa svg   { width: 22px; height: 22px; }

/* Footer vehicle category label */
.footer-cat {
    font-size: 11px;
    color: var(--ac);
    font-weight: 500;
    opacity: .8;
}

/* ═══════════════════════════════════════════════════════════════
   PHASE B — Remaining Section Upgrades
═══════════════════════════════════════════════════════════════ */

/* ── Testimonials: duration badge + top row ── */
.testimonial-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.testimonial-duration {
    font-size: 10.5px;
    font-weight: 600;
    color: var(--ac);
    background: var(--ac-g);
    border: 1px solid rgba(var(--ac-rgb),.2);
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: .04em;
    white-space: nowrap;
}
.testimonial-text p {
    font-size: 13.5px;
    color: var(--tx2);
    line-height: 1.8;
    font-style: italic;
}

/* ── Reviews badge below testimonials ── */
.reviews-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    padding: 18px 28px;
    background: var(--bg-card);
    border: 1px solid var(--bdr);
    border-radius: 14px;
    flex-wrap: wrap;
}
.rb-stars { font-size: 18px; letter-spacing: 2px; }
.rb-text { display: flex; flex-direction: column; gap: 2px; }
.rb-score {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--tx1);
    line-height: 1;
}
.rb-label {
    font-size: 11px;
    color: var(--tx3);
    letter-spacing: .04em;
}
.rb-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--ac);
    color: var(--fg);
    font-size: 13px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: background .2s, transform .2s;
    white-space: nowrap;
    margin-left: auto;
}
.rb-cta:hover { background: var(--ac-d); transform: translateY(-1px); color: var(--fg); }
body.rtl .rb-cta { margin-left: 0; margin-right: auto; }

/* ── Pricing CTA button — redesigned ── */
.btn-pricing-wa {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 13px 18px;
    background: var(--bg-el);
    border: 1.5px solid var(--bdr);
    border-radius: 10px;
    color: var(--tx1);
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, border-color .2s, transform .2s;
    justify-content: center;
}
.btn-pricing-wa:hover {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
    transform: translateY(-2px);
}
.btn-pricing-wa--featured {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
    box-shadow: 0 5px 18px rgba(37,211,102,.35);
}
.btn-pricing-wa--featured:hover {
    background: #1aab55;
    border-color: #1aab55;
    box-shadow: 0 8px 24px rgba(37,211,102,.5);
}
.bpw-icon { font-size: 16px; flex-shrink: 0; }
.bpw-label { font-size: 13.5px; font-weight: 700; }

/* ── Pricing check icon ── */
.pf-check {
    color: var(--ac);
    font-weight: 800;
    font-size: 13px;
    flex-shrink: 0;
}

/* ── Contact agents divider label ── */
.contact-agents { margin-bottom: 0; }
.ca-label {
    font-size: 10.5px;
    font-weight: 600;
    color: var(--tx3);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--bdr-s);
}
.contact-meta { margin-top: 4px; }

/* ── Floating WA button upgrade ── */
.wa-float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--wa);
    color: #fff;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(37,211,102,.5);
    transition: transform .25s, box-shadow .25s, background .2s;
    animation: waPulse 3s ease-in-out infinite;
    position: relative;
}
.wa-float-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 7px 26px rgba(37,211,102,.65);
    background: var(--wa-d);
    animation: none;
}
@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 18px rgba(37,211,102,.5); }
    50%       { box-shadow: 0 4px 28px rgba(37,211,102,.75), 0 0 0 8px rgba(37,211,102,.1); }
}

/* ── Mobile: hero responsive tweaks ── */
@media (max-width: 480px) {
    .hero-h1 { font-size: 27px; letter-spacing: -.02em; }
    .btn-hero-primary, .btn-hero-secondary { border-radius: 10px; }
    .hero-contact-strip { flex-direction: column; border-radius: 10px; }
    .hcs-divider { width: 100%; height: 1px; }
    .hcs-item { justify-content: flex-start; padding: 12px 14px; }
}

/* ── Mobile: testimonials ── */
@media (max-width: 640px) {
    .reviews-badge {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 16px;
    }
    .rb-cta { margin-left: 0; margin-right: 0; width: 100%; justify-content: center; }
    .testimonial-card-top { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ── Mobile: pricing ── */
@media (max-width: 640px) {
    .btn-pricing-wa { padding: 14px; font-size: 14px; }
}

/* ── Tablet: trust bar ── */
@media (max-width: 768px) {
    .trust-grid { grid-template-columns: repeat(2,1fr); }
    .trust-item:nth-child(2) { border-right: none; }
    .trust-item:nth-child(3),
    .trust-item:nth-child(4) { border-top: 1px solid var(--bdr); }
    body.rtl .trust-item:nth-child(2) { border-left: none; }
}

/* ── Floating WA tooltip upgrade ── */
.wa-float { pointer-events: none; }
.wa-float-tooltip-wrap {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: flex-end;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity .25s ease, transform .25s ease;
    pointer-events: none;
}
body.rtl .wa-float-tooltip-wrap {
    align-items: flex-start;
    transform: translateX(-8px);
}
.wa-float:hover .wa-float-tooltip-wrap {
    opacity: 1;
    transform: translateX(0);
}
.wa-float-tooltip {
    background: var(--bg-s);
    border: 1px solid var(--bdr);
    color: var(--tx1);
    font-size: 12.5px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0,0,0,.25);
    /* reset: remove old transition/opacity since handled by parent */
    opacity: 1;
    transform: none;
}
.wa-float-reply {
    font-size: 11px;
    color: var(--tx3);
    padding: 4px 12px;
    background: var(--bg-el);
    border: 1px solid var(--bdr-s);
    border-radius: 20px;
    white-space: nowrap;
    text-align: center;
}

/* ── Final mobile squeeze ── */
@media (max-width: 380px) {
    .wa-float-tooltip-wrap { display: none; }
    .hero-eyebrow-wrap { flex-wrap: wrap; }
    .form-steps { gap: 4px; }
    .form-step-line { min-width: 8px; margin: 0 4px; }
}

/* ═══════════════════════════════════════════════════════════════
   GOOGLE REVIEWS SECTION
═══════════════════════════════════════════════════════════════ */

/* Reviews header with badge */
.reviews-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.reviews-header-left { flex: 1; min-width: 200px; }
.reviews-header-left .section-title { margin-bottom: 0; }

/* Google rating badge (header) */
.google-rating-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    background: var(--bg-card);
    border: 1px solid var(--bdr);
    border-radius: 14px;
    padding: 16px 20px;
    min-width: 160px;
    flex-shrink: 0;
}
.grb-logo {
    display: flex;
    align-items: center;
    gap: 6px;
}
.grb-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--tx3);
    letter-spacing: .04em;
}
.grb-score {
    display: flex;
    align-items: center;
    gap: 8px;
}
.grb-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--tx1);
    line-height: 1;
}
.grb-stars { font-size: 13px; letter-spacing: 1px; }
.grb-count {
    font-size: 11px;
    color: var(--tx3);
    text-align: right;
}

/* Google icon on review card */
.testimonial-google-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,.08);
    flex-shrink: 0;
}

/* Reviews footer */
.reviews-footer {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}
.reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 18px 28px;
    background: var(--bg-card);
    border: 1px solid var(--bdr);
    border-radius: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Leave review CTA */
.rb-cta--leave {
    background: transparent;
    color: var(--ac);
    border: 1.5px solid var(--ac);
    transition: background .2s, color .2s, transform .2s;
    margin-left: 0;
}
.rb-cta--leave:hover {
    background: var(--ac);
    color: var(--fg);
    transform: translateY(-1px);
}
body.rtl .rb-cta--leave { margin-right: 0; }

/* ═══════════════════════════════════════════════════════════════
   CONDITIONS CTA
═══════════════════════════════════════════════════════════════ */
.conditions-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 36px;
    padding: 22px 28px;
    background: var(--bg-el);
    border: 1px solid var(--bdr);
    border-left: 3px solid var(--ac);
    border-radius: var(--r);
    flex-wrap: wrap;
}
body.rtl .conditions-cta {
    border-left: 1px solid var(--bdr);
    border-right: 3px solid var(--ac);
    flex-direction: row-reverse;
}
.conditions-cta-text {
    font-size: 14px;
    color: var(--tx2);
    line-height: 1.55;
    flex: 1;
    min-width: 200px;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Reviews
═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .google-rating-badge {
        align-items: flex-start;
        width: 100%;
    }
    .grb-count { text-align: left; }
}

@media (max-width: 640px) {
    .conditions-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px;
        gap: 14px;
    }
    .conditions-cta .btn-outline { width: 100%; text-align: center; justify-content: center; }
    .reviews-badge { padding: 14px 16px; gap: 12px; }
    .rb-cta--leave { width: 100%; justify-content: center; margin-left: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   RTL — Reviews
═══════════════════════════════════════════════════════════════ */
body.rtl .reviews-header        { flex-direction: row-reverse; }
body.rtl .google-rating-badge   { align-items: flex-start; }
body.rtl .grb-count             { text-align: left; }
body.rtl .reviews-badge         { flex-direction: row-reverse; }
body.rtl .testimonial-card-top  { flex-direction: row-reverse; }
body.rtl .testimonial-author    { flex-direction: row-reverse; }

/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS — Steps redesign
═══════════════════════════════════════════════════════════════ */
.how-section { background: var(--bg-s); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

/* Step card */
.step {
    position: relative;
    padding: 32px 28px 28px;
    background: var(--bg-card);
    border: 1px solid var(--bdr);
    border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.step:first-child { border-radius: 14px 0 0 14px; }
.step:last-child  { border-radius: 0 14px 14px 0; }
.step + .step { border-left: none; }
body.rtl .step:first-child { border-radius: 0 14px 14px 0; }
body.rtl .step:last-child  { border-radius: 14px 0 0 14px; }
body.rtl .step + .step     { border-left: 1px solid var(--bdr); border-right: none; }

/* Step circle — icon + number */
.step-circle {
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--bg-el);
    border: 2px solid var(--bdr);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    flex-shrink: 0;
    transition: border-color .3s, background .3s;
}
.step:hover .step-circle {
    border-color: var(--ac);
    background: var(--ac-g);
}
.step-icon { font-size: 22px; line-height: 1; }
.step-num {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--ac);
    color: var(--fg);
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-card);
    font-family: 'DM Sans', sans-serif;
}
body.rtl .step-num { right: auto; left: -6px; }

/* Connector line between steps */
.step-connector {
    position: absolute;
    top: 59px;
    right: -1px;
    width: 2px;
    height: 20px;
    background: var(--bdr);
    z-index: 2;
    display: none; /* hidden on desktop — border handles it */
}

.step-title {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--tx1);
    line-height: 1.3;
    font-family: 'DM Sans', sans-serif;
}
.step-desc {
    font-size: 12.5px;
    color: var(--tx3);
    line-height: 1.7;
}
.step-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    padding: 8px 14px;
    background: #25D366;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    width: fit-content;
    transition: background .2s, transform .2s;
}
.step-cta:hover { background: #1aab55; transform: translateY(-2px); color: #fff; }

/* Step 2 highlight (the WhatsApp step) */
.step:nth-child(2) {
    background: rgba(37,211,102,.04);
    border-color: rgba(37,211,102,.22);
}
.step:nth-child(2) .step-circle {
    border-color: rgba(37,211,102,.5);
    background: rgba(37,211,102,.08);
}
.step:nth-child(2) + .step { border-left-color: rgba(37,211,102,.22); }

/* HOW bottom CTA */
.how-cta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--bdr);
    flex-wrap: wrap;
}
.btn-how-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    background: #25D366;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 4px 16px rgba(37,211,102,.3);
    white-space: nowrap;
}
.btn-how-wa:hover {
    background: #1aab55;
    transform: translateY(-2px);
    box-shadow: 0 7px 22px rgba(37,211,102,.45);
    color: #fff;
}
.how-cta-note {
    font-size: 12.5px;
    color: var(--tx3);
    font-style: italic;
}

/* Steps responsive */
@media (max-width: 1024px) {
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .step:first-child  { border-radius: 14px 0 0 0; }
    .step:nth-child(2) { border-radius: 0 14px 0 0; }
    .step:nth-child(3) { border-radius: 0 0 0 14px; border-top: none; }
    .step:last-child   { border-radius: 0 0 14px 0; border-top: none; }
    .step:nth-child(2) + .step { border-left: 1px solid var(--bdr); }
    .step:nth-child(3) + .step { border-left: none; }
}
@media (max-width: 640px) {
    .steps-grid { grid-template-columns: 1fr; }
    .step { border-radius: 0 !important; border-left: 1px solid var(--bdr) !important; }
    .step:first-child { border-radius: 14px 14px 0 0 !important; }
    .step:last-child  { border-radius: 0 0 14px 14px !important; }
    .step + .step { border-top: none; }
    .step-connector { display: block; }
    .how-cta-row { flex-direction: column; align-items: stretch; }
    .btn-how-wa { text-align: center; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT — Redesign with stats
═══════════════════════════════════════════════════════════════ */
.about-section {
    background: var(--bg);
    border-top: 1px solid var(--bdr);
}
.about-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
body.rtl .about-inner { text-align: right; }

.about-text {
    font-size: 15px;
    color: var(--tx2);
    line-height: 1.85;
    margin: 18px 0 36px;
    font-weight: 300;
}

/* Stats row */
.about-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: var(--bg-card);
    border: 1px solid var(--bdr);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 36px;
}
.about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 22px 32px;
    flex: 1;
}
.about-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--bdr);
    flex-shrink: 0;
}
.as-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--ac);
    line-height: 1;
    white-space: nowrap;
}
.as-label {
    font-size: 11.5px;
    color: var(--tx3);
    letter-spacing: .04em;
    text-align: center;
}

/* About CTAs */
.about-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.btn-about-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: #25D366;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.btn-about-wa:hover {
    background: #1aab55;
    transform: translateY(-2px);
    box-shadow: 0 7px 22px rgba(37,211,102,.45);
    color: #fff;
}
.btn-about-fleet {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 13px 22px;
    background: transparent;
    color: var(--tx2);
    font-size: 13.5px;
    font-weight: 500;
    border-radius: 10px;
    border: 1.5px solid var(--bdr);
    text-decoration: none;
    transition: border-color .2s, color .2s, transform .2s;
}
.btn-about-fleet:hover {
    border-color: var(--ac);
    color: var(--ac);
    transform: translateY(-2px);
}

/* About responsive */
@media (max-width: 640px) {
    .about-stats { flex-direction: column; }
    .about-stat { width: 100%; border-bottom: 1px solid var(--bdr); padding: 18px; }
    .about-stat:last-child { border-bottom: none; }
    .about-stat-divider { display: none; }
    .about-ctas { flex-direction: column; }
    .btn-about-wa,
    .btn-about-fleet { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════
   RTL — New components from redesign
═══════════════════════════════════════════════════════════════ */
body.rtl .steps-grid           { direction: rtl; }
body.rtl .how-cta-row          { flex-direction: row-reverse; }
body.rtl .about-stats          { direction: rtl; }
body.rtl .about-ctas           { flex-direction: row-reverse; }
body.rtl .step-cta             { flex-direction: row-reverse; }
body.rtl .btn-how-wa           { flex-direction: row-reverse; }
body.rtl .btn-about-wa         { flex-direction: row-reverse; }
body.rtl .bsb-contacts         { direction: rtl; }
body.rtl .bsb-contact-line     { flex-direction: row-reverse; text-align: right; }
body.rtl .booking-intro        { text-align: right; }
body.rtl .contact-agents       { direction: rtl; }
body.rtl .ca-label             { text-align: right; }
body.rtl .contact-meta         { direction: rtl; }
body.rtl .d57-btn-text         { text-align: right; }
body.rtl .hero-contact-strip   { flex-direction: row-reverse; }
body.rtl .hcs-item             { flex-direction: row-reverse; }
body.rtl .btn-hero-secondary   { flex-direction: row-reverse; }
body.rtl .rb-cta               { margin-left: 0; margin-right: auto; }
body.rtl .reviews-badge        { flex-direction: row-reverse; }
body.rtl .how-cta-note         { text-align: right; }

/* ═══════════════════════════════════════════════════════════════
   CONDITIONS — visual upgrade
═══════════════════════════════════════════════════════════════ */
.condition-item {
    background: var(--bg-card);
    border: 1px solid var(--bdr);
    border-radius: 12px;
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: border-color .25s, transform .25s;
}
.condition-item:hover {
    border-color: rgba(var(--ac-rgb), .35);
    transform: translateY(-3px);
}
.condition-icon {
    font-size: 26px;
    margin-bottom: 4px;
    line-height: 1;
}
.condition-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--tx1);
    display: block;
}
.condition-desc {
    font-size: 12px;
    color: var(--tx3);
    line-height: 1.6;
    display: block;
}

/* ═══════════════════════════════════════════════════════════════
   FAQ — Upgraded
═══════════════════════════════════════════════════════════════ */
.faq-item {
    border-bottom: 1px solid var(--bdr-s);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--tx1);
    text-align: left;
    transition: color .2s;
}
.faq-question:hover { color: var(--ac); }
.faq-icon {
    font-size: 16px;
    color: var(--ac);
    flex-shrink: 0;
    transition: transform .3s ease;
    line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-answer {
    overflow: hidden;
    transition: height .3s ease;
}
.faq-answer-inner {
    padding-bottom: 18px;
    font-size: 13.5px;
    color: var(--tx3);
    line-height: 1.8;
}
body.rtl .faq-question { text-align: right; flex-direction: row-reverse; }

/* ═══════════════════════════════════════════════════════════════
   GLOBAL — Scroll reveal animation
═══════════════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
/* Staggered reveals within grids */
.steps-grid .step:nth-child(1) { transition-delay: .05s; }
.steps-grid .step:nth-child(2) { transition-delay: .12s; }
.steps-grid .step:nth-child(3) { transition-delay: .19s; }
.steps-grid .step:nth-child(4) { transition-delay: .26s; }
.d57-vehicles-grid .d57-vc:nth-child(1) { transition-delay: .04s; }
.d57-vehicles-grid .d57-vc:nth-child(2) { transition-delay: .10s; }
.d57-vehicles-grid .d57-vc:nth-child(3) { transition-delay: .16s; }
.d57-vehicles-grid .d57-vc:nth-child(4) { transition-delay: .04s; }
.d57-vehicles-grid .d57-vc:nth-child(5) { transition-delay: .10s; }
.testimonials-grid .testimonial-card:nth-child(1) { transition-delay: .06s; }
.testimonials-grid .testimonial-card:nth-child(2) { transition-delay: .14s; }
.testimonials-grid .testimonial-card:nth-child(3) { transition-delay: .22s; }

/* ═══════════════════════════════════════════════════════════════
   FOCUSED FIELD STATE
═══════════════════════════════════════════════════════════════ */
.bf-group.is-focused label,
.form-group.is-focused label {
    color: var(--ac);
}
.bf-group.is-focused .bf-phone-wrap,
.form-group.is-focused input,
.form-group.is-focused select {
    border-color: var(--ac);
}

/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS — RTL step borders
═══════════════════════════════════════════════════════════════ */
@media (min-width: 1025px) {
    body.rtl .step + .step {
        border-right: none;
        border-left: 1px solid var(--bdr);
    }
    body.rtl .step:nth-child(2) + .step {
        border-left-color: rgba(37,211,102,.22);
    }
}

/* ═══════════════════════════════════════════════════════════════
   MISSING UTILITY: pricing-check pf-check
═══════════════════════════════════════════════════════════════ */
.pricing-features .pf-check {
    color: var(--ac);
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER mobile
═══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-about { max-width: 100%; }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .footer-legal-list { justify-content: center; }
    body.rtl .footer-bottom { flex-direction: column; }
}
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ── Form step: done state ── */
.form-step.done .fs-num {
    background: rgba(76,175,80,.15);
    border-color: rgba(76,175,80,.4);
    color: #4CAF50;
}
.form-step.done .fs-num::after {
    content: '✓';
    position: absolute;
    font-size: 11px;
    font-weight: 800;
}
.form-step.done .fs-num { color: transparent; position: relative; }
.form-step.active.done .fs-num { color: transparent; }

/* ════════════════════════════════════════════════════════════════


/* ═══════════════════════════════════════════════════════════════
   DRIVE57 ADDITIONS — Phase 1 + Themes + Components
   Written once, clean. No duplicates.
═══════════════════════════════════════════════════════════════ */

/* ── Hero new elements ── */
.hero-overlay { position:absolute;inset:0;background:linear-gradient(135deg,rgba(14,13,11,.96) 0%,rgba(14,13,11,.82) 55%,rgba(14,13,11,.5) 100%);z-index:0; }
.hero-eyebrow  { font-size:11px;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:var(--ac);margin-bottom:16px;display:block; }
.hero-phones   { display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin-top:16px; }
.hero-phone-item { display:flex;align-items:center;gap:7px;text-decoration:none; }
.hero-phone-name { font-size:11px;font-weight:600;color:var(--tx3);text-transform:uppercase;letter-spacing:.06em; }
.hero-phone-num  { font-size:14px;font-weight:600;color:var(--tx1); }
.hero-phones-sep { color:var(--tx3); }
.hti-check { color:#25D366;font-weight:800; }
.hero-cta-main {
    display:inline-flex;align-items:center;gap:14px;
    padding:17px 28px;background:#25D366;color:#fff;
    border-radius:14px;font-size:15px;font-weight:700;
    text-decoration:none;width:100%;max-width:420px;
    box-shadow:0 6px 28px rgba(37,211,102,.4);
    transition:background .2s,transform .2s;margin-bottom:20px;
}
.hero-cta-main:hover { background:#1aab55;transform:translateY(-2px);color:#fff; }
.hero-cta-icon { flex-shrink:0;width:24px;height:24px; }
.hero-cta-text { display:flex;flex-direction:column;gap:2px; }
.hero-cta-main-label { font-size:15px;font-weight:700;line-height:1.2;display:block; }
.hero-cta-sub        { font-size:11px;opacity:.85;display:block; }
@media (max-width:640px) {
    .hero-cta-main { max-width:100%;padding:15px 20px; }
    .hero-phones   { gap:8px; }
    .hero-phone-num { font-size:13px; }
}

/* ── HOW section — clean definitive version ── */
.steps-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:0;
    border:1px solid var(--bdr);
    border-radius:14px;
    overflow:visible;
}
.step {
    padding:32px 24px;
    background:var(--bg-card);
    border-right:1px solid var(--bdr);
    position:relative;
}
.step:first-child { border-radius:13px 0 0 13px; }
.step:last-child  { border-right:none;border-radius:0 13px 13px 0; }
.step-connector { display:none; }
.step-circle {
    width:56px;height:56px;border-radius:50%;
    background:var(--ac-g);border:2px solid rgba(var(--ac-rgb),.3);
    display:flex;align-items:center;justify-content:center;
    margin-bottom:18px;font-size:22px;line-height:1;
}
.step-icon { font-family:"Apple Color Emoji","Segoe UI Emoji","Noto Color Emoji",sans-serif; }
.step-num  { display:none; }
.step-title { font-size:15px;font-weight:700;color:var(--tx1);margin-bottom:8px; }
.step-desc  { font-size:13px;color:var(--tx2);line-height:1.65; }
.step-cta {
    display:inline-flex;align-items:center;gap:7px;
    margin-top:14px;padding:10px 18px;
    background:var(--wa);color:#fff;border-radius:8px;
    font-size:13px;font-weight:600;text-decoration:none;
}
.step-cta:hover { background:var(--wa-d);color:#fff; }
.how-cta-row {
    display:flex;align-items:center;justify-content:center;
    gap:20px;margin-top:40px;flex-wrap:wrap;text-align:center;
}
.btn-how-wa {
    display:inline-flex;align-items:center;gap:10px;
    padding:16px 32px;background:var(--wa);color:#fff;
    border-radius:12px;font-size:15px;font-weight:700;
    text-decoration:none;box-shadow:0 4px 20px rgba(37,211,102,.35);
    transition:background .2s,transform .2s;
}
.btn-how-wa:hover { background:var(--wa-d);color:#fff;transform:translateY(-2px); }
.how-cta-note { font-size:13px;color:var(--tx3); }
body.rtl .steps-grid { direction:rtl; }
body.rtl .step { border-right:none;border-left:1px solid var(--bdr); }
body.rtl .step:last-child { border-left:none; }
@media (max-width:900px) {
    .steps-grid { grid-template-columns:1fr 1fr; }
    .step:nth-child(2) { border-right:none; }
    .step:nth-child(1),.step:nth-child(2) { border-bottom:1px solid var(--bdr); }
    .step:first-child { border-radius:13px 0 0 0; }
    .step:nth-child(2) { border-radius:0 13px 0 0; }
    .step:nth-child(3) { border-radius:0 0 0 13px; }
    .step:last-child   { border-radius:0 0 13px 0; }
}
@media (max-width:520px) {
    .steps-grid { grid-template-columns:1fr; }
    .step { border-right:none;border-bottom:1px solid var(--bdr);padding:22px 18px; }
    .step:first-child  { border-radius:13px 13px 0 0; }
    .step:last-child   { border-bottom:none;border-radius:0 0 13px 13px; }
    .step:nth-child(2) { border-radius:0; }
    .step:nth-child(3) { border-radius:0; }
    .how-cta-row { flex-direction:column; }
    .btn-how-wa { width:100%;justify-content:center; }
}

/* ── Light theme steps ── */
body.theme-light .step { background:#fff;border-color:var(--bdr); }
body.theme-light .steps-grid { border-color:var(--bdr);box-shadow:0 2px 16px rgba(0,0,0,.06); }
body.theme-light .step-title { color:var(--tx1); }
body.theme-light .step-desc  { color:var(--tx2); }
body.theme-light .step-circle { background:var(--bg-s);border-color:var(--bdr); }

/* ── Booking form ── */
.booking-section { background:var(--bg-s);padding:72px 0;border-top:1px solid var(--bdr); }
.booking-title { font-family:'Playfair Display',Georgia,serif;font-size:clamp(24px,3.5vw,38px);font-weight:800;color:var(--tx1);line-height:1.15;letter-spacing:-.02em;margin-bottom:36px; }
.booking-layout { display:grid;grid-template-columns:1.1fr .9fr;gap:48px;align-items:start; }
.bf-group { margin-bottom:18px; }
.bf-group label { display:block;font-size:12px;font-weight:600;color:var(--tx2);margin-bottom:6px; }
.bf-group input,.bf-group select {
    width:100%;background:var(--bg-el);border:1.5px solid var(--bdr);
    color:var(--tx1);font-size:15px;padding:13px 15px;
    border-radius:10px;outline:none;min-height:50px;
    transition:border-color .2s,box-shadow .2s;appearance:none;
}
.bf-group input:focus,.bf-group select:focus { border-color:var(--ac);box-shadow:0 0 0 3px var(--ac-g); }
.bf-phone-wrap { display:flex;align-items:stretch;border:1.5px solid var(--bdr);border-radius:10px;overflow:hidden;background:var(--bg-el); }
.bf-phone-wrap:focus-within { border-color:var(--ac);box-shadow:0 0 0 3px var(--ac-g); }
.bf-phone-prefix { padding:0 14px;background:var(--bg-card);color:var(--tx3);font-size:14px;font-weight:600;border-right:1.5px solid var(--bdr);display:flex;align-items:center;min-height:50px;flex-shrink:0; }
.bf-phone-wrap input { border:none;border-radius:0;box-shadow:none;flex:1;min-height:50px; }
.bf-phone-wrap input:focus { border:none;box-shadow:none; }
.bf-hint { display:block;font-size:11px;color:var(--tx3);margin-top:5px; }
.bf-submit {
    width:100%;display:flex;align-items:center;justify-content:center;gap:12px;
    padding:17px 24px;background:#25D366;color:#fff;border:none;
    border-radius:12px;cursor:pointer;font-size:15px;font-weight:700;
    min-height:58px;box-shadow:0 6px 22px rgba(37,211,102,.4);
    transition:background .2s,transform .2s;font-family:inherit;margin-bottom:12px;
}
.bf-submit:hover { background:#1aab55;transform:translateY(-2px); }
.bfs-icon { font-size:22px;flex-shrink:0; }
.bfs-body { display:flex;flex-direction:column;gap:2px;text-align:left; }
.bfs-main { font-size:15px;font-weight:700; }
.bfs-sub  { font-size:11px;opacity:.85; }
.bf-legal { text-align:center;font-size:11.5px;color:var(--tx3);line-height:1.6;margin-top:8px; }
.bf-error { background:rgba(239,68,68,.1);border:1px solid rgba(239,68,68,.3);color:#ef4444;padding:10px 14px;border-radius:8px;font-size:13px;margin-bottom:14px; }
.bf-row { display:grid;grid-template-columns:1fr 1fr;gap:14px; }
body.rtl .bfs-body { text-align:right; }
body.rtl .bf-phone-prefix { border-right:none;border-left:1.5px solid var(--bdr); }
@media (max-width:768px) {
    .booking-layout { grid-template-columns:1fr;gap:32px; }
    .booking-form-col { order:1; }
    .booking-sidebar  { order:2; }
}
@media (max-width:480px) {
    .bf-group input,.bf-group select { font-size:16px; }
    .bf-row { grid-template-columns:1fr; }
    .booking-section { padding:48px 0; }
}
body.theme-light .booking-section { background:var(--bg-s); }
body.theme-light .bf-group input,.body.theme-light .bf-group select { background:var(--bg-card);border-color:var(--bdr);color:var(--tx1); }
body.theme-light .bf-phone-prefix { background:var(--bg-s);border-color:var(--bdr); }

/* ── Floating WhatsApp ── */
.wa-float {
    position:fixed;right:16px;z-index:9999;
    bottom:calc(20px + env(safe-area-inset-bottom,0px));
    display:flex;align-items:center;gap:10px;pointer-events:none;
}
body.rtl .wa-float { right:auto;left:16px;flex-direction:row-reverse; }
.wa-float > * { pointer-events:auto; }
.wa-float-btn {
    width:58px;height:58px;min-width:58px;border-radius:50%;
    background:#25D366;display:flex;align-items:center;justify-content:center;
    box-shadow:0 4px 20px rgba(37,211,102,.5);text-decoration:none;
    animation:waPulse 2.5s ease-in-out infinite;flex-shrink:0;
    transition:transform .25s,box-shadow .25s;
}
.wa-float-btn:hover { transform:scale(1.1);box-shadow:0 8px 30px rgba(37,211,102,.65);animation:none; }
.wa-float-tooltip-wrap { display:none; }
.rc-arrow,.rc-arrow--prev,.rc-arrow--next { display:none !important; }
@keyframes waPulse {
    0%,100% { box-shadow:0 4px 20px rgba(37,211,102,.5); }
    50%      { box-shadow:0 4px 28px rgba(37,211,102,.75),0 0 0 8px rgba(37,211,102,.12); }
}
@media (max-width:768px) {
    .wa-float { right:14px;bottom:calc(24px + env(safe-area-inset-bottom,0px)); }
    .wa-float-btn { width:60px;height:60px; }
}

/* ── Carousel ── */
.reviews-carousel { position:relative;overflow:hidden;padding:0 0 44px; }
.rc-track { display:flex;gap:20px;transition:transform .4s cubic-bezier(.25,.46,.45,.94);cursor:grab;user-select:none; }
.rc-track:active { cursor:grabbing; }
.rc-track .testimonial-card { flex:0 0 calc(33.333% - 14px);min-width:0; }
.rc-dots { position:absolute;bottom:12px;left:50%;transform:translateX(-50%);display:flex;gap:7px; }
.rc-dot { width:7px;height:7px;border-radius:50%;background:var(--bdr);cursor:pointer;transition:background .25s,transform .25s; }
.rc-dot.active { background:var(--ac);transform:scale(1.3); }
@media (max-width:1024px) { .rc-track .testimonial-card { flex:0 0 calc(50% - 10px); } }
@media (max-width:640px)  { .rc-track .testimonial-card { flex:0 0 100%; } }

/* ── LIGHT THEMES — global overrides ── */
body.theme-light { background:var(--bg);color:var(--tx1); }
body.theme-light #site-header { background:rgba(255,255,255,.97);border-bottom-color:var(--bdr);box-shadow:0 1px 12px rgba(0,0,0,.08); }
body.theme-light .logo-text { color:var(--tx1); }
body.theme-light .logo-text em { color:var(--ac); }
body.theme-light .nav-menu li a { color:var(--tx2); }
body.theme-light .hamburger span { background:var(--tx1); }
body.theme-light .lang-btn { color:var(--tx2); }
body.theme-light .hero-bg::after { background:linear-gradient(110deg,rgba(0,0,0,.82) 0%,rgba(0,0,0,.6) 55%,rgba(0,0,0,.3) 100%); }
body.theme-light .hero-h1,.body.theme-light .hero-sub { color:#fff; }
body.theme-light .hero-overlay { background:linear-gradient(135deg,rgba(0,0,0,.82) 0%,rgba(0,0,0,.6) 55%,rgba(0,0,0,.28) 100%); }
body.theme-light .trust-bar    { background:var(--bg-s);border-color:var(--bdr); }
body.theme-light .section-title { color:var(--tx1); }
body.theme-light .why-section,.body.theme-light .how-section { background:var(--bg); }
body.theme-light .d57-vc        { background:var(--bg-card);border-color:var(--bdr);box-shadow:0 2px 10px rgba(0,0,0,.05); }
body.theme-light .pricing-card  { background:var(--bg-card);border-color:var(--bdr); }
body.theme-light .condition-item { background:var(--bg-card);border-color:var(--bdr); }
body.theme-light .condition-title { color:var(--tx1); }
body.theme-light .condition-desc  { color:var(--tx3); }
body.theme-light .testimonial-card { background:var(--bg-card);border-color:var(--bdr); }
body.theme-light .faq-item      { border-color:var(--bdr); }
body.theme-light .faq-question  { color:var(--tx1); }
body.theme-light .mobile-nav    { background:var(--bg-card);border-color:var(--bdr); }
body.theme-light .mobile-nav-menu li a { color:var(--tx2); }
body.theme-light .pricing-section { background:var(--bg-s); }
body.theme-light .testimonials-section { background:var(--bg-s); }
body.theme-light .faq-section   { background:var(--bg); }

/* ── Footer ft-* ── */
#site-footer { background:var(--bg);border-top:1px solid var(--bdr);padding:56px 0 0; }
.ft-main { display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:48px;padding-bottom:48px; }
.ft-logo-text { font-family:'Playfair Display',Georgia,serif;font-size:24px;font-weight:800;color:var(--tx1);display:block;margin-bottom:10px;letter-spacing:-.02em; }
.ft-logo-text em { color:var(--ac);font-style:normal; }
.ft-tagline  { font-size:10px;font-weight:700;letter-spacing:.18em;text-transform:uppercase;color:var(--tx3);margin-bottom:12px; }
.ft-about    { font-size:12.5px;color:var(--tx3);line-height:1.7;max-width:220px;margin-bottom:14px; }
.ft-badge    { display:inline-flex;align-items:center;gap:7px;background:var(--bg-el);border:1px solid var(--bdr);border-radius:20px;padding:5px 12px;font-size:11px; }
.ft-badge-text { color:var(--tx2); }
.ft-col-title { font-size:10px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:var(--tx1);margin-bottom:16px;padding-bottom:8px;border-bottom:1px solid var(--bdr); }
.ft-links { list-style:none;padding:0;margin:0; }
.ft-links li { margin-bottom:8px; }
.ft-links li a { font-size:12.5px;color:var(--tx3);text-decoration:none;transition:color .18s;display:block; }
.ft-links li a:hover { color:var(--ac); }
.ft-contacts { display:flex;flex-direction:column;gap:9px; }
.ft-contact { display:flex;align-items:center;gap:9px;font-size:12.5px;color:var(--tx3);text-decoration:none;transition:color .18s;line-height:1.4; }
.ft-contact:hover { color:var(--ac); }
.ft-contact svg { flex-shrink:0;opacity:.6; }
.ft-contact--info { cursor:default; }
.ft-contact--info:hover { color:var(--tx3); }
.ft-wa { color:var(--wa) !important; }
.ft-wa svg { opacity:1; }
.ft-wa:hover { color:var(--wa-d) !important; }
.ft-bottom { border-top:1px solid var(--bdr);padding:18px 0;display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap; }
.ft-copy  { font-size:11.5px;color:var(--tx3); }
.ft-legal { list-style:none;padding:0;margin:0;display:flex;gap:20px; }
.ft-legal li a { font-size:11.5px;color:var(--tx3);text-decoration:none;transition:color .18s; }
.ft-legal li a:hover { color:var(--ac); }
body.rtl .ft-main    { direction:rtl; }
body.rtl .ft-contact { flex-direction:row-reverse; }
body.rtl .ft-about   { max-width:100%; }
body.rtl .ft-col-title { text-align:right; }
body.rtl .ft-links li a { text-align:right; }
body.rtl .ft-bottom  { flex-direction:row-reverse; }
body.rtl .ft-legal   { flex-direction:row-reverse; }
body.theme-light #site-footer  { background:var(--bg-el);border-color:var(--bdr); }
body.theme-light .ft-logo-text { color:var(--tx1); }
body.theme-light .ft-col-title { color:var(--tx1);border-color:var(--bdr); }
body.theme-light .ft-links li a,.body.theme-light .ft-contact,.body.theme-light .ft-copy,.body.theme-light .ft-legal li a { color:var(--tx3); }
body.theme-light .ft-bottom    { border-color:var(--bdr); }
body.theme-light .ft-badge     { background:var(--bg-card); }
@media (max-width:1024px) { .ft-main { grid-template-columns:1fr 1fr;gap:32px 40px; } }
@media (max-width:640px) {
    #site-footer { padding:40px 0 0; }
    .ft-main { grid-template-columns:1fr;gap:24px;padding-bottom:28px; }
    .ft-about { max-width:100%; }
    .ft-bottom { flex-direction:column;text-align:center;gap:8px; }
    .ft-legal { justify-content:center; }
}

/* ── Section padded responsive ── */
@media (max-width:768px) { .section-padded { padding:52px 0; } }
@media (max-width:480px) { .section-padded { padding:36px 0; } }
