@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
  --background: #f8fafc;
  --foreground: #0f172a;
  --primary: #0f172a;
  --primary-light: #1e293b;
  --accent: #c9a84c;
  --accent-hover: #a8872a;
  --whatsapp: #25d366;
  --whatsapp-hover: #1da851;
  --muted: #64748b;
  --border: #e2e8f0;
  --card: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  padding-bottom: 4.5rem;
}

@media (min-width: 768px) { body { padding-bottom: 0; } }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section { padding: 3rem 0; }
@media (min-width: 768px) { .section { padding: 4rem 0; } }
@media (min-width: 1024px) { .section { padding: 5rem 0; } }

.bg-white { background: #fff; }
.bg-slate { background: #f8fafc; }
.bg-dark { background: var(--primary); color: #fff; }

.h1 { font-size: 1.875rem; font-weight: 700; line-height: 1.2; }
.h2 { font-size: 1.5rem; font-weight: 700; line-height: 1.25; }
.h3 { font-size: 1.25rem; font-weight: 600; }
@media (min-width: 640px) { .h1 { font-size: 2.25rem; } .h2 { font-size: 1.875rem; } }
@media (min-width: 1024px) { .h1 { font-size: 3rem; } }

.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.text-accent { color: var(--accent); }
.text-white-80 { color: rgba(255,255,255,.8); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem 1.25rem; border-radius: .5rem; font-size: .875rem; font-weight: 600;
  border: none; cursor: pointer; transition: background .2s;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: var(--whatsapp-hover); }
.btn-outline {
  background: transparent; border: 2px solid var(--primary); color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-outline-white {
  background: rgba(0,0,0,.3); border: 2px solid #fff; color: #fff; backdrop-filter: blur(4px);
}
.btn-outline-white:hover { background: #fff; color: #000; }

.grid-2 { display: grid; gap: 1rem; }
.grid-3 { display: grid; gap: 1rem; }
.grid-4 { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4,1fr); }
  .grid-fleet { grid-template-columns: repeat(3,1fr); }
}
@media (min-width: 1280px) { .grid-fleet { grid-template-columns: repeat(4,1fr); } }

/* Header */
.header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.95);
  border-bottom: 1px solid var(--border); backdrop-filter: blur(8px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 4rem;
}
.logo {
  display: flex; align-items: center; gap: .625rem; flex-shrink: 0;
}
.logo img { height: 2.5rem; width: auto; }
.logo-text {
  font-size: 1.0625rem; font-weight: 700; color: var(--primary); line-height: 1.2; white-space: nowrap;
}
@media (max-width: 480px) {
  .logo-text { font-size: .9375rem; }
}
.nav { display: none; gap: 1.5rem; align-items: center; }
.nav a { font-size: .875rem; font-weight: 500; color: rgba(15,23,42,.8); }
.nav a:hover { color: var(--accent); }
.header-actions { display: none; gap: .75rem; align-items: center; }
.header-mobile-actions { display: flex; align-items: center; gap: .5rem; }
.header-phone { display: flex; align-items: center; gap: .25rem; font-size: .875rem; font-weight: 600; color: var(--accent); }
.menu-btn { display: flex; padding: .5rem; background: none; border: none; cursor: pointer; }
.lang-switch {
  display: inline-flex; border: 1px solid var(--border); border-radius: 9999px; overflow: hidden; background: #fff;
}
.lang-btn {
  border: none; background: transparent; color: var(--muted); font-size: .75rem; font-weight: 700;
  padding: .35rem .65rem; cursor: pointer; line-height: 1;
}
.lang-btn.active { background: var(--primary); color: #fff; }
.lang-btn:hover:not(.active) { background: #f8fafc; }
@media (min-width: 768px) {
  .nav, .header-actions { display: flex; }
  .header-mobile-actions { display: none; }
  .menu-btn { display: none; }
}
.mobile-nav {
  display: none; border-top: 1px solid var(--border); padding: 1rem 0;
}
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: .625rem 0; font-weight: 500; }

/* Hero */
.hero-home {
  background: #000; color: #fff; min-height: min(100svh, 820px);
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 2.5rem 1rem;
}
.hero-home .logo-hero { width: 11rem; margin: 0 auto 2rem; }
@media (min-width: 768px) { .hero-home .logo-hero { width: 13rem; } }
.hero-home .tag { font-size: .875rem; font-weight: 500; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); margin-bottom: 1rem; }
.hero-home .lead { color: rgba(255,255,255,.9); max-width: 48rem; margin: 0 auto 2rem; }
.hero-btns { display: flex; flex-direction: column; gap: .75rem; align-items: center; }
@media (min-width: 640px) { .hero-btns { flex-direction: row; justify-content: center; } }
.page-hero { background: var(--primary); color: #fff; padding: 3rem 0; text-align: center; }
@media (min-width: 768px) { .page-hero { padding: 4rem 0; } }

/* Cards */
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: .75rem;
  overflow: hidden; box-shadow: 0 1px 2px rgba(0,0,0,.05); transition: box-shadow .2s, border-color .2s;
}
.card:hover { box-shadow: 0 4px 6px rgba(0,0,0,.08); border-color: rgba(15,23,42,.2); }
.card-body { padding: 1rem; }
.card-padded { padding: 1.5rem; }

.vehicle-card { display: flex; flex-direction: column; height: 100%; color: inherit; }
.vehicle-card .img-wrap {
  position: relative; aspect-ratio: 16/10; background: #fff; overflow: hidden;
  display: flex; align-items: center; justify-content: center; padding: .75rem;
}
.vehicle-card .img-wrap img {
  width: 100%; height: 100%; object-fit: contain; object-position: center;
  transition: transform .3s;
}
.vehicle-card:hover .img-wrap img { transform: scale(1.03); }
.badge {
  position: absolute; top: .75rem; left: .75rem; padding: .25rem .625rem;
  border-radius: 9999px; font-size: .75rem; font-weight: 500; text-transform: capitalize;
  background: rgba(15,23,42,.9); color: #fff;
}
.badge-year { left: auto; right: .75rem; background: var(--accent); font-weight: 600; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: .75rem; }
.chip {
  font-size: .75rem; color: var(--muted); background: #f1f5f9;
  padding: .25rem .5rem; border-radius: 9999px;
}
.price { font-size: 1.125rem; font-weight: 700; color: var(--accent); }
.card-btn {
  display: flex; align-items: center; justify-content: center; gap: .25rem;
  width: 100%; padding: .625rem; border-radius: .5rem; font-size: .875rem; font-weight: 600;
  background: var(--primary); color: #fff; margin-top: auto;
}
.vehicle-card:hover .card-btn { background: var(--primary-light); }

/* Trust */
.trust-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4,1fr); } }
.trust-item {
  text-align: center; padding: 1rem; border: 1px solid var(--border);
  border-radius: .75rem; background: var(--card);
}
.trust-item .val { font-size: 1.25rem; font-weight: 700; color: var(--primary); }
.trust-item .lbl { font-size: .75rem; color: var(--muted); }

/* CTA */
.cta { padding: 3rem 0; text-align: center; }
.cta.dark { background: var(--primary); color: #fff; }
.cta h2 { margin-bottom: .75rem; }
.cta p { margin-bottom: 1.5rem; max-width: 36rem; margin-left: auto; margin-right: auto; }
.cta.dark p { color: rgba(255,255,255,.8); }
.cta-btns { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; padding: 1rem 0; background: none; border: none;
  font-size: 1rem; font-weight: 600; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center; color: var(--primary);
}
.faq-a { display: none; padding-bottom: 1rem; font-size: .875rem; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }
.faq-icon { color: var(--accent); font-size: 1.25rem; transition: transform .2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* Google reviews carousel */
.google-reviews { max-width: 100%; margin: 0 auto; }
.google-reviews-header { text-align: center; margin-bottom: 2.5rem; }
.google-reviews-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; border-radius: 9999px; padding: .5rem 1rem;
  box-shadow: 0 2px 8px rgba(15,23,42,.08); margin-bottom: .5rem;
}
.google-reviews-badge .google-review-g { position: static; width: 20px; height: 20px; }
.google-reviews-score { font-size: 1.125rem; font-weight: 700; color: var(--primary); }
.google-reviews-stars { color: #fbbc04; font-size: .875rem; letter-spacing: .05em; }
.google-reviews-count { font-size: .875rem; color: var(--muted); margin-bottom: .35rem; }
.google-reviews-link {
  font-size: .8125rem; font-weight: 600; color: #1a73e8; text-decoration: none;
}
.google-reviews-link:hover { text-decoration: underline; }
.google-reviews-viewport {
  overflow: hidden; width: 100%; padding: 2.5rem 0 1rem;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.google-reviews-track {
  display: flex; gap: 1.5rem; width: max-content;
  animation: google-reviews-scroll 55s linear infinite;
}
.google-reviews:hover .google-reviews-track { animation-play-state: paused; }
@keyframes google-reviews-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.google-review-card {
  position: relative; flex: 0 0 18rem; background: #fff;
  border-radius: 1rem; box-shadow: 0 4px 24px rgba(15,23,42,.08);
  padding: 2.75rem 1.25rem 1.25rem; text-align: center;
  display: block; text-decoration: none; color: inherit;
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
}
.google-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(15,23,42,.14);
}
.google-review-card:focus-visible {
  outline: 2px solid #1a73e8; outline-offset: 2px;
}
.google-review-g {
  position: absolute; top: .875rem; left: .875rem;
  width: 22px; height: 22px; flex-shrink: 0;
}
.google-review-avatar {
  position: absolute; top: -2.25rem; left: 50%; transform: translateX(-50%);
  width: 4.5rem; height: 4.5rem; border-radius: 50%; object-fit: cover;
  border: 4px solid #fff; box-shadow: 0 4px 12px rgba(15,23,42,.12); background: #e2e8f0;
}
.google-review-name {
  font-size: 1rem; font-weight: 700; color: var(--primary);
  margin-bottom: .35rem; line-height: 1.3;
}
.google-review-stars {
  color: #fbbc04; font-size: .875rem; letter-spacing: .08em; margin-bottom: .25rem;
}
.google-review-date { font-size: .75rem; color: var(--muted); margin-bottom: .75rem; }
.google-review-text {
  font-size: .8125rem; line-height: 1.6; color: #334155;
  display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .google-reviews-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; }
  .google-reviews-viewport { mask-image: none; -webkit-mask-image: none; overflow: visible; }
}

/* Legacy carousel (unused) */
.carousel { position: relative; max-width: 48rem; margin: 0 auto; }
.carousel-slide { display: none; text-align: center; padding: 1rem; }
.carousel-slide.active { display: block; }
.carousel-stars { color: var(--accent); margin-bottom: 1rem; }
.carousel-nav { display: flex; justify-content: center; gap: .5rem; margin-top: 1rem; }
.carousel-dot {
  width: .5rem; height: .5rem; border-radius: 9999px; border: none;
  background: #cbd5e1; cursor: pointer;
}
.carousel-dot.active { width: 1.5rem; background: var(--accent); }

/* Footer */
.footer { background: var(--primary); color: #fff; padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; gap: 2rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4,1fr); } }
.footer h4 { font-size: .875rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--accent); margin-bottom: 1rem; }
.footer a { display: block; font-size: .875rem; color: rgba(255,255,255,.7); margin-bottom: .5rem; }
.footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem;
  text-align: center; font-size: .75rem; color: rgba(255,255,255,.5);
}

/* Floating */
.float-chat {
  position: fixed; bottom: 9.25rem; right: 1rem; z-index: 41;
  width: 3.5rem; height: 3.5rem; border-radius: 9999px;
  background: linear-gradient(135deg, var(--primary), #1e40af); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(30, 58, 138, .35); border: none; cursor: pointer;
  transition: transform .15s ease;
}
.float-chat:hover { transform: scale(1.05); }
@media (min-width: 768px) { .float-chat { bottom: 5.75rem; } }

.chat-widget { position: fixed; z-index: 45; bottom: 0; right: 0; pointer-events: none; }
.chat-widget > * { pointer-events: auto; }

.chat-panel {
  position: fixed; bottom: 13.5rem; right: 1rem; z-index: 45;
  width: min(22rem, calc(100vw - 2rem)); max-height: min(28rem, 70vh);
  background: #fff; border-radius: 1rem; box-shadow: 0 12px 40px rgba(15, 23, 42, .18);
  border: 1px solid var(--border); display: none; flex-direction: column; overflow: hidden;
}
.chat-panel:not([hidden]) { display: flex; }
.chat-panel[hidden] { display: none !important; }
@media (min-width: 768px) { .chat-panel { bottom: 10rem; } }

.chat-header {
  display: flex; align-items: flex-start; justify-content: space-between; gap: .5rem;
  padding: .875rem 1rem; background: var(--primary); color: #fff;
}
.chat-header-sub { font-size: .75rem; opacity: .85; margin: .15rem 0 0; }
.chat-close {
  background: none; border: none; color: #fff; font-size: 1.5rem; line-height: 1;
  cursor: pointer; padding: 0 .15rem;
}
.chat-messages {
  flex: 1; overflow-y: auto; padding: .875rem; display: flex; flex-direction: column; gap: .625rem;
  min-height: 10rem; max-height: 14rem;
}
.chat-msg {
  max-width: 92%; padding: .625rem .75rem; border-radius: .75rem; font-size: .875rem;
  line-height: 1.5; white-space: pre-wrap; word-break: break-word;
}
.chat-msg-bot { align-self: flex-start; background: #f1f5f9; color: var(--text); }
.chat-msg-user { align-self: flex-end; background: var(--primary); color: #fff; }
.chat-typing { opacity: .7; font-style: italic; }
.chat-suggestions {
  display: flex; flex-wrap: wrap; gap: .35rem; padding: 0 .75rem .5rem;
}
.chat-chip {
  font-size: .7rem; padding: .35rem .55rem; border-radius: 9999px;
  border: 1px solid var(--border); background: #fff; color: var(--primary);
  cursor: pointer; font-weight: 600;
}
.chat-chip:hover { background: #f8fafc; }
.chat-input-row {
  display: flex; gap: .5rem; padding: .75rem; border-top: 1px solid var(--border);
}
.chat-input-row input {
  flex: 1; padding: .55rem .75rem; border: 1px solid var(--border);
  border-radius: .5rem; font-size: .875rem;
}
.chat-send {
  padding: .55rem .875rem; background: var(--primary); color: #fff; border: none;
  border-radius: .5rem; font-weight: 600; font-size: .8125rem; cursor: pointer; white-space: nowrap;
}
.chat-send:hover { opacity: .92; }

html[dir="rtl"] .float-chat { right: auto; left: 1rem; }
html[dir="rtl"] .chat-panel { right: auto; left: 1rem; }

.float-wa {
  position: fixed; bottom: 5rem; right: 1rem; z-index: 40;
  width: 3.5rem; height: 3.5rem; border-radius: 9999px;
  background: var(--whatsapp); color: #fff; display: flex;
  align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
@media (min-width: 768px) { .float-wa { bottom: 1.5rem; } }
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
  display: grid; grid-template-columns: 1fr 1fr; background: var(--primary);
}
@media (min-width: 768px) { .mobile-bar { display: none; } }
.mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .875rem; font-size: .875rem; font-weight: 600; color: #fff;
}
.mobile-bar a:first-child { background: var(--whatsapp); }

/* Forms */
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .875rem; font-weight: 500; margin-bottom: .25rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .625rem 1rem; border: 1px solid var(--border);
  border-radius: .5rem; font-size: .875rem; font-family: inherit;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent);
}
.form-group textarea { resize: vertical; min-height: 5rem; }

/* Vehicle detail */
.detail-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .detail-grid { grid-template-columns: 1fr 1fr; } }
.spec-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: .75rem; }
@media (min-width: 640px) { .spec-stats { grid-template-columns: repeat(4,1fr); } }
.spec-stat {
  text-align: center; padding: 1rem; border: 1px solid var(--border);
  border-radius: .75rem; background: var(--card);
}
.spec-stat .val { font-size: 1.125rem; font-weight: 700; color: var(--primary); }
.spec-stat .lbl { font-size: .75rem; color: var(--muted); }
.spec-table { display: grid; gap: .75rem; }
@media (min-width: 640px) { .spec-table { grid-template-columns: 1fr 1fr; } }
.spec-row {
  display: flex; justify-content: space-between; padding-bottom: .75rem;
  border-bottom: 1px solid var(--border); font-size: .875rem;
}
.showroom-img { aspect-ratio: 16/9; border-radius: .75rem; overflow: hidden; background: #000; }
.showroom-img img { width: 100%; height: 100%; object-fit: cover; }
.detail-img {
  aspect-ratio: 16/10; max-width: 48rem; margin: 0 auto; border-radius: .75rem;
  overflow: hidden; background: #fff; display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.detail-img img { width: 100%; height: 100%; object-fit: contain; object-position: center; }

/* Vehicle detail page */
.vehicle-detail { padding-top: 1.5rem; }
.vehicle-back {
  display: inline-flex; align-items: center; gap: .25rem;
  font-size: .875rem; font-weight: 500; color: var(--muted); margin-bottom: 1.5rem;
}
.vehicle-back:hover { color: var(--accent); }
.vehicle-detail-layout {
  display: grid; gap: 2rem; align-items: start;
}
@media (min-width: 1024px) {
  .vehicle-detail-layout { grid-template-columns: minmax(0, 1fr) 22rem; gap: 2.5rem; }
}
.vehicle-hero-img {
  max-width: none; margin-bottom: 1.5rem; border: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(15,23,42,.06);
}
.vehicle-category {
  font-size: .75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; color: var(--accent); margin-bottom: .35rem;
}
.vehicle-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; line-height: 1.15; margin-bottom: .5rem;
}
.vehicle-color { color: var(--muted); font-weight: 500; }
.vehicle-meta { font-size: .9375rem; color: var(--muted); margin-bottom: 1.25rem; }
.vehicle-rating { color: var(--accent); font-weight: 600; }
.vehicle-highlights {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .vehicle-highlights { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 900px) { .vehicle-highlights { grid-template-columns: repeat(6, minmax(0, 1fr)); } }
.vehicle-highlight {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .35rem; padding: .875rem .5rem; border: 1px solid var(--border);
  border-radius: .75rem; background: #fff; text-align: center;
  font-size: .75rem; font-weight: 500; color: var(--primary); min-height: 5rem;
}
.vehicle-highlight-icon { font-size: 1.125rem; line-height: 1; }
.vehicle-section { margin-bottom: 2.5rem; }
.vehicle-section-title { margin-bottom: 1rem; }
.vehicle-spec-grid {
  display: grid; gap: 0; border: 1px solid var(--border); border-radius: .75rem; overflow: hidden;
}
@media (min-width: 768px) { .vehicle-spec-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.vehicle-spec-item {
  display: flex; flex-direction: column; gap: .25rem; padding: 1rem 1.125rem;
  border-bottom: 1px solid var(--border); background: #fff; font-size: .875rem;
}
@media (min-width: 768px) {
  .vehicle-spec-item { border-right: 1px solid var(--border); }
  .vehicle-spec-item:nth-child(3n) { border-right: none; }
  .vehicle-spec-item:nth-last-child(-n+3) { border-bottom: none; }
}
.vehicle-spec-label { color: var(--muted); font-size: .8125rem; }
.vehicle-spec-note { margin-top: .75rem; font-size: .8125rem; color: var(--muted); }
.vehicle-about { margin-bottom: 1rem; color: var(--foreground); line-height: 1.75; max-width: 48rem; }
.vehicle-features { max-width: 48rem; }
.vehicle-booking-card {
  box-shadow: 0 12px 40px rgba(15,23,42,.08); border-color: var(--border);
}
@media (min-width: 1024px) {
  .vehicle-booking-card { position: sticky; top: 5.5rem; }
}
.booking-price {
  font-size: 1.75rem; font-weight: 700; color: var(--primary); margin-bottom: .25rem;
}
.booking-price span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.booking-rates {
  font-size: .875rem; color: var(--muted); margin-bottom: 1.25rem;
  padding-bottom: 1.25rem; border-bottom: 1px solid var(--border);
}
.booking-note {
  font-size: .8125rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.5;
}
.vehicle-booking-form { margin-bottom: .75rem; }
.vehicle-booking-form .form-group { margin-bottom: .875rem; }
.booking-submit, .booking-wa, .booking-call { width: 100%; margin-top: .5rem; }
.booking-wa { margin-top: .75rem; }
.booking-call { margin-top: .5rem; }

/* RTL */
.ltr {
  direction: ltr;
  unicode-bidi: isolate;
}
a.ltr, span.ltr { display: inline-block; }
input.ltr, textarea.ltr {
  direction: ltr;
  text-align: left;
  unicode-bidi: isolate;
}
.contact-detail {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem 0.5rem;
}
html[dir="rtl"] body { text-align: right; }
html[dir="rtl"] .header-inner,
html[dir="rtl"] .nav,
html[dir="rtl"] .header-actions,
html[dir="rtl"] .faq-q,
html[dir="rtl"] .spec-row,
html[dir="rtl"] .vehicle-spec-item,
html[dir="rtl"] .pricing th,
html[dir="rtl"] .pricing td { direction: rtl; }
html[dir="rtl"] .float-wa { right: auto; left: 1rem; }
html[dir="rtl"] .float-chat { right: auto; left: 1rem; }
html[dir="rtl"] .badge-year { right: auto; left: .75rem; }
html[dir="rtl"] .badge:not(.badge-year) { left: auto; right: .75rem; }
html[dir="rtl"] .list-check li::before { margin-inline-end: .5rem; }

/* Tabs */
.tabs { display: flex; gap: .5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.tab-btn {
  padding: .5rem 1rem; border-radius: .5rem; border: 1px solid var(--border);
  background: var(--card); cursor: pointer; font-size: .875rem; font-weight: 500;
}
.tab-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
table.pricing { width: 100%; border-collapse: collapse; font-size: .875rem; }
table.pricing th, table.pricing td { padding: .75rem 1rem; text-align: left; border-bottom: 1px solid var(--border); }
table.pricing td:last-child { text-align: right; font-weight: 700; color: var(--accent); }

/* Contact */
.contact-card {
  display: flex; gap: 1rem; align-items: center; padding: 1rem;
  border: 1px solid var(--border); border-radius: .75rem; background: var(--card);
  transition: border-color .2s;
}
.contact-card:hover { border-color: var(--accent); }
.map-wrap { border-radius: .75rem; overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 400px; border: 0; }

.service-link {
  display: block; padding: 1.5rem; border: 1px solid var(--border); border-radius: .75rem;
  background: var(--card); transition: border-color .2s, box-shadow .2s;
}
.service-link:hover { border-color: var(--accent); box-shadow: 0 4px 6px rgba(0,0,0,.08); }
.service-link h3 { margin-bottom: .25rem; }
.service-link:hover h3 { color: var(--accent); }

.mb-2 { margin-bottom: .5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.space-y > * + * { margin-top: 1.5rem; }
.flex-wrap { display: flex; flex-wrap: wrap; gap: .5rem; }
.list-check { list-style: none; }
.list-check li { display: flex; gap: .5rem; font-size: .875rem; color: var(--muted); margin-bottom: .5rem; }
.list-check li::before { content: "✓"; color: var(--accent); font-weight: 700; }
.back-link { display: inline-flex; align-items: center; gap: .25rem; font-size: .875rem; color: rgba(255,255,255,.7); margin-bottom: 1rem; }
.back-link:hover { color: #fff; }
