/* ═══════════════════════════════════════════════
   ÉLITE MOGADOR – Global Stylesheet
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

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

:root {
  --gold:        #C9A84C;
  --gold-light:  #E2C26A;
  --gold-dark:   #a8872e;
  --gold-faint:  rgba(201,168,76,0.12);
  --black:       #0A0A0A;
  --black2:      #111111;
  --black3:      #1a1a1a;
  --white:       #ffffff;
  --gray:        #aaaaaa;
  --gray2:       #666666;
  --border:      rgba(201,168,76,0.2);
  --nav-h:       80px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black2); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  transition: background 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.3px;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* language selector */
.lang-selector {
  position: relative;
}

.lang-btn {
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
}

.lang-btn:hover { border-color: var(--gold); color: var(--gold); }
.lang-btn svg { width: 12px; height: 12px; fill: currentColor; }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  min-width: 80px;
  display: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.lang-dropdown.open { display: block; }

.lang-dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: background 0.15s, color 0.15s;
}

.lang-dropdown a:hover { background: var(--gold-faint); color: var(--gold); }
.lang-dropdown a.current { color: var(--gold); font-weight: 700; }

/* nav cta */
.nav-cta {
  background: var(--gold);
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 999px;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* mobile drawer */
.nav-drawer {
  position: fixed;
  top: 0; left: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--black2);
  border-right: 1px solid var(--border);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  gap: 8px;
}

.nav-drawer.open { transform: translateX(0); }

.drawer-logo { margin-bottom: 32px; }
.drawer-logo img { height: 44px; }

.drawer-links { display: flex; flex-direction: column; gap: 4px; }

.drawer-links a {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}

.drawer-links a:hover { color: var(--gold); }

.drawer-close {
  position: absolute;
  top: 20px; right: 20px;
  background: transparent;
  color: var(--white);
  font-size: 24px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.drawer-close:hover { background: var(--gold-faint); }

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1999;
  display: none;
  backdrop-filter: blur(3px);
}

.drawer-overlay.open { display: block; }

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}

.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 28px rgba(201,168,76,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline-gold:hover { background: var(--gold-faint); }

.btn-sm { padding: 9px 20px; font-size: 13px; }

/* ══════════════════════════════
   SECTION COMMON
══════════════════════════════ */
.section { padding: 96px 56px; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.3;
  margin: 0;
}

/* ══════════════════════════════
   CARDS GRID
══════════════════════════════ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--black2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.5);
}

.card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: var(--black3);
}

.card-img-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--black3) 0%, #222 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 40px;
}

.card-body { padding: 24px; }

.card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-faint);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.card-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--gray2);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.card-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.card-meta svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
  flex-shrink: 0;
}

.card-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 16px;
}

.card-price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray2);
}

.card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* hero carousel */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.4s ease, transform 8s ease;
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1.0);
}
.hero-dots {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: background .3s, transform .3s;
  padding: 0;
}
.hero-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.7) 50%,
    rgba(10,10,10,0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 56px;
  margin-top: var(--nav-h);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s 0.3s forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-title {
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.02;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-title .gold { color: var(--gold); }

.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

.trust-item svg {
  width: 15px;
  height: 15px;
  fill: var(--gold);
  flex-shrink: 0;
}

/* scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  opacity: 0.6;
}

@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── TICKER ── */
.ticker {
  background: var(--gold-faint);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
}

.ticker-track:hover { animation-play-state: paused; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.ticker-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ══════════════════════════════
   EXCURSIONS / ACTIVITÉS
══════════════════════════════ */
.section-excursions { background: var(--black); }
.section-activites  { background: var(--black2); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 24px;
}

.section-head .section-subtitle { margin-bottom: 0; }

/* ══════════════════════════════
   TRANSFERTS OVERVIEW
══════════════════════════════ */
.section-transferts { background: var(--black); }

.transfer-card {
  background: var(--black2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.transfer-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 12px 36px rgba(201,168,76,0.1);
}

.transfer-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gold-faint);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.transfer-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--gold);
}

.transfer-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.transfer-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
  flex: 1;
}

/* ══════════════════════════════
   FLEET CARDS
══════════════════════════════ */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fleet-card {
  background: var(--black2);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.fleet-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 16px 40px rgba(201,168,76,0.1);
}

.fleet-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.fleet-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-img-wrap img {
  transform: scale(1.05);
}

.fleet-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}

.fleet-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}

.fleet-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.fleet-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.65;
  flex: 1;
}

.fleet-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fleet-features li {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  padding-left: 18px;
  position: relative;
}

.fleet-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

@media (max-width: 1100px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .fleet-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════
   TÉMOIGNAGES
══════════════════════════════ */
.section-temoignages {
  background: var(--black2);
  position: relative;
  overflow: hidden;
}

.section-temoignages::before {
  content: '"';
  position: absolute;
  top: 20px; left: 40px;
  font-size: 300px;
  font-weight: 900;
  color: rgba(201,168,76,0.04);
  line-height: 1;
  pointer-events: none;
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.testimonial-slide {
  min-width: 100%;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.testimonial-text {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-faint);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.author-name {
  font-size: 14px;
  font-weight: 700;
}

.author-origin {
  font-size: 12px;
  color: var(--gray2);
  margin-top: 2px;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
  border: none;
}

.carousel-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ══════════════════════════════
   GALERIE
══════════════════════════════ */
.section-galerie { background: var(--black); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 12px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--black3);
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(4) { grid-column: span 2; }

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover .gallery-img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.5);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-overlay { opacity: 0; }

.gallery-overlay svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--black3), #2a2a2a);
  font-size: 32px;
  color: var(--gold);
  opacity: 0.6;
}

/* ══════════════════════════════
   BLOG APERÇU
══════════════════════════════ */
.section-blog { background: var(--black2); }

.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--black3);
}

.blog-card-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--black3), #222);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

.blog-date {
  font-size: 12px;
  color: var(--gray2);
  margin-bottom: 8px;
  display: block;
}

/* ══════════════════════════════
   BLOG CAROUSEL
══════════════════════════════ */
.blog-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.blog-carousel-track-wrap {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.blog-carousel-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

/* card width set by JS via --blog-card-w CSS var */
.blog-carousel-card {
  flex: 0 0 var(--blog-card-w, 31%);
  width: var(--blog-card-w, 31%);
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.blog-carousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--black2);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.blog-carousel-btn:hover { background: var(--gold-faint); border-color: var(--gold); }
.blog-carousel-btn svg { width: 22px; height: 22px; fill: currentColor; }

.blog-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.blog-carousel-dots .dot {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: rgba(201,168,76,0.25);
  border: none;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  padding: 0;
}
.blog-carousel-dots .dot.active {
  background: var(--gold);
  width: 40px;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 72px 56px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.footer-brand-logo img {
  height: 52px;
  margin-bottom: 20px;
}

.footer-brand-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-faint);
}

.social-link svg { width: 16px; height: 16px; fill: currentColor; }

.footer-col-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--gray);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 14px;
  line-height: 1.5;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: var(--gray2);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--gray2);
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--gold); }

/* ══════════════════════════════
   LANGUAGE TOGGLE
══════════════════════════════ */
.lang-btn {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--black2);
  border: 1.5px solid var(--gold);
  border-radius: 50px;
  padding: 10px 16px;
  color: var(--gold);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
}
.lang-btn:hover { background: rgba(201,168,76,.15); transform: scale(1.05); }

/* Hide Google Translate toolbar */
.goog-te-banner-frame, .skiptranslate { display: none !important; }
body { top: 0 !important; }
.goog-te-gadget { display: none !important; }

/* ══════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  animation: pulse-wa 2.5s infinite;
  transition: transform 0.2s;
}

.wa-float:hover { transform: scale(1.1); animation-play-state: paused; }

.wa-float svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 4px 32px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* ══════════════════════════════
   MODAL
══════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(6px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--black2);
  border: 1px solid var(--border);
  border-radius: 20px;
  max-width: 760px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s;
}

.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}

.modal-img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.modal-body { padding: 36px; }

.modal-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
}

.modal-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.modal-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray);
}

.modal-meta-item svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}

.modal-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 28px;
}

.modal-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.modal-list-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.modal-list-title.included { color: var(--gold); }
.modal-list-title.excluded { color: #e07070; }

.modal-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 8px;
}

.check { color: var(--gold); font-size: 15px; }
.cross { color: #e07070; font-size: 15px; }

.modal-price {
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 24px;
}

.modal-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray2);
}

.modal-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field.full { grid-column: span 2; }

.form-field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gray2);
}

.form-field input, .form-field select, .form-field textarea {
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--gold);
}

/* Date picker calendar icon visible */
input[type="date"] { color-scheme: dark; cursor: pointer; }
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.8) sepia(1) saturate(3) hue-rotate(5deg);
  cursor: pointer;
  padding: 2px;
  border-radius: 4px;
  opacity: 1;
}

.form-field select option { background: var(--black2); }

/* ── QTY STEPPER ── */
.qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--black3);
  height: 48px;
}
.qty-btn {
  width: 48px;
  height: 100%;
  flex-shrink: 0;
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 22px;
  font-weight: 300;
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.qty-btn:hover { background: var(--gold-faint); }
.qty-btn:disabled { color: var(--gray2); cursor: default; }
.qty-stepper input[type="number"] {
  flex: 1;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  background: transparent;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  -moz-appearance: textfield;
  outline: none;
  padding: 0;
  height: 100%;
}
.qty-stepper input[type="number"]::-webkit-inner-spin-button,
.qty-stepper input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; }

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: background 0.2s;
}

.modal-close:hover { background: var(--gold-faint); }

/* ══════════════════════════════
   PAGE HERO (sub pages)
══════════════════════════════ */
.page-hero {
  height: 340px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: url('../car-hero.jpg') center/cover no-repeat;
  filter: brightness(0.3);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.6), rgba(10,10,10,0.9));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 56px;
  margin-top: var(--nav-h);
}

.page-hero-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  margin-bottom: 12px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray2);
}

.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); }

/* ══════════════════════════════
   FADE-IN ON SCROLL
══════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s, transform 0.7s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1100px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 2; height: 300px; }
  .gallery-item { height: 200px; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
}

@media (max-width: 900px) {
  :root { --nav-h: 64px; }
  .nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 64px 24px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .hero-content { padding: 0 24px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .modal-lists { grid-template-columns: 1fr; }
  .modal-form { grid-template-columns: 1fr; }
  .modal-form .form-field.full { grid-column: span 1; }
  .footer { padding: 48px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .page-hero-content { padding: 0 24px; }
  .page-hero { height: 260px; }
  .modal-body { padding: 24px; }
  .modal-title { font-size: 22px; }
}

@media (max-width: 600px) {
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-content { padding: 0 20px; }
  .cards-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .gallery-item { height: 180px; }
  .modal-body { padding: 20px 16px; }
  .modal-title { font-size: 20px; }
  .modal-price { font-size: 22px; }
  .section { padding: 48px 16px; }
  .btn { padding: 12px 24px; font-size: 14px; }
  .btn-sm { padding: 8px 16px; font-size: 12px; }
  .card-actions { flex-direction: column; }
  .card-actions .btn { width: 100%; justify-content: center; }
  .page-hero { height: 220px; }
  .page-hero-title { font-size: clamp(24px, 7vw, 36px); }
}
