/*
Theme Name: AuraDent - Luxury Dental Clinic
Theme URI: https://auradent-luxury.example.com
Author: Antigravity
Author URI: https://antigravity.example.com
Description: A modern, high-end, and luxurious WordPress theme designed specifically for boutique dental clinics. Features custom interactive elements including an appointment booking system and a before/after treatment visualizer.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: luxury, modern, dental, clinic, custom-colors, responsive-layout, clean, appointment-booking, portfolio
Text Domain: auradent
*/

/* ==========================================================================
   1. DESIGN SYSTEM & VARIABLES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --color-primary: #0F1219;       /* Deep rich dark background */
    --color-primary-light: #161B26; /* Dark slate card background */
    --color-primary-dark: #07090C;  /* Ultra dark background */
    --color-accent: #C5A880;        /* Luxurious Champagne Gold */
    --color-accent-light: #E5D5C0;  /* Soft Warm Gold */
    --color-accent-dark: #A3855B;   /* Deep Bronze Gold */
    --color-accent-rgb: 197, 168, 128;
    
    /* Neutral colors */
    --color-text-light: #F0F2F5;    /* Light text for dark backgrounds */
    --color-text-muted: #8E9BAE;    /* Soft gray for subheadings */
    --color-text-dark: #1E2530;     /* Dark text for light backgrounds */
    --color-bg-light: #F9FAFC;      /* Clean off-white background */
    --color-bg-white: #FFFFFF;      /* Clean white background */
    --color-border: rgba(197, 168, 128, 0.2); /* Soft gold borders */
    --color-border-dark: rgba(197, 168, 128, 0.1);
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Spacing & Layout */
    --max-width: 1280px;
    --header-height: 90px;
    
    /* Shadows & Effects */
    --shadow-luxury: 0 20px 40px rgba(0, 0, 0, 0.3);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --glow-gold: 0 0 25px rgba(197, 168, 128, 0.3);
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.2s ease-in-out;
}

/* ==========================================================================
   2. RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-primary);
    color: var(--color-text-light);
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    background-color: var(--color-primary);
}

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

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    background: none;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
}

ul {
    list-style: none;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--color-accent-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

/* ==========================================================================
   3. TYPOGRAPHY & BUTTONS
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text-light);
    letter-spacing: 0.03em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: var(--color-accent);
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    text-align: center;
    margin-bottom: 0.5rem;
    display: block;
}

.text-dark-theme h2, .text-dark-theme h3 {
    color: var(--color-text-dark);
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 0;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
    border: 1px solid var(--color-accent);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-accent);
    box-shadow: var(--glow-gold);
}

.btn-secondary {
    border: 1px solid var(--color-border);
    color: var(--color-text-light);
}

.btn-secondary:hover {
    border-color: var(--color-accent);
    background-color: rgba(197, 168, 128, 0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-gold-link {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding-bottom: 5px;
}

.btn-gold-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-accent);
    transform: scaleX(0.3);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.btn-gold-link:hover::after {
    transform: scaleX(1);
}

/* ==========================================================================
   4. LAYOUT COMPONENTS
   ========================================================================== */
.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.section {
    padding: clamp(4rem, 8vw, 8rem) 0;
    position: relative;
}

.bg-light {
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
}

.bg-light h1, .bg-light h2, .bg-light h3, .bg-light h4 {
    color: var(--color-text-dark);
}

.bg-dark {
    background-color: var(--color-primary-dark);
}

/* ==========================================================================
   5. HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.site-header.scrolled {
    height: 75px;
    background-color: rgba(7, 9, 12, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--color-border-dark);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

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

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
}

.logo-text span {
    color: var(--color-accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-light);
    position: relative;
    opacity: 0.8;
}

.nav-link:hover, .nav-link.active {
    opacity: 1;
    color: var(--color-accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-accent);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-nav-toggle span {
    width: 28px;
    height: 2px;
    background-color: var(--color-text-light);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   6. HERO SECTION
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: saturate(0.8) brightness(0.9);
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(15, 18, 25, 0.2) 0%, rgba(15, 18, 25, 0.95) 80%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 2rem 0;
}

.hero-tagline {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-accent);
    margin-bottom: 1rem;
    display: inline-block;
}

.hero-title {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

/* ==========================================================================
   7. SERVICES SECTION
   ========================================================================== */
.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.services-intro p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

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

.service-card {
    background-color: var(--color-primary-light);
    border: 1px solid var(--color-border-dark);
    padding: 3.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background-color: var(--color-accent);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    margin-bottom: 2rem;
    color: var(--color-accent);
}

.service-icon svg {
    width: 45px;
    height: 45px;
    stroke-width: 1;
}

.service-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.service-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

/* ==========================================================================
   8. BEFORE / AFTER COMPARISON SLIDER (Visualisation Avant/Après)
   ========================================================================== */
.slider-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.slider-container-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--color-primary-light);
    border: 1px solid var(--color-border);
    padding: 1rem;
    box-shadow: var(--shadow-luxury);
}

.before-after-slider {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
}

.before-after-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* The After (Top) Image Container */
.image-after-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* initial clip state */
    width: 50%;
    border-right: 1px solid var(--color-accent);
    z-index: 2;
}

.image-after-wrap img {
    /* ensure the image fills the 100% width and does not shrink with the container */
    width: 900px; /* matched container max width in JS */
    max-width: none;
    height: 550px;
}

.image-before-wrap {
    z-index: 1;
}

/* Elegant Text Overlays */
.slider-label {
    position: absolute;
    bottom: 1.5rem;
    padding: 0.4rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background-color: rgba(7, 9, 12, 0.85);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(5px);
    color: var(--color-text-light);
    pointer-events: none;
    z-index: 4;
}

.label-before {
    right: 1.5rem;
}

.label-after {
    left: 1.5rem;
}

/* Interactive Slider Handle */
.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: var(--color-accent);
    cursor: ew-resize;
    z-index: 5;
    transform: translateX(-50%);
}

.slider-handle-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: var(--color-primary-dark);
    border: 1px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    box-shadow: var(--glow-gold);
    transition: var(--transition-fast);
}

.slider-handle-button svg {
    width: 20px;
    height: 20px;
}

.slider-handle:hover .slider-handle-button {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
}

/* ==========================================================================
   9. LUXURY APPOINTMENT BOOKING (Système de rendez-vous)
   ========================================================================== */
.booking-section {
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
}

.booking-section h2::after {
    background-color: var(--color-accent-dark);
}

.booking-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
    color: var(--color-text-muted);
}

.booking-wrapper {
    max-width: 950px;
    margin: 0 auto;
    background-color: var(--color-bg-white);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
}

/* Form Wizard Headers */
.booking-steps-nav {
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background-color: #F8F9FA;
}

.step-indicator {
    flex: 1;
    text-align: center;
    padding: 1.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    position: relative;
    border-bottom: 2px solid transparent;
    transition: var(--transition-smooth);
}

.step-indicator span {
    display: inline-flex;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--color-text-muted);
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    font-size: 0.75rem;
    transition: var(--transition-smooth);
}

.step-indicator.active {
    color: var(--color-accent-dark);
    border-bottom-color: var(--color-accent-dark);
}

.step-indicator.active span {
    background-color: var(--color-accent-dark);
    color: var(--color-bg-white);
}

.step-indicator.completed {
    color: #2ECC71;
}

.step-indicator.completed span {
    background-color: #2ECC71;
    color: var(--color-bg-white);
}

/* Form Pages Container */
.booking-form-container {
    padding: 3rem;
}

.booking-step-panel {
    display: none;
    animation: fadeInStep 0.5s ease;
}

.booking-step-panel.active {
    display: block;
}

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

/* Step 1: Select Service Cards */
.booking-services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.booking-service-item {
    border: 1px solid rgba(0,0,0,0.08);
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    background-color: #FAFBFD;
}

.booking-service-item:hover {
    border-color: var(--color-accent-dark);
    transform: translateY(-3px);
}

.booking-service-item.selected {
    border-color: var(--color-accent-dark);
    background-color: rgba(197, 168, 128, 0.08);
    box-shadow: 0 5px 15px rgba(197, 168, 128, 0.1);
}

.booking-service-item-icon {
    color: var(--color-accent-dark);
    margin-bottom: 1rem;
}

.booking-service-item h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-text-dark);
}

.booking-service-item p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Step 2: Select Practitioner */
.dentist-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.dentist-card {
    border: 1px solid rgba(0,0,0,0.08);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    background-color: #FAFBFD;
}

.dentist-card:hover {
    border-color: var(--color-accent-dark);
}

.dentist-card.selected {
    border-color: var(--color-accent-dark);
    background-color: rgba(197, 168, 128, 0.08);
}

.dentist-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #DDD;
    overflow: hidden;
    position: relative;
    border: 2px solid var(--color-accent);
}

.dentist-avatar svg {
    width: 100%;
    height: 100%;
    color: #FFF;
    background-color: var(--color-accent-dark);
    padding: 10px;
}

.dentist-info h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-dark);
}

.dentist-info p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Step 3: Date and Time */
.date-time-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .date-time-grid {
        grid-template-columns: 1fr;
    }
}

/* Custom Calendar Layout */
.calendar-wrapper {
    border: 1px solid rgba(0, 0, 0, 0.05);
    background-color: #FAFBFD;
    padding: 1.5rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.calendar-month {
    font-weight: 600;
    color: var(--color-text-dark);
    font-size: 0.95rem;
}

.calendar-nav-btn {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--color-text-dark);
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.8rem;
}

.calendar-nav-btn:hover {
    background-color: var(--color-accent-dark);
    color: #FFF;
    border-color: var(--color-accent-dark);
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    text-align: center;
}

.calendar-date {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    color: var(--color-text-dark);
    transition: var(--transition-fast);
}

.calendar-date:hover:not(.disabled) {
    background-color: rgba(197, 168, 128, 0.15);
    border-radius: 50%;
}

.calendar-date.selected {
    background-color: var(--color-accent-dark);
    color: var(--color-bg-white) !important;
    border-radius: 50%;
    font-weight: 600;
}

.calendar-date.disabled {
    color: #CCC;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Time Slots */
.time-slots-wrapper {
    display: flex;
    flex-direction: column;
}

.time-slots-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 5px;
}

.time-slot-item {
    padding: 0.8rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-dark);
    background-color: #FAFBFD;
    transition: var(--transition-fast);
}

.time-slot-item:hover {
    border-color: var(--color-accent-dark);
}

.time-slot-item.selected {
    background-color: var(--color-accent-dark);
    color: #FFF;
    border-color: var(--color-accent-dark);
}

/* Step 4: Contact Form */
.booking-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .booking-form-grid {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-dark);
}

.form-group input, .form-group textarea {
    padding: 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    background-color: #FAFBFD;
    color: var(--color-text-dark);
    transition: var(--transition-fast);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--color-accent-dark);
    background-color: #FFF;
}

/* Wizard Navigation Buttons */
.booking-nav-buttons {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2rem 3rem;
    background-color: #F8F9FA;
}

/* Success View */
.booking-success-panel {
    text-align: center;
    padding: 4rem 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(46, 204, 113, 0.1);
    border-radius: 50%;
    color: #2ECC71;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border: 2px solid #2ECC71;
}

.success-icon svg {
    width: 40px;
    height: 40px;
}

.booking-success-panel h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

.booking-success-panel p {
    color: var(--color-text-muted);
    max-width: 500px;
    margin: 0 auto 2rem auto;
}

/* ==========================================================================
   10. TESTIMONIALS SECTION (Témoignages)
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background-color: var(--color-primary-light);
    border: 1px solid var(--color-border-dark);
    padding: 3.5rem 2.5rem;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--color-accent);
    opacity: 0.15;
}

.quote-icon svg {
    width: 60px;
    height: 60px;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.testimonial-rating svg {
    width: 16px;
    height: 16px;
    fill: var(--color-accent);
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.author-info h4 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
}

.author-info p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   11. SITE FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--color-primary-dark);
    border-top: 1px solid var(--color-border-dark);
    padding: 5rem 0 2.5rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-col h3 {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: 1.8rem;
}

.footer-col-about p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-border-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
}

.social-link:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.15);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.contact-item {
    display: flex;
    gap: 10px;
}

.contact-item svg {
    color: var(--color-accent);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

@media (max-width: 576px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ==========================================================================
   12. MICRO-ANIMATIONS & INTERACTION UTILITIES
   ========================================================================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* Responsive Mobile Navigation Overlay */
@media (max-width: 992px) {
    .mobile-nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--color-primary-dark);
        border-left: 1px solid var(--color-border);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        z-index: 999;
        transition: var(--transition-smooth);
    }

    .nav-menu.open {
        right: 0;
    }

    .mobile-nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}
