/* ============================================
   RESET OPTIMISÉ
   ============================================ */
html, body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, 
figure, blockquote, form, fieldset, input, textarea, button {
    margin: 0;
    padding: 0;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

button, input, textarea {
    font-family: inherit;
}

/* ============================================
   VARIABLES CSS
   ============================================ */
:root {
    /* Couleurs adoucies */
    --couleur-primaire: #2d2d2d;
    --couleur-secondaire: #c9a961;
    --couleur-accent: #8b7355;
    --couleur-fond: #fafaf8;
    --couleur-fond-alt: #f5f3f0;
    --couleur-texte: #3d3d3d;
    --couleur-texte-clair: #6b6b6b;
    --couleur-bordure: #e8e6e1;
    
    /* Typographie */
    --font-principale: 'Cormorant Garamond', 'Georgia', serif;
    --font-secondaire: 'Montserrat', 'Helvetica Neue', sans-serif;
    
    /* Espacements */
    --espacement-xs: 0.5rem;
    --espacement-sm: 1rem;
    --espacement-md: 2rem;
    --espacement-lg: 4rem;
    --espacement-xl: 6rem;
    
    /* Transitions */
    --transition-rapide: 0.2s ease;
    --transition-normale: 0.4s ease;
    --transition-lente: 0.6s ease;
}

/* ============================================
   STYLES DE BASE
   ============================================ */
body {
    font-family: var(--font-secondaire);
    color: var(--couleur-texte);
    background-color: var(--couleur-fond);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-principale);
    font-weight: 400;
    line-height: 1.3;
    color: var(--couleur-primaire);
}

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

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

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--espacement-md);
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 250, 248, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--couleur-bordure);
    z-index: 1000;
    transition: transform var(--transition-normale),
                box-shadow var(--transition-normale);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.50rem var(--espacement-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-principale);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--couleur-primaire);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}

.logo-image {
    width: 160px;
    height: 160px;
    object-fit: contain;
}

.logo-text {
    display: block;
}

.logo span {
    display: block;
    font-family: var(--font-secondaire);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--couleur-secondaire);
    margin-top: 0.25rem;
    font-weight: 300;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav a {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--couleur-texte);
    position: relative;
    padding-bottom: 0.25rem;
    transition: color var(--transition-normale);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--couleur-secondaire);
    transition: width var(--transition-normale);
    transform: translateX(-50%);
}

.nav a:hover {
    color: var(--couleur-secondaire);
}

.nav a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--couleur-primaire);
    color: #fff !important;
    padding: 0.75rem 1.75rem;
    border-radius: 0;
    transition: background-color var(--transition-normale),
                transform var(--transition-normale),
                box-shadow var(--transition-normale);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--couleur-secondaire);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

/* ============================================
   HAMBURGER MENU
   ============================================ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: var(--couleur-primaire);
    border-radius: 2px;
    transition: all var(--transition-normale);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

body.menu-open {
    overflow: hidden;
}

/* ============================================
   HERO (VERSION COMPACTE)
   ============================================ */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--couleur-fond) 0%, var(--couleur-fond-alt) 100%);
    position: relative;
    padding-top: 200px;
    padding-bottom: var(--espacement-lg);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 115, 85, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 var(--espacement-md);
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 300;
    margin-bottom: var(--espacement-md);
    line-height: 1.2;
    color: var(--couleur-primaire);
}

.hero h1 span {
    display: block;
    font-weight: 300;
    color: var(--couleur-secondaire);
    font-style: italic;
    margin-top: 0.5rem;
    font-size: 0.85em;
}

.hero p {
    font-size: 1.05rem;
    color: var(--couleur-texte-clair);
    margin-bottom: var(--espacement-md);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ============================================
   BOUTONS
   ============================================ */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    border-radius: 0;
    cursor: pointer;
    border: none;
    font-family: var(--font-secondaire);
    transition: background-color var(--transition-normale),
                transform var(--transition-normale),
                box-shadow var(--transition-normale),
                color var(--transition-normale);
}

.btn-primary {
    background: var(--couleur-primaire);
    color: #fff;
    box-shadow: 0 4px 15px rgba(45, 45, 45, 0.15);
}

.btn-primary:hover {
    background: var(--couleur-secondaire);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--couleur-primaire);
    border: 2px solid var(--couleur-primaire);
}

.btn-secondary:hover {
    background: var(--couleur-primaire);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 45, 45, 0.2);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: var(--espacement-xl) 0;
}

.section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: var(--espacement-lg);
    letter-spacing: 1px;
}

.intro {
    background: var(--couleur-fond-alt);
    text-align: center;
}

.intro .container {
    max-width: 900px;
}

.intro p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--couleur-texte-clair);
}

.intro strong {
    color: var(--couleur-secondaire);
    font-weight: 500;
}

/* ============================================
   GRILLE SPLIT
   ============================================ */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--espacement-xl);
    align-items: center;
}

.split-grid > div:first-child {
    padding-right: var(--espacement-md);
}

.split-grid h2 {
    margin-bottom: var(--espacement-md);
}

.split-grid p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--couleur-texte-clair);
    margin-bottom: var(--espacement-md);
}

/* Container de l'image */
.image-placeholder {
    height: 100%;
    background: linear-gradient(135deg, #e8e6e1 0%, #d4d2cc 100%);
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

/* L'image elle-même */
.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    background: var(--couleur-fond);
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--espacement-md);
    margin-top: var(--espacement-lg);
}

.card {
    background: #fff;
    padding: var(--espacement-lg) var(--espacement-md);
    text-align: center;
    font-size: 1rem;
    letter-spacing: 1px;
    border: 1px solid var(--couleur-bordure);
    position: relative;
    overflow: hidden;
    font-family: var(--font-principale);
    font-weight: 400;
    color: var(--couleur-primaire);
    transition: transform var(--transition-normale),
                box-shadow var(--transition-normale),
                border-color var(--transition-normale);
}
.card-invisible {
    background: #fff;
    padding: var(--espacement-lg) var(--espacement-md);
    text-align: center;
    font-size: 1rem;
    letter-spacing: 1px;
    border: 1px solid var(--couleur-bordure);
    position: relative;
    overflow: hidden;
    font-family: var(--font-principale);
    font-weight: 400;
    color: var(--couleur-primaire);
    transition: transform var(--transition-normale),
                box-shadow var(--transition-normale),
                border-color var(--transition-normale);
    
    /* Rend tout invisible */
    opacity: 0;
    pointer-events: none;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--couleur-secondaire), transparent);
    transition: left var(--transition-lente);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--couleur-secondaire);
}

.card:hover::before {
    left: 100%;
}

/* ============================================
   CITATION
   ============================================ */
.quote {
    background: var(--couleur-primaire);
    color: #fff;
    text-align: center;
    padding: var(--espacement-xl) 0;
    position: relative;
    overflow: hidden;
}

.quote::before {
    content: '"';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20rem;
    font-family: var(--font-principale);
    opacity: 0.05;
    line-height: 1;
}

blockquote {
    font-family: var(--font-principale);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 300;
    letter-spacing: 1px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ============================================
   CALL TO ACTION
   ============================================ */
.cta {
    background: var(--couleur-fond-alt);
    text-align: center;
}

.cta h2 {
    margin-bottom: var(--espacement-md);
}

.cta p {
    font-size: 1.1rem;
    color: var(--couleur-texte-clair);
    margin-bottom: var(--espacement-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--couleur-primaire);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--espacement-lg) var(--espacement-md);
    text-align: center;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.social-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all var(--transition-normale);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.social-link:hover {
    color: var(--couleur-accent);
    transform: translateY(-3px);
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normale);
}

.social-link:hover .social-icon {
    border-color: var(--couleur-accent);
    background: rgba(255, 255, 255, 0.05);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-divider {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto;
}

.footer p {
    margin: 0;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    padding: 120px 0 var(--espacement-lg);
    text-align: center;
    background: var(--couleur-fond-alt);
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--espacement-md);
}

/* ============================================
   GALERIE
   ============================================ */
.gallery {
    padding: var(--espacement-xl) 0;
    background: var(--couleur-fond);
}

.gallery-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--espacement-xl);
}

.gallery-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--couleur-texte-clair);
}

/* ============================================
   CARROUSEL
   ============================================ */
.carrousel-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.carrousel-main {
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    position: relative;
    overflow: hidden;
    background: var(--couleur-fond-alt);
    margin-bottom: var(--espacement-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.carrousel-main img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity var(--transition-lente);
}

.carrousel-main img.active {
    opacity: 1;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(45, 45, 45, 0.7);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: background-color var(--transition-normale),
                transform var(--transition-normale);
}

.nav-btn:hover {
    background: var(--couleur-secondaire);
    transform: translateY(-50%) scale(1.1);
}

.nav-btn.prev {
    left: var(--espacement-md);
}

.nav-btn.next {
    right: var(--espacement-md);
}

.carrousel-footer {
    display: flex;
    gap: var(--espacement-sm);
    overflow-x: auto;
    padding: var(--espacement-sm);
    scrollbar-width: thin;
    scrollbar-color: var(--couleur-secondaire) var(--couleur-bordure);
}

.carrousel-footer::-webkit-scrollbar {
    height: 8px;
}

.carrousel-footer::-webkit-scrollbar-track {
    background: var(--couleur-bordure);
}

.carrousel-footer::-webkit-scrollbar-thumb {
    background: var(--couleur-secondaire);
    border-radius: 4px;
}

.carrousel-footer img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.5;
    border: 2px solid transparent;
    flex-shrink: 0;
    transition: opacity var(--transition-normale),
                transform var(--transition-normale),
                border-color var(--transition-normale);
}

.carrousel-footer img:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.carrousel-footer img.active {
    opacity: 1;
    border-color: var(--couleur-secondaire);
    transform: scale(1.05);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--espacement-xl) var(--espacement-md);
}

.contact-intro {
    text-align: center;
    margin-bottom: var(--espacement-xl);
}

.contact-intro h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--espacement-md);
}

.contact-intro p {
    font-size: 1.1rem;
    color: var(--couleur-texte-clair);
    line-height: 1.8;
}

.contact-form {
    background: #fff;
    padding: var(--espacement-lg);
    border: 1px solid var(--couleur-bordure);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: var(--espacement-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--espacement-xs);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--couleur-texte);
    font-weight: 400;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--couleur-bordure);
    background: var(--couleur-fond);
    font-family: var(--font-secondaire);
    font-size: 1rem;
    color: var(--couleur-texte);
    transition: border-color var(--transition-normale),
                background-color var(--transition-normale);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--couleur-secondaire);
    background: #fff;
}

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

.form-submit {
    text-align: center;
    margin-top: var(--espacement-lg);
}

/* ============================================
   CONFIRMATION
   ============================================ */
.confirmation-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: var(--espacement-xl) var(--espacement-md);
}

.confirmation-container h1 {
    color: var(--couleur-primaire);
    font-family: var(--font-principale);
    font-weight: 600;
    margin-bottom: var(--espacement-md);
}

.confirmation-container p {
    font-family: var(--font-secondaire);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--couleur-texte-clair);
}

.confirmation-details {
    background-color: #fff;
    padding: var(--espacement-md);
    border-radius: 6px;
    margin: var(--espacement-md) 0;
    text-align: left;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--couleur-bordure);
}

.confirmation-details p {
    margin-bottom: var(--espacement-sm);
}

.confirmation-details strong {
    color: var(--couleur-primaire);
}

/* ============================================
   PAGE SCÉNOGRAPHIE - STYLES ADDITIONNELS
   ============================================ */

/* Subtitle dans le header */
.page-header .subtitle {
    font-size: 1.2rem;
    color: var(--couleur-secondaire);
    font-style: italic;
    margin-top: var(--espacement-sm);
    font-family: var(--font-principale);
}

/* Numérotation des sections */
.scenography-number {
    width: 70px;
    height: 70px;
    background: var(--couleur-secondaire);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-principale);
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: var(--espacement-md);
}

/* Section split avec reverse */
.split-reverse {
    background: var(--couleur-fond) !important;
}

.split-reverse .split-grid {
    direction: rtl;
}

.split-reverse .split-grid > * {
    direction: ltr;
}

/* Feature list dans les sections */
.feature-list {
    list-style: none;
    padding: 0;
    margin-top: var(--espacement-md);
}

.feature-list li {
    padding-left: 1.8rem;
    margin-bottom: 0.75rem;
    position: relative;
    font-size: 1rem;
    color: var(--couleur-texte);
    line-height: 1.7;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--couleur-secondaire);
    font-weight: 600;
    font-size: 1.2rem;
}

/* Approach numbers dans les cards */
.approach-number {
    width: 60px;
    height: 60px;
    background: var(--couleur-secondaire);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-principale);
    font-size: 2rem;
    font-weight: 300;
    margin: 0 auto var(--espacement-md);
}

.card h3 {
    font-family: var(--font-principale);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--couleur-primaire);
    margin-bottom: var(--espacement-sm);
}

.card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--couleur-texte-clair);
}

/* Why Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--espacement-lg);
    margin-top: var(--espacement-lg);
}

.why-item {
    text-align: left;
}

.why-item h3 {
    font-family: var(--font-secondaire);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--couleur-secondaire);
    margin-bottom: var(--espacement-sm);
    letter-spacing: 0.5px;
}

.why-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--couleur-texte-clair);
}
/* Section Testimonials */
.testimonials {
    background: var(--couleur-fond);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--espacement-lg);
    margin-top: var(--espacement-lg);
}

/* Testimonial Card */
.testimonial-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition-normale),
                box-shadow var(--transition-normale);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--couleur-bordure);
}
.testimonial-card::before {
    content: "DRAFT";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-size: 5rem;
    font-weight: bold;
    color: rgba(255, 0, 0, 0.15);
    z-index: 10;
    pointer-events: none;
    letter-spacing: 0.5rem;
    white-space: nowrap;
}
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Image Section */
.testimonial-image {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

/*.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-lente);
}*/

.testimonial-image img {
    width: 100;
    height: 100;
    object-fit: cover;
    
    transition: transform var(--transition-lente);
}

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.08);
}

/* Overlay avec icône coeur */
.testimonial-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normale);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-card:hover .testimonial-overlay {
    opacity: 1;
}

.testimonial-overlay svg {
    width: 32px;
    height: 32px;
    color: var(--couleur-secondaire);
}

/* Content Section */
.testimonial-content {
    padding: var(--espacement-lg) var(--espacement-md);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Quote Icon */
.testimonial-quote {
    margin-bottom: var(--espacement-md);
}

.testimonial-quote svg {
    width: 36px;
    height: 36px;
    color: var(--couleur-secondaire);
    opacity: 0.3;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--couleur-texte-clair);
    font-style: italic;
    margin-bottom: var(--espacement-md);
    flex-grow: 1;
}

/* Footer Section */
.testimonial-footer {
    border-top: 1px solid var(--couleur-bordure);
    padding-top: var(--espacement-md);
    margin-top: auto;
}

.testimonial-names {
    font-family: var(--font-principale);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--couleur-primaire);
    margin-bottom: var(--espacement-xs);
}

.testimonial-date {
    font-family: var(--font-secondaire);
    font-size: 0.85rem;
    color: var(--couleur-secondaire);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 400;
}

/* ============================================
   RESPONSIVE - TÉMOIGNAGES
   ============================================ */
@media (max-width: 968px) {
    .testimonial-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: var(--espacement-md);
    }
    
    .testimonial-image {
        height: 220px;
    }
    
    .testimonial-content {
        padding: var(--espacement-md);
    }
}

@media (max-width: 640px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-image {
        height: 200px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .testimonial-names {
        font-size: 1.1rem;
    }
    
    .testimonial-overlay {
        width: 60px;
        height: 60px;
    }
    
    .testimonial-overlay svg {
        width: 28px;
        height: 28px;
    }
}

/* ============================================
   MEDIA QUERIES - TABLETTES
   ============================================ */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(250, 250, 248, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: var(--espacement-lg) var(--espacement-md);
        transition: right var(--transition-normale);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav a {
        font-size: 1rem;
        padding: 0.5rem 0;
    }
    
    .nav-cta {
        margin-top: var(--espacement-sm);
    }
    
    .hero {
        padding-top: 220px;
    }
    
    .header-inner {
        padding: 1rem var(--espacement-md);
    }
    
    .logo-image {
        width: 120px;
        height: 120px;
    }
    
    .split-grid {
        grid-template-columns: 1fr;
        gap: var(--espacement-lg);
    }
    
    .split-grid > div:first-child {
        padding-right: 0;
    }
    
    .image-placeholder {
        height: 350px;
    }
    
    .cards {
        grid-template-columns: 1fr;
    }
    
    .split-reverse .split-grid {
        direction: ltr;
    }
    
    .scenography-number {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: var(--espacement-md);
    }
    
    .footer-social {
        gap: 1.5rem;
    }
    
    .social-link {
        font-size: 0.7rem;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
}

/* ============================================
   MEDIA QUERIES - MOBILES
   ============================================ */
@media (max-width: 640px) {
    :root {
        --espacement-lg: 3rem;
        --espacement-xl: 4rem;
    }
    
    .nav {
        width: 80%;
        max-width: 280px;
    }
    
    .logo-image {
        width: 100px;
        height: 100px;
    }
    
    .header-inner {
        padding: 0.75rem var(--espacement-sm);
    }
    
    .hero {
        min-height: 90vh;
        padding-top: 150px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .nav-btn.prev {
        left: var(--espacement-sm);
    }
    
    .nav-btn.next {
        right: var(--espacement-sm);
    }
    
    .carrousel-footer img {
        width: 80px;
        height: 60px;
    }
    
    .contact-form {
        padding: var(--espacement-md);
    }
    
    .scenography-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .approach-number {
        width: 50px;
        height: 50px;
        font-size: 1.7rem;
    }
    
    .feature-list li {
        font-size: 0.9rem;
    }
}