/* ============================================
   MARWA BEAUTY - CSS ULTRA-MODERNE 2026
   Design WOW, Élégant & Dynamique
============================================ */

/* === VARIABLES === */
:root {
    --nude-dark: #8d7765;
    --gold: #c5a059;
    --gold-light: #e0c58e;
    --beige: #f4f1ea;
    --white: #ffffff;
    --gray-nude: #5d544d;
    --black: #1a1a1a;
    
    /* Nouvelles variables */
    --gold-glow: rgba(197, 160, 89, 0.4);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* === RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--beige);
    color: var(--nude-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ============================================
   MENU HAMBURGER (3 BARRES)
============================================ */
.hamburger {
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 10000;
    width: 50px;
    height: 50px;
    background: var(--gold);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none; /* CACHÉ PAR DÉFAUT SUR DESKTOP */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 5px 20px var(--gold-glow);
    transition: var(--transition-smooth);
}

.hamburger:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px var(--gold-glow);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ============================================
   HEADER - APPARAÎT AU SCROLL VERS LE HAUT
============================================ */
#mainHeader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(141, 119, 101, 0.98);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    
    /* CACHÉ PAR DÉFAUT */
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#mainHeader.visible {
    transform: translateY(0);
}

#mainHeader.menu-open {
    transform: translateY(0);
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo {
    height: 60px;
    width: auto;
    background: transparent; 
    border: none;
    border-radius: 0; 
    object-fit: contain;
}

.logo-text {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.header-phone {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid var(--gold);
    border-radius: 30px;
    transition: var(--transition-smooth);
}

.header-phone:hover {
    background: var(--gold);
    color: white;
}

/* ============================================
   HERO SECTION - FULL SCREEN AVEC PARALLAX
============================================ */
.hero-fullscreen {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(141, 119, 101, 0.4));
    z-index: 2;
}

.hero-content-center {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
}

.hero-logo-large {
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
}

.hero-logo-large img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    box-shadow: 0 10px 40px var(--gold-glow);
}

.hero-title-xl {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle-elegant {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease 0.4s both;
}

/* Stats sous le titre */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease 0.6s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 700;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.8);
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.3);
}

/* Boutons CTA */
.hero-cta-buttons {
    display: flex;
    gap: 35px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: -20px;
    animation: fadeInUp 1s ease 0.8s both;
}

/* Indicateur de scroll */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    animation: fadeIn 1s ease 1s both;
}

.scroll-indicator span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ============================================
   BOUTONS MODERNES
============================================ */
.btn-primary-glow {
    display: inline-block;
    padding: 18px 45px;
    background: var(--gold);
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 10px 30px var(--gold-glow);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary-glow:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--gold-glow);
}

.btn-secondary-outline {
    display: inline-block;
    padding: 16px 43px;
    background: transparent;
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    border: 2px solid white;
    transition: var(--transition-smooth);
}

.btn-secondary-outline:hover {
    background: white;
    color: var(--nude-dark) !important;
    transform: translateY(-3px);
}

.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: #c5a059;
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(232, 160, 67, 0.3);
    transition: var(--transition-smooth);
}

.btn-whatsapp-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(232, 160, 67, 0.3);
}

.whatsapp-icon {
    font-size: 1.5rem;
}

/* ============================================
   SECTIONS GÉNÉRALES
============================================ */
.section-header-centered {
    text-align: center;
    margin-bottom: 70px;
}

.tagline-gold {
    display: inline-block;
    color: var(--gold);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title-elegant {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--nude-dark);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.section-title-elegant.white {
    color: white;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-nude);
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

.cta-center-margin {
    text-align: center;
    margin-top: 60px;
}

/* ============================================
   SECTION POURQUOI NOUS
============================================ */
.section-why-us {
    padding: 120px 20px;
    background: white;
}

.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.why-card-modern {
    padding: 50px 30px;
    background: var(--beige);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    border-top: 4px solid var(--gold);
}

.why-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.why-card-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: block;
}

.why-card-modern h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--nude-dark);
    margin-bottom: 15px;
}

.why-card-modern p {
    color: var(--gray-nude);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   SECTION SERVICES PREVIEW
============================================ */
.section-services-preview {
    padding: 120px 20px;
    background: linear-gradient(135deg, var(--beige) 0%, #fdfcf9 100%);
    position: relative;
}

.services-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
    background-size: 20px 20px;
    pointer-events: none;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card-elegant {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.service-card-elegant:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-strong);
}

.service-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-elegant:hover .service-image-wrapper img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.service-price {
    background: var(--gold);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--nude-dark);
    margin-bottom: 12px;
}

.service-content p {
    color: var(--gray-nude);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-smooth);
}

.service-link:hover {
    gap: 10px;
}

/* ============================================
   SECTION TRANSFORMATIONS
============================================ */
.section-transformations {
    padding: 120px 20px;
    background: white;
}

.transformations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.transformation-card {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.transformation-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.transformation-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.transformation-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 40px 25px;
    color: white;
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.transformation-card:hover .transformation-overlay {
    transform: translateY(0);
}

.transformation-overlay h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.transformation-overlay p {
    font-size: 1rem;
}

/* ============================================
   SECTION CONSEILS BEAUTÉ
============================================ */
.section-beauty-tips {
    padding: 120px 20px;
    background: var(--beige);
}

.tips-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.tip-card-luxury {
    background: white;
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border-top: 3px solid var(--gold);
}

.tip-card-luxury:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.tip-icon-wrapper {
    margin-bottom: 25px;
}

.tip-icon {
    font-size: 3rem;
    color: var(--gold);
}

.tip-card-luxury h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--nude-dark);
    margin-bottom: 15px;
}

.tip-card-luxury p {
    color: var(--gray-nude);
    line-height: 1.7;
}

/* ============================================
   SECTION TÉMOIGNAGES PREMIUM
============================================ */
.section-testimonials-premium {
    padding: 120px 20px;
    background: var(--nude-dark);
    position: relative;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.3), transparent);
    pointer-events: none;
}

.google-rating-large {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.rating-stars-xl {
    font-size: 3rem;
    color: var(--gold);
    letter-spacing: 5px;
    margin-bottom: 15px;
}

.rating-score-xl {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    color: white;
    font-weight: 700;
}

.rating-source {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin-top: 10px;
}

.testimonials-carousel {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-track-wrapper {
    overflow: hidden;
    flex: 1;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.testimonial-card-premium {
    min-width: calc(33.333% - 20px);
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-nude);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.testimonial-author strong {
    color: var(--nude-dark);
    font-size: 0.95rem;
}

.testimonial-author span {
    color: #999;
    font-size: 0.85rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--gold-light);
    transform: scale(1.1);
}

/* ============================================
   SECTION CTA FINALE
============================================ */
.section-final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.final-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

.final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta-buttons .btn-primary-glow.large,
.final-cta-buttons .btn-secondary-outline.large {
    padding: 20px 50px;
    font-size: 16px;
}

.final-cta-hours {
    margin-top: 30px;
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
}

/* ============================================
   FOOTER
============================================ */
.main-footer {
    background: var(--nude-dark);
    color: white;
    padding: 80px 0 30px;
    border-top: 3px solid var(--gold);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
}

.footer-column h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-logo {
    width: 80px;
    height: auto;
    background: transparent;
    border: none;
    border-radius: 0;
    margin-bottom: 20px;
    object-fit: contain;
}

.footer-brand p {
    font-style: italic;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-column ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-column p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--gold);
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* ============================================
   BOUTON WHATSAPP FLOTTANT
============================================ */
.whatsapp-float-new {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: #c5a059;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px #8d7765;
    z-index: 9998;
    transition: var(--transition-smooth);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float-new:hover {
    transform: scale(1.15);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 8px 25px #8d7765;
    }
    50% {
        box-shadow: 0 8px 35px #8d7765;
    }
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .hero-title-xl {
        font-size: 2.8rem !important;
    }
    
    .section-title-elegant {
        font-size: 2.5rem;
    }
    
    .testimonial-card-premium {
        min-width: calc(50% - 15px);
    }
    
    /* AFFICHER LE HAMBURGER SUR TABLETTE */
    .hamburger {
        display: flex !important;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 20px;
        position: fixed;
        top: 100px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--nude-dark);
        padding: 30px;
        border-radius: 20px;
        z-index: 9998;
    }
    
    .nav-links.active {
        display: flex !important;
    }
    
    .header-phone {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title-xl {
        font-size: 2rem !important;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        gap: 20px;
        margin-top: 20px !important;
    }
    
    .btn-primary-glow,
    .btn-secondary-outline {
        width: 90%;
        max-width: 300px;
    }
    
    .services-grid-modern,
    .transformations-grid,
    .why-cards-grid,
    .tips-grid-modern {
        grid-template-columns: 1fr;
    }

    /* --- SECTION TÉMOIGNAGES (PLUS LARGE & MOINS LONGUE) --- */
    .testimonials-carousel {
        position: relative;
        padding: 0 35px !important; /* On réduit les bords pour élargir la carte */
        display: flex;
        align-items: center;
        min-height: auto !important;
    }

    .testimonials-track-wrapper {
        width: 100%;
        overflow: hidden;
    }

    .testimonial-card-premium {
        min-width: 100%;
        width: 100%;
        height: auto !important; /* Coupe la longueur inutile */
        padding: 20px 15px !important; /* Compacte l'intérieur de la carte */
        margin: 5px 0;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
    }

    .testimonial-text {
        font-size: 0.85rem !important; /* Texte un peu plus petit pour gagner de la hauteur */
        line-height: 1.4 !important;
        margin-bottom: 10px !important;
        font-style: italic;
    }

    .testimonial-author {
        padding-top: 10px !important;
        margin-top: auto;
    }
    
    /* FLÈCHES PLUS DISCRÈTES ET BIEN PLACÉES */
    .carousel-btn {
        display: flex !important;
        width: 32px; 
        height: 32px;
        font-size: 0.9rem;
        position: absolute;
        z-index: 100;
        top: 50%;
        transform: translateY(-50%);
        background: var(--gold) !important;
        opacity: 0.9;
        border-radius: 50%;
        border: none;
        color: white;
        align-items: center;
        justify-content: center;
    }

    #prevTestimonial { left: 2px; }
    #nextTestimonial { right: 2px; }
    /* --- FIN SECTION TÉMOIGNAGES --- */
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .final-cta-content h2 {
        font-size: 2rem;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title-xl {
        font-size: 1.8rem !important;
        letter-spacing: 2px !important;
    }
    
    .hero-subtitle-elegant {
        font-size: 1rem;
    }
    
    .section-title-elegant {
        font-size: 1.8rem;
    }
    
    .hero-logo-large img {
        width: 100px;
        height: 100px;
    }
}

/* ============================================
   STYLES POUR LA PAGE QUI SOMMES-NOUS
============================================ */
.hero-about {
    height: 80vh;
}

.about-story-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.story-paragraph {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--gray-nude);
    margin-bottom: 25px;
    text-align: left;
}

.story-paragraph strong {
    color: var(--nude-dark);
    font-weight: 600;
}

.highlight-gold {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1), rgba(197, 160, 89, 0.05));
    padding: 40px;
    border-radius: 20px;
    border-left: 4px solid var(--gold);
    text-align: center;
    font-size: 1.2rem;
}

.stop-content {
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero-about {
        height: 70vh;
    }

    .story-paragraph {
        font-size: 1rem;
        text-align: left;
    }

    .highlight-gold {
        padding: 30px 20px;
        font-size: 1.05rem;
    }
}

/* ============================================
   STYLES POUR LA PAGE SERVICES
============================================ */
.hero-services {
    height: 70vh;
}

.services-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border-top: 4px solid var(--gold);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.pricing-card-special {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.05), white);
    border-top: 4px solid var(--gold);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.pricing-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.pricing-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--nude-dark);
    margin: 0;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    gap: 20px;
}

.pricing-list li:last-child {
    border-bottom: none;
}

.service-name {
    font-size: 1rem;
    color: var(--gray-nude);
    font-weight: 500;
    flex: 1;
}

.service-price {
    font-size: 1.1rem;
    color: white;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    background: var(--gold);
    padding: 8px 20px;
    border-radius: 25px;
    white-space: nowrap;
    flex-shrink: 0;
}

.special-note {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    font-style: italic;
    color: var(--gray-nude);
    font-size: 0.95rem;
}

.portfolio-gallery {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    width: 100%;
}

.portfolio-item {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.portfolio-item img, 
.portfolio-item .portfolio-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.portfolio-item:hover img,
.portfolio-item:hover .portfolio-video {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 30px 20px;
    color: white;
    transform: translateY(100%);
    transition: var(--transition-smooth);
    z-index: 2;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #d4af37;
    margin: 0;
}

.rdv-process {
    max-width: 900px;
    margin: 0 auto;
}

.rdv-intro {
    text-align: center;
    margin-bottom: 50px;
}

.rdv-intro p {
    font-size: 1.2rem;
    color: var(--gray-nude);
    line-height: 1.8;
}

.rdv-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.rdv-step {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.rdv-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin: 0 auto 20px;
}

.rdv-step h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--nude-dark);
    margin-bottom: 15px;
}

.rdv-step p {
    color: var(--gray-nude);
    line-height: 1.6;
    font-size: 0.95rem;
}

.rdv-notice {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1), rgba(197, 160, 89, 0.05));
    padding: 30px;
    border-radius: 20px;
    border-left: 4px solid var(--gold);
    text-align: center;
}

.rdv-notice p {
    color: var(--gray-nude);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .hero-services {
        height: 60vh;
    }

    .services-pricing-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-gallery {
        grid-template-columns: 1fr;
    }

    .portfolio-item {
        height: 300px;
    }

    .rdv-steps {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   STYLES POUR LA PAGE CONTACT
============================================ */
.hero-contact {
    height: 70vh;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border-top: 4px solid var(--gold);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.contact-icon {
    font-size: 3rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--nude-dark);
    text-align: center;
    margin-bottom: 25px;
}

.contact-details p {
    margin-bottom: 15px;
    color: var(--gray-nude);
    line-height: 1.7;
}

.contact-details strong {
    color: var(--nude-dark);
    display: block;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.contact-details a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-details a:hover {
    color: var(--gold-light);
}

.contact-text {
    text-align: center;
    color: var(--gray-nude);
    margin-bottom: 30px;
    line-height: 1.7;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: var(--beige);
    border-radius: 15px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--gold);
    transform: translateY(-5px);
}

.social-link img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.social-link span {
    color: var(--nude-dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.social-link:hover span {
    color: white;
}

.map-access-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 40px;
}

.map-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.map-box:hover {
    box-shadow: var(--shadow-strong);
    transform: translateY(-5px);
}

.map-box img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px;
    text-align: center;
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.map-box:hover .map-overlay {
    transform: translateY(0);
}

.map-overlay span {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
}

.access-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.access-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.access-icon {
    font-size: 2rem;
    color: var(--gold);
    flex-shrink: 0;
}

.access-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--nude-dark);
    margin-bottom: 10px;
}

.access-content p {
    color: var(--gray-nude);
    line-height: 1.7;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border-top: 3px solid var(--gold);
}

.faq-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.faq-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    text-align: center;
}

.faq-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--nude-dark);
    margin-bottom: 15px;
    text-align: center;
}

.faq-card p {
    color: var(--gray-nude);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px dashed var(--gold-light);
}

.faq-cta-text {
    font-style: italic;
    color: var(--gray-nude);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .hero-contact {
        height: 60vh;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .map-access-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-box img {
        height: 350px;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}



/* --- CORRECTION FINALE POP-UP --- */
#promoPopup {
    display: none; /* Le JavaScript passera ça en "flex" */
    position: fixed !important;
    z-index: 999999 !important;
    left: 0 !important;
    top: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(0,0,0,0.85) !important;
    
    /* CES LIGNES SONT OBLIGATOIRES POUR LE CENTRAGE */
    display: none; 
    align-items: center !important;
    justify-content: center !important;
    backdrop-filter: blur(5px);
}

#promoPopup .promo-content {
    background: #f4f1ea !important;
    padding: 35px !important;
    border-radius: 20px !important;
    max-width: 420px !important;
    width: 90% !important;
    text-align: center !important;
    position: relative !important;
    border: 3px solid #c5a059 !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5) !important;
}
