/* ===================================
   LE BUS INSOLITE — style.css
   Direction artistique : Nature Neon
   =================================== */

/* === VARIABLES === */
:root {
  /* Palette Nature Neon */
  --color-bg:           #F5EFE6;   /* crème — fond principal */
  --color-bg-alt:       #D4B896;   /* sable doré — sections alternées */
  --color-text:         #3A2E26;   /* brun bois — texte corps */
  --color-heading:      #4A5D3A;   /* vert mousse — titres */
  --color-accent:       #FF3E7F;   /* rose néon — CTA */
  --color-accent-hover: #9D4EDD;   /* violet — hovers */
  --color-light:        #FFFBF0;   /* blanc chaud — cartes / fonds clairs */
  --color-dark:         #1A1A1A;   /* section nuit — footer / hero */

  /* Helpers internes */
  --color-border:       rgba(74, 93, 58, 0.18);
  --color-border-neon:  rgba(255, 62, 127, 0.25);
  --color-muted:        rgba(58, 46, 38, 0.55);

  /* Typographies */
  --font-heading: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Ombres */
  --shadow:       0 4px 20px rgba(58, 46, 38, 0.08);
  --shadow-hover: 0 8px 30px rgba(255, 62, 127, 0.20);
  --shadow-dark:  0 8px 30px rgba(0, 0, 0, 0.25);

  /* Coins arrondis */
  --radius:      8px;   /* boutons, inputs */
  --radius-card: 12px;  /* cartes */

  /* Transitions */
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  font-size: 16px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 600; }

/* === BUTTONS === */
.btn {
  display: inline-block;
  background-color: var(--color-accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  letter-spacing: 0.2px;
}

.btn:hover {
  background-color: var(--color-accent-hover);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

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

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

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* Bouton signature néon */
.btn-primary {
  display: inline-block;
  background: #FF3E7F;
  color: #FFFBF0;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.2px;
  box-shadow: 0 0 20px rgba(255, 62, 127, 0.35);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #9D4EDD;
  box-shadow: 0 0 30px rgba(255, 62, 127, 0.7);
  transform: scale(1.02);
}

.btn-primary.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245, 239, 230, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.header-logo a {
  display: flex;
  align-items: center;
}

.header-logo a img {
  height: 60px;
  width: auto;
  display: block;
}

/* Fallback texte si logo absent */
.header-logo a span.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-heading);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.header-nav a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 8px 11px;
  border-radius: var(--radius);
  transition: var(--transition);
  color: var(--color-text);
  white-space: nowrap;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--color-accent);
  background-color: rgba(255, 62, 127, 0.08);
}

.header-cta {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-cta .btn {
  padding: 10px 20px;
  font-size: 0.88rem;
}

/* === HAMBURGER === */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-text);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* === MOBILE NAV === */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(245, 239, 230, 0.99);
  backdrop-filter: blur(10px);
  z-index: 999;
  padding: 1.5rem 2rem 2rem;
  border-bottom: 1px solid var(--color-border);
  flex-direction: column;
  gap: 0.4rem;
  box-shadow: var(--shadow-dark);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 12px 16px;
  border-radius: var(--radius);
  transition: var(--transition);
  border-left: 3px solid transparent;
  color: var(--color-text);
}

.mobile-nav a:hover {
  color: var(--color-accent);
  border-left-color: var(--color-accent);
  background-color: rgba(255, 62, 127, 0.05);
}

.mobile-nav .btn {
  text-align: center;
  margin-top: 0.75rem;
  border-left: none;
}

/* === PAGE WRAPPER === */
main {
  padding-top: 70px;
}

/* === SECTIONS — padding 80px desktop / 40px mobile === */
.section {
  padding: 5rem 2rem;   /* 80px vertical */
  max-width: 1200px;
  margin: 0 auto;
}

.section-full {
  padding: 5rem 2rem;
  width: 100%;
}

.section-title {
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  text-align: center;
  color: var(--color-muted);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* === HERO === */
.hero {
  min-height: calc(100vh - 70px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('../images/bus-entier-jour.jpeg');
  background-size: cover;
  background-position: center;
  background-color: var(--color-dark);
  padding: 2rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(26, 26, 26, 0.68) 0%,
    rgba(74, 93, 58, 0.20) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 820px;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 30px rgba(0, 0, 0, 0.45);
  letter-spacing: -1px;
  color: #fff;
}

.hero-subtitle {
  font-size: clamp(1.15rem, 2.5vw, 1.7rem);
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #d6f0b8;
}

.hero-text {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  margin-bottom: 2.5rem;
  opacity: 0.92;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* === CARDS GRID === */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--color-light);
  border-radius: var(--radius-card);
  padding: 2rem;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-border-neon);
}

.card-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--color-muted);
  line-height: 1.75;
}

/* === FEATURES LIST === */
.features-bg {
  background:
    linear-gradient(135deg, rgba(212, 184, 150, 0.95) 0%, rgba(196, 168, 130, 0.95) 100%),
    url('../images/profil-bus-plante.jpeg') center/cover no-repeat;
  padding: 5rem 2rem;
}

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1rem 1.4rem;
  background: var(--color-light);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* === BUS DAY PHOTO BANNER === */
.bus-day-banner {
  width: 100%;
  max-height: 480px;
  overflow: hidden;
  position: relative;
}

.bus-day-banner img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Feuilles décoratives au-dessus et en-dessous */
.bus-day-banner::before,
.bus-day-banner::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 1;
  pointer-events: none;
}

.bus-day-banner::before {
  top: 0;
  background: linear-gradient(to bottom, var(--color-bg-alt), transparent);
}

.bus-day-banner::after {
  bottom: 0;
  background: linear-gradient(to top, var(--color-bg), transparent);
}

/* === NATURE LEAF DIVIDER === */
.nature-divider {
  text-align: center;
  font-size: 1.4rem;
  padding: 0.5rem 0;
  color: var(--color-heading);
  opacity: 0.5;
  letter-spacing: 0.6rem;
}

/* === PRICING TABLE === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.price-card {
  background: var(--color-light);
  border-radius: var(--radius-card);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 2px solid var(--color-border);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.price-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.price-card.featured {
  border-color: var(--color-heading);
  background: linear-gradient(135deg, #eef3e8 0%, #dde8d0 100%);
}

.price-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.price-card h3 {
  font-size: 0.95rem;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
  line-height: 1;
}

.price-detail {
  font-size: 0.82rem;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}

.price-cta {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.2px;
  margin-top: 0.25rem;
}

a.price-card {
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-badge {
  display: inline-block;
  background: var(--color-heading);
  color: #fff;
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === REVIEWS === */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--color-light);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  position: relative;
  transition: var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--color-border-neon);
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  left: 20px;
  font-size: 5rem;
  color: var(--color-heading);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.15;
}

.review-stars {
  color: #F5A623;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.review-text {
  font-style: italic;
  color: var(--color-muted);
  margin-bottom: 1rem;
  line-height: 1.75;
  font-size: 0.95rem;
}

.review-author {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--color-heading);
}

/* === EXPLORE CARDS === */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.explore-card {
  display: block;
  background: var(--color-light);
  border-radius: var(--radius-card);
  padding: 2rem;
  text-align: center;
  border: 2px solid var(--color-border);
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow);
}

.explore-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.explore-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.explore-card h3 {
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.explore-card p {
  color: var(--color-muted);
  font-size: 0.92rem;
}

/* === REASSURANCE BANNER === */
.reassurance {
  background: var(--color-heading);
  color: #fff;
  padding: 1.5rem 2rem;
  text-align: center;
}

.reassurance-items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* === PAGE HERO (pages intérieures) === */
.page-hero {
  background: linear-gradient(
    135deg,
    #1a2a1a 0%,
    #2e4a2e 55%,
    #4A5D3A 100%
  );
  color: #fff;
  text-align: center;
  padding: 5rem 2rem 4rem;
}

.page-hero h1 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
}

.page-hero p {
  font-size: 1.1rem;
  opacity: 0.88;
  max-width: 700px;
  margin: 0 auto;
}

/* === BUS PAGE SECTIONS === */
.bus-sections {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.bus-section-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--color-border);
}

.bus-section-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.bus-section-row.reverse {
  direction: rtl;
}

.bus-section-row.reverse > * {
  direction: ltr;
}

.photo-placeholder {
  background: linear-gradient(135deg, #1a2a1a 0%, #3a5a2a 60%, #2a4020 100%);
  border-radius: var(--radius-card);
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.photo-placeholder .ph-icon {
  font-size: 3.5rem;
  opacity: 0.6;
}

.photo-placeholder .ph-label {
  font-size: 0.85rem;
  font-style: italic;
  opacity: 0.5;
  text-align: center;
  padding: 0 1rem;
}

.photo-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.02) 20px,
    rgba(255, 255, 255, 0.02) 40px
  );
}

.bus-section-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  display: block;
}

.bus-text h2 {
  margin-bottom: 1rem;
}

.bus-text p {
  color: var(--color-muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* === PACKS === */
.packs-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}

.pack-category {
  margin-bottom: 4rem;
}

.pack-category-header {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--color-heading);
  display: inline-block;
}

.pack-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.pack-card {
  background: var(--color-light);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.pack-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-hover);
}

.pack-card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.pack-price {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--color-accent);
  margin: 0.4rem 0 0.6rem;
}

.pack-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.pack-card p {
  color: var(--color-muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* === RESERVATION PAGE === */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--color-light);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.step-item:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--color-border-neon);
}

.step-num {
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content .step-icon {
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}

.step-content h3 {
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.step-content p {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.reserver-cta-box {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--color-light);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  border: 2px solid var(--color-border);
  max-width: 600px;
  margin: 0 auto 2rem;
  transition: var(--transition);
}

.reserver-cta-box:hover {
  border-color: var(--color-border-neon);
  box-shadow: var(--shadow-hover);
}

.reserver-cta-box h2 {
  margin-bottom: 0.5rem;
}

.reserver-cta-box p {
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.contact-call-box {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #eef3e8, #dde8d0);
  border-radius: var(--radius-card);
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid var(--color-border);
}

.contact-call-box p {
  color: var(--color-muted);
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.contact-call-box .phone-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--color-accent);
  display: block;
  transition: var(--transition);
}

.contact-call-box .phone-link:hover {
  color: var(--color-accent-hover);
}

/* === FAQ ACCORDION === */
.faq-container {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-light);
  border-radius: var(--radius-card);
  margin-bottom: 0.75rem;
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--color-border-neon);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--color-heading);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(74, 93, 58, 0.05);
}

.faq-question.active {
  color: var(--color-accent);
  background: rgba(255, 62, 127, 0.04);
}

.faq-chevron {
  font-size: 1rem;
  transition: var(--transition);
  flex-shrink: 0;
  color: var(--color-accent);
}

.faq-question.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer.open {
  max-height: 600px;
}

.faq-answer-inner {
  padding: 1rem 1.5rem 1.25rem;
  color: var(--color-muted);
  line-height: 1.75;
  border-top: 1px solid var(--color-border);
}

/* === AUTOUR PAGE === */
.autour-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}

.autour-category {
  margin-bottom: 4rem;
}

.autour-category-title {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  color: var(--color-heading);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.autour-category-title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--color-heading), transparent);
  border-radius: 2px;
}

.autour-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1rem;
}

.autour-item {
  background: var(--color-light);
  border-radius: var(--radius-card);
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.autour-item:hover {
  transform: translateX(5px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-hover);
}

.autour-item h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
  color: var(--color-accent);
}

.autour-item p {
  font-size: 0.88rem;
  color: var(--color-muted);
}

.autour-tip {
  background: linear-gradient(135deg, #eef3e8, #dde8d0);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  border-left: 4px solid var(--color-heading);
  margin-top: 1.25rem;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--color-text);
}

/* === CONTACT PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info-col h2 {
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.contact-item:last-child {
  border-bottom: none;
}

.ci-icon {
  font-size: 1.4rem;
  width: 36px;
  flex-shrink: 0;
  margin-top: 2px;
}

.ci-text h3 {
  font-size: 0.82rem;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.2rem;
}

.ci-text p,
.ci-text a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  transition: var(--transition);
}

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

/* === CONTACT FORM === */
.contact-form-col {
  background: var(--color-light);
  padding: 2rem;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}

.contact-form-col h2 {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}

.form-group .required {
  color: var(--color-accent);
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(58, 46, 38, 0.2);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  background: var(--color-light);
  box-shadow: 0 0 0 3px rgba(255, 62, 127, 0.10);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23FF3E7F' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* === FOOTER === */
.site-footer {
  background: var(--color-dark);
  color: #ccc;
}

.footer-main {
  padding: 5rem 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  margin-bottom: 0.75rem;
  display: block;
}

.footer-logo a {
  display: inline-block;
  transition: var(--transition);
}

.footer-logo a:hover {
  opacity: 0.8;
}

.footer-logo a img {
  height: 50px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: #888;
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 0.3rem;
}

.footer-col h3 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col ul li a {
  color: #888;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--color-accent);
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  color: #888;
  font-size: 0.9rem;
}

.footer-contact-link a {
  color: #888;
  transition: var(--transition);
}

.footer-contact-link a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: #555;
}

.footer-bottom a {
  color: #555;
  transition: var(--transition);
}

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

/* === SECTION NUIT === */
.section-nuit {
  background-color: var(--color-dark);
  background-image: url('../images/bar-nuit.jpeg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 6rem 2rem;
  text-align: center;
  overflow: hidden;
}

/* Overlay sombre 60% */
.section-nuit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.6);
  z-index: 0;
}

/* Halo ambiant néon en fond */
.section-nuit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(157, 78, 221, 0.18) 0%,
    rgba(255, 62, 127, 0.10) 40%,
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
}

.section-nuit-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.section-nuit-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  /* Glow rose/violet sur le titre */
  text-shadow:
    0 0 20px rgba(255, 62, 127, 0.55),
    0 0 50px rgba(157, 78, 221, 0.30);
}

.section-nuit-text {
  font-family: var(--font-body);
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--color-light);
  margin-bottom: 2.5rem;
  opacity: 0.92;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* Étoiles décoratives (pseudo-points lumineux) */
.section-nuit-stars {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.section-nuit-stars span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF3E7F;
  box-shadow: 0 0 8px rgba(255, 62, 127, 0.9), 0 0 20px rgba(255, 62, 127, 0.5);
  animation: pulse-neon 2s ease-in-out infinite;
}

.section-nuit-stars span:nth-child(2) {
  background: #9D4EDD;
  box-shadow: 0 0 8px rgba(157, 78, 221, 0.9), 0 0 20px rgba(157, 78, 221, 0.5);
  animation-delay: 0.4s;
}

.section-nuit-stars span:nth-child(3) {
  animation-delay: 0.8s;
}

.section-nuit-stars span:nth-child(4) {
  background: #9D4EDD;
  box-shadow: 0 0 8px rgba(157, 78, 221, 0.9), 0 0 20px rgba(157, 78, 221, 0.5);
  animation-delay: 1.2s;
}

.section-nuit-stars span:nth-child(5) {
  animation-delay: 1.6s;
}

@keyframes pulse-neon {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.6); }
}

@media (max-width: 768px) {
  .section-nuit {
    padding: 4rem 1.25rem;
  }
}

/* === ANIMATIONS === */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* === UTILITY === */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.bg-light {
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-bg) 100%);
}

.divider {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-heading), transparent);
  opacity: 0.2;
  margin: 0;
}

.section-tag {
  display: inline-block;
  background: rgba(74, 93, 58, 0.10);
  color: var(--color-heading);
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 1rem;
}

/* === RESPONSIVE 1024px === */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .bus-section-row {
    gap: 2rem;
  }
}

/* === RESPONSIVE 768px — padding 40px === */
@media (max-width: 768px) {
  .header-nav,
  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .site-header {
    padding: 0 1.25rem;
  }

  .section {
    padding: 2.5rem 1.25rem;   /* 40px vertical */
  }

  .section-full {
    padding: 2.5rem 1.25rem;
  }

  .features-bg {
    padding: 2.5rem 1.25rem;
  }

  .bus-sections {
    padding: 2.5rem 1.25rem;
  }

  .bus-section-row {
    grid-template-columns: 1fr;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
  }

  .bus-section-row.reverse {
    direction: ltr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-main {
    padding: 2.5rem 1.25rem 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .page-hero {
    padding: 3rem 1.25rem 2.5rem;
  }

  .reserver-cta-box {
    padding: 2rem 1.25rem;
  }

  .autour-wrapper {
    padding: 0 1.25rem 2.5rem;
  }

  .packs-section {
    padding: 0 1.25rem 2.5rem;
  }
}

/* === RESPONSIVE 480px === */
@media (max-width: 480px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .reassurance-items {
    flex-direction: column;
    gap: 0.6rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .pack-cards {
    grid-template-columns: 1fr;
  }

  .autour-list {
    grid-template-columns: 1fr;
  }
}
