/* ═══════════════════════════════════════════════════
   MILOU TRANSPORTS — VTC CLERMONT-FERRAND
   Design System + Full Stylesheet
   ═══════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:       #E84521;
  --orange-dark:  #C93A1A;
  --orange-light: #FF5733;
  --black:        #0D0D0D;
  --dark:         #141414;
  --dark-2:       #1E1E1E;
  --dark-3:       #2A2A2A;
  --gray:         #888;
  --gray-light:   #B0B0B0;
  --white:        #FFFFFF;
  --off-white:    #F5F5F5;
  --border:       rgba(255,255,255,0.08);

  --font-body:    'Barlow', sans-serif;
  --font-head:    'Barlow Condensed', sans-serif;

  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 24px rgba(0,0,0,0.25);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.4);
  --transition:   0.25s cubic-bezier(0.4,0,0.2,1);

  --container:    1200px;
  --nav-h:        72px;
}

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

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }
details { cursor: pointer; }
summary { list-style: none; }
summary::-webkit-details-marker { display: none; }

/* ── UTILITIES ── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.text--orange { color: var(--orange); }
.text--white  { color: var(--white); }
.text--gray   { color: var(--gray-light); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: 12px 28px; border-radius: var(--radius);
  transition: var(--transition); white-space: nowrap;
  border: 2px solid transparent; letter-spacing: 0.02em;
}
.btn--primary {
  background: var(--orange); color: var(--white);
  border-color: var(--orange);
}
.btn--primary:hover {
  background: var(--orange-dark); border-color: var(--orange-dark);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,69,33,0.45);
}
.btn--ghost {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn--ghost:hover {
  border-color: var(--orange); color: var(--orange);
  transform: translateY(-2px);
}
.btn--lg { padding: 16px 36px; font-size: 1.1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── SECTION COMMON ── */
.section { padding: 96px 0; }
.section--dark  { background: var(--dark); }
.section--light { background: #111; }

.section__header {
  text-align: center; max-width: 680px; margin: 0 auto 64px;
}
.section__tag {
  display: inline-block;
  font-family: var(--font-body); font-weight: 700; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--orange); background: rgba(232,69,33,0.12);
  padding: 6px 16px; border-radius: 100px;
  border: 1px solid rgba(232,69,33,0.3); margin-bottom: 16px;
}
.section__tag--light { color: var(--orange-light); }
.section__title {
  font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; line-height: 1.05; margin-bottom: 16px;
  text-transform: uppercase;
}
.section__desc { color: var(--gray-light); font-size: 1.05rem; }

/* ════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(13,13,13,0.9);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(13,13,13,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav {
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 32px;
}
.nav__logo img { height: 38px; width: auto; }
.nav__menu {
  display: flex; align-items: center; gap: 4px; list-style: none;
}
.nav__link {
  padding: 8px 14px; border-radius: 8px;
  font-weight: 600; font-size: 0.95rem; color: var(--gray-light);
  transition: var(--transition);
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav__cta { margin-left: 8px; }

/* Hamburger */
.nav__toggle {
  display: none; flex-direction: column;
  gap: 5px; padding: 8px; border-radius: 8px;
  transition: var(--transition);
}
.nav__toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition); transform-origin: center;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: calc(var(--nav-h) + 40px) 24px 80px;
  overflow: hidden;
}

/* Background */
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #111 40%, #1a0800 100%);
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(232,69,33,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(232,69,33,0.08) 0%, transparent 50%);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 30%, transparent 75%);
}

/* Content */
.hero__content {
  position: relative; z-index: 1;
  text-align: center; max-width: 860px;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.82rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--gray-light);
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 20px; border-radius: 100px; margin-bottom: 28px;
}
.badge__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.25); }
  50%      { box-shadow: 0 0 0 6px rgba(34,197,94,0.1); }
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900; line-height: 1;
  text-transform: uppercase; letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero__subtitle {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: var(--gray-light); margin-bottom: 40px; line-height: 1.7;
}
.hero__subtitle strong { color: var(--white); }

.hero__actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 60px;
}

.hero__stats {
  display: flex; align-items: center; gap: 0;
  justify-content: center; flex-wrap: wrap;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 24px 32px; gap: 0;
}
.stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 32px;
}
.stat__num {
  font-family: var(--font-head); font-size: 2rem;
  font-weight: 900; color: var(--orange); line-height: 1;
}
.stat__label {
  font-size: 0.8rem; color: var(--gray); text-transform: uppercase;
  letter-spacing: 0.1em; margin-top: 4px;
}
.stat__sep {
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.1);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--gray); font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.1em; z-index: 1;
}
.scroll__arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--gray);
  border-bottom: 2px solid var(--gray);
  transform: rotate(45deg);
  animation: scroll-bounce 1.8s infinite;
}
@keyframes scroll-bounce {
  0%,100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
  50%      { transform: rotate(45deg) translateY(5px); opacity: 1; }
}

/* ════════════════════════════════════════════════════
   URGENCY BAR
   ════════════════════════════════════════════════════ */
.urgent-bar {
  background: linear-gradient(90deg, var(--orange-dark), var(--orange));
  padding: 14px 0;
}
.urgent-bar .container {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap; text-align: center;
  font-size: 0.95rem;
}
.urgent-bar a { color: var(--white); text-decoration: underline; font-weight: 700; }

/* ════════════════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════════════════ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: transparent;
  transition: var(--transition);
}
.service-card:hover {
  border-color: rgba(232,69,33,0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.service-card:hover::before {
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
}

.service-card--featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(232,69,33,0.12) 0%, rgba(232,69,33,0.04) 100%);
  border-color: rgba(232,69,33,0.25);
  flex-direction: row; gap: 28px;
  align-items: flex-start;
}
.service-card--featured::before {
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
}

.service-card__icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: rgba(232,69,33,0.15);
  border: 1px solid rgba(232,69,33,0.25);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.service-card__icon svg { width: 26px; height: 26px; }

.service-card__body { flex: 1; }
.service-card__body h3 {
  font-family: var(--font-head); font-size: 1.25rem;
  font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.02em; margin-bottom: 10px;
}
.service-card__body p {
  color: var(--gray-light); font-size: 0.95rem;
  line-height: 1.65; margin-bottom: 16px;
}
.service-card__list {
  list-style: none; display: flex; flex-direction: column; gap: 6px;
}
.service-card__list li {
  font-size: 0.85rem; color: var(--gray);
  display: flex; align-items: center; gap: 8px;
}
.service-card__list li::before {
  content: ''; display: block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}
.service-card__cta {
  margin-top: auto; padding-top: 20px;
  font-weight: 700; font-size: 0.9rem;
  color: var(--orange); transition: var(--transition);
  display: inline-flex; align-items: center; gap: 4px;
}
.service-card__cta:hover { gap: 8px; }

/* ════════════════════════════════════════════════════
   DESTINATIONS
   ════════════════════════════════════════════════════ */
.destinations__wrapper {
  display: grid; grid-template-columns: 260px 1fr; gap: 48px;
  align-items: start;
}
.destinations__map-zone {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
}
.map__pulse { position: relative; display: flex; align-items: center; justify-content: center; }
.map__dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--orange); position: relative; z-index: 3;
}
.map__ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid var(--orange); opacity: 0;
  animation: ring-expand 2.4s infinite ease-out;
}
.map__ring--1 { width: 40px;  height: 40px;  animation-delay: 0s;    }
.map__ring--2 { width: 70px;  height: 70px;  animation-delay: 0.6s;  }
.map__ring--3 { width: 100px; height: 100px; animation-delay: 1.2s;  }
@keyframes ring-expand {
  0%   { transform: scale(0.5); opacity: 0.8; }
  100% { transform: scale(1);   opacity: 0; }
}
.map__label {
  text-align: center; font-weight: 700; font-size: 1rem;
  line-height: 1.4;
}
.map__label span { font-size: 0.8rem; color: var(--gray); font-weight: 400; }

.destinations__list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
}
.dest-col h3.dest-col__title {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 0.9rem;
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--orange); margin-bottom: 16px;
}
.dest-col ul { display: flex; flex-direction: column; gap: 8px; }
.dest-col ul li {
  font-size: 0.95rem; color: var(--gray-light);
  padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.dest-col ul li:hover { color: var(--white); padding-left: 6px; }
.dest-col--intl { grid-column: span 1; }

.destinations__cta {
  text-align: center; margin-top: 56px;
  display: flex; align-items: center; justify-content: center; gap: 24px;
  flex-wrap: wrap;
}
.destinations__cta p { color: var(--gray-light); font-size: 1rem; }

/* ════════════════════════════════════════════════════
   WHY
   ════════════════════════════════════════════════════ */
.why__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.why-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative; overflow: hidden;
  transition: var(--transition);
}
.why-card:hover {
  border-color: rgba(232,69,33,0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.why-card__num {
  position: absolute; top: 20px; right: 24px;
  font-family: var(--font-head); font-size: 3rem;
  font-weight: 900; color: rgba(232,69,33,0.08);
  line-height: 1;
}
.why-card__icon {
  width: 48px; height: 48px;
  background: rgba(232,69,33,0.12);
  border: 1px solid rgba(232,69,33,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); margin-bottom: 20px;
}
.why-card__icon svg { width: 24px; height: 24px; }
.why-card h3 {
  font-family: var(--font-head); font-size: 1.15rem;
  font-weight: 800; text-transform: uppercase; margin-bottom: 10px;
}
.why-card p { color: var(--gray-light); font-size: 0.92rem; line-height: 1.6; }

/* ════════════════════════════════════════════════════
   REVIEWS
   ════════════════════════════════════════════════════ */
.reviews__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.review-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.review-card:hover {
  border-color: rgba(232,69,33,0.25);
  transform: translateY(-3px);
}
.review-card__stars {
  color: var(--orange); font-size: 1.1rem;
  letter-spacing: 2px; margin-bottom: 16px;
}
.review-card p {
  color: var(--gray-light); font-size: 0.97rem;
  line-height: 1.7; font-style: italic; margin-bottom: 24px;
}
.review-card p::before { content: '"'; }
.review-card p::after  { content: '"'; }
.review-card__author {
  display: flex; align-items: center; gap: 14px;
}
.review-card__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; flex-shrink: 0;
}
.review-card__author strong { display: block; font-size: 0.95rem; }
.review-card__author span { color: var(--gray); font-size: 0.82rem; }

/* ════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════ */
.faq__list {
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 8px;
}
.faq__item {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  overflow: hidden; transition: var(--transition);
}
.faq__item[open] {
  border-color: rgba(232,69,33,0.3);
}
.faq__question {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 28px;
  font-weight: 700; font-size: 1rem; cursor: pointer;
  transition: var(--transition); user-select: none;
}
.faq__question:hover { color: var(--orange); }
.faq__item[open] .faq__question { color: var(--orange); }
.faq__icon {
  font-size: 1.4rem; color: var(--orange);
  flex-shrink: 0; line-height: 1;
  transition: transform var(--transition);
}
.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__answer {
  padding: 0 28px 22px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.faq__answer p {
  color: var(--gray-light); line-height: 1.75; padding-top: 16px; font-size: 0.97rem;
}
.faq__answer a { color: var(--orange); text-decoration: underline; }

/* ════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════ */
.contact__wrapper {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.contact__info .section__title { text-align: left; margin-bottom: 16px; }
.contact__info > p { margin-bottom: 32px; }

.contact__cards {
  display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px;
}
.contact-card {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 18px 20px; transition: var(--transition);
}
a.contact-card:hover {
  border-color: var(--orange); background: rgba(232,69,33,0.06);
}
.contact-card__icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(232,69,33,0.15);
  border: 1px solid rgba(232,69,33,0.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.contact-card__icon svg { width: 20px; height: 20px; }
.contact-card span { display: block; font-size: 0.78rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; }
.contact-card strong { display: block; font-size: 1rem; color: var(--white); margin-top: 2px; }

.contact__note {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,193,7,0.07);
  border: 1px solid rgba(255,193,7,0.2);
  border-radius: var(--radius);
  padding: 14px 18px; color: #fbbf24; font-size: 0.88rem;
}
.contact__note svg { flex-shrink: 0; }
.contact__note strong { color: #fcd34d; }

/* Form */
.contact__form {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact__form h3 {
  font-family: var(--font-head); font-size: 1.5rem;
  font-weight: 800; text-transform: uppercase;
  margin-bottom: 28px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form__group label {
  font-size: 0.82rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--gray-light);
}
.form__group input,
.form__group select,
.form__group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 12px 16px; color: var(--white); font-size: 0.97rem;
  transition: var(--transition); outline: none;
}
.form__group input::placeholder,
.form__group textarea::placeholder { color: var(--gray); }
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--orange);
  background: rgba(232,69,33,0.05);
  box-shadow: 0 0 0 3px rgba(232,69,33,0.12);
}
.form__group select option { background: var(--dark-3); color: var(--white); }
.form__group textarea { resize: vertical; min-height: 90px; }
.form__note {
  text-align: center; font-size: 0.8rem; color: var(--gray);
  margin-top: 12px;
}
.form__note a { color: var(--orange); text-decoration: underline; }
.form__success {
  display: flex; align-items: center; gap: 12px;
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius); padding: 16px 20px;
  color: #4ade80; font-weight: 700; margin-top: 16px;
}

/* ════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════ */
.footer {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 0;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px;
  padding-bottom: 48px;
}
.footer__brand img { margin-bottom: 16px; }
.footer__brand p {
  color: var(--gray); font-size: 0.9rem; line-height: 1.65; margin-bottom: 20px;
}
.footer__badges { display: flex; flex-wrap: wrap; gap: 8px; }
.badge {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(232,69,33,0.1); color: var(--orange);
  border: 1px solid rgba(232,69,33,0.25);
  padding: 4px 12px; border-radius: 100px;
}

.footer__col h4 {
  font-family: var(--font-head); font-size: 0.85rem;
  font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--white);
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a {
  color: var(--gray); font-size: 0.9rem; transition: var(--transition);
}
.footer__col ul li a:hover { color: var(--orange); padding-left: 4px; }

.footer__contact li {
  display: flex; align-items: center; gap: 10px;
  color: var(--gray); font-size: 0.9rem; padding: 6px 0;
}
.footer__contact li svg { color: var(--orange); flex-shrink: 0; }
.footer__contact li a { transition: var(--transition); }
.footer__contact li a:hover { color: var(--orange); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer__bottom p { font-size: 0.82rem; color: var(--gray); }
.footer__links { display: flex; gap: 24px; }
.footer__links a { font-size: 0.82rem; color: var(--gray); transition: var(--transition); }
.footer__links a:hover { color: var(--orange); }

@keyframes float-in {
  from { transform: translateY(80px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* ════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ════════════════════════════════════════════════════ */
[data-animate] {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].visible {
  opacity: 1; transform: translateY(0);
}

/* ════════════════════════════════════════════════════
   RESPONSIVE — TABLET
   ════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services__grid        { grid-template-columns: 1fr 1fr; }
  .service-card--featured { grid-column: span 2; }
  .destinations__wrapper { grid-template-columns: 1fr; }
  .destinations__map-zone { max-width: 300px; margin: 0 auto; }
  .why__grid             { grid-template-columns: repeat(2, 1fr); }
  .footer__grid          { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact__wrapper      { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 72px 0; }

  /* Nav mobile */
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed; inset: var(--nav-h) 0 0 0;
    background: rgba(13,13,13,0.98); backdrop-filter: blur(20px);
    flex-direction: column; align-items: stretch; gap: 4px;
    padding: 24px 20px;
    transform: translateX(100%); transition: transform 0.3s ease;
    pointer-events: none;
  }
  .nav__menu.open { transform: translateX(0); pointer-events: all; }
  .nav__link { padding: 14px 20px; font-size: 1.1rem; }
  .nav__cta  { margin: 8px 0 0; }

  /* Hero */
  .hero__title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero__stats { gap: 0; padding: 20px 16px; }
  .stat { padding: 0 16px; }
  .stat__num { font-size: 1.5rem; }
  .stat__sep { height: 32px; }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }
  .service-card--featured { grid-column: 1; flex-direction: column; }

  /* Destinations */
  .destinations__list { grid-template-columns: 1fr 1fr; }

  /* Why */
  .why__grid { grid-template-columns: 1fr; }

  /* Reviews */
  .reviews__grid { grid-template-columns: 1fr; }

  /* Contact */
  .form__row { grid-template-columns: 1fr; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  /* Floating CTA */
  .floating-cta span { display: none; }
  .floating-cta { padding: 16px; border-radius: 50%; bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__stats { flex-direction: column; gap: 16px; }
  .stat__sep { width: 48px; height: 1px; }
  .hero__badge { font-size: 0.72rem; text-align: center; }
  .destinations__list { grid-template-columns: 1fr; }
  .contact__form { padding: 24px 20px; }
  .section__title { font-size: 1.8rem; }
}

/* ════════════════════════════════════════════════════
   CARTE DE VISITE 3D
   ════════════════════════════════════════════════════ */
.card3d__scene {
  perspective: 1200px;
  perspective-origin: 50% 40%;
  display: flex;
  justify-content: center;
  margin: 0 auto 24px;
  padding: 40px 0;
  max-width: 760px;
}

.card3d {
  width: 680px;
  height: 380px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(0deg) rotateX(6deg);
  transition: transform 0.85s cubic-bezier(0.4,0,0.2,1);
  cursor: grab;
  border-radius: 18px;
  /* Auto-rotate via JS animation, pause on hover */
}

.card3d:hover { cursor: grabbing; }

.card3d__face {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.05),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

/* ── IMAGE FACES ── */
.card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.card3d__back { transform: rotateY(180deg); }

@keyframes card-spin {
  from { transform: rotateY(0deg) rotateX(6deg); }
  to   { transform: rotateY(360deg) rotateX(6deg); }
}
.card3d--spinning {
  animation: card-spin 12s linear infinite;
}

/* Hint text */
.card__hint {
  text-align: center;
  font-size: 0.82rem; color: var(--gray);
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 8px;
}
.card__hint svg { opacity: 0.5; }

/* ── RESPONSIVE CARD ── */
@media (max-width: 740px) {
  .card3d { width: 100%; max-width: 480px; height: 280px; }
  .card__front-brand { font-size: 1.2rem; }
  .card__front-phone { font-size: 0.95rem; }
  .card__script-name { font-size: 1.5rem; }
  .card__rachid { font-size: 1.1rem; margin-bottom: 14px; }
  .card__back-contacts a { font-size: 0.78rem; }
  .card__qr { width: 80px; height: 80px; }
  .card__back-body { padding: 20px 22px; }
}
@media (max-width: 480px) {
  .card3d { height: 240px; }
  .card__back-right { display: none; }
  .card__back-deco { width: 90px; height: 90px; }
}

/* ════════════════════════════════════════════════════
   SECTION AVIS — FORMULAIRE
   ════════════════════════════════════════════════════ */
.review-form__wrapper {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: start; max-width: 1100px; margin: 0 auto;
}

.review-form {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
}

/* Stars */
.review-form__stars-wrap { margin-bottom: 28px; }
.review-form__label {
  font-size: 0.82rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--gray-light); margin-bottom: 10px;
}
.stars-input {
  display: flex; gap: 6px; margin-bottom: 8px;
}
.star-btn {
  font-size: 2.2rem; line-height: 1;
  color: #333; background: none; border: none;
  cursor: pointer; transition: color 0.15s, transform 0.15s;
  padding: 0 2px;
}
.star-btn:hover,
.star-btn.active { color: #f59e0b; transform: scale(1.2); }
.star-btn.filled { color: #f59e0b; }
.stars-label {
  font-size: 0.82rem; color: var(--gray);
  font-style: italic;
}

.review-form__actions {
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  margin-top: 4px;
}
.review-form__note {
  font-size: 0.78rem; color: var(--gray);
}
.review-form__success {
  display: flex; align-items: center; gap: 10px;
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius); padding: 14px 18px;
  color: #4ade80; font-weight: 700; margin-top: 12px; width: 100%;
}

/* Live reviews panel */
.reviews-live { display: flex; flex-direction: column; gap: 0; }
.reviews-live__title {
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 800;
  text-transform: uppercase; margin-bottom: 20px; color: var(--white);
}
.reviews-live__list { display: flex; flex-direction: column; gap: 14px; }

.review-live-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 20px 22px;
  animation: slideIn 0.4s ease;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.review-live-card__header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.review-live-card__author {
  display: flex; align-items: center; gap: 10px;
}
.review-live-card__avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem; flex-shrink: 0;
}
.review-live-card__name {
  font-weight: 700; font-size: 0.92rem;
}
.review-live-card__meta {
  font-size: 0.75rem; color: var(--gray); margin-top: 1px;
}
.review-live-card__stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 1px; }
.review-live-card__text {
  color: var(--gray-light); font-size: 0.9rem; line-height: 1.65;
  font-style: italic;
}
.review-live-card__text::before { content: '"'; }
.review-live-card__text::after  { content: '"'; }

.reviews-live__empty {
  color: var(--gray); font-size: 0.9rem; font-style: italic;
  text-align: center; padding: 32px 0;
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: var(--radius);
}

@media (max-width: 900px) {
  .review-form__wrapper { grid-template-columns: 1fr; gap: 32px; }
}

/* ════════════════════════════════════════════════════
   FOOTER DEV CREDIT
   ════════════════════════════════════════════════════ */
.footer__dev {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 0.78rem; color: var(--gray);
}
.footer__dev-link {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--gray-light);
  padding: 4px 10px; border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.footer__dev-link:hover {
  border-color: var(--orange);
  color: var(--white);
}
.footer__dev-logo {
  height: 18px; width: auto;
  filter: brightness(0.8);
  transition: filter 0.2s;
}
.footer__dev-link:hover .footer__dev-logo { filter: brightness(1); }

/* ════════════════════════════════════════════════════
   FLOATING BTNS (phone + WhatsApp)
   ════════════════════════════════════════════════════ */
.floating-btns {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
}
.floating-cta {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 0.95rem;
  padding: 13px 20px; border-radius: 100px;
  transition: var(--transition); text-decoration: none;
  animation: float-in 0.5s 1s both;
  white-space: nowrap;
}
.floating-cta--phone {
  background: var(--orange); color: var(--white);
  box-shadow: 0 8px 28px rgba(232,69,33,0.45);
}
.floating-cta--phone:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(232,69,33,0.6);
}
.floating-cta--whatsapp {
  background: #25D366; color: var(--white);
  box-shadow: 0 8px 28px rgba(37,211,102,0.35);
  animation-delay: 1.2s;
}
.floating-cta--whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(37,211,102,0.5);
}

@media (max-width: 768px) {
  .floating-btns { bottom: 20px; right: 16px; gap: 10px; }
  .floating-cta span { display: none; }
  .floating-cta { padding: 15px; border-radius: 50%; }
}

/* ════════════════════════════════════════════════════
   BANDEAU RGPD COOKIES
   ════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1100;
  background: rgba(20,20,20,0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  transform: translateY(0);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.4);
}
.cookie-banner.hidden {
  transform: translateY(110%);
  pointer-events: none;
}
.cookie-banner__content {
  display: flex; align-items: center; gap: 14px; flex: 1;
}
.cookie-banner__icon { color: var(--orange); flex-shrink: 0; }
.cookie-banner__content p {
  font-size: 0.88rem; color: var(--gray-light); line-height: 1.55;
}
.cookie-banner__content a { color: var(--orange); text-decoration: underline; }
.cookie-banner__actions {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.cookie-banner__decline {
  background: none; border: none; cursor: pointer;
  color: var(--gray); font-size: 0.82rem;
  text-decoration: underline; padding: 8px;
  transition: color 0.2s; font-family: var(--font-body);
}
.cookie-banner__decline:hover { color: var(--white); }

@media (max-width: 640px) {
  .cookie-banner { flex-direction: column; padding: 20px; text-align: center; }
  .cookie-banner__content { flex-direction: column; text-align: center; }
  .cookie-banner__actions { justify-content: center; width: 100%; }
}

/* ════════════════════════════════════════════════════
   PRINT
   ════════════════════════════════════════════════════ */
@media print {
  .header, .floating-cta, .urgent-bar, .hero__scroll { display: none; }
  body { background: white; color: black; }
  .section--dark { background: #eee; }
  a { color: black; }
}
