/* =============================================
   GREENRIDE CARCASSONNE — Feuille de style
   ============================================= */

:root {
  /* Palette GreenRide */
  --primary:        #0F6A4B;   /* Vert profond */
  --primary-dark:   #0A5038;   /* Vert profond hover */
  --secondary:      #38B27A;   /* Vert clair */
  --secondary-light:#E8F5EE;   /* Vert très clair */
  --dark:           #1E1E1E;   /* Noir anthracite */
  --dark-2:         #2D2D2D;
  --gold:           #C9A86A;   /* Doré premium */
  --gold-light:     #F0E4C8;
  --bg-light:       #F7F7F5;   /* Blanc cassé */
  --bg-white:       #FFFFFF;
  --text:           #2D2D2D;
  --text-light:     #6B6B6B;
  --border:         #E2E2DE;
  --shadow:         0 4px 20px rgba(0, 0, 0, 0.07);
  --shadow-lg:      0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-green:   0 8px 24px rgba(15, 106, 75, 0.25);
  --radius:         12px;
  --radius-lg:      20px;
  --transition:     0.3s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
em { font-style: italic; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 88px 0; }

/* ---- Boutons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  line-height: 1;
  letter-spacing: 0.1px;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.8);
}
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 10px; }
.btn-full { width: 100%; justify-content: center; }

/* ---- En-têtes de section ---- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  background: var(--secondary-light);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 42px);
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-header h2 em { color: var(--primary); font-style: italic; }
.section-header p {
  color: var(--text-light);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ==============================================
   NAVIGATION
   ============================================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.4s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.07);
  padding: 10px 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 22px;
  color: var(--secondary);
}
.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.logo-green  { color: var(--secondary); }
.logo-ride   { color: #fff; }                  /* Sur fond sombre (hero/nav transparent) */
.logo-ride-dark   { color: var(--dark); }      /* Sur fond clair (widget) */
.logo-ride-footer { color: #fff; }
.navbar.scrolled .logo-ride { color: var(--dark); }  /* Nav scrollée : fond blanc */

.logo-city {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 2px;
}
.navbar.scrolled .logo-city { color: var(--text-light); }
.logo-city-footer { color: rgba(255,255,255,0.45); }

/* Nav links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 26px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
}
.navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover { color: var(--secondary); }

.nav-cta { padding: 10px 20px; font-size: 14px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--dark); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==============================================
   HERO
   ============================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1753709697924-3f30695a50d7?w=1920&q=85&auto=format&fit=crop');
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
  transform: scale(1.04);
  transition: transform 9s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 26, 20, 0.90) 0%,
    rgba(15, 26, 20, 0.65) 55%,
    rgba(15, 26, 20, 0.45) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 720px;
  padding-top: 110px;
  padding-bottom: 70px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(56, 178, 122, 0.15);
  border: 1px solid rgba(56, 178, 122, 0.4);
  color: var(--secondary);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 24px;
  margin-bottom: 24px;
  letter-spacing: 0.2px;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.06;
  margin-bottom: 22px;
  letter-spacing: -1px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--secondary);
}
.hero-subtitle {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 40px;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  animation: bounceDown 2.4s infinite;
  transition: color var(--transition);
}
.hero-scroll:hover { color: var(--secondary); }
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* ==============================================
   FEATURES STRIP
   ============================================== */
.features-strip {
  background: var(--dark);
  padding: 0;
}
.features-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  transition: background var(--transition);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(255, 255, 255, 0.03); }
.feature-item > i {
  font-size: 26px;
  color: var(--secondary);
  flex-shrink: 0;
}
.feature-item strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 3px;
}
.feature-item span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

/* ==============================================
   L'EXPÉRIENCE / À PROPOS
   ============================================== */
.about { background: var(--bg-light); }
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text .section-tag { margin-bottom: 14px; }
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 38px);
  color: var(--dark);
  margin-bottom: 18px;
  line-height: 1.2;
}
.about-text h2 em { color: var(--primary); font-style: italic; }
.lead {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.75;
}
.about-list {
  list-style: none;
  margin-bottom: 36px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}
.about-list li:last-child { border-bottom: none; }
.about-list i { color: var(--primary); font-size: 15px; flex-shrink: 0; }

.about-image { position: relative; }
.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-badge > i { font-size: 26px; color: var(--gold); }
.about-badge strong { display: block; font-size: 16px; color: var(--dark); line-height: 1; font-weight: 700; }
.about-badge span { font-size: 12px; color: var(--text-light); }

/* ==============================================
   COMMENT ÇA MARCHE
   ============================================== */
.how-it-works { background: var(--bg-white); }
.steps {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.step {
  flex: 1;
  text-align: center;
  padding: 36px 20px 28px;
  background: var(--bg-light);
  border-radius: var(--radius);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(201, 168, 106, 0.4);
}
.step-icon {
  width: 68px;
  height: 68px;
  background: var(--secondary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 26px;
  color: var(--primary);
}
.step h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.step p { font-size: 14px; color: var(--text-light); line-height: 1.65; }
.step-arrow {
  color: var(--secondary);
  font-size: 18px;
  padding-top: 52px;
  flex-shrink: 0;
  opacity: 0.5;
}

/* ==============================================
   NOS PACKS (PRICING)
   ============================================== */
.pricing { background: var(--bg-light); }

/* Grille 5 packs : 3 en haut, 2 centrés en bas */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.pricing-card:nth-child(1) { grid-column: 1 / 3; }
.pricing-card:nth-child(2) { grid-column: 3 / 5; }
.pricing-card:nth-child(3) { grid-column: 5 / 7; }
.pricing-card:nth-child(4) { grid-column: 2 / 4; }
.pricing-card:nth-child(5) { grid-column: 4 / 6; }

.pricing-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
  border-color: var(--primary);
  transform: translateY(-10px);
}
.pricing-card.featured:hover { transform: translateY(-16px); }
.pricing-card.pricing-family {
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--secondary-light) 100%);
  border-color: var(--secondary);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pricing-icon {
  width: 58px;
  height: 58px;
  background: var(--secondary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 22px;
  color: var(--primary);
}
.pricing-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--secondary);
  margin-bottom: 6px;
}
.pricing-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.price { margin-bottom: 10px; }
.price .amount {
  font-family: 'Playfair Display', serif;
  font-size: 54px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.price .currency {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-light);
  vertical-align: super;
  margin-left: 2px;
}
.price-detail {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
  font-weight: 500;
}
.pricing-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 20px;
  min-height: 40px;
}
.pricing-card ul {
  list-style: none;
  margin-bottom: 24px;
  text-align: left;
}
.pricing-card ul li {
  padding: 6px 0;
  font-size: 13px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.pricing-card ul li:last-child { border-bottom: none; }
.pricing-card ul i { color: var(--primary); font-size: 11px; flex-shrink: 0; }
.pricing-note {
  text-align: center;
  color: var(--text-light);
  font-size: 13px;
}
.pricing-note i { color: var(--primary); margin-right: 4px; }

/* ==============================================
   RÉSERVATION
   ============================================== */
.reservation { background: var(--bg-white); }
.booking-widget-placeholder {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  text-align: center;
  background: var(--bg-light);
}
.booking-placeholder-inner { max-width: 480px; margin: 0 auto; }
.booking-logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}
.booking-icon {
  font-size: 56px;
  color: var(--primary);
  margin-bottom: 24px;
  opacity: 0.85;
}
.booking-widget-placeholder h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--dark);
  margin-bottom: 14px;
}
.booking-widget-placeholder p {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 8px;
  line-height: 1.6;
}
.booking-soon {
  font-weight: 700 !important;
  color: var(--primary) !important;
  font-size: 15px !important;
  margin-bottom: 32px !important;
}
.booking-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==============================================
   FAQ
   ============================================== */
.faq { background: var(--bg-light); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  border: 1px solid transparent;
  transition: border-color var(--transition);
}
.faq-item:has(.faq-question.active) { border-color: var(--secondary-light); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  font-family: 'Inter', sans-serif;
  transition: color var(--transition);
  gap: 16px;
}
.faq-question:hover,
.faq-question.active { color: var(--primary); }
.faq-question i {
  flex-shrink: 0;
  color: var(--primary);
  transition: transform var(--transition);
  font-size: 13px;
}
.faq-question.active i { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer.open { max-height: 400px; }
.faq-answer p {
  padding: 0 24px 22px;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.75;
}

/* ==============================================
   LOCALISATION
   ============================================== */
.location { background: var(--bg-white); }
.location-content {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.location-detail:last-of-type { border-bottom: none; margin-bottom: 28px; }
.location-detail > i {
  font-size: 18px;
  color: var(--primary);
  width: 22px;
  flex-shrink: 0;
  margin-top: 3px;
}
.location-detail strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}
.location-detail span { font-size: 14px; color: var(--text-light); }
.location-map iframe {
  width: 100%;
  height: 420px;
  border: none;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow);
}

/* ==============================================
   FOOTER
   ============================================== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 72px 0 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: var(--gold) !important;
  margin-bottom: 12px !important;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 24px;
}
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  transition: var(--transition);
}
.social-links a:hover { background: var(--primary); color: #fff; }

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 22px;
}
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  transition: color var(--transition);
}
.footer-links ul a:hover { color: var(--secondary); }

.footer-contact p {
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.45);
}
.footer-contact i { color: var(--secondary); width: 16px; flex-shrink: 0; }
.footer-eco { color: var(--secondary) !important; font-weight: 500; }
.footer-eco i { color: var(--secondary) !important; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}
.footer-bottom p { font-size: 13px; color: rgba(255, 255, 255, 0.25); }
.payment-icons {
  display: flex;
  gap: 12px;
  font-size: 26px;
  color: rgba(255, 255, 255, 0.35);
}

/* ==============================================
   ANIMATIONS (Intersection Observer)
   ============================================== */
.anim-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-fade.visible { opacity: 1; transform: translateY(0); }

/* ==============================================
   RESPONSIVE — Tablette (≤ 1024px)
   ============================================== */
@media (max-width: 1024px) {
  /* Pricing : 2 colonnes */
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .pricing-card:nth-child(1) { grid-column: 1 / 2; }
  .pricing-card:nth-child(2) { grid-column: 2 / 3; }
  .pricing-card:nth-child(3) { grid-column: 1 / 2; }
  .pricing-card:nth-child(4) { grid-column: 2 / 3; }
  .pricing-card:nth-child(5) { grid-column: 1 / 3; }
  .pricing-card.featured { transform: none; }

  .features-strip .container { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2) { border-right: none; }
  .feature-item:nth-child(3),
  .feature-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.07); }
  .about-content { gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* ==============================================
   RESPONSIVE — Mobile (≤ 768px)
   ============================================== */
@media (max-width: 768px) {
  section { padding: 60px 0; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px 24px 28px;
    gap: 2px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    border-top: 1px solid var(--border);
  }
  .nav-links.open li a {
    display: block;
    padding: 13px 0;
    color: var(--text);
    font-size: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open li:last-child a { border-bottom: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .navbar .container { position: relative; flex-wrap: wrap; }

  .hero-content { padding-top: 130px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero-stats { gap: 16px; }

  .steps { flex-direction: column; gap: 32px; }
  .step-arrow { transform: rotate(90deg); align-self: center; padding: 0; }

  .about-content { grid-template-columns: 1fr; gap: 48px; }
  .about-image { order: -1; }
  .about-badge { right: 0; bottom: -14px; }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pricing-card:nth-child(n) { grid-column: 1 / 2; }

  .location-content { grid-template-columns: 1fr; gap: 40px; }
  .location-map iframe { height: 300px; }

  .footer-top { grid-template-columns: 1fr; gap: 36px; padding: 48px 0 36px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}

/* ==============================================
   RESPONSIVE — Petit mobile (≤ 480px)
   ============================================== */
@media (max-width: 480px) {
  .features-strip .container { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .booking-widget-placeholder { padding: 48px 20px; }
  .booking-actions { flex-direction: column; }
  .booking-actions .btn { justify-content: center; }
  .about-badge { position: static; margin-top: 16px; }
  .hero-stats { gap: 12px; }
}
