/*
Theme Name: Aidance - Services d'aide à la personne
Theme URI: https://aidance.fr
Author: Aidance Team
Author URI: https://aidance.fr
Description: Thème WordPress personnalisé pour Aidance - Services d'aide à domicile avec système de réservation intégré
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aidance
Domain Path: /languages
Requires at least: 5.0
Requires PHP: 7.4
*/

/* ============================================
   VARIABLES DE COULEURS - HUMANISME CHALEUREUX
   ============================================ */
:root {
  --primary-color: #E8547A;      /* Rose doux */
  --secondary-color: #7BA887;    /* Vert doux */
  --accent-color: #F5E6D3;       /* Beige chaud */
  --background-color: #FFFBF0;   /* Crème */
  --text-primary: #1a1a1a;       /* Noir */
  --text-secondary: #8B8680;     /* Gris taupe */
  --text-light: #FFFFFF;         /* Blanc */
  --border-color: #E0D5C7;       /* Beige clair */
  --navy-blue: #1a3a52;          /* Bleu marine */
  --success-color: #4CAF50;       /* Vert succès */
  --warning-color: #FFC107;       /* Jaune avertissement */
}

/* ============================================
   RESET ET STYLES DE BASE
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: "Century Gothic", "AppleGothic", "URW Gothic L", "Avant Garde", sans-serif;
  color: var(--text-primary);
  background-color: var(--background-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Century Gothic", "AppleGothic", sans-serif;
  color: var(--navy-blue);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

/* Style accentué pour les mots clés (comme Dancing Script) */
.font-accent {
  font-family: 'Dancing Script', cursive;
  color: var(--primary-color);
  font-size: 1.2em;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* ============================================
   CONTENEUR ET LAYOUT
   ============================================ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

/* ============================================
   HEADER ET NAVIGATION
   ============================================ */
.site-header {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

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

.site-logo img {
  height: 50px;
  width: auto;
}

.site-logo-text h1 {
  font-size: 1.5rem;
  margin: 0;
}

.site-logo-text h1 a {
  color: var(--secondary-color);
  text-decoration: none;
}

.site-logo-text h1 a:hover {
  color: var(--primary-color);
}

.site-logo-link {
  display: inline-flex;
  align-items: center;
}

.site-logo-link img.custom-logo {
  height: 50px;
  width: auto;
  display: block;
}

.site-logo-text p {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin: 0;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.site-logo, 
.header-cta {
  flex: 1; /* Prend l'espace sur les côtés */
}

.header-cta {
  display: flex;
  justify-content: flex-end;
}

.main-nav {
  flex: 2; /* Donne plus d'espace au menu pour qu'il soit bien centré */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Forcer le menu WordPress (ul) en horizontal et centré */
.main-nav .menu ul,
.main-nav ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  justify-content: center;
}

.main-nav .menu ul li,
.main-nav ul li {
  white-space: nowrap;
}

.main-nav a {
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.3s ease;
  text-decoration: none;
}

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

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #d63d68;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  background: linear-gradient(135deg, rgba(232, 84, 122, 0.05) 0%, rgba(123, 168, 135, 0.15) 100%);
  padding: 5rem 0;
  margin-bottom: 0;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-text h1 .text-primary {
  color: var(--primary-color);
}

.hero-text p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.hero-stars {
  color: var(--warning-color);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}

.hero-rating {
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.hero-reviews {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  display: block;
}

.hero-badge {
  background-color: var(--warning-color);
  color: var(--text-primary);
  padding: 1.5rem;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 700;
  position: absolute;
  bottom: 20px;
  right: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.hero-badge-pct {
  font-size: 1.75rem;
  line-height: 1;
}

.hero-badge-label {
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  padding: 5rem 0;
  background-color: var(--text-light);
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-title h2 {
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

@media screen and (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
}

.service-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.service-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card h3 {
  font-size: 1.35rem;
  margin: 0;
}

.service-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.service-card--placeholder {
  text-align: center;
}

@media (max-width: 800px) {
  .service-image {
    min-height: 180px;
  }
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  flex-grow: 1;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1rem 0 0.25rem;
}

.service-duration {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.service-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--primary-color);
}

.services-illustration img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: block;
}

/* ============================================
   ADVANTAGES SECTION
   ============================================ */
.advantages-section {
  padding: 5rem 0;
  background-color: rgba(123, 168, 135, 0.12);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.advantage-card {
  display: flex;
  gap: 1.25rem;
  background-color: var(--text-light);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.advantage-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.advantage-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background-color: rgba(232, 84, 122, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.advantage-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.advantage-body p {
  margin: 0;
}

/* ============================================
   FORFAITS SECTION
   ============================================ */
.packages-section {
  padding: 5rem 0;
  background-color: rgba(245, 230, 211, 0.4);
}

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

.package-card {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #6a9b76 100%);
  color: var(--text-light);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
}

.package-card h3 {
  color: var(--text-light);
}

.package-card:hover {
  transform: scale(1.05);
}

.package-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.package-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1rem 0;
}

.package-time {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  position: relative;
  padding: 5rem 0;
  background-color: var(--text-light);
  background-image: url("images/testimonial-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 251, 240, 0.85);
  z-index: 0;
}

.testimonials-section .container {
  position: relative;
  z-index: 1;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(232, 84, 122, 0.05) 0%, rgba(245, 230, 211, 0.4) 100%);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.testimonial-stars {
  color: var(--warning-color);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.testimonial-author {
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  color: var(--text-primary);
}

.testimonial-author span {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

/* ============================================
   FINANCIAL INCENTIVES SECTION
   ============================================ */
.incentives-section {
  padding: 5rem 0;
  background-color: rgba(123, 168, 135, 0.12);
}

.incentives-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.incentives-text h2 {
  margin-bottom: 2rem;
}

.incentives-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.incentives-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.incentives-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-top: 2px;
}

.incentives-list h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.incentives-list p {
  margin: 0;
  font-size: 0.95rem;
}

.incentives-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.cta-section > .container > p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.btn-cta-light {
  background-color: var(--text-light);
  color: var(--primary-color);
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-cta-light:hover {
  background-color: #f5f5f5;
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-cta-outline {
  background-color: transparent;
  color: var(--text-light);
  padding: 0.875rem 1.75rem;
  border: 2px solid var(--text-light);
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
}

.btn-cta-outline:hover {
  background-color: var(--text-light);
  color: var(--primary-color);
}

.cta-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.cta-info-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.cta-info-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.cta-info-item strong {
  color: var(--text-light);
}

/* ============================================
   QUOTE FORM (page-devis)
   ============================================ */
.quote-hero {
  background: linear-gradient(135deg, rgba(232, 84, 122, 0.08) 0%, rgba(123, 168, 135, 0.15) 100%);
  padding: 4rem 0 3rem;
  text-align: center;
}

.quote-hero-content {
  max-width: 720px;
  margin: 0 auto;
}

.quote-hero h1 {
  margin-bottom: 1rem;
}

.quote-hero p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.quote-hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.quote-hero-pills li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: var(--text-light);
  border: 1px solid var(--border-color);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.quote-hero-pills span {
  color: var(--secondary-color);
  font-weight: 700;
}

.quote-form-section {
  padding: 3rem 0 5rem;
}

.quote-form {
  max-width: 720px;
  margin: 0 auto;
  background-color: var(--text-light);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.form-section {
  border: none;
  margin: 0 0 2rem;
  padding: 0;
}

.form-section + .form-section {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.form-legend {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.25rem;
  padding: 0;
}

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

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

.form-grid-2 .form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.form-required {
  color: var(--primary-color);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background-color: var(--background-color);
  color: var(--text-primary);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(232, 84, 122, 0.15);
}

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

.form-checkbox-group {
  margin-top: 0.5rem;
}

.form-checkbox-label {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.form-checkbox-label input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--primary-color);
  flex-shrink: 0;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions {
  margin-top: 2rem;
  text-align: center;
}

.form-submit {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1.05rem;
  border: none;
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-disclaimer {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.form-message {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.form-message-success {
  background-color: rgba(76, 175, 80, 0.1);
  border: 1px solid var(--success-color);
  color: #2c662d;
}

.form-message-error {
  background-color: rgba(232, 84, 122, 0.1);
  border: 1px solid var(--primary-color);
  color: #a8334d;
}

@media (max-width: 600px) {
  .quote-form {
    padding: 1.5rem;
    border-radius: 12px;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   RESERVATION PAGE
   ============================================ */
.reservation-hero {
  background: linear-gradient(135deg, rgba(123, 168, 135, 0.15) 0%, rgba(245, 230, 211, 0.4) 100%);
  padding: 4rem 0 3rem;
  text-align: center;
}

.reservation-hero-content {
  max-width: 720px;
  margin: 0 auto;
}

.reservation-hero h1 {
  margin-bottom: 1rem;
}

.reservation-hero p {
  font-size: 1.1rem;
}

.reservation-steps {
  padding: 3rem 0;
  background-color: var(--text-light);
}

.reservation-steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.reservation-steps-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.reservation-step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
}

.reservation-steps-list h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.reservation-steps-list p {
  margin: 0;
  font-size: 0.95rem;
}

.reservation-calendar-section {
  padding: 3rem 0 5rem;
  background-color: var(--background-color);
}

.reservation-calendar-wrapper {
  max-width: 960px;
  margin: 0 auto;
  background-color: var(--text-light);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* Espace par défaut pour les shortcodes de plugins de booking */
.reservation-calendar-wrapper > * {
  max-width: 100%;
}

.reservation-placeholder {
  text-align: center;
  padding: 2rem 1rem;
}

.reservation-placeholder h2 {
  margin-bottom: 1rem;
}

.reservation-placeholder ul {
  display: inline-block;
  text-align: left;
  margin: 1rem 0 1.5rem;
  padding-left: 1.25rem;
}

.reservation-placeholder li {
  margin-bottom: 0.4rem;
}

.reservation-placeholder code {
  background-color: var(--accent-color);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-family: ui-monospace, "SF Mono", Consolas, monospace;
  font-size: 0.9em;
  color: var(--primary-color);
}

.reservation-placeholder-note {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-style: italic;
}

.reservation-placeholder-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.reservation-help {
  padding: 4rem 0;
  background-color: rgba(123, 168, 135, 0.08);
}

.reservation-help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.reservation-help-item {
  background-color: var(--text-light);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.reservation-help-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.reservation-help-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.reservation-help-item p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.reservation-help-link {
  font-weight: 600;
  color: var(--primary-color);
}

@media (max-width: 600px) {
  .reservation-calendar-wrapper {
    padding: 1.25rem;
    border-radius: 12px;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background-color: var(--text-primary);
  color: var(--text-light);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

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

.footer-section h4 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-text h1 {
    font-size: 2.25rem;
  }

  .main-nav {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .hero-content,
  .incentives-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    text-align: center;
  }

  .hero-badge {
    width: 90px;
    height: 90px;
    bottom: 12px;
    right: 12px;
    padding: 0.75rem;
  }

  .hero-badge-pct {
    font-size: 1.25rem;
  }

  .row,
  .services-grid,
  .advantages-grid,
  .packages-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

/* ============================================
   OPTIMISATIONS MODE PAYSAGE (LANDSCAPE)
   ============================================ */
@media screen and (orientation: landscape) and (max-width: 1024px) {
  .site-header {
    padding: 0.5rem 0; /* Header plus compact */
  }

  .header-content {
    height: auto;
  }

  .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    min-height: auto;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-image {
    max-height: 300px;
    object-fit: cover;
  }

  .services-grid, 
  .advantages-grid, 
  .packages-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem;
  }

  .section-padding {
    padding: 3rem 0;
  }
}

/* Optimisation pour les très grands écrans (Wide Landscape) */
@media screen and (min-width: 1400px) {
  .container {
    max-width: 1600px;
  }
  
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
}
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }

  .menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 10px;
    transition: all 0.3s ease;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    gap: 1.5rem;
    z-index: 1000;
  }

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

  .main-nav .menu {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .main-nav .menu li {
    list-style: none;
  }

  .main-nav .menu li a {
    display: block;
    font-size: 1.1rem;
  }
}

/* Hide menu-toggle on desktop */
@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }
  .main-nav {
    display: flex !important;
  }
}
