:root {
  /* UNIFIED GOLD PALETTE */
  --bg-black: #050509;
  --bg-dark: #0b0b10;

  /* Courchevel premium gold */
  --gold: #d4af37;
  --gold-light: #d4af37;

  --gold-soft: rgba(212, 175, 55, 0.25);
  --text-main: #f5f5f5;
  --text-muted: #a0a0a0;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --radius-lg: 18px;
  --radius-md: 12px;
  --transition-fast: 0.25s ease-out;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, #151520 0, #050509 55%, #000 100%);
  color: var(--text-main);
}

.container {
  width: min(1120px, 100% - 40px);
  margin: 0 auto;
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  background: linear-gradient(to bottom, rgba(5,5,9,0.96), rgba(5,5,9,0.7), transparent);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 14px;
}

.logo span {
  color: var(--gold);
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition-fast);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition-fast);
}

.nav a:hover {
  color: var(--text-main);
}

.nav a:hover::after {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: radial-gradient(circle at top, #202030 0, #050509 55%, #000 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0, rgba(212,175,55,0.18), transparent 55%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero p {
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.btn-primary {
  background: var(--gold);
  color: #111;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.6), 0 18px 40px rgba(0,0,0,0.8);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.9);
}

.btn-secondary {
  background: rgba(255,255,255,0.02);
  color: var(--text-main);
  border-color: var(--gold-soft);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--gold);
}

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

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(212,175,55,0.06);
}

.full-width {
  width: 100%;
}

.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--bg-dark);
}

.section-black {
  background: var(--bg-black);
}

.section-title {
  font-size: 24px;
  margin-bottom: 32px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

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

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  background: radial-gradient(circle at top left, rgba(212,175,55,0.08), rgba(10,10,15,1));
  border-radius: var(--radius-lg);
  padding: 20px 20px 22px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 18px 40px rgba(0,0,0,0.65);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 18px;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-soft);
  box-shadow: 0 24px 60px rgba(0,0,0,0.9);
  background: radial-gradient(circle at top left, rgba(212,175,55,0.16), rgba(10,10,15,1));
}

.card-outline {
  background: rgba(5,5,9,0.9);
  border: 1px solid rgba(212,175,55,0.35);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(5,5,9,0.9);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 18px 40px rgba(0,0,0,0.7);
}

.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  flex: 1;
  min-width: 140px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(10,10,15,0.96);
  color: var(--text-main);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}
.booking-form input::placeholder {
  color: var(--text-muted);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(212,175,55,0.4);
  background: rgba(10,10,15,1);
}

.footer {
  background: #020206;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0 22px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .header-inner {
    gap: 12px;
  }

  .nav {
    display: none; /* Ð¿Ð¾Ñ‚Ð¾Ð¼ Ð¼Ð¾Ð¶Ð½Ð¾ ÑÐ´ÐµÐ»Ð°Ñ‚ÑŒ Ð±ÑƒÑ€Ð³ÐµÑ€ */
  }

  .hero {
    padding-top: 96px;
    padding-bottom: 60px;
  }

  .hero-content {
    text-align: left;
  }

  .hero-actions {
    justify-content: flex-start;
  }
}

.fleet-card {
  padding: 0;
  overflow: hidden;
}

.fleet-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid rgba(212,175,55,0.25);
  margin-bottom: 16px;
  transition: transform 0.4s ease;
}

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

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

/* CARD */
.fleet-item {
  background: rgba(10,10,15,0.95);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 16px;
  padding: 0 0 24px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0,0,0,0.6);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.fleet-item:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.55);
  box-shadow: 0 28px 60px rgba(0,0,0,0.85);
}

/* IMAGE */
.fleet-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-bottom: 1px solid rgba(212,175,55,0.25);
}

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

.fleet-item:hover img {
  transform: scale(1.07);
}

/* TEXT */
.fleet-item h3 {
  margin: 18px 0 8px;
  font-size: 20px;
  color: #fff;
}

.fleet-desc {
  color: #c8c8c8;
  font-size: 14px;
  padding: 0 16px;
  line-height: 1.45;
  min-height: 60px;
}

.fleet-meta {
  margin-top: 10px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .fleet-grid {
    grid-template-columns: 1fr;
  }
}

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

.service-item {
  background: rgba(10,10,15,0.95);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 16px;
  padding: 26px 22px 30px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0,0,0,0.6);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.service-item:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.55);
  box-shadow: 0 28px 60px rgba(0,0,0,0.85);
}

.service-icon {
  font-size: 38px;
  margin-bottom: 14px;
  color: var(--gold);
}

.service-item h3 {
  margin: 10px 0 12px;
  font-size: 20px;
  color: #fff;
}

.service-item p {
  color: #c8c8c8;
  font-size: 14px;
  line-height: 1.55;
  min-height: 70px;
}

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

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* HERO SLIDER BASE */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

/* DARK GRADIENT OVERLAY */
.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.85));
  z-index: 5;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  max-width: 650px;
}

/* GOLD TITLE */
.hero-title {
  font-size: 54px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--gold), #f7e7a1, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200%;
  animation: goldFlow 6s linear infinite, heroFade 1.4s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

/* SUBTITLE */
.hero-subtitle {
  color: #e0e0e0;
  font-size: 18px;
  margin-top: 12px;
  opacity: 0;
  animation: heroFade 1.6s ease forwards;
  animation-delay: 0.3s;
}

/* BUTTONS */
.hero-actions {
  margin-top: 28px;
  opacity: 0;
  animation: heroFade 1.8s ease forwards;
  animation-delay: 0.6s;
}

/* ANIMATIONS */
@keyframes heroFade {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes goldFlow {
  0% { background-position: 0%; }
  100% { background-position: 200%; }
}

.hero-title {
  font-size: 54px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--gold), #f7e7a1, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200%;
  animation: goldFlow 6s linear infinite, heroFade 1.4s ease forwards;
  opacity: 0;
  transform: translateY(20px);
  position: relative;
  overflow: hidden;
}

@keyframes goldFlow {
  0% { background-position: 0%; }
  100% { background-position: 200%; }
}

@keyframes heroFade {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ================================
   GOLD FLASH â€” PREMIUM + LCP SAFE
   ================================ */

.gold-flash {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.gold-flash::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.7) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  opacity: 0; /* Ð²Ð°Ð¶Ð½Ð¾: Ñ‚ÐµÐºÑÑ‚ Ñ€ÐµÐ½Ð´ÐµÑ€Ð¸Ñ‚ÑÑ ÑÑ€Ð°Ð·Ñƒ */
  animation: goldFlash 2.2s ease-out 0s forwards; /* delay ÑƒÐ±Ñ€Ð°Ð½ */
}

@keyframes goldFlash {
  0% {
    left: -120%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    left: 120%;
    opacity: 0;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.contact-info h2 {
  margin-top: 0;
  font-size: 22px;
  color: var(--text-main);
}

.contact-item {
  margin: 14px 0;
  font-size: 15px;
}

.contact-item a {
  color: var(--gold);
  text-decoration: none;
}

.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(10,10,15,0.96);
  color: var(--text-main);
  font-size: 14px;
  resize: none;
}

.map-wrap {
  margin-top: 50px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.6);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* CONTACT PHONE GOLD */
#contact a[href^="tel"] {
  color: var(--gold) !important;
  text-decoration: none;
}

#contact a[href^="tel"]:hover {
  color: #f7e7a1 !important;
}

/* CONTACT EMAIL GOLD */
#contact a[href^="mailto"] {
  color: var(--gold) !important;
  text-decoration: none;
}

#contact a[href^="mailto"]:hover {
  color: #f7e7a1 !important;
}

/* CONTACT â€” MOBILE ADAPTATION */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info h3 {
    font-size: 20px;
  }

  .contact-info p,
  .contact-item {
    font-size: 15px;
    line-height: 1.55;
  }

  .contact-form .form-row {
    flex-direction: column;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .contact-info h3 {
    font-size: 18px;
  }

  .contact-info p {
    font-size: 14px;
  }

  .contact-grid {
    gap: 24px;
  }

  .contact-form textarea {
    min-height: 140px;
  }
}

/* HERO MOBILE FIX */
@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
}

/* BURGER BUTTON */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 26px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

/* MOBILE MENU */
@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgba(5,5,9,0.98);
    padding: 20px;
    border-radius: 12px;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.6);
  }

  .nav a {
    color: var(--gold);
    font-size: 16px;
  }

  .burger {
    display: flex;
  }

  .nav.active {
    display: flex;
  }
}

/* CONTACT WHATSAPP GOLD */
#contact a[href*="wa.me"] {
  color: var(--gold) !important;
  text-decoration: none;
}

#contact a[href*="wa.me"]:hover {
  color: #f7e7a1 !important;
}

/* LANG SWITCH */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 20px;
  font-weight: 500;
}

.lang-btn {
  cursor: pointer;
  opacity: 0.7;
  transition: 0.2s ease;
}

.lang-btn:hover {
  opacity: 1;
}

.lang-btn.active {
  opacity: 1;
  color: var(--gold);
}

.lang-sep {
  opacity: 0.5;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 20px;
  font-weight: 500;
}

.lang-btn {
  cursor: pointer;
  opacity: 0.7;
  transition: 0.2s ease;
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-social {
  display: flex;
  gap: 18px;
}

.social-icon svg {
  width: 26px;
  height: 26px;
  fill: #ffffff;
  transition: 0.3s;
}

.social-icon:hover svg {
  fill: var(--gold);
  transform: scale(1.15);
}

/* MOBILE NAV (SECOND VERSION) */
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #000;
    padding: 80px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: 0.3s ease;
    z-index: 999;
  }

  .nav.active {
    right: 0;
  }

  .burger {
    display: block;
    cursor: pointer;
    z-index: 1000;
  }

  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }
}
/* ============================
   RESPONSIVE.CSS â€” CLEAN VERSION
   ============================ */

/* MOBILE NAVIGATION */
@media (max-width: 768px) {

  /* BURGER BUTTON */
  .burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1000;
  }

  .burger span {
    width: 26px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transition: 0.3s;
  }

  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }

  /* MOBILE MENU */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(5,5,9,0.98);
    padding: 80px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: 0.3s ease;
    z-index: 999;
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    color: var(--gold);
    font-size: 18px;
  }

  /* HEADER FIX */
  .header-inner {
    gap: 12px;
  }

  /* HERO */
  .hero-title {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
}

/* ============================
   GRID ADAPTATION
   ============================ */

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .fleet-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    gap: 24px;
  }

  .contact-info h3 {
    font-size: 18px;
  }

  .contact-form textarea {
    min-height: 140px;
  }
}
/* ============================
   BOOKING FORM â€” FINAL VERSION
   ============================ */

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(5,5,9,0.9);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.7);
}

/* ÐŸÐ¾Ð»Ñ Ñ„Ð¾Ñ€Ð¼Ñ‹ */
.booking-form input,
.booking-form select,
.booking-form textarea {
  flex: 1;
  min-width: 140px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(10,10,15,0.96);
  color: #f5f5f5;
  font-size: 15px;
  outline: none;
  transition: 0.25s ease;
  box-sizing: border-box;
}

/* Placeholder */
.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #a0a0a0;
}

/* Textarea */
.booking-form textarea {
  resize: none;
  min-height: 120px;
}

/* ÐšÐ½Ð¾Ð¿ÐºÐ° */
.booking-form .btn-primary {
  width: auto;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  background: #f7c843;
  color: #000;
  cursor: pointer;
  transition: 0.25s ease;
  margin: 10px auto 0 auto;
}

.booking-form .btn-primary:hover {
  background: #ffd86b;
  transform: translateY(-2px);
}
.routes-hero {
  padding: 120px 0 80px;
  text-align: center;
  background: radial-gradient(circle at top, #202030 0, #050509 55%, #000 100%);
}

.routes-section {
  padding: 80px 0;
}

.routes-section.dark {
  background: rgba(10,10,15,0.96);
}

.section-title {
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
}

.section-desc {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  color: #c8c8c8;
}

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

.route-card {
  background: rgba(10,10,15,0.95);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 16px;
  padding: 26px 22px 30px;
  text-align: center;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.route-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.55);
  box-shadow: 0 28px 60px rgba(0,0,0,0.85);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.benefit-item {
  background: rgba(10,10,15,0.95);
  padding: 18px 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(212,175,55,0.25);
}

.cta-section {
  padding: 80px 0;
  text-align: center;
}

.cta-button {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold);
  color: #000;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}
/* SEO BLOCK */
.seo-section {
  padding: 60px 0;
  background: var(--bg-black);
}

.seo-text {
  max-width: 820px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.seo-text h3 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 18px;
  color: var(--text-main);
}

.seo-text p,
.seo-text ul {
  margin-bottom: 16px;
}

.seo-text ul {
  padding-left: 18px;
}

.seo-text li {
  margin-bottom: 6px;
}
/* ============================
   SEO BLOCK â€” FIX VISIBILITY
   ============================ */

.seo-section {
  padding: 80px 0;
  background: var(--bg-black);
}

.seo-text {
  max-width: 820px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}
.header {
  position: fixed;
  z-index: 20;
}

.hero-slider {
  pointer-events: auto !important;
}

.hero-slider::after {
  pointer-events: none !important;
}

.hero-content {
  pointer-events: auto !important;
}
.header .btn.btn-outline {
  pointer-events: none;
}
/* ============================
   COLOR PALETTE â€” LUXDRIVE
   ============================ */

:root {
  --accent: var(--gold); /* Premium Courchevel Gold */
  --text-main: #E6E6E6; /* White Premium Text */
  --text-soft: #C8C8C8; /* Soft Grey */
  --deep-blue: #0B1B34;
  --mid-blue: #005A9A;
}

/* ============================
   GLOBAL TYPOGRAPHY
   ============================ */

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--text-main);
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: 0.2px;
  background: radial-gradient(circle at top, #151520 0%, #050509 55%, #000 100%);
  margin: 0;
}

/* ============================
   HEADINGS â€” GOLD
   ============================ */

h1, h2, h3 {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 20px;
}

h1 { font-size: 52px; line-height: 1.2; }
h2 { font-size: 36px; line-height: 1.3; }
h3 { font-size: 28px; line-height: 1.35; }

/* ============================
   PARAGRAPHS â€” WHITE
   ============================ */

p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-main);
  max-width: 820px;
  margin-bottom: 22px;
}

/* Optional inline gold text */
.text-gold {
  color: var(--accent);
  font-weight: 500;
}

/* ============================
   GOLD SUBTITLES + DIVIDERS
   ============================ */

.subtitle-gold {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.divider-gold {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 20px 0;
}

/* ============================
   BUTTONS â€” PREMIUM GOLD
   ============================ */

.btn {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: 4px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.btn-outline {
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #000;
}

.section-dark {
  background: #0B0B12;
}

.section-black {
  background: #050509;
}

/* ============================
   NAVIGATION â€” PREMIUM
   ============================ */

.nav a {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: var(--text-main);
  transition: 0.3s ease;
}

.nav a:hover {
  color: var(--accent);
}

/* ============================
   BURGER MENU
   ============================ */

.burger span {
  background: var(--text-main);
}

.nav.active {
  background: #0B0B12;
}
[data-i18n$="_title"] {
  color: var(--accent) !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-title {
  color: var(--accent) !important;
}
#booking {
  position: relative;
  z-index: 20;
}
/* ============================
   TOUR PAGE â€” GLOBAL SPACING
   ============================ */

.tour-content {
  padding: 60px 0;
  max-width: 900px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.65;
  color: #222;
}

.tour-content h3 {
  font-size: 26px;
  font-weight: 700;
  margin: 40px 0 20px;
  color: #111;
}

.tour-content p {
  margin-bottom: 20px;
}

.tour-content ul {
  margin: 0 0 25px 0;
  padding-left: 20px;
}

.tour-content ul li {
  margin-bottom: 10px;
  font-size: 18px;
  color: #333;
}
/* ============================
   SEO BLOCK (Ñ‡ÐµÑ€Ð½Ñ‹Ð¹ Ð¿Ñ€ÐµÐ¼Ð¸Ð°Ð»ÑŒÐ½Ñ‹Ð¹)
   ============================ */

.seo-section {
  background: #0d0d0d;
  color: #e8e8e8;
  padding: 80px 0;
}

.seo-section .section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #fff;
}

.seo-section p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.seo-section h3 {
  font-size: 26px;
  font-weight: 700;
  margin: 40px 0 20px;
  color: #fff;
}

.seo-section ul {
  padding-left: 20px;
  margin-bottom: 30px;
}

.seo-section ul li {
  margin-bottom: 12px;
  font-size: 18px;
  color: #dcdcdc;
}
/* ============================
   SECTION DIVIDERS
   ============================ */

section[id] {
  border-bottom: 1px solid #eee;
  margin-bottom: 40px;
  padding-bottom: 40px;
}
/* ============================
   CTA BUTTONS
   ============================ */

.tour-cta {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 32px;
  background: #c9a86a;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s;
}

.tour-cta:hover {
  background: var(--gold);
}
/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 992px) {
  .tour-hero {
    height: 380px;
  }
  .tour-hero .hero-title {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .tour-hero {
    height: 320px;
  }
  .tour-hero .hero-title {
    font-size: 32px;
  }
  .tour-content {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .tour-hero {
    height: 280px;
  }
  .tour-hero .hero-title {
    font-size: 26px;
  }
  .tour-content {
    padding: 30px 0;
  }
}
.tours-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 40px 0;
}

.tours-nav a {
  padding: 10px 20px;
  background: #111;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.tours-nav a:hover {
  background: var(--gold);
  color: #000;
}
/* PREMIUM TOUR CARDS */
.fleet-item {
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  padding-bottom: 20px;
  transition: 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 rgba(0,0,0,0);
}

.fleet-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
  border-color: rgba(212, 175, 55, 0.45); /* gold */
}

.fleet-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.fleet-item:hover .fleet-img-wrap img {
  transform: scale(1.08);
  filter: brightness(1.08);
}

.fleet-item h3 {
  margin: 18px 20px 8px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.fleet-desc {
  margin: 0 20px 16px;
  color: #ccc;
  font-size: 15px;
}

.fleet-item .btn {
  margin-left: 20px;
  margin-right: 20px;
  width: calc(100% - 40px);
  text-align: center;
}
/* ----------------------------------------------------
   FAQ â€” GLOBAL CONTAINER
---------------------------------------------------- */
.faq-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ----------------------------------------------------
   FAQ HERO
---------------------------------------------------- */
.faq-hero {
  padding: 120px 0 80px;
  background: linear-gradient(180deg, #0d0d0f 0%, #111113 100%);
  text-align: center;
}

.faq-title {
  font-size: 48px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  margin: 0;
}

/* ----------------------------------------------------
   FAQ NAVIGATION (CATEGORIES)
---------------------------------------------------- */
.faq-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 40px 0 50px;
  justify-content: center;
}

.faq-nav-btn {
  padding: 10px 22px;
  background: #1a1a1d;
  border: 1px solid #2a2a2d;
  color: #eaeaea;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

.faq-nav-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ----------------------------------------------------
   FAQ CATEGORY TITLES
---------------------------------------------------- */
.faq-category-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--gold);
  margin: 60px 0 25px;
  padding-left: 5px;
  border-left: 3px solid var(--gold);
}

/* ----------------------------------------------------
   FAQ ACCORDION
---------------------------------------------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* CARD STYLE */
.faq-item {
  background: #141416;
  border: 1px solid #1f1f22;
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  transition: 0.3s ease;
}

.faq-item:hover {
  border-color: var(--gold);
}

/* QUESTION */
.faq-question {
  padding: 20px 22px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 22px;
  color: var(--gold);
  transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  font-size: 16px;
  line-height: 1.6;
  color: #dcdcdc;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 22px 20px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* ----------------------------------------------------
   CTA BLOCK
---------------------------------------------------- */
.faq-cta {
  text-align: center;
  margin: 80px 0 40px;
  padding: 60px 20px;
  background: #111113;
  border: 1px solid #1f1f22;
  border-radius: 12px;
}

.faq-cta-title {
  font-size: 36px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
}

.faq-cta-subtitle {
  font-size: 18px;
  color: #dcdcdc;
  margin-bottom: 25px;
}

.faq-cta-btn {
  padding: 12px 28px;
  font-size: 18px;
}

/* ----------------------------------------------------
   RESPONSIVE
---------------------------------------------------- */
@media (max-width: 768px) {
  .faq-title {
    font-size: 34px;
  }

  .faq-category-title {
    font-size: 26px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 15px;
  }

  .faq-cta-title {
    font-size: 28px;
  }
}
