/* ============================================================
   MK DÉPANNAGE AUTO — style.css
   Main stylesheet — all public pages
   ============================================================ */

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

/* ── CSS Variables ── */
:root {
  --black:        #0a0a0a;
  --dark:         #111111;
  --dark-2:       #161616;
  --dark-3:       #1e1e1e;
  --yellow:       #FFD700;
  --yellow-dim:   #e6c200;
  --orange:       #FF8C00;
  --red:          #E63030;
  --red-dark:     #c42020;
  --white:        #ffffff;
  --grey:         #888888;
  --glass:        rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --glass-hover:  rgba(255,255,255,0.08);
  --shadow-yellow: 0 0 30px rgba(255,215,0,0.25);
  --shadow-red:    0 0 30px rgba(230,48,48,0.3);
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:        12px;
  --radius-lg:     20px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }

/* ── Page Loader ── */
#page-loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--black);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  width: 120px; opacity: 0;
  animation: loaderLogoIn 0.6s ease 0.2s forwards;
}
@keyframes loaderLogoIn {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}
.loader-bar-wrap {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: rgba(255,255,255,0.1);
}
.loader-bar {
  height: 100%; width: 0; background: linear-gradient(90deg, var(--yellow), var(--orange));
  animation: loaderBar 1.8s ease forwards;
}
@keyframes loaderBar { to { width: 100%; } }
.loader-curtain {
  position: absolute; inset: 0;
  background: var(--black);
  transform-origin: top;
  animation: curtainReveal 0.6s cubic-bezier(0.77,0,0.18,1) 1.9s forwards;
}
@keyframes curtainReveal {
  from { transform: scaleY(1); }
  to   { transform: scaleY(0); }
}

/* ── Custom Cursor ── */
.cursor-dot {
  position: fixed; width: 8px; height: 8px;
  background: var(--yellow); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-ring {
  position: fixed; width: 40px; height: 40px;
  border: 2px solid rgba(255,215,0,0.6);
  border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-dot.hover  { width: 12px; height: 12px; background: var(--orange); }
.cursor-ring.hover { width: 60px; height: 60px; border-color: var(--orange); }

/* ── Navbar ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}
#navbar.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,215,0,0.15);
}
.nav-logo { height: 60px; width: auto; object-fit: contain; }
.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative; padding-bottom: 4px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  height: 2px; width: 0;
  background: var(--yellow);
  transition: width 0.35s cubic-bezier(0.4,0,0.2,1);
}
.nav-links a:hover, .nav-links a.active { color: var(--yellow); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  display: flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--white) !important;
  padding: 10px 20px; border-radius: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.5px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
  animation: redPulse 2s ease-in-out infinite;
}
.nav-cta:hover {
  background: var(--red-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-red) !important;
}
.nav-cta::after { display: none !important; }
@keyframes redPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230,48,48,0.5); }
  50%       { box-shadow: 0 0 0 8px rgba(230,48,48,0); }
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 30px; padding: 4px 0;
}
.hamburger span {
  display: block; height: 2px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
}
.hamburger span:nth-child(2) { width: 70%; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(30px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 40px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77,0,0.18,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 32px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--yellow); }
.mobile-menu .nav-cta { font-size: 20px; padding: 14px 32px; }

/* ── Hero Section ── */
.hero {
  position: relative; width: 100%; height: 100vh; min-height: 600px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  background: var(--black);
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(255,140,0,0.12) 100%);
}
.hero-particles { position: absolute; inset: 0; z-index: 2; }
.hero-content {
  position: relative; z-index: 3;
  text-align: center; padding: 0 20px;
  max-width: 900px; width: 100%;
}
.hero-logo {
  width: 100px; margin: 0 auto 24px;
  opacity: 0; transform: scale(0.8);
}
.hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(26px, 4.6vw, 48px);
  font-weight: 700; line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
  overflow: hidden;
  white-space: nowrap;
}
.hero-title .word { display: inline-block; overflow: hidden; }
.hero-title .char { display: inline-block; }
.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 400; color: rgba(255,255,255,0.75);
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 20px; opacity: 0;
}
.hero-address {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px; padding: 8px 20px;
  font-size: 13px; color: rgba(255,255,255,0.7);
  margin-bottom: 36px; opacity: 0;
  backdrop-filter: blur(10px);
}
.hero-buttons {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap; opacity: 0;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.35s ease;
}
.btn:hover::after { transform: translateX(0); }
.btn-yellow {
  background: var(--yellow); color: var(--black);
  box-shadow: 0 4px 20px rgba(255,215,0,0.3);
}
.btn-yellow:hover {
  background: var(--yellow-dim);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255,215,0,0.5);
}
.btn-red {
  background: var(--red); color: var(--white);
  animation: redPulse 2s ease-in-out infinite;
}
.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(230,48,48,0.5);
}
.btn-outline {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--yellow); color: var(--yellow);
  transform: translateY(-3px);
}

/* Scroll arrow */
.scroll-arrow {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.scroll-arrow span {
  display: block; width: 20px; height: 20px;
  border-right: 2px solid rgba(255,215,0,0.7);
  border-bottom: 2px solid rgba(255,215,0,0.7);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease infinite;
}
.scroll-arrow span:nth-child(2) { animation-delay: 0.15s; }
.scroll-arrow span:nth-child(3) { animation-delay: 0.3s; opacity: 0.4; }
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
  50%       { transform: rotate(45deg) translateY(6px); opacity: 0.5; }
}

/* ── Floating Buttons ── */
.float-whatsapp, .float-phone {
  position: fixed; z-index: 500;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; transition: transform var(--transition);
  bottom: 24px;
}
.float-whatsapp { right: 24px; background: #25D366; }
.float-phone    { left: 24px;  background: var(--yellow); }
.float-whatsapp:hover, .float-phone:hover { transform: scale(1.1); }
.float-pulse {
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid currentColor; opacity: 0;
  animation: floatPulse 2s ease-out infinite;
}
.float-whatsapp .float-pulse { color: #25D366; }
.float-phone    .float-pulse { color: var(--yellow); }
.float-pulse:nth-child(2) { animation-delay: 0.4s; }
@keyframes floatPulse {
  0%   { opacity: 0.8; transform: scale(1); }
  100% { opacity: 0;   transform: scale(1.8); }
}

/* ── Section base ── */
.section { padding: 100px 0; }
.section-inner { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 12px;
}
.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700; line-height: 1.15;
  color: var(--white); margin-bottom: 16px;
  position: relative; display: inline-block;
}
.section-title .underline-anim {
  position: absolute; bottom: -8px; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--yellow), var(--orange));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.section-title.in-view .underline-anim { transform: scaleX(1); }
.section-subtitle {
  font-size: 16px; color: rgba(255,255,255,0.55);
  max-width: 560px; margin: 0 auto; line-height: 1.7;
}

/* ── Counters Section ── */
.counters-section {
  background: var(--dark); position: relative; overflow: hidden;
}
.counters-section .particles-wrap {
  position: absolute; inset: 0; z-index: 0; opacity: 0.3;
}
.counters-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
.counter-card {
  padding: 60px 20px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.05);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-ready .counter-card {
  opacity: 0; transform: translateY(40px);
}
.counter-card.in-view { opacity: 1 !important; transform: translateY(0) !important; }
.counter-card:last-child { border-right: none; }
.counter-value {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 700; line-height: 1;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 8px;
}
.counter-suffix {
  font-size: 0.5em; vertical-align: super;
  -webkit-text-fill-color: var(--yellow);
}
.counter-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ── Cars Section ── */
.cars-section { background: var(--black); position: relative; }
.dot-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}

/* Filter pills */
.filter-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 48px;
}
.filter-pill {
  padding: 8px 20px; border-radius: 50px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  background: transparent;
  transition: all var(--transition);
}
.filter-pill:hover, .filter-pill.active {
  background: var(--yellow); color: var(--black);
  border-color: var(--yellow);
  box-shadow: 0 4px 16px rgba(255,215,0,0.3);
}

/* Cars grid */
.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Car card */
.car-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), opacity 0.6s ease;
  position: relative;
}
.js-ready .car-card { opacity: 0; transform: translateY(40px); }
.car-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-yellow);
  border-color: rgba(255,215,0,0.3);
}
.car-card.sold { filter: grayscale(0.8); }
.car-card.sold:hover { transform: none; box-shadow: none; border-color: rgba(230,48,48,0.3); }

.car-photo-wrap {
  position: relative; height: 220px; overflow: hidden;
  background: var(--dark-3);
}
.car-photo {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.car-card:not(.sold):hover .car-photo { transform: scale(1.08); }
.car-no-photo {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; color: rgba(255,255,255,0.1);
  background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
}

.car-status-badge {
  position: absolute; top: 14px; right: 14px;
  padding: 5px 12px; border-radius: 50px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.badge-disponible { background: rgba(34,197,94,0.85); color: #fff; }
.badge-vendu      { background: rgba(230,48,48,0.9);  color: #fff; }
.badge-reserve    { background: rgba(255,140,0,0.85); color: #fff; }

/* Sold ribbon */
.sold-ribbon {
  position: absolute; top: 20px; left: -30px;
  background: var(--red); color: #fff;
  padding: 6px 40px; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  transform: rotate(-45deg); width: 130px; text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.car-body { padding: 20px; }
.car-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px; font-weight: 700;
  color: var(--white); margin-bottom: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.car-year { font-size: 13px; color: var(--grey); margin-bottom: 12px; }
.car-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 28px; font-weight: 700;
  color: var(--yellow); margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.car-specs {
  display: flex; gap: 12px; margin-bottom: 14px;
  flex-wrap: wrap;
}
.car-spec {
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; color: rgba(255,255,255,0.5);
}
.car-spec svg { width: 14px; height: 14px; opacity: 0.6; }
.car-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.car-tag {
  padding: 3px 10px; border-radius: 50px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.5px;
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.15);
  color: rgba(255,215,0,0.7);
  text-transform: uppercase;
}
.car-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 12px;
  background: #25D366; color: #fff;
  border-radius: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  transition: all var(--transition);
}
.car-cta:hover { background: #1da851; transform: translateY(-2px); }
.car-cta svg { width: 18px; height: 18px; }

/* Skeleton */
.car-skeleton { opacity: 1 !important; transform: none !important; }
.skeleton-line {
  background: linear-gradient(90deg, #1a1a1a 25%, #222 50%, #1a1a1a 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.skeleton-photo  { height: 220px; }
.skeleton-title  { height: 20px; width: 70%; margin: 20px 20px 8px; }
.skeleton-price  { height: 30px; width: 40%; margin: 0 20px 14px; }
.skeleton-specs  { height: 14px; width: 90%; margin: 0 20px; }

/* Empty state */
.cars-empty {
  grid-column: 1 / -1; text-align: center;
  padding: 80px 20px; opacity: 0.5;
}
.cars-empty-icon { font-size: 64px; margin-bottom: 16px; }
.cars-empty p { font-family: 'Rajdhani', sans-serif; font-size: 20px; color: var(--grey); }

/* ── Depannage Preview Section ── */
.dep-preview-section {
  background: var(--dark);
  position: relative; overflow: hidden;
}
.dep-preview-section::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: linear-gradient(180deg, var(--red), var(--orange));
}
.dep-preview-grid {
  display: grid; grid-template-columns: 60fr 40fr; gap: 60px;
  align-items: center;
}
.dep-preview-left { padding-right: 20px; }
.dep-check-list { margin: 28px 0; display: flex; flex-direction: column; gap: 14px; }
.dep-check-item {
  display: flex; align-items: center; gap: 12px;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.js-ready .dep-check-item { opacity: 0; transform: translateX(-20px); }
.dep-check-item.in-view { opacity: 1 !important; transform: translateX(0) !important; }
.dep-check-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
}
.dep-check-text { font-size: 15px; color: rgba(255,255,255,0.8); }
.dep-phone-big {
  font-family: 'Rajdhani', sans-serif;
  font-size: 32px; font-weight: 700;
  color: var(--yellow); margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
.dep-preview-right {
  display: flex; align-items: center; justify-content: center;
  min-height: 300px;
}
#three-canvas { width: 100%; max-width: 360px; height: 300px; }

/* ── Testimonials ── */
.testimonials-section { background: var(--black); overflow: hidden; }
.testimonials-track-wrap {
  overflow: hidden; position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}
.testimonials-track {
  display: flex; gap: 24px;
  width: max-content;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-card {
  flex: 0 0 360px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color var(--transition);
}
.testimonial-card.active { border-color: rgba(255,215,0,0.3); }
.testimonial-stars { color: var(--yellow); font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 14px; line-height: 1.7;
  color: rgba(255,255,255,0.75); margin-bottom: 16px;
  font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Rajdhani', sans-serif; font-size: 16px; font-weight: 700;
  color: var(--black); flex-shrink: 0;
}
.testimonial-name { font-family: 'Rajdhani', sans-serif; font-size: 16px; font-weight: 700; }
.testimonial-role { font-size: 12px; color: var(--grey); }
.carousel-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 32px;
}
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background var(--transition), transform var(--transition);
}
.carousel-dot.active {
  background: var(--yellow); transform: scale(1.3);
}

/* ── Contact Section ── */
.contact-section { background: var(--dark); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 20px 24px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,215,0,0.3);
  box-shadow: var(--shadow-yellow);
}
.contact-card-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(255,215,0,0.08); border: 1px solid rgba(255,215,0,0.15);
  display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0;
}
.contact-card-label { font-size: 12px; color: var(--grey); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.contact-card-value { font-family: 'Rajdhani', sans-serif; font-size: 17px; font-weight: 600; color: var(--white); }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { position: relative; }
.form-group label {
  display: block; font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 1px;
  color: rgba(255,255,255,0.5); margin-bottom: 8px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; color: var(--white);
  font-family: 'Inter', sans-serif; font-size: 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255,215,0,0.08);
}
.form-group input.error, .form-group textarea.error { border-color: var(--red); }
.form-group textarea { height: 120px; resize: vertical; }
.form-group .field-error { font-size: 12px; color: var(--red); margin-top: 4px; }

/* ── Footer ── */
footer {
  background: #080808;
  border-top: 1px solid rgba(255,215,0,0.15);
  padding: 60px 0 30px;
}
.footer-inner { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.footer-logo-wrap { text-align: center; margin-bottom: 48px; }
.footer-logo { height: 70px; margin: 0 auto 16px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); letter-spacing: 2px; text-transform: uppercase; }
.footer-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 48px;
}
.footer-col h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a, .footer-col p {
  font-size: 14px; color: rgba(255,255,255,0.5);
  transition: color var(--transition); line-height: 1.6;
}
.footer-col ul li a:hover { color: var(--yellow); }
.footer-socials { display: flex; gap: 12px; margin-top: 16px; }
.social-link {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--glass); border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: all var(--transition);
}
.social-link:hover { background: var(--yellow); border-color: var(--yellow); color: var(--black); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px; text-align: center;
  font-size: 13px; color: rgba(255,255,255,0.3);
}
.footer-bottom span { color: var(--yellow); }

/* ── Toast notifications ── */
.toast-container {
  position: fixed; bottom: 90px; right: 24px; z-index: 5000;
  display: flex; flex-direction: column; gap: 10px;
}
.toast {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px; border-radius: 10px;
  font-family: 'Inter', sans-serif; font-size: 14px;
  backdrop-filter: blur(20px); min-width: 260px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  animation: toastIn 0.3s ease forwards;
}
.toast.success { background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.3); color: #22c55e; }
.toast.error   { background: rgba(230,48,48,0.15);  border: 1px solid rgba(230,48,48,0.3);  color: var(--red); }
@keyframes toastIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Page transitions ── */
.page-transition-bar {
  position: fixed; top: 0; left: -100%; right: 100%;
  height: 3px; z-index: 9999;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  transition: left 0.3s ease, right 0.3s ease;
}
.page-transition-bar.loading { left: 0; right: 0; }

/* ── FAQ ── */
.faq-list {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 14px;
}
.faq-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 4px 24px;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: var(--yellow); }
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px; font-weight: 600; color: var(--white);
  padding: 18px 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 24px; color: var(--yellow);
  transition: transform var(--transition); flex-shrink: 0; margin-left: 16px;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  color: rgba(255,255,255,0.65); line-height: 1.7;
  padding-bottom: 20px; font-size: 15px;
}

/* ── Legal pages ── */
.legal-content {
  max-width: 860px; margin: 0 auto;
  padding: 150px 20px 100px;
  color: rgba(255,255,255,0.75); line-height: 1.8;
}
.legal-content h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700; color: var(--white);
  margin-bottom: 8px;
}
.legal-content .legal-updated {
  color: rgba(255,255,255,0.4); font-size: 14px; margin-bottom: 40px;
}
.legal-content h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 24px; font-weight: 600;
  color: var(--yellow); margin: 36px 0 14px;
}
.legal-content p, .legal-content li { margin-bottom: 12px; }
.legal-content ul { padding-left: 22px; }
.legal-content a { color: var(--yellow); text-decoration: underline; }
.legal-content strong { color: var(--white); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .cars-grid { grid-template-columns: repeat(2, 1fr); }
  .dep-preview-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: repeat(2, 1fr); }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  #navbar { padding: 0 20px; }
  .nav-links, .nav-cta-wrap { display: none; }
  .hamburger { display: flex; }
  .section-inner { padding: 0 20px; }
  .section { padding: 70px 0; }
  .cars-grid { grid-template-columns: 1fr; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 300px; justify-content: center; }
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}
@media (max-width: 480px) {
  .counters-grid { grid-template-columns: 1fr 1fr; }
  .counter-card { padding: 40px 16px; }
}
