/* ===================================
   Variables & Reset
   =================================== */
:root {
    /* Palette énergétique beige-jaune */
    --primary: #F5E6D3;
    --primary-light: #FFF8EC;
    --primary-dark: #E8D4B8;
    --accent: #FFD966;
    --accent-light: #FFE699;
    --accent-glow: #FFC933;
    --gold: #D4AF37;
    --warm-beige: #F5DEB3;
    --sand: #F4E4C1;

    /* Couleurs complémentaires */
    --text-dark: #3E3023;
    --text-medium: #6B5D4F;
    --text-light: #9B8E7E;
    --white: #FFFFFF;
    --shadow: rgba(62, 48, 35, 0.1);
    --shadow-strong: rgba(62, 48, 35, 0.2);

    /* Typographie */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--primary-light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

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

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

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 30px var(--shadow-strong);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--spacing-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
}

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

.logo-icon {
    font-size: 2rem;
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.9; }
}

.nav-gift {
    background: linear-gradient(135deg, var(--accent-glow), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    color: var(--text-medium);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-glow), var(--gold));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--text-dark);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 50%, var(--primary-light) 100%);
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('images/salon-lit-cote.jpg');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(to bottom,
            rgba(255, 248, 236, 0.75) 0%,
            rgba(255, 230, 153, 0.65) 20%,
            rgba(255, 248, 236, 0.7) 50%,
            rgba(255, 248, 236, 0.8) 100%
        ),
        radial-gradient(circle at center,
            rgba(255, 255, 255, 0.3) 0%,
            rgba(255, 248, 236, 0.5) 40%,
            rgba(62, 48, 35, 0.15) 100%
        );
    backdrop-filter: blur(3px);
    box-shadow: inset 0 0 150px rgba(255, 255, 255, 0.4);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-heading);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--text-medium);
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8),
                 0 0 20px rgba(255, 248, 236, 0.6);
}

.hero-main {
    font-size: 4rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--gold) 0%, var(--accent-glow) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradient-shift 4s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-dark);
    max-width: 700px;
    margin: var(--spacing-sm) auto;
    line-height: 1.7;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.9),
                 0 0 20px rgba(255, 248, 236, 0.7);
}

.fade-in {
    animation: fadeInUp 1s ease-out;
}

.fade-in-delay {
    animation: fadeInUp 1s ease-out 0.3s both;
}

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: var(--spacing-sm);
    margin-bottom: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-glow), var(--gold));
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    border: none;
    cursor: pointer !important;
    box-shadow: 0 10px 30px rgba(255, 201, 51, 0.3);
    transition: var(--transition);
    font-family: var(--font-body);
    position: relative;
    z-index: 10;
}

.cta-primary {
    animation: pulse-subtle 2s ease-in-out infinite;
}

.cta-secondary {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.cta-secondary:hover {
    background: linear-gradient(135deg, var(--accent-light), var(--primary-light));
    border-color: var(--accent-glow);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.cta-button *,
.cta-button span,
.cta-button svg {
    cursor: pointer !important;
    pointer-events: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 201, 51, 0.4);
}

@keyframes pulse-subtle {
    0%, 100% { box-shadow: 0 10px 30px rgba(255, 201, 51, 0.3); }
    50% { box-shadow: 0 10px 40px rgba(255, 201, 51, 0.5); }
}

.cta-icon {
    transition: var(--transition);
    flex-shrink: 0;
}

.cta-button:hover .cta-icon {
    transform: translateX(5px);
}

.cta-button svg {
    pointer-events: none;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    pointer-events: none;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid var(--gold);
    border-radius: 20px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

.hero-logo-main {
    width: 130px;
    height: auto;
    margin: 10px auto;
    display: block;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--text-dark);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
}

/* ===================================
   About Section
   =================================== */
.about {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    padding: var(--spacing-md);
    overflow: visible;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 105%;
    height: 105%;
    background: linear-gradient(135deg, var(--accent-light), var(--gold), var(--accent-light));
    border-radius: 25px;
    z-index: 0;
    opacity: 0.15;
    filter: blur(15px);
}

.image-placeholder {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-image: url('about-image.webp');
    background-size: cover;
    background-position: center;
    border: 3px solid var(--white);
    box-shadow:
        0 10px 40px var(--shadow),
        inset 0 0 0 1px rgba(212, 175, 55, 0.15);
    z-index: 1;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(to bottom,
            transparent 0%,
            rgba(255, 248, 236, 0.05) 60%,
            rgba(255, 230, 153, 0.08) 100%
        );
    pointer-events: none;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    animation: shimmer 5s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.placeholder-icon {
    font-size: 5rem;
    position: relative;
    z-index: 2;
    display: none; /* Caché quand il y a une image */
}

.floating-element {
    position: absolute;
    font-size: 1.8rem;
    animation: float 4s ease-in-out infinite;
    pointer-events: none;
    user-select: none;
    z-index: 3;
}

.element-1 {
    top: -5%;
    right: -5%;
    animation-delay: 0s;
}

.element-2 {
    bottom: -5%;
    left: -5%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
        opacity: 1;
    }
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.9;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.greeting {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.signature {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-top: var(--spacing-md);
    color: var(--text-dark);
}

/* ===================================
   Espace Section
   =================================== */
.espace {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--white) 100%);
}

.espace-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.espace-large {
    grid-column: 1;
    grid-row: 1 / 3;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-strong);
}

.espace-small {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
}

.espace-large img,
.espace-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.espace-large {
    min-height: 500px;
}

.espace-small {
    min-height: 240px;
}

.espace-large:hover img,
.espace-small:hover img {
    transform: scale(1.05);
}

.espace-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-lg);
    background: linear-gradient(to top,
        rgba(62, 48, 35, 0.9) 0%,
        rgba(62, 48, 35, 0.7) 50%,
        transparent 100%
    );
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.espace-large:hover .espace-overlay,
.espace-small:hover .espace-overlay {
    transform: translateY(0);
}

.espace-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.espace-overlay p {
    font-size: 1rem;
    color: var(--primary-light);
}

@media (max-width: 968px) {
    .espace-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .espace-large {
        grid-column: 1;
        grid-row: auto;
        min-height: 400px;
    }

    .espace-small {
        min-height: 300px;
    }

    .espace-overlay {
        transform: translateY(0);
    }
}

/* ===================================
   Services Section
   =================================== */
.services {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--primary-light) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.service-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: var(--transition-slow);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-glow), var(--gold));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-strong);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
    display: inline-block;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

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

/* Modern Services Grid with Images */
.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card-modern {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: var(--transition-slow);
    text-decoration: none;
    display: block;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-strong);
}

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

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-content p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-notice {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 10px;
}

.service-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.service-card-modern:hover .service-link {
    color: var(--accent-glow);
}

.services-extra {
    margin-top: 40px;
    text-align: center;
    padding: 25px 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    border-left: 4px solid var(--gold);
}

.services-extra p {
    color: var(--text-medium);
    font-size: 1rem;
    margin: 0;
}

.services-extra strong {
    color: var(--text-dark);
}

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

@media (max-width: 600px) {
    .services-grid-modern {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 180px;
    }
}

/* ===================================
   Booking Section
   =================================== */
.booking {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--primary-light) 100%);
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.booking-text h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.booking-text p {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
}

.booking-features {
    list-style: none;
    margin-top: var(--spacing-md);
}

.booking-features li {
    font-size: 1.1rem;
    color: var(--text-dark);
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-widget {
    background: var(--white);
    border-radius: 20px;
    padding: var(--spacing-md);
    box-shadow: 0 20px 60px var(--shadow);
}

.widget-placeholder {
    text-align: center;
    padding: var(--spacing-lg) var(--spacing-md);
}

.widget-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-sm);
}

.widget-placeholder p {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.widget-placeholder small {
    color: var(--text-light);
    display: block;
    margin-bottom: var(--spacing-md);
}

.widget-demo-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-glow), var(--gold));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(255, 201, 51, 0.3);
}

.widget-demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 201, 51, 0.4);
}

/* ===================================
   Reviews Section
   =================================== */
.reviews {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.reviews-placeholder {
    padding: var(--spacing-lg);
}

.sample-reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.review-card {
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-strong);
}

.stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.review-card p {
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.reviewer {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    text-align: right;
}

/* ===================================
   Instagram Section
   =================================== */
.instagram {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--primary-light) 100%);
}

.instagram-feed {
    margin-bottom: var(--spacing-lg);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
}

.instagram-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(188, 24, 136, 0.3);
    transition: var(--transition);
    text-decoration: none;
}

.instagram-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(188, 24, 136, 0.4);
}

.instagram-button svg {
    flex-shrink: 0;
}

/* ===================================
   Hours Section
   =================================== */
.hours {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--primary-light) 100%);
}

.hours-grid {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
}

.day-hours {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem var(--spacing-md);
    border-bottom: 1px solid var(--primary);
    transition: var(--transition);
}

.day-hours:last-child {
    border-bottom: none;
}

.day-hours:hover {
    background: var(--primary-light);
}

.day {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.time {
    color: var(--text-medium);
    font-weight: 500;
}

.day-hours.closed .time {
    color: var(--text-light);
    font-style: italic;
}

.day-hours.highlight {
    background: linear-gradient(135deg, var(--accent-light), var(--primary-light));
}

.day-hours.highlight .day,
.day-hours.highlight .time {
    color: var(--text-dark);
    font-weight: 700;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: var(--spacing-xl) 0;
    background: var(--primary-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-lg);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px var(--shadow-strong);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-card .note {
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
    margin-top: 0.5rem;
}

.contact-card a {
    color: var(--gold);
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--accent-glow);
}

.contact-form-container {
    background: var(--white);
    border-radius: 20px;
    padding: var(--spacing-md);
    box-shadow: 0 10px 40px var(--shadow);
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--primary);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
    background: var(--primary-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-glow);
    background: var(--white);
    box-shadow: 0 5px 15px rgba(255, 201, 51, 0.2);
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--accent-glow), var(--gold));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 201, 51, 0.4);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.submit-btn:hover .btn-shine {
    left: 100%;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-message {
    margin-top: 15px;
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 0.95rem;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #2a1f16 100%);
    color: var(--primary-light);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

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

.footer-text {
    max-width: 500px;
    margin: 0 auto var(--spacing-md);
    color: var(--warm-beige);
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(245, 230, 211, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(245, 230, 211, 0.2);
    color: var(--warm-beige);
    font-size: 0.9rem;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 968px) {
    .hero-main {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .about-content,
    .booking-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .booking-text {
        display: none;
    }

    .booking-widget {
        padding: 0;
    }

    .booking {
        padding: var(--spacing-md) 0;
        min-height: 80vh;
    }

    .booking .container {
        padding: 0;
        height: 100%;
    }

    .booking-content {
        height: 100%;
        min-height: 75vh;
    }

    .booking-widget {
        height: 100%;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        padding: var(--spacing-md);
        box-shadow: 0 10px 30px var(--shadow);
        transition: left 0.3s ease;
    }

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

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

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

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 600px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .hero-main {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .sample-reviews {
        grid-template-columns: 1fr;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
    }
}

/* ===================================
   Utility Animations
   =================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Scroll reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Modal Styles
   =================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(62, 48, 35, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2147483647;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    max-width: 700px;
    width: 85%;
    height: 85vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(62, 48, 35, 0.4);
    animation: slideUp 0.4s ease;
}

.modal-content .salonized-booking,
.modal-content .salonized-voucher {
    width: 100% !important;
    height: 100% !important;
    min-height: 85vh !important;
}

.modal-content .salonized-booking iframe,
.modal-content .salonized-voucher iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 85vh !important;
}

/* Mobile: Modal presque plein écran */
@media (max-width: 968px) {
    .modal-content {
        width: 95%;
        max-width: 95%;
        height: 90vh;
        border-radius: 15px;
        overflow: hidden;
    }

    .modal-content .salonized-booking,
    .modal-content .salonized-voucher {
        min-height: 90vh !important;
        height: 90vh !important;
    }

    .modal-content .salonized-booking iframe,
    .modal-content .salonized-voucher iframe {
        min-height: 90vh !important;
        height: 90vh !important;
    }
}

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

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 248, 236, 0.98);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(62, 48, 35, 0.3);
}

.modal-close:hover {
    background: var(--accent-glow);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-close svg {
    width: 20px;
    height: 20px;
    color: #000;
    stroke: #000;
}

/* Salonized Widget Styling */
.modal-content .salonized-booking,
.modal-content .salonized-voucher {
    width: 100%;
    min-height: 700px;
    border-radius: 20px;
}

.salonized-booking,
.salonized-voucher {
    border-radius: 15px;
    overflow-y: auto;
}

/* Bouton flottant Salonized - cacher SEULEMENT le bouton flottant (data-position="right") */
body.modal-open div[data-position="right"] {
    display: none !important;
}

/* ===================================
   Custom Scrollbar for Modal
   =================================== */
.modal-content .salonized-booking::-webkit-scrollbar,
.modal-content .salonized-voucher::-webkit-scrollbar {
    width: 8px;
}

.modal-content .salonized-booking::-webkit-scrollbar-track,
.modal-content .salonized-voucher::-webkit-scrollbar-track {
    background: var(--primary-light);
}

.modal-content .salonized-booking::-webkit-scrollbar-thumb,
.modal-content .salonized-voucher::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

.modal-content .salonized-booking::-webkit-scrollbar-thumb:hover,
.modal-content .salonized-voucher::-webkit-scrollbar-thumb:hover {
    background: var(--accent-glow);
}

/* ===================================
   Tarifs Page Styles
   =================================== */
.tarifs-hero {
    min-height: 50vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tarifs-overlay {
    background: linear-gradient(135deg,
        rgba(62, 48, 35, 0.85) 0%,
        rgba(62, 48, 35, 0.75) 50%,
        rgba(88, 68, 52, 0.85) 100%) !important;
    backdrop-filter: blur(2px);
}

.tarifs-title {
    color: var(--white) !important;
    font-size: 3.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6),
                 0 2px 10px rgba(212, 175, 55, 0.4);
    margin-bottom: var(--spacing-md);
}

.tarifs-subtitle {
    color: var(--primary-light) !important;
    font-size: 1.4rem;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tarifs-hero .cta-primary {
    margin-top: var(--spacing-md);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.tarifs-hero .cta-primary:hover {
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .tarifs-hero {
        min-height: 40vh;
        padding-top: 80px;
    }

    .tarifs-title {
        font-size: 2.2rem;
    }

    .tarifs-subtitle {
        font-size: 1.1rem;
    }
}

.tarifs-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.tarifs-category {
    margin-bottom: calc(var(--spacing-xl) * 1.5);
}

/* Category Header with Image */
.category-header {
    display: grid !important;
    grid-template-columns: 1fr 2fr !important;
    gap: var(--spacing-lg) !important;
    align-items: center !important;
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(135deg, var(--primary-light), rgba(255, 248, 236, 0.3));
    border-radius: 20px;
    padding: var(--spacing-lg);
    box-shadow: 0 4px 20px var(--shadow);
    width: 100%;
}

.category-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    height: 200px;
    width: 100%;
    display: block;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.category-image:hover img {
    transform: scale(1.05);
}

.category-intro {
    padding: var(--spacing-sm);
    width: 100%;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    position: relative;
    text-align: left;
}

.category-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-glow), var(--gold));
    margin: var(--spacing-sm) 0;
    border-radius: 2px;
}

.category-description {
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

/* Mobile: Stack header vertically */
@media (max-width: 768px) {
    .category-header {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .category-image {
        height: 180px;
    }

    .category-title {
        font-size: 1.6rem;
        text-align: center;
    }

    .category-title::after {
        margin: var(--spacing-sm) auto;
    }

    .category-description {
        text-align: center;
    }
}

.tarifs-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: var(--spacing-md) !important;
    margin-top: var(--spacing-lg);
    width: 100%;
}

.tarif-card {
    background: var(--white);
    border-radius: 15px;
    padding: var(--spacing-md);
    box-shadow: 0 4px 20px var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    flex-direction: column;
}

.tarif-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-strong);
}

@media (max-width: 600px) {
    .tarifs-grid {
        grid-template-columns: 1fr !important;
    }
}

.tarif-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    min-height: 2.5rem;
}

.tarif-card .tarif-description {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: var(--spacing-sm);
    min-height: 3rem;
    font-style: italic;
}

.tarif-card .duration {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tarif-card .duration::before {
    content: '⏱';
    font-size: 1rem;
}

.tarif-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-top: var(--spacing-sm);
}

.tarifs-cta {
    text-align: center;
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    border-radius: 20px;
    margin-top: var(--spacing-xl);
}

.tarifs-cta h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.tarifs-cta p {
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-secondary {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--gold);
}

.cta-secondary:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

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

    .category-title {
        font-size: 1.75rem;
    }

    .tarifs-cta h2 {
        font-size: 1.5rem;
    }

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

    .cta-button {
        width: 100%;
    }
}

/* ===================================
   Modern Tarifs Page Design
   =================================== */

/* Modern Hero Section */
.tarifs-hero-modern {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
    padding: 120px 0 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.6s ease-out;
}

.tarifs-hero-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

.tarifs-hero-modern::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

.hero-content-modern {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.hero-logo {
    width: 100px;
    height: auto;
    margin: 0 auto 20px auto;
    display: block;
    filter: drop-shadow(0 4px 10px var(--shadow));
}

.hero-label {
    display: inline-block;
    background: var(--white);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px var(--shadow);
}

.hero-content-modern h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content-modern p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Modern Tarifs Section */
.tarifs-modern {
    background: var(--white);
    padding: 60px 0;
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.tarif-category-modern {
    background: var(--primary-light);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 5px 30px var(--shadow);
    transition: var(--transition);
    opacity: 1;
    transform: translateY(0);
}

.tarif-category-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px var(--shadow-strong);
}

.category-title-modern {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--accent-light);
}

.category-icon {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 6px 25px var(--shadow-strong);
    border: 4px solid var(--gold);
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-title-modern h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.category-title-modern p {
    font-size: 1rem;
    color: var(--text-medium);
    margin: 0;
}

/* Prestations List */
.prestations-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.prestation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    padding: 20px 25px;
    border-radius: 12px;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.prestation-item:hover {
    border-left-color: var(--gold);
    transform: translateX(5px);
    box-shadow: 0 4px 15px var(--shadow);
}

.prestation-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.prestation-name {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
}

.prestation-desc {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-style: italic;
    margin-top: 2px;
}

.prestation-duration {
    font-size: 0.875rem;
    color: var(--text-light);
}

.prestation-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold);
    white-space: nowrap;
    margin-left: 20px;
}

/* Modern CTA Section */
.tarifs-cta-modern {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--primary-light) 100%);
    padding: 60px 0;
    text-align: center;
}

.tarifs-cta-modern h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.tarifs-cta-modern p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design for Modern Tarifs */
@media (max-width: 768px) {
    .tarifs-hero-modern {
        padding: 120px 0 60px 0;
    }

    .hero-content-modern h1 {
        font-size: 2.5rem;
    }

    .hero-content-modern p {
        font-size: 1rem;
    }

    .tarifs-modern {
        padding: 60px 0;
    }

    .tarif-category-modern {
        padding: 25px;
        margin-bottom: 30px;
    }

    .category-title-modern {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .category-icon {
        width: 100px;
        height: 100px;
    }

    .category-title-modern h2 {
        font-size: 1.5rem;
    }

    .prestation-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px 20px;
    }

    .prestation-price {
        margin-left: 0;
        align-self: flex-end;
    }

    .tarifs-cta-modern h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content-modern h1 {
        font-size: 2rem;
    }

    .category-title-modern h2 {
        font-size: 1.25rem;
    }

    .prestation-name {
        font-size: 0.95rem;
    }

    .prestation-price {
        font-size: 1.1rem;
    }

    .category-icon {
        width: 80px;
        height: 80px;
    }
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reviews CTA */
.reviews-cta {
    text-align: center;
    margin-top: 30px;
}

/* ===================================
   Avis Page Styles
   =================================== */
.avis-hero {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
    padding: 120px 0 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.6s ease-out;
}

.avis-full {
    background: var(--white);
    padding: 60px 0;
    min-height: 500px;
}

.avis-cta {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--primary-light) 100%);
    padding: 60px 0;
    text-align: center;
}

.avis-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.avis-cta p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 25px;
}

.avis-cta .cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Address Link */
.address-link {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.address-link:hover {
    color: var(--gold);
    text-decoration: underline;
}
