/* Variables CSS cohérentes */
:root {
  --primary: #d4af37;
  --primary-light: #f4d03f;
  --secondary: #f39c12;
  --dark: #000000;
  --light: #f5f5f5;
  --text: #333333;
  --text-light: #777777;
  --success: #27ae60;
  --warning: #e74c3c;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

/* Reset et base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background-color: var(--white);
  padding-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

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

/* Navigation - Style identique */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
    z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-hover);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
}

.logo img {
  height: 70px;
  margin-right: 10px;
}


.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  color: var(--dark);
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 8px;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: rgba(212, 175, 55, 0.1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cart-icon {
  position: relative;
  font-size: 20px;
  color: var(--dark);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
}

.cart-icon:hover {
  color: var(--primary);
  background: rgba(212, 175, 55, 0.1);
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--dark);
  cursor: pointer;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 80px 0 60px;
  text-align: center;
}

.breadcrumb {
  margin-bottom: 20px;
  font-size: 14px;
  opacity: 0.9;
}

.breadcrumb a {
  color: white;
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 8px;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: white;
}

.page-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Info Section */
.info-section {
  padding: 80px 0;
  background: var(--light);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.info-card {
  background: white;
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
    z-index: 999;  text-align: center;
  transition: var(--transition);
  border: 1px solid #f0f0f0;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.info-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: white;
}

.info-card h3 {
  margin-bottom: 20px;
  color: var(--dark);
  font-size: 1.3rem;
}

.hours-list {
  text-align: left;
}

.hour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

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

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

/* Reservation Section */
.reservation-section {
  padding: 80px 0;
}

.reservation-container {
  max-width: 800px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 50px;
}

.form-header h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.form-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* Multi-step Form */
.reservation-form {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
    z-index: 999;  padding: 40px;
  position: relative;
  margin-bottom: 30px;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.step-header {
  margin-bottom: 30px;
  text-align: center;
}

.step-header h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.step-header p {
  color: var(--text-light);
}

/* Form Elements */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark);
}

.required {
  color: var(--warning);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 14px;
  background: white;
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

/* Location Selection */
.location-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

.location-option {
  background: white;
  border: 3px solid #f0f0f0;
  border-radius: var(--border-radius);
  padding: 30px 25px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.location-option:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.location-option.selected {
  border-color: var(--primary);
  background: rgba(212, 175, 55, 0.05);
}

.location-option.selected::after {
  content: "✓";
  position: absolute;
  top: 15px;
  right: 20px;
  background: var(--primary);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
}

.location-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: white;
}

.location-content h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--dark);
  font-weight: 600;
}

.location-content > p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.5;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  width: 100%;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 14px;
}

.detail-item i {
  color: var(--primary);
  width: 16px;
  text-align: center;
}

.location-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
  width: 100%;
}

.price-label {
  font-weight: 600;
  color: var(--dark);
  font-size: 14px;
}

.extra-cost {
  color: var(--warning);
  font-weight: 600;
  font-size: 16px;
}

/* Address Section */
.address-section {
  background: rgba(212, 175, 55, 0.05);
  border-radius: var(--border-radius);
  padding: 25px;
  margin-top: 25px;
  border-left: 4px solid var(--primary);
}

.address-section .form-group {
  margin-bottom: 20px;
}

.address-section .form-group:last-child {
  margin-bottom: 0;
}

/* Service Selection */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.service-option {
  background: white;
  border: 2px solid #f0f0f0;
  border-radius: var(--border-radius);
  padding: 25px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.service-option:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
    z-index: 999;}

.service-option.selected {
  border-color: var(--primary);
  background: rgba(212, 175, 55, 0.05);
}

.service-option.selected::after {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 15px;
  background: var(--primary);
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.service-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 20px;
  color: white;
}

.service-option h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-option p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 10px;
}

.service-option .price {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
}

/* Date Time Grid */
.datetime-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

/* Checkbox Groups */
.checkbox-group {
  margin-bottom: 20px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--primary);
  border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

/* Form Navigation */
.form-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.form-navigation .btn {
  min-width: 140px;
}

/* Progress Bar */
.progress-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Aligner en haut pour laisser de la place au texte */
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  z-index: 10;
  padding: 30px 40px;
  position: relative;
  overflow: visible; /* Laisser dépasser les labels si besoin */
}

.progress-bar::before {
  content: "";
  position: absolute;
  top: 50px; /* Alignement sur le centre du cercle (30px padding + 20px moitié du cercle) */
  left: 60px;
  right: 60px;
  height: 2px;
  background: #f0f0f0;
  z-index: 1;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
  flex: 1; /* Répartition égale */
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0f0f0;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
  border: 4px solid white; /* Pour couper la ligne de fond */
}

.progress-step.active .step-number {
  background: var(--primary);
  color: white;
  box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.15);
}

.progress-step.completed .step-number {
  background: var(--success);
  color: white;
}

.progress-step span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  text-align: center;
  white-space: nowrap; /* Évite que le texte se coupe bizarrement */
  transition: var(--transition);
}

.progress-step.active span {
  color: var(--primary);
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: var(--light);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid #f0f0f0;
  transition: var(--transition);
}

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

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.faq-question h4 {
  margin: 0;
  color: var(--dark);
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-question:hover {
  background: rgba(212, 175, 55, 0.05);
}

.faq-item.active .faq-question {
  background: rgba(212, 175, 55, 0.05);
}

.faq-question i {
  color: var(--primary);
  transition: var(--transition);
  font-size: 14px;
}

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

.faq-answer {
  padding: 0 25px 20px;
  background: white;
  display: none;
  border-top: 1px solid #f0f0f0;
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeInDown 0.3s ease;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 90%;
  max-height: 90%;
  overflow: auto;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  padding: 20px 25px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  color: var(--primary);
  font-size: 1.3rem;
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--primary);
}

.modal-body {
  padding: 30px 25px;
  text-align: center;
}

.success-icon {
  margin-bottom: 20px;
}

.success-icon i {
  font-size: 4rem;
  color: var(--success);
}

.modal-body p {
  margin-bottom: 25px;
  color: var(--text);
  line-height: 1.6;
}

.modal-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* Boutons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

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

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
    z-index: 999;}

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

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

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

.btn-dark:hover {
  background: #333;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  color: white;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.footer-about p {
  margin-bottom: 15px;
  opacity: 0.9;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  opacity: 0.9;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary);
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  opacity: 0.9;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--primary);
}

.footer-newsletter p {
  opacity: 0.9;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 15px;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-family: inherit;
}

.newsletter-form button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--primary-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  opacity: 0.7;
  font-size: 14px;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: var(--shadow);
    z-index: 100;
  transition: var(--transition);
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }

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

  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    transition: var(--transition);
    box-shadow: var(--shadow);
    z-index: 999;  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .datetime-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .form-navigation {
    flex-direction: column;
    gap: 15px;
  }

  .form-navigation .btn {
    width: 100%;
  }

  .progress-bar {
    padding: 15px 10px;
    align-items: flex-start;
  }

  .progress-bar::before {
    top: 32px; /* 15px padding + 17px (moitié de 35px) */
    left: 40px;
    right: 40px;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 14px;
    border-width: 3px;
  }

  .progress-step span {
    font-size: 10px;
    white-space: normal; /* Autoriser le retour à la ligne sur mobile si trop long */
    max-width: 60px;
  }

  .reservation-form {
    padding: 30px 20px;
  }

  .contact-buttons {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 1.8rem;
  }

  .form-header h2 {
    font-size: 1.8rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .info-card {
    padding: 30px 20px;
  }

  .modal-content {
    margin: 20px;
  }
}