/**
 * Feuille de styles principale - B'yours Agency
 * Design élégant et moderne pour relooking et services d'image
 * 
 * @author GitHub Copilot
 * @version 1.0
 * @date 2025
 */

/* ===== RESET CSS ET BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: var(--light-cream); /* Fond uniforme crème pour le site */
    overflow-x: hidden;
}

/* ===== VARIABLES CSS POUR COHÉRENCE ===== */
:root {
    /* Couleurs principales - Ajustées selon la maquette */
    --primary-beige: #f0e6d6;
    --secondary-beige: #e8ddd4;
    --marble-cream: #f7f2eb;
    --warm-beige: #ede3d5;
    --dark-brown: #8b6f4d;
    --light-cream: #faf7f2;
    --white: #ffffff;
    --black: #1a1a1a;
    --gray-light: #f5f5f5;
    --gray-medium: #999999;
    --gray-dark: #666666;
    
    /* Typographie */
    --font-primary: 'Inter', Arial, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    /* Espacements */
    --container-max-width: 1400px;
    --section-padding: 80px 0;
    --element-margin: 20px;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Ombres */
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-strong: 0 8px 30px rgba(0,0,0,0.2);
}

/* ===== UTILITAIRES ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== HEADER ET NAVIGATION ===== */
.main-header {
    position: relative;
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(139, 111, 77, 0.1);
    z-index: 1003;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(240, 230, 214, 0.3);
}

.navigation-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    max-width: var(--container-max-width);
    margin: 0 auto;
    position: relative;
}

/* Navigation latérale */
.nav-left,
.nav-right {
    flex: 1;
}

.nav-right {
    text-align: right;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-right .nav-menu {
    justify-content: flex-end;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    padding: 10px 0;
    display: block;
}

.nav-link:hover {
    color: var(--dark-brown);
}

/* Dropdown menus */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-medium);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-smooth);
    border-radius: 8px;
    padding: 15px 0;
    z-index: 1001;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: var(--black);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
    text-transform: none;
    letter-spacing: 0;
}

.dropdown-content a:hover {
    background: var(--gray-light);
    color: var(--dark-brown);
}

/* Logo central */
.logo-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.logo {
    text-decoration: none;
    color: var(--black);
    display: block;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
}

.logo-subtitle {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
    margin: 5px 0 0 0;
    color: var(--gray-dark);
}

.logo:hover .logo-text {
    color: var(--dark-brown);
}

/* Menu mobile */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1005;
    position: relative;
    background: transparent;
    border: none;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--black);
    margin: 3px 0;
    transition: var(--transition-smooth);
    border-radius: 2px;
    pointer-events: none;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-strong);
    transition: var(--transition-smooth);
    z-index: 1004;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 100px 30px 30px;
}

.mobile-nav-list {
    list-style: none;
}

.mobile-nav-list li {
    margin: 20px 0;
}

.mobile-nav-list a {
    text-decoration: none;
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-light);
    transition: var(--transition-smooth);
}

.mobile-nav-list a:hover {
    color: var(--dark-brown);
    padding-left: 10px;
}

/* ===== HERO SECTION ===== */
.main-content {
    margin-top: 0; /* Plus de compensation nécessaire */
}

.hero-section {
    position: relative;
    height: 100vh; /* Hauteur complète */
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Fond en marbre uniquement pour la section hero */
    background: var(--marble-cream);
    background-image: url('../images/fondmarbrejpg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: local;
    /* Suppression du transform scale qui créait les bordures blanches */
}

/* Conteneur pour l'image circulaire */
.hero-image-container {
    position: absolute;
    top: 45%; /* Montée légèrement */
    left: 12%; /* Déplacée plus à gauche */
    transform: translateY(-50%);
    width: 480px; /* Plus large */
    height: 580px; /* Plus longue vers le bas */
    z-index: 2;
}

/* Image avec forme circulaire qui dépasse - utilise maintenant la vraie image */
.hero-image {
    width: 100%;
    height: 115%; /* Un peu plus de débordement vers le bas */
    object-fit: cover;
    object-position: center 15%; /* Ajusté pour bien remplir la forme plus longue */
    border-radius: 50% 50% 0 0; /* Arrondi en haut, plat en bas */
    box-shadow: var(--shadow-strong);
    position: relative;
    z-index: 2;
}

/* Overlay subtil sur l'image (désactivée) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Suppression du voile blanc : rendu transparent et non-interactif */
    background: transparent;
    border-radius: 50% 50% 0 0;
    z-index: 3;
    pointer-events: none;
}

/* Contenu textuel avec chevauchement */
.hero-content {
    position: relative;
    z-index: 4;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: transparent;
}

.hero-text-container {
    max-width: 580px; /* Légèrement réduit */
    margin-left: 53%; /* Ajusté pour les nouvelles proportions */
    padding: 70px 50px 50px 35px; /* Réduit proportionnellement */
    animation: fadeInUp 1s ease-out 0.5s both;
    position: relative;
    z-index: 5;
    background: rgba(250, 247, 242, 0.95); /* Fond semi-transparent pour conserver la texture */
    backdrop-filter: blur(5px); /* Effet de flou pour un rendu moderne */
    border-radius: 28px 28px 0 28px; /* Légèrement plus petit */
    box-shadow: 0 10px 40px rgba(139, 111, 77, 0.15), 
                0 2px 10px rgba(240, 230, 214, 0.3); /* Amélioration de l'ombre */
    margin-top: -50px; /* Ajusté */
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 44px; /* Légèrement réduit */
    font-weight: 600;
    color: var(--black);
    margin: 0 0 25px 0; /* Réduit */
    line-height: 1.1;
    letter-spacing: 1px;
}

.hero-description {
    margin: 25px 0 35px 0; /* Réduit */
}

.hero-description p {
    font-size: 15px; /* Légèrement réduit */
    line-height: 1.7; /* Ajusté */
    color: var(--gray-dark);
    text-align: justify;
}

.hero-signature {
    margin: 35px 0; /* Réduit */
    position: relative;
}

.signature-text {
    font-family: 'Dancing Script', cursive;
    font-size: 26px; /* Légèrement réduit */
    color: var(--dark-brown);
    font-style: italic;
    margin: 0;
    opacity: 0.9;
    text-align: left;
}

.hero-cta {
    margin-top: 35px; /* Réduit */
    position: relative;
    z-index: 10;
}

/* Bouton qui flotte et dépasse du conteneur */
.cta-button {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    padding: 18px 40px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transform: translateY(20px); /* Déborde légèrement du conteneur */
    margin-left: -20px; /* Déborde à gauche aussi */
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--dark-brown);
    transition: var(--transition-smooth);
    z-index: -1;
    border-radius: 25px;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    color: var(--white);
    transform: translateY(15px) scale(1.05);
    box-shadow: var(--shadow-strong);
}

/* ===== ÉLÉMENTS DÉCORATIFS ===== */

/* Forme décorative derrière l'image */
.hero-section::before {
    content: '';
    position: absolute;
    top: 15%; /* Ajustée pour suivre l'image */
    left: 7%; /* Déplacée avec l'image */
    width: 300px; /* Légèrement réduite */
    height: 300px; /* Légèrement réduite */
    background: linear-gradient(135deg, var(--warm-beige) 0%, var(--primary-beige) 100%);
    border-radius: 50%;
    opacity: 0.4;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

/* Autre forme décorative */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: 180px; /* Légèrement réduite */
    height: 180px; /* Légèrement réduite */
    background: linear-gradient(45deg, rgba(139, 111, 77, 0.15) 0%, rgba(240, 230, 214, 0.15) 100%);
    border-radius: 28px; /* Proportionnel */
    z-index: 1;
    transform: rotate(15deg);
    animation: float 8s ease-in-out infinite reverse;
}

/* Petits éléments décoratifs flottants */
.hero-text-container::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: var(--shadow-light);
    z-index: 6;
    border: 2px solid rgba(240, 230, 214, 0.5);
}

.hero-text-container::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 40px;
    height: 40px;
    background: var(--dark-brown);
    border-radius: 50%;
    opacity: 0.15;
    z-index: 6;
}

/* Animation de flottement */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===== ANIMATIONS ET TRANSITIONS (VERSION PROFESSIONNELLE) ===== */

/* Animation fade-in simple */
.fade-in {
    opacity: 1;
    transition: opacity 0.6s ease;
}

/* Animation slide-up - SEULEMENT pour les éléments avec cette classe */
.slide-up {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

/* Animation slide-up au défilement - effet subtil */
.slide-up:not(.animate) {
    opacity: 0.7;
    transform: translateY(15px);
}

.slide-up.animate {
    opacity: 1;
    transform: translateY(0);
}

/* S'assurer que les images de service restent TOUJOURS visibles */
.service-img, 
.service-image img,
.service-card img {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Animations au hover pour les boutons */
.cta-button, .section-button {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover, .section-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 111, 77, 0.3);
}

/* Animation dropdown */
.dropdown-content {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

/* Animations supprimées pour éviter les problèmes d'affichage */

/* Animations supprimées pour éviter les problèmes d'affichage */

/* ===== ÉTATS ET INTERACTIONS ===== */
.loading {
    pointer-events: none;
    opacity: 0.7;
}

/* Focus states for accessibility */
.nav-link:focus,
.cta-button:focus,
.mobile-nav-list a:focus {
    outline: 2px solid var(--dark-brown);
    outline-offset: 2px;
}

/* ===== OPTIMISATIONS PERFORMANCES ===== */
.hero-image {
    will-change: transform;
}

.nav-link,
.cta-button {
    will-change: transform;
}

/* Préchargement des états hover */
.nav-link::before,
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
}

/* ===== PRINT STYLES ===== */
@media print {
    .main-header,
    .mobile-menu,
    .hero-cta {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero-content {
        background: white;
        color: black;
    }
}

/* feature-double-section styles removed */

/* ===== PARTIE 2: SECTIONS REDESIGNÉES - VERSION MODERNE ===== */

/* STYLES SUPPRIMÉS: info-section, instagram-cta */

/* ===== SECTION AVANT/APRÈS AVEC SLIDER ===== */
.before-after-section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.before-after-content {
    display: flex;
    align-items: center;
    gap: 120px;
    min-height: 80vh;
}

/* Container du slider */
.before-after-slider {
    flex: 1;
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-container {
    position: relative;
    width: 500px;
    height: 600px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    cursor: col-resize;
}

/* Images avant et après */
.before-image,
.after-image {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.before-image {
    left: 0;
    z-index: 1;
}

.after-image {
    right: 0;
    z-index: 2;
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.1s ease-out;
}

.before-image img,
.after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.before-image img {
    object-position: center 30%; /* Monter l'image d'avant */
}

.after-image img {
    object-position: center 70%; /* Descendre l'image d'après */
}

/* Labels AVANT/APRÈS */
.image-label {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    background: rgba(0,0,0,0.8);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    z-index: 5;
}

.before-label {
    left: 20px;
}

.after-label {
    right: 20px;
}

/* Ligne verticale du slider */
.slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--white);
    transform: translateX(-50%);
    z-index: 3;
    box-shadow: 0 0 8px rgba(0,0,0,0.4);
    transition: left 0.1s ease-out;
}

/* Handle/bouton du slider - Plus petit */
.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    transition: left 0.1s ease-out;
}

.slider-button {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1px;
    cursor: col-resize;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: all 0.2s ease;
}

.slider-button:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.slider-button svg {
    width: 12px;
    height: 12px;
    color: var(--black);
    transition: all 0.2s ease;
}

/* États actifs du slider */
.slider-container.dragging .slider-button {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.slider-container.dragging {
    cursor: col-resize;
}

.slider-container.dragging .after-image,
.slider-container.dragging .slider-line,
.slider-container.dragging .slider-handle {
    transition: none;
}

/* Texte de la section */
.before-after-text {
    flex: 1;
    max-width: 500px;
}

.section-category {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--dark-brown);
    margin: 0 0 20px 0;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 54px;
    font-weight: 300;
    color: var(--black);
    margin: 0 0 35px 0;
    line-height: 1.1;
    letter-spacing: -1px;
}

.section-description {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    margin: 0 0 45px 0;
    font-weight: 300;
}

.section-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--black);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.section-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--black);
    transition: width 0.3s ease;
}

.section-button:hover::after {
    width: 100%;
}

.section-button:hover {
    transform: translateX(10px);
}

/* ===== SECTION SERVICES - DESIGN GRID MODERNE ===== */
.services-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #faf7f2 0%, #f0e6d6 100%);
    position: relative;
}

.section-main-title {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 600;
    text-align: center;
    color: var(--black);
    margin: 0 0 80px 0;
    letter-spacing: 1px;
    line-height: 1.2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    background: transparent;
    border-radius: 0;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    height: 400px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
}

.service-content {
    margin-top: 20px;
}

.service-title,
.service-link {
    color: var(--black);
}

.service-image {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* Images des services - style simplifié */
.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.service-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--black);
    margin: 15px 0 10px 0;
}

.service-link {
    color: var(--dark-brown);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== SECTION TÉMOIGNAGES - DESIGN ÉPURÉ ===== */
.testimonials-section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 80px;
}

.testimonial-item {
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
}

.testimonial-item:hover {
    transform: translateY(-10px);
}

.testimonial-avatar {
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.testimonial-item:hover .testimonial-avatar {
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
    transform: scale(1.05);
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.avatar-alicia { background: linear-gradient(135deg, #E8DDD4 0%, #D4B5A0 100%); }
.avatar-claire { background: linear-gradient(135deg, #F7F2EB 0%, #E8DDD4 100%); }
.avatar-adrienne { background: linear-gradient(135deg, #D4B5A0 0%, #C8A896 100%); }
.avatar-marie { background: linear-gradient(135deg, #F0E6D6 0%, #E8DDD4 100%); }

.testimonial-name {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--black);
    margin: 0 0 15px 0;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 10px;
}

.star {
    color: #ffd700;
    font-size: 18px;
    line-height: 1;
    transition: all 0.2s ease;
}

.testimonial-item:hover .star {
    transform: scale(1.2);
}

.testimonials-cta {
    text-align: center;
}

.section-button-light {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    color: var(--black);
    padding: 20px 40px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--black);
    border-radius: 50px;
    transition: all 0.4s ease;
}

.section-button-light::after {
    content: '→';
    font-size: 16px;
    transition: transform 0.3s ease;
}

.section-button-light:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.section-button-light:hover::after {
    transform: translateX(5px);
}

/* ===== SECTION FAQ - DESIGN ACCORDÉON MODERNE ===== */
.faq-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f7f2eb 0%, #ede3d5 100%);
    position: relative;
}

.faq-header {
    text-align: center;
    margin-bottom: 80px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
    box-shadow: none;
}

.faq-title {
    font-family: var(--font-serif);
    font-size: 54px;
    font-weight: 300;
    color: var(--black);
    margin: 0;
    letter-spacing: -1px;
    line-height: 1.2;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.faq-item:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    padding: 40px 50px;
    margin: 0;
    letter-spacing: 0.5px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--dark-brown);
    transition: all 0.3s ease;
}

.faq-question[aria-expanded="true"]::after {
    transform: rotate(45deg);
    color: var(--black);
}

.faq-question:hover {
    background: rgba(240, 230, 214, 0.3);
    padding-left: 60px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 0 50px;
}

.faq-answer.active {
    max-height: 200px;
    padding: 0 50px 40px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 20px 0 0 0;
    font-weight: 300;
}

/* ===== FOOTER REDESIGNÉ ===== */
.main-footer {
    background: var(--black);
    color: var(--white);
    padding: 100px 0 50px;
    margin-top: 0;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    margin-bottom: 60px;
}

.footer-column {
    text-align: left;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 40px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin: 20px 0;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 1px;
    background: var(--dark-brown);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 25px;
}

.footer-links a:hover::before {
    width: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.copyright {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin: 0;
    letter-spacing: 1px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-legal a {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: var(--white);
}

.separator {
    color: rgba(255,255,255,0.3);
    font-size: 10px;
}

/* ===== ANIMATIONS GLOBALES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Animations supprimées pour éviter les problèmes d'affichage */

/* ===== FIN PARTIE 2 REDESIGNÉE ===== */

/* ===== STYLES POUR PAGES SUPPLÉMENTAIRES ===== */

/* Page Hero général */
.page-hero {
    padding: 150px 0 80px;
    background: transparent;
    text-align: center;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 20px 0;
    letter-spacing: 1px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--gray-dark);
    margin: 0;
    font-style: italic;
}

/* Page About */
.about-content {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.7);
}

.about-section {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-section h2 {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 25px 0;
}

.about-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-dark);
    text-align: justify;
}

/* Page Services */
.services-detail {
    padding: 80px 0;
}

.service-detail {
    max-width: 600px;
    margin: 0 auto 50px;
    padding: 40px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    text-align: center;
}

.service-detail h2 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 20px 0;
}

.service-detail p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-dark);
    margin: 0 0 15px 0;
}

.service-price {
    font-weight: 600;
    color: var(--dark-brown);
    font-size: 18px;
    margin: 20px 0 0 0 !important;
}

.services-cta {
    padding: 60px 0;
    text-align: center;
    background: rgba(245, 245, 245, 0.5);
}

.services-cta h3 {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 30px 0;
}

/* Responsive pour pages supplémentaires */
@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 60px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .about-content,
    .services-detail {
        padding: 60px 0;
    }
    
    .service-detail {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .services-cta h3 {
        font-size: 24px;
    }
}

/* ===== FIN STYLES PAGES SUPPLÉMENTAIRES ===== */