/* IDEX TOUR — Chauffeur privé VIP | Noir pur + or ışıltılı */
:root {
  --bg-main: #000000;
  --bg-card: #0a0a0a;
  --bg-elevated: #111111;
  --text-primary: #f5f5f5;
  --text-muted: #9a9a9a;
  --accent: #d4af37;
  --accent-hover: #e5c76a;
  --gold-light: #f0d78c;
  --gold-bright: #ffeaa7;
  --gold-mid: #d4af37;
  --gold-dark: #b8960c;
  --gold-gradient: linear-gradient(135deg, #f5e6b3 0%, #e8c968 25%, #d4af37 60%, #c9a227 100%);
  --gold-shine: linear-gradient(180deg, rgba(255,236,179,0.4) 0%, transparent 50%);
  --gold-glow: rgba(212, 175, 55, 0.5);
  --gold-glow-strong: rgba(240, 215, 140, 0.4);
  --gold-border: rgba(232, 201, 104, 0.65);
  --gold-subtle: rgba(212, 175, 55, 0.15);
  --border: rgba(255, 255, 255, 0.05);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: #000000;
  background-image:
    radial-gradient(ellipse 100% 70% at 50% -10%, var(--gold-subtle) 0%, transparent 45%);
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 0 var(--gold-border), 0 0 20px var(--gold-subtle);
}

.header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 1px;
  background: var(--gold-gradient);
  opacity: 0.85;
  box-shadow: 0 0 12px var(--gold-glow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.5rem;
}

.logo {
  display: flex;
  align-items: center;
  height: 4.5rem;
  padding: 0.35rem 0;
}

.logo-img {
  height: 100%;
  width: auto;
  max-height: 4.5rem;
  max-width: 280px;
  min-height: 48px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-list a {
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s ease;
  position: relative;
  padding-bottom: 0.25rem;
}

.nav-list a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-light);
  transition: width 0.3s ease;
}

.nav-list a:hover {
  color: var(--gold-light);
}

.nav-list a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.6rem 1.4rem !important;
  background: var(--gold-gradient);
  color: #000000 !important;
  font-weight: 600;
  letter-spacing: 0.1em;
  border-radius: 4px;
  box-shadow: 0 2px 16px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,0.3);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  color: #000000 !important;
  box-shadow: 0 4px 24px var(--gold-glow), 0 0 28px var(--gold-subtle), inset 0 1px 0 rgba(255,255,255,0.4);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
}

.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-light);
  transition: transform 0.2s;
}

.nav-toggle::before {
  top: 0.4rem;
}

.nav-toggle::after {
  bottom: 0.4rem;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(0.5rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-0.5rem) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% 20%, var(--gold-subtle) 0%, transparent 48%),
    radial-gradient(ellipse 70% 40% at 50% 50%, rgba(17, 17, 17, 0.8) 0%, transparent 55%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
}

.hero-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 1.25rem;
  font-weight: 500;
  opacity: 0.95;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1.5rem;
  color: var(--text-primary);
  position: relative;
  display: inline-block;
  letter-spacing: 0.02em;
}

.hero-title::after {
  content: "";
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 1;
  box-shadow: 0 0 14px var(--gold-glow);
}

.hero-desc,
.hero-desc-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 0 0.2rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hero-desc-sub {
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.25s ease;
  letter-spacing: 0.04em;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #000000;
  border: none;
  box-shadow: 0 4px 24px var(--gold-glow), 0 0 40px var(--gold-subtle), inset 0 1px 0 rgba(255,255,255,0.35);
}

.btn-primary:hover {
  box-shadow: 0 6px 32px var(--gold-glow), 0 0 56px var(--gold-glow-strong), 0 0 0 1px var(--gold-border), inset 0 1px 0 rgba(255,255,255,0.4);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--gold-border);
  box-shadow: 0 0 0 0 var(--gold-subtle);
}

.btn-secondary:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  box-shadow: 0 0 28px var(--gold-subtle), 0 0 14px var(--gold-glow);
}

/* Features */
.features {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-card) 0%, #000000 100%);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  text-align: center;
  margin: 0 0 2.5rem;
  color: var(--text-primary);
  position: relative;
  padding-bottom: 1.25rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 1px;
  box-shadow: 0 0 10px var(--gold-glow);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold-gradient);
  border-radius: 4px 0 0 4px;
}

.feature-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 30px var(--gold-subtle), 0 0 0 1px var(--gold-border);
  transform: translateY(-3px);
}

.feature-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  background: var(--gold-gradient);
  color: #000000;
  border-radius: 6px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 16px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,0.3);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Véhicule VIP */
.vehicule {
  padding: 6rem 0;
  background: var(--bg-main);
}

.vehicule-intro {
  text-align: center;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

.vehicule-showcase {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.vehicule-visual {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gold-border);
  background: var(--bg-elevated);
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 0 1px var(--gold-subtle), 0 0 20px var(--gold-subtle);
}

.vehicule-img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.vehicule-details h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--text-primary);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gold-subtle);
  display: inline-block;
}

.vehicule-details p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* Section intro commun */
.section-intro {
  text-align: center;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

/* Transferts VIP */
.transferts {
  padding: 6rem 0;
  background: var(--bg-main);
}

.transfert-visual {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  border: 1px solid var(--gold-border);
  background: var(--bg-elevated);
  min-height: 280px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 24px var(--gold-subtle), inset 0 1px 0 rgba(255,236,179,0.08);
}

.transfert-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

.transfert-placeholder {
  display: none;
  min-height: 280px;
  background: linear-gradient(135deg, var(--bg-elevated) 0%, #0a0a0a 50%, #000000 100%);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  text-align: center;
  border: 1px dashed var(--gold-border);
  box-shadow: 0 0 30px var(--gold-subtle);
}


.transferts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.transfert-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
}

.transfert-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--gold-gradient);
  border-radius: 3px 0 0 3px;
}

.transfert-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 24px var(--gold-subtle), 0 0 0 1px var(--gold-border);
  transform: translateY(-2px);
}

.transfert-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.transfert-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Villes, aéroports, gares */
.villes {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-card) 0%, #000000 100%);
}

.villes-intro {
  text-align: center;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2rem;
}

.villes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.villes-block {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.villes-block:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.4), 0 0 20px var(--gold-subtle);
  border-color: var(--gold-border);
}

.villes-block h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--gold-subtle);
  color: var(--gold-light);
}

.villes-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.villes-block li {
  margin-bottom: 0.35rem;
}

/* Pourquoi nous choisir */
.pourquoi {
  padding: 6rem 0;
  background: var(--bg-main);
}

.pourquoi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.pourquoi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
}

.pourquoi-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background: radial-gradient(circle at 100% 0%, var(--gold-subtle), transparent 70%);
  border-radius: 0 10px 0 100%;
  pointer-events: none;
}

.pourquoi-card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.4), 0 0 28px var(--gold-subtle), 0 0 0 1px var(--gold-border);
  transform: translateY(-2px);
}

.pourquoi-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--gold-light);
}

.pourquoi-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Comment réserver */
.reserver {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-card) 0%, #000000 100%);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.step {
  text-align: center;
  padding: 1.5rem;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #000000;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: 0 4px 24px var(--gold-glow), 0 0 32px var(--gold-subtle), inset 0 1px 0 rgba(255,255,255,0.4);
  border: 1px solid var(--gold-light);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}

.step p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.reserver-cta {
  text-align: center;
  margin: 0;
}

/* FAQ */
.faq {
  padding: 6rem 0;
  background: var(--bg-main);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 1rem 1.25rem 1.25rem;
  margin-left: 0;
  border-left: 3px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}

.faq-item:hover {
  border-left-color: var(--gold-border);
  background: var(--gold-subtle);
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-item dt {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.faq-item dd {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Contact */
.contact {
  padding: 6rem 0;
  background: var(--bg-main);
  text-align: center;
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 1;
  box-shadow: 0 0 12px var(--gold-glow);
}

.contact p {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

/* Footer */
.footer {
  padding: 3rem 0 2rem;
  border-top: 2px solid transparent;
  background: var(--bg-card);
  background-clip: padding-box;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 0.9;
  box-shadow: 0 0 16px var(--gold-glow);
}

.footer-inner {
  position: relative;
  z-index: 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem 2.5rem;
  margin-bottom: 2rem;
}

.footer-col h2 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin: 0 0 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.footer-col-logo {
  height: 2.25rem;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  vertical-align: middle;
}

.footer-about {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-bottom .footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 0.25rem;
}

.footer-bottom .footer-brand span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-logo {
  height: 1.75rem;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  vertical-align: middle;
  display: inline-block;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--gold-subtle);
  text-align: center;
  position: relative;
}

.footer-bottom p {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-bottom .legal {
  font-size: 0.8rem;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 5.5rem;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.2s, opacity 0.2s, visibility 0.2s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: 0.25rem;
  }

  .nav-list a {
    display: block;
    padding: 0.85rem 0.75rem;
    text-align: center;
  }

  .nav-list .nav-cta {
    margin-top: 0.5rem;
    justify-content: center;
  }

  .nav-toggle {
    display: block;
  }

  .vehicule-showcase {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .vehicule-details {
    order: -1;
  }

  .transfert-visual {
    min-height: 200px;
  }

  .transfert-placeholder {
    min-height: 200px;
    padding: 2rem;
    font-size: 1rem;
  }

  .steps {
    gap: 1.5rem;
  }
}
