﻿/* =========================
   PRESTA33 - STYLES.CSS
   Version propre complète
========================= */

/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #22c55e;
  --primary-hover: #16a34a;
  --primary-light: rgba(34, 197, 94, 0.12);
  --primary-foreground: #ffffff;
  --secondary: #1a1a1a;
  --secondary-hover: #2a2a2a;
  --secondary-foreground: #ffffff;
  --background: #f8f9fa;
  --foreground: #1a1a1a;
  --muted: #f3f4f6;
  --muted-foreground: #6b7280;
  --card: #ffffff;
  --card-foreground: #1a1a1a;
  --border: #e5e7eb;
  --sms: #25D366;
  --sms-hover: #1ebe5d;
  --blue: #2563eb;
  --blue-hover: #1d4ed8;
  --radius: 0.75rem;
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

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

.hidden {
  display: none !important;
}

/* =========================
   Buttons
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: var(--primary);
  color: #000;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
}

.btn-blue {
  background-color: var(--blue);
  color: white;
}

.btn-blue:hover {
  background-color: var(--blue-hover);
}

.btn-sms {
  background-color: var(--sms);
  color: #000;
}

.btn-mail {
  background-color: var(--blue);
  color: #fff;
}

.btn-mail:hover {
  background-color: var(--blue-hover);
}

.btn-sms:hover {
  background-color: var(--sms-hover);
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

.btn.disabled {
  opacity: 0.45;
  pointer-events: none;
}

/* =========================
   Header fixe
========================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 1rem;
  min-height: 74px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  width: 120px;
  height: auto;
}

.logo-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
  white-space: nowrap;
}

.logo-icon {
  background-color: var(--primary);
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: var(--primary-foreground);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}

.nav-desktop a:hover {
  color: var(--primary);
  opacity: 1;
}

.header-cta {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: white;
  color: var(--foreground);
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  transition: background 0.2s;
}

.google-rating:hover {
  background: #f3f4f6;
}

.stars {
  display: flex;
  gap: 0.125rem;
}

.rating-value {
  font-size: 0.75rem;
  font-weight: 800;
}

.rating-source {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #22c55e;
  color: #000;
  border: none;
  border-radius: 12px;
  width: 46px;
  height: 46px;
  font-size: 28px;
  font-weight: 900;
  cursor: pointer;
}

.close-icon.hidden,
.menu-icon.hidden {
  display: none;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  background: #020617;
  border-top: 1px solid rgba(255,255,255,0.1);
}

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

.nav-mobile a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  padding: 0.5rem 0;
  opacity: 0.9;
}

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

.menu-qr {
  padding-top: 0.75rem;
  margin-top: 0.25rem;
  border-top: 1px solid rgba(34, 197, 94, 0.35);
  text-align: center;
}

.menu-qr summary {
  color: white;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  padding: 0.5rem 0;
}

.menu-qr summary::-webkit-details-marker {
  display: none;
}

.menu-qr summary:hover {
  color: var(--primary);
}

.menu-qr img {
  width: 160px;
  max-width: 100%;
  display: block;
  margin: 0.75rem auto 0.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 0 22px rgba(34, 197, 94, 0.25);
}

.menu-qr a {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 767px) {
  .menu-qr[open] {
    position: fixed;
    inset: 0;
    z-index: 2000;
    padding: 4.5rem 1.25rem 1.5rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.96);
    border: 0;
  }

  .menu-qr[open] summary {
    position: fixed;
    top: 1rem;
    left: 1rem;
    padding: 0.65rem 1rem;
    color: #000;
    background-color: var(--primary);
    border-radius: 9999px;
    font-weight: 800;
    z-index: 2001;
  }

  .menu-qr[open] img {
    width: min(88vw, 88vh);
    margin-bottom: 1rem;
  }

  .menu-qr[open] a {
    color: var(--primary);
    font-size: 1.05rem;
  }
}

.google-rating-mobile {
  justify-content: center;
  padding: 0.5rem;
  border-radius: 0.5rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .header-cta {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .nav-mobile {
    display: none !important;
  }
}

/* =========================
   Hero Section
========================= */
.hero {
  position: relative;
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  overflow: hidden;
  padding-top: 74px; /* hauteur du bandeau fixe */
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(26,26,26,0.7), rgba(26,26,26,0.5), rgba(34,197,94,0.2));
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  padding: 24px 1rem 4rem;
}

.hero-text {
  max-width: 600px;
  margin-top: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary-light);
  color: var(--primary);
  padding: 0.65rem 1.25rem;
  border-radius: 9999px;
  margin-bottom: 1.4rem;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(34,197,94,0.15);
}

.hero h1 {
  font-size: 2.35rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.hero p {
  font-size: 1.125rem;
  opacity: 0.86;
  margin-bottom: 2rem;
  max-width: 40rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 320px;
  margin-top: 0;
  align-self: start;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-slider .slide,
.hero-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slider .slide.active,
.hero-slider img.active {
  opacity: 1;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero-buttons {
    flex-direction: row;
  }

  .hero-slider {
    height: 380px;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    padding: 24px 1rem 5rem;
  }

  .hero h1 {
    font-size: 3.75rem;
  }

  .hero-slider {
    height: 430px;
  }
}

/* =========================
   Sections
========================= */
.section {
  padding: 5rem 0;
}

.section-light {
  background-color: var(--background);
}

.section-muted {
  background-color: var(--muted);
}

.section-dark {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 1.875rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 48rem;
  margin: 0 auto;
}

.section-header-light h2 {
  color: var(--secondary-foreground);
}

.section-header-light p {
  color: rgba(255,255,255,0.8);
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.25rem;
  }
}

/* =========================
   Cards / About
========================= */
.card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.card-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--primary-light);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--muted-foreground);
}

.about-grid {
  display: grid;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto 4rem;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.card-eco {
  background-color: var(--primary-light);
  border-color: rgba(34, 197, 94, 0.2);
}

.card-eco-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card-eco-icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

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

.card-eco p {
  margin-bottom: 1rem;
}

.card-eco p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .card-eco-content {
    flex-direction: row;
  }
}

/* =========================
   Pricing
========================= */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pricing-card {
  position: relative;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.pricing-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: rgba(34, 197, 94, 0.5);
}

.pricing-card-popular {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary);
  color: #000;
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
  font-weight: 800;
  border-bottom-left-radius: 0.5rem;
}

.pricing-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--foreground);
}

.pricing-price span {
  font-size: 1.5rem;
}

.pricing-desc {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.pricing-subtitle {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: 0.25rem;
}

.pricing-features {
  list-style: none;
  margin: 1.5rem 0;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: rgba(26, 26, 26, 0.8);
}

.pricing-features li svg {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 0.125rem;
}

/* =========================
   Options
========================= */
.options-section {
  margin-top: 4rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.options-section h3 {
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2rem;
}

.options-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .options-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.option-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  transition: border-color 0.2s;
}

.option-card:hover {
  border-color: rgba(34, 197, 94, 0.5);
}

.option-card span:first-child {
  font-size: 0.875rem;
}

.option-price {
  font-weight: 900;
  color: var(--primary);
}

/* =========================
   Booking
========================= */
.booking-form {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.booking-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.booking-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-weight: 800;
}

.booking-icon {
  color: var(--primary);
}

.formule-grid,
.options-booking-grid,
.time-grid {
  display: grid;
  gap: 0.75rem;
  padding: 1.5rem;
}

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

@media (min-width: 768px) {
  .formule-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.formule-btn,
.option-btn,
.time-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1rem;
  background: none;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}

.formule-btn:hover,
.option-btn:hover,
.time-btn:hover {
  border-color: rgba(34, 197, 94, 0.5);
}

.formule-btn.active,
.option-btn.active,
.time-btn.active,
.date-btn.active,
.formule-btn.selected,
.option-btn.selected,
.time-btn.selected,
.date-btn.selected {
  background: #22c55e !important;
  color: #000 !important;
  border-color: #22c55e !important;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.45);
}

.formule-name,
.option-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--foreground);
}

.formule-price,
.option-price-btn {
  font-weight: 900;
  color: var(--primary);
}

.option-btn.active .formule-price,
.option-btn.active .option-price-btn,
.formule-btn.active .formule-price {
  color: #000;
}

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

@media (min-width: 768px) {
  .options-booking-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.option-btn {
  position: relative;
  padding-right: 2.5rem;
}

.option-check {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  display: none;
  color: var(--primary);
}

.option-btn.active .option-check,
.option-btn.selected .option-check {
  display: block;
  color: #000;
}

.time-grid {
  grid-template-columns: repeat(4, 1fr);
}

@media (min-width: 768px) {
  .time-grid {
    grid-template-columns: repeat(8, 1fr);
  }
}

.time-btn {
  flex-direction: row;
  justify-content: center;
  font-weight: 700;
}

/* Date Selector */
.date-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
}

.date-nav-btn {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
}

.date-nav-btn:hover:not(:disabled) {
  border-color: rgba(34, 197, 94, 0.5);
}

.date-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  flex: 1;
}

.date-btn {
  border: 2px solid var(--border);
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  transition: all 0.2s;
}

.date-btn:hover {
  border-color: rgba(34, 197, 94, 0.5);
}

.date-btn strong {
  font-size: 22px;
}

/* Booking Summary */
.booking-summary {
  transition: all 0.2s;
}

.booking-summary.complete {
  border: 2px solid var(--primary);
}

.summary-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .summary-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.summary-text {
  text-align: center;
}

@media (min-width: 768px) {
  .summary-text {
    text-align: left;
  }
}

.summary-placeholder {
  color: var(--muted-foreground);
}

/* =========================
   Before / After
========================= */
.before-after-card {
  max-width: 56rem;
  margin: 0 auto;
  background-color: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.before-after-container {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: ew-resize;
}

.before-after-container img {
  user-select: none;
  pointer-events: none;
}

.after-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-overlay {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  z-index: 2;
}

.before-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) brightness(0.75) contrast(0.9) sepia(20%);
}

.before-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(180, 83, 9, 0.3), rgba(120, 113, 108, 0.4), rgba(75, 85, 99, 0.5));
  mix-blend-mode: multiply;
  pointer-events: none;
}

.slider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: white;
  box-shadow: var(--shadow-lg);
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);
}

.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.8rem;
  height: 2.8rem;
  background-color: white;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
}

.slider-handle span {
  width: 2px;
  height: 1rem;
  background-color: #9ca3af;
  border-radius: 9999px;
}

.label {
  position: absolute;
  top: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 800;
  z-index: 12;
}

.label-before {
  left: 1rem;
  background-color: rgba(26, 26, 26, 0.9);
  color: white;
}

.label-after {
  right: 1rem;
  background-color: rgba(34, 197, 94, 0.9);
  color: #000;
}

.slider-control {
  padding: 1.5rem;
  background-color: var(--card);
  text-align: center;
}

.slider {
  width: 100%;
  height: 0.5rem;
  background-color: var(--muted);
  border-radius: 9999px;
  appearance: none;
  cursor: pointer;
}

.slider::-webkit-slider-thumb {
  appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  background-color: var(--primary);
  border-radius: 50%;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 1.25rem;
  height: 1.25rem;
  background-color: var(--primary);
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

.slider-control p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-top: 0.75rem;
}

/* =========================
   Zones
========================= */
.zones-card {
  max-width: 56rem;
  margin: 0 auto;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.zones-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.zones-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary-light);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.zones-header h3 {
  font-size: 1.125rem;
  font-weight: 800;
}

.zones-header p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.zones-note {
  margin-top: 2rem;
  padding: 1rem;
  background-color: var(--primary-light);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 0.5rem;
}

.zones-note p {
  font-size: 0.875rem;
}

.zones-note strong {
  color: var(--primary);
}

/* Menu déroulant villes */
.zone-select-wrap {
  width: 100%;
  margin-bottom: 2rem;
}

.zone-select-label {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--foreground);
  font-weight: 800;
}

.zone-select {
  width: 100%;
  min-height: 3.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  color: var(--foreground);
  padding: 0 1rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.zone-select:focus {
  outline: 3px solid rgba(34, 197, 94, 0.24);
  border-color: var(--primary);
}

.zone-select-help {
  margin-top: 0.75rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* =========================
   Contact
========================= */
.contact-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.contact-card {
  background-color: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.contact-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--primary);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary-foreground);
}

.contact-card h3 {
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.contact-card a {
  color: var(--primary);
  font-size: 1.125rem;
  font-weight: 700;
  word-break: break-all;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-card p {
  color: rgba(255,255,255,0.8);
}

.contact-cta {
  text-align: center;
  margin-top: 3rem;
}

/* =========================
   Footer
========================= */
.footer {
  background-color: var(--foreground);
  color: var(--background);
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo .logo-icon {
  padding: 0.5rem;
}

.footer-logo span {
  font-weight: 800;
}

.footer p {
  opacity: 0.6;
  font-size: 0.875rem;
  text-align: center;
}

/* =========================
   Responsive Mobile
========================= */
@media (max-width: 767px) {
  .header-content {
    min-height: 70px;
  }

  .logo img {
    width: 95px;
  }

  .logo-title {
    font-size: 0.9rem;
    white-space: normal;
    line-height: 1.15;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-content {
    padding-top: 20px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-slider {
    height: 260px;
  }

  .section {
    padding: 3.5rem 0;
  }

  .pricing-card-popular {
    transform: none;
  }

  .date-selector {
    overflow-x: auto;
  }

  .date-grid {
    min-width: 650px;
  }

  .before-after-container {
    aspect-ratio: 4/3;
  }
}

.booking-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
}
@media (min-width: 640px) {
  .booking-actions {
    flex-direction: row;
    justify-content: flex-end;
  }
}

