/* ===== VARIABLES CSS ET STYLES DE BASE ===== */
:root {
    /* Palette de couleurs de luxe */
    --deep-blue: #0A1931;
    --soft-gold: #D4AF37;
    --clean-white: #FFFFFF;
    
    /* Couleurs principales basées sur la palette */
    --primary-color: var(--deep-blue);
    --primary-dark: #081426;
    --primary-light: #1a2a4a;
    --secondary-color: var(--deep-blue);
    --accent-color: var(--soft-gold);
    --accent-light: #e6c757;
    --success-color: #10b981;
    --warning-color: var(--soft-gold);
    --error-color: #ef4444;
    
    /* Couleurs neutres */
    --dark-color: var(--deep-blue);
    --dark-secondary: #1e293b;
    --light-color: #f8fafc;
    --light-secondary: #f1f5f9;
    --white: var(--clean-white);
    
    /* Couleurs de texte */
    --text-primary: var(--deep-blue);
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --text-light: #cbd5e1;
    
    /* Bordures et séparateurs */
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --divider-color: #e2e8f0;
    
    /* Ombres */
    --shadow-xs: 0 1px 2px rgba(10, 25, 49, 0.05);
    --shadow-sm: 0 1px 3px rgba(10, 25, 49, 0.1), 0 1px 2px rgba(10, 25, 49, 0.06);
    --shadow-md: 0 4px 6px rgba(10, 25, 49, 0.07), 0 2px 4px rgba(10, 25, 49, 0.06);
    --shadow-lg: 0 10px 15px rgba(10, 25, 49, 0.1), 0 4px 6px rgba(10, 25, 49, 0.05);
    --shadow-xl: 0 20px 25px rgba(10, 25, 49, 0.1), 0 10px 10px rgba(10, 25, 49, 0.04);
    --shadow-2xl: 0 25px 50px rgba(10, 25, 49, 0.25);
    
    /* Rayons de bordure */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Tailles */
    --container-max-width: 1200px;
    --section-padding: 5rem;
    --section-padding-mobile: 3rem;
}

/* ===== RESET ET CONFIGURATION DE BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--clean-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHIE ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Space Grotesk', 'Inter', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.875rem);
    font-weight: 600;
}

h5 {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 600;
}

h6 {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.text-large {
    font-size: 1.25rem;
    line-height: 1.6;
}

.text-small {
    font-size: 0.875rem;
    line-height: 1.5;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1.4;
}

/* ===== CLASSES UTILITAIRES ===== */
.text-gradient {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--soft-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.text-primary { color: var(--text-primary) !important; }
.text-secondary { color: var(--text-secondary) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-accent { color: var(--accent-color) !important; }

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--primary-light) 100%);
}

.bg-gradient-accent {
    background: linear-gradient(135deg, var(--soft-gold) 0%, var(--accent-light) 100%);
}

/* ===== BOUTONS ===== */
.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--bg-gradient-primary);
    color: var(--clean-white);
    border-color: var(--deep-blue);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--clean-white);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background-color: var(--clean-white);
    border-color: var(--deep-blue);
    color: var(--deep-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-icon {
    font-size: 1.25rem;
    transition: transform var(--transition-normal);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* ===== SECTION CENTRALE MINIMALE ===== */
.minimal-center-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--clean-white);
    padding: 120px 0 80px;
}

.center-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.center-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.center-description {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== BANNIÈRE DE COOKIES ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 25, 49, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding: 1rem 0;
    z-index: 9999;
    transform: translateY(0);
    transition: transform var(--transition-normal);
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-text {
    color: var(--clean-white);
    font-size: 0.95rem;
    font-weight: 400;
    flex: 1;
    min-width: 200px;
}

.btn-cookie-accept {
    background: var(--soft-gold);
    color: var(--deep-blue);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.btn-cookie-accept:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .minimal-center-section {
        padding: 100px 0 60px;
        min-height: 80vh;
    }
    
    .center-content {
        padding: 2rem 1rem;
    }
    
    .center-title {
        margin-bottom: 1.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-text {
        text-align: center;
    }
    
    .btn-cookie-accept {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 576px) {
    .minimal-center-section {
        padding: 90px 0 50px;
    }
    
    .center-content {
        padding: 1.5rem 1rem;
    }
    
    .cookie-banner {
        padding: 0.75rem 0;
    }
}

/* ===== ACCESSIBILITÉ ===== */
.btn:focus,
.btn-cookie-accept:focus {
    outline: 2px solid var(--soft-gold);
    outline-offset: 2px;
    border-radius: var(--radius-lg);
}

/* ===== OPTIMISATIONS DE PERFORMANCE ===== */
.minimal-center-section {
    will-change: transform;
}

.center-content {
    will-change: opacity, transform;
}

.cookie-banner {
    will-change: transform;
}
/* ===== SECTION CONFIANCE ET SÉCURITÉ ===== */
.trust-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(10, 25, 49, 0.02) 0%, 
        rgba(255, 255, 255, 1) 30%, 
        rgba(248, 250, 252, 1) 70%,
        rgba(212, 175, 55, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 70%, rgba(10, 25, 49, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.02) 0%, transparent 70%);
    background-size: 350px 350px, 400px 400px, 600px 600px;
    animation: trustFloat 32s ease-in-out infinite;
    z-index: 1;
}

@keyframes trustFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    20% { transform: translate(8px, -8px) rotate(72deg); }
    40% { transform: translate(-8px, 8px) rotate(144deg); }
    60% { transform: translate(8px, 8px) rotate(216deg); }
    80% { transform: translate(-8px, -8px) rotate(288deg); }
}

/* ===== TITRE ET INTRO ===== */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--deep-blue);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--deep-blue), var(--soft-gold));
    border-radius: var(--radius-full);
    transform: translateX(-50%);
}

.section-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

/* ===== CARTES DE CONFIANCE ===== */
.trust-card {
    background: var(--clean-white);
    border-radius: var(--radius-2xl);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--deep-blue), var(--soft-gold));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
    transform-origin: left;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(212, 175, 55, 0.3);
}

.trust-card:hover::before {
    transform: scaleX(1);
}

/* ===== ICÔNES DE CONFIANCE ===== */
.trust-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: grayscale(0.2);
    transition: all var(--transition-normal);
    position: relative;
}

.trust-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: all var(--transition-normal);
}

.trust-card:hover .trust-icon {
    filter: grayscale(0);
    transform: scale(1.1);
}

.trust-card:hover .trust-icon::after {
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(1.2);
}

/* ===== NOMS DE CONFIANCE ===== */
.trust-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color var(--transition-normal);
}

.trust-card:hover .trust-name {
    color: var(--soft-gold);
}

/* ===== DESCRIPTIONS DE CONFIANCE ===== */
.trust-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    text-align: left;
}

/* ===== SECTION PARTENAIRES ===== */
.partners-section {
    background: linear-gradient(135deg, rgba(10, 25, 49, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: var(--radius-2xl);
    padding: 3rem 2rem;
    border: 1px solid var(--border-light);
    position: relative;
    z-index: 2;
}

.partners-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 2rem;
    text-align: center;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--clean-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

.partner-logo:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 175, 55, 0.3);
}

.partner-image {
    width: 120px;
    height: 60px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-lg);
    filter: grayscale(0.3);
    transition: all var(--transition-normal);
}

.partner-logo:hover .partner-image {
    filter: grayscale(0);
    transform: scale(1.05);
}

.partner-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    transition: color var(--transition-normal);
}

.partner-logo:hover .partner-label {
    color: var(--soft-gold);
}

/* ===== ÉLÉMENTS DÉCORATIFS ===== */
.trust-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: -60px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatDecorationTrust 22s ease-in-out infinite;
    z-index: 1;
}

@keyframes floatDecorationTrust {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 20px) scale(1.15); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .trust-section {
        padding: 4rem 0;
    }
    
    .trust-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }
    
    .trust-description {
        text-align: center;
    }
    
    .partners-section {
        padding: 2.5rem 1.5rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .trust-section {
        padding: 3rem 0;
    }
    
    .section-title {
        margin-bottom: 1.25rem;
    }
    
    .trust-card {
        padding: 1.75rem 1.25rem;
    }
    
    .trust-icon {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }
    
    .trust-name {
        font-size: 1.125rem;
    }
    
    .trust-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .partners-section {
        padding: 2rem 1.25rem;
    }
    
    .partners-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 1.25rem;
    }
    
    .partner-logo {
        padding: 1.25rem;
    }
    
    .partner-image {
        width: 100px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .trust-section {
        padding: 2.5rem 0;
    }
    
    .trust-card {
        padding: 1.5rem 1rem;
    }
    
    .trust-icon {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    
    .trust-name {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .trust-description {
        font-size: 0.875rem;
    }
    
    .partners-section {
        padding: 1.5rem 1rem;
    }
    
    .partners-title {
        font-size: 1.125rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .partner-logo {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .partner-image {
        width: 80px;
        height: 40px;
    }
    
    .partner-label {
        font-size: 0.8rem;
    }
}

/* ===== ACCESSIBILITÉ ===== */
.trust-card:focus-within {
    outline: 2px solid var(--soft-gold);
    outline-offset: 4px;
}

.partner-logo:focus-within {
    outline: 2px solid var(--soft-gold);
    outline-offset: 2px;
}

/* ===== OPTIMISATIONS DE PERFORMANCE ===== */
.trust-section {
    will-change: transform;
}

.trust-card {
    will-change: transform, box-shadow;
}

.trust-icon {
    will-change: transform, filter;
}

.partner-logo {
    will-change: transform, box-shadow;
}

.partner-image {
    will-change: transform, filter;
}

/* ===== ANIMATIONS D'ENTRÉE ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.trust-card {
    animation: fadeInUp 0.6s ease-out;
}

.trust-card:nth-child(1) { animation-delay: 0.1s; }
.trust-card:nth-child(2) { animation-delay: 0.2s; }
.trust-card:nth-child(3) { animation-delay: 0.3s; }

.partners-section {
    animation: fadeInScale 0.8s ease-out 0.4s both;
}

/* ===== ÉTATS HOVER AVANCÉS ===== */
.trust-card {
    background: linear-gradient(135deg, var(--clean-white) 0%, rgba(248, 250, 252, 0.8) 100%);
}

.trust-card:hover {
    background: linear-gradient(135deg, var(--clean-white) 0%, rgba(212, 175, 55, 0.05) 100%);
}

/* ===== MICRO-INTERACTIONS ===== */
.trust-card:active {
    transform: translateY(-4px) scale(0.98);
}

.partner-logo:active {
    transform: translateY(-2px) scale(0.98);
}

/* ===== EFFET DE SÉCURITÉ VISUEL ===== */
.trust-card::after {
    content: '';
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 8px;
    height: 8px;
    background: var(--soft-gold);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.trust-card:hover::after {
    opacity: 1;
    animation: securityPulse 2s ease-in-out infinite;
}

@keyframes securityPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

/* ===== AMÉLIORATION DU CONTRASTE ===== */
.partners-section {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* ===== EFFET DE BADGE PREMIUM ===== */
.partner-logo::before {
    content: '✓';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 20px;
    height: 20px;
    background: var(--soft-gold);
    color: var(--clean-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    opacity: 0;
    transform: scale(0);
    transition: all var(--transition-normal);
}

.partner-logo:hover::before {
    opacity: 1;
    transform: scale(1);
}
/* ===== SECTION TÉMOIGNAGES ===== */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(10, 25, 49, 0.02) 0%, 
        rgba(255, 255, 255, 1) 30%, 
        rgba(248, 250, 252, 1) 70%,
        rgba(212, 175, 55, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(10, 25, 49, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.02) 0%, transparent 70%);
    background-size: 300px 300px, 400px 400px, 600px 600px;
    animation: testimonialFloat 30s ease-in-out infinite;
    z-index: 1;
}

@keyframes testimonialFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -10px) rotate(90deg); }
    50% { transform: translate(-10px, 10px) rotate(180deg); }
    75% { transform: translate(10px, 10px) rotate(270deg); }
}

/* ===== TITRE ET INTRO ===== */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--deep-blue);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--deep-blue), var(--soft-gold));
    border-radius: var(--radius-full);
    transform: translateX(-50%);
}

.section-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

/* ===== CARTES DE TÉMOIGNAGE ===== */
.testimonial-card {
    background: var(--clean-white);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--soft-gold), var(--accent-light));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
    transform-origin: left;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(212, 175, 55, 0.3);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

/* ===== EN-TÊTE DU TÉMOIGNAGE ===== */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 3px solid var(--border-light);
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.testimonial-card:hover .testimonial-avatar {
    border-color: var(--soft-gold);
    transform: scale(1.05);
}

.testimonial-info {
    flex-grow: 1;
}

.testimonial-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.testimonial-location {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0;
    font-weight: 500;
}

/* ===== CITATION ===== */
.testimonial-quote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--border-light);
    transition: border-color var(--transition-normal);
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    left: -0.75rem;
    font-size: 2rem;
    color: var(--soft-gold);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1;
}

.testimonial-card:hover .testimonial-quote {
    border-left-color: var(--soft-gold);
}

/* ===== ÉTOILES ===== */
.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    justify-content: flex-start;
}

.star {
    font-size: 1.125rem;
    filter: grayscale(0.2);
    transition: all var(--transition-normal);
}

.testimonial-card:hover .star {
    filter: grayscale(0);
    transform: scale(1.1);
}

/* ===== ÉLÉMENTS DÉCORATIFS ===== */
.testimonials-section::after {
    content: '';
    position: absolute;
    top: 15%;
    right: -80px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatDecorationRight 18s ease-in-out infinite;
    z-index: 1;
}

@keyframes floatDecorationRight {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-25px, 25px) scale(1.15); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .testimonials-section {
        padding: 4rem 0;
    }
    
    .testimonial-card {
        padding: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-header {
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .section-title {
        margin-bottom: 1.25rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-header {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-name {
        font-size: 1rem;
    }
    
    .testimonial-location {
        font-size: 0.8rem;
    }
    
    .testimonial-quote {
        font-size: 0.95rem;
        padding-left: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .testimonial-quote::before {
        font-size: 1.75rem;
        left: -0.5rem;
    }
    
    .star {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 2.5rem 0;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .testimonial-avatar {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }
    
    .testimonial-info {
        text-align: center;
    }
    
    .testimonial-quote {
        font-size: 0.9rem;
        line-height: 1.6;
        padding-left: 1rem;
        text-align: left;
    }
    
    .testimonial-quote::before {
        font-size: 1.5rem;
        left: -0.25rem;
    }
    
    .testimonial-rating {
        justify-content: center;
    }
}

/* ===== ACCESSIBILITÉ ===== */
.testimonial-card:focus-within {
    outline: 2px solid var(--soft-gold);
    outline-offset: 4px;
}

.testimonial-avatar:focus {
    outline: 2px solid var(--soft-gold);
    outline-offset: 2px;
}

/* ===== OPTIMISATIONS DE PERFORMANCE ===== */
.testimonials-section {
    will-change: transform;
}

.testimonial-card {
    will-change: transform, box-shadow;
}

.testimonial-avatar {
    will-change: transform, border-color;
}

.star {
    will-change: transform, filter;
}

/* ===== ANIMATIONS D'ENTRÉE ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }
.testimonial-card:nth-child(5) { animation-delay: 0.5s; }
.testimonial-card:nth-child(6) { animation-delay: 0.6s; }

/* ===== ÉTATS HOVER AVANCÉS ===== */
.testimonial-card {
    background: linear-gradient(135deg, var(--clean-white) 0%, rgba(248, 250, 252, 0.9) 100%);
}

.testimonial-card:hover {
    background: linear-gradient(135deg, var(--clean-white) 0%, rgba(212, 175, 55, 0.04) 100%);
}

/* ===== MICRO-INTERACTIONS ===== */
.testimonial-card:active {
    transform: translateY(-4px) scale(0.98);
}

.testimonial-name {
    transition: color var(--transition-normal);
}

.testimonial-card:hover .testimonial-name {
    color: var(--soft-gold);
}

/* ===== EFFET DE PARALLAXE SUBTIL ===== */
@media (min-width: 992px) {
    .testimonial-card:nth-child(even) {
        transform: translateY(20px);
    }
    
    .testimonial-card:nth-child(even):hover {
        transform: translateY(12px);
    }
    
    .testimonial-card:nth-child(odd):hover {
        transform: translateY(-8px);
    }
}

/* ===== EFFET DE CITATION AMÉLIORÉ ===== */
.testimonial-quote::after {
    content: '"';
    position: absolute;
    bottom: -0.5rem;
    right: 0;
    font-size: 1.5rem;
    color: var(--soft-gold);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1;
    opacity: 0.7;
}
/* ===== SECTION COMMENT ÇA MARCHE ===== */
.steps-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(248, 250, 252, 1) 0%, 
        rgba(255, 255, 255, 1) 30%, 
        rgba(241, 245, 249, 1) 70%,
        rgba(10, 25, 49, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.steps-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 25%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 75%, rgba(10, 25, 49, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.02) 0%, transparent 70%);
    background-size: 350px 350px, 400px 400px, 600px 600px;
    animation: stepsFloat 35s ease-in-out infinite;
    z-index: 1;
}

@keyframes stepsFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    16.66% { transform: translate(10px, -10px) rotate(60deg); }
    33.33% { transform: translate(-10px, 10px) rotate(120deg); }
    50% { transform: translate(10px, 10px) rotate(180deg); }
    66.66% { transform: translate(-10px, -10px) rotate(240deg); }
    83.33% { transform: translate(5px, -5px) rotate(300deg); }
}

/* ===== TITRE ET INTRO ===== */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--deep-blue);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--deep-blue), var(--soft-gold));
    border-radius: var(--radius-full);
    transform: translateX(-50%);
}

.section-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

/* ===== CARTES D'ÉTAPES ===== */
.step-card {
    background: var(--clean-white);
    border-radius: var(--radius-2xl);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--deep-blue), var(--soft-gold));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
    transform-origin: left;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(212, 175, 55, 0.3);
}

.step-card:hover::before {
    transform: scaleX(1);
}

/* ===== NUMÉRO D'ÉTAPE ===== */
.step-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--soft-gold), var(--accent-light));
    color: var(--deep-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.step-card:hover .step-number {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

/* ===== ICÔNES D'ÉTAPE ===== */
.step-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: grayscale(0.3);
    transition: all var(--transition-normal);
    position: relative;
}

.step-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: all var(--transition-normal);
}

.step-card:hover .step-icon {
    filter: grayscale(0);
    transform: scale(1.1);
}

.step-card:hover .step-icon::after {
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(1.2);
}

/* ===== NOMS D'ÉTAPE ===== */
.step-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color var(--transition-normal);
}

.step-card:hover .step-name {
    color: var(--soft-gold);
}

/* ===== DESCRIPTIONS D'ÉTAPE ===== */
.step-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    text-align: left;
}

/* ===== LIGNE DE PROGRESSION ===== */
.progress-line {
    position: relative;
    margin-top: 3rem;
    padding: 2rem 0;
}

.progress-bar-custom {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--border-light) 0%, var(--soft-gold) 25%, var(--border-light) 100%);
    border-radius: var(--radius-full);
    transform: translateY(-50%);
    z-index: 1;
}

.progress-dots {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 0 10%;
}

.progress-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--border-color);
    border: 3px solid var(--clean-white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.progress-dot.active {
    background: var(--soft-gold);
    transform: scale(1.2);
    box-shadow: var(--shadow-md);
}

/* ===== ÉLÉMENTS DÉCORATIFS ===== */
.steps-section::after {
    content: '';
    position: absolute;
    top: 20%;
    left: -80px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(10, 25, 49, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatDecorationSteps 25s ease-in-out infinite;
    z-index: 1;
}

@keyframes floatDecorationSteps {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -30px) scale(1.1); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .steps-section {
        padding: 4rem 0;
    }
    
    .step-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }
    
    .step-description {
        text-align: center;
    }
    
    .progress-line {
        margin-top: 2rem;
    }
    
    .progress-bar-custom {
        left: 5%;
        right: 5%;
    }
    
    .progress-dots {
        padding: 0 5%;
    }
}

@media (max-width: 768px) {
    .steps-section {
        padding: 3rem 0;
    }
    
    .section-title {
        margin-bottom: 1.25rem;
    }
    
    .step-card {
        padding: 1.75rem 1.25rem;
    }
    
    .step-number {
        top: 1.25rem;
        right: 1.25rem;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .step-icon {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }
    
    .step-name {
        font-size: 1.125rem;
    }
    
    .step-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .progress-line {
        margin-top: 1.5rem;
        padding: 1.5rem 0;
    }
    
    .progress-dot {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 576px) {
    .steps-section {
        padding: 2.5rem 0;
    }
    
    .step-card {
        padding: 1.5rem 1rem;
    }
    
    .step-number {
        top: 1rem;
        right: 1rem;
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .step-icon {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    
    .step-name {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .step-description {
        font-size: 0.875rem;
    }
    
    .progress-line {
        margin-top: 1rem;
        padding: 1rem 0;
    }
    
    .progress-bar-custom {
        left: 2%;
        right: 2%;
    }
    
    .progress-dots {
        padding: 0 2%;
    }
    
    .progress-dot {
        width: 12px;
        height: 12px;
    }
}

/* ===== ACCESSIBILITÉ ===== */
.step-card:focus-within {
    outline: 2px solid var(--soft-gold);
    outline-offset: 4px;
}

/* ===== OPTIMISATIONS DE PERFORMANCE ===== */
.steps-section {
    will-change: transform;
}

.step-card {
    will-change: transform, box-shadow;
}

.step-icon {
    will-change: transform, filter;
}

.step-number {
    will-change: transform;
}

.progress-dot {
    will-change: transform, background-color;
}

/* ===== ANIMATIONS D'ENTRÉE ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-card {
    animation: fadeInUp 0.6s ease-out;
}

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }
.step-card:nth-child(4) { animation-delay: 0.4s; }

.progress-line {
    animation: slideInLeft 0.8s ease-out 0.6s both;
}

/* ===== ÉTATS HOVER AVANCÉS ===== */
.step-card {
    background: linear-gradient(135deg, var(--clean-white) 0%, rgba(248, 250, 252, 0.9) 100%);
}

.step-card:hover {
    background: linear-gradient(135deg, var(--clean-white) 0%, rgba(212, 175, 55, 0.04) 100%);
}

/* ===== MICRO-INTERACTIONS ===== */
.step-card:active {
    transform: translateY(-4px) scale(0.98);
}

.step-number:hover {
    animation: numberPulse 1s ease-in-out infinite;
}

@keyframes numberPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ===== ANIMATION DE LA BARRE DE PROGRESSION ===== */
.progress-bar-custom {
    background: linear-gradient(90deg, 
        var(--border-light) 0%, 
        var(--soft-gold) 25%, 
        var(--accent-light) 50%, 
        var(--soft-gold) 75%, 
        var(--border-light) 100%);
    background-size: 200% 100%;
    animation: progressFlow 4s ease-in-out infinite;
}

@keyframes progressFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ===== EFFET DE CONNEXION ENTRE LES ÉTAPES ===== */
@media (min-width: 992px) {
    .step-card::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -2rem;
        width: 4rem;
        height: 2px;
        background: linear-gradient(90deg, var(--soft-gold), transparent);
        transform: translateY(-50%);
        opacity: 0;
        transition: opacity var(--transition-normal);
        z-index: 3;
    }
    
    .step-card:nth-child(-n+3)::after {
        opacity: 0.3;
    }
    
    .step-card:hover::after {
        opacity: 1;
    }
    
    .step-card:nth-child(4)::after {
        display: none;
    }
}

/* ===== EFFET DE SURBRILLANCE SÉQUENTIEL ===== */
.step-card {
    animation: fadeInUp 0.6s ease-out, sequentialGlow 8s ease-in-out infinite;
}

.step-card:nth-child(1) { animation-delay: 0.1s, 0s; }
.step-card:nth-child(2) { animation-delay: 0.2s, 2s; }
.step-card:nth-child(3) { animation-delay: 0.3s, 4s; }
.step-card:nth-child(4) { animation-delay: 0.4s, 6s; }

@keyframes sequentialGlow {
    0%, 90%, 100% { box-shadow: var(--shadow-sm); }
    5%, 15% { 
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), var(--shadow-lg);
        transform: translateY(-2px);
    }
}

/* ===== AMÉLIORATION DE L'ACCESSIBILITÉ ===== */
.step-card[tabindex]:focus {
    outline: 2px solid var(--soft-gold);
    outline-offset: 4px;
    border-radius: var(--radius-2xl);
}

/* ===== OPTIMISATION POUR LES ANIMATIONS ===== */
@media (prefers-reduced-motion: reduce) {
    .step-card,
    .progress-line,
    .progress-bar-custom,
    .step-number {
        animation: none;
    }
    
    .step-card:hover {
        transform: none;
    }
}
/* ===== SECTION SERVICES ===== */
.services-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(248, 250, 252, 1) 0%, 
        rgba(255, 255, 255, 1) 50%, 
        rgba(241, 245, 249, 1) 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(10, 25, 49, 0.03) 0%, transparent 50%);
    background-size: 400px 400px, 350px 350px;
    animation: serviceFloat 25s ease-in-out infinite;
    z-index: 1;
}

@keyframes serviceFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(15px, -15px) rotate(120deg); }
    66% { transform: translate(-15px, 15px) rotate(240deg); }
}

/* ===== TITRE ET INTRO ===== */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--deep-blue);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--deep-blue), var(--soft-gold));
    border-radius: var(--radius-full);
    transform: translateX(-50%);
}

.section-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

/* ===== CARTES DE SERVICE ===== */
.service-card {
    background: var(--clean-white);
    border-radius: var(--radius-2xl);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--deep-blue), var(--soft-gold));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(212, 175, 55, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* ===== ICÔNES DE SERVICE ===== */
.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: grayscale(0.3);
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
    filter: grayscale(0);
    transform: scale(1.1);
}

/* ===== NOMS DE SERVICE ===== */
.service-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* ===== DESCRIPTIONS DE SERVICE ===== */
.service-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    text-align: left;
}

/* ===== ÉLÉMENTS DÉCORATIFS ===== */
.services-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(10, 25, 49, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatDecorationLeft 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes floatDecorationLeft {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.2); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .services-section {
        padding: 4rem 0;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-description {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 3rem 0;
    }
    
    .section-title {
        margin-bottom: 1.25rem;
    }
    
    .service-card {
        padding: 1.75rem 1.25rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }
    
    .service-name {
        font-size: 1.125rem;
    }
    
    .service-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 2.5rem 0;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-icon {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    
    .service-name {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .service-description {
        font-size: 0.875rem;
    }
}

/* ===== ACCESSIBILITÉ ===== */
.service-card:focus-within {
    outline: 2px solid var(--soft-gold);
    outline-offset: 4px;
}

/* ===== OPTIMISATIONS DE PERFORMANCE ===== */
.services-section {
    will-change: transform;
}

.service-card {
    will-change: transform, box-shadow;
}

.service-icon {
    will-change: transform, filter;
}

/* ===== ANIMATIONS D'ENTRÉE ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease-out;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

/* ===== ÉTATS HOVER AVANCÉS ===== */
.service-card {
    background: linear-gradient(135deg, var(--clean-white) 0%, rgba(248, 250, 252, 0.8) 100%);
}

.service-card:hover {
    background: linear-gradient(135deg, var(--clean-white) 0%, rgba(212, 175, 55, 0.05) 100%);
}

/* ===== MICRO-INTERACTIONS ===== */
.service-card:active {
    transform: translateY(-4px) scale(0.98);
}

.service-name {
    transition: color var(--transition-normal);
}

.service-card:hover .service-name {
    color: var(--soft-gold);
}
/* ===== SECTION PRESSE & PARTENAIRES ===== */
.press-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(241, 245, 249, 1) 0%, 
        rgba(255, 255, 255, 1) 30%, 
        rgba(248, 250, 252, 1) 70%,
        rgba(10, 25, 49, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.press-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(10, 25, 49, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.02) 0%, transparent 70%);
    background-size: 400px 400px, 350px 350px, 600px 600px;
    animation: pressFloat 30s ease-in-out infinite;
    z-index: 1;
}

@keyframes pressFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(12px, -8px) rotate(90deg); }
    50% { transform: translate(-8px, 12px) rotate(180deg); }
    75% { transform: translate(8px, 8px) rotate(270deg); }
}

/* ===== TITRE ET INTRO ===== */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--deep-blue);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--deep-blue), var(--soft-gold));
    border-radius: var(--radius-full);
    transform: translateX(-50%);
}

.section-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

/* ===== GRILLE DE PRESSE ===== */
.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ===== LOGOS DE PRESSE ===== */
.press-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: var(--clean-white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.press-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--soft-gold), var(--accent-light));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
    transform-origin: left;
}

.press-logo:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(212, 175, 55, 0.3);
    text-decoration: none;
}

.press-logo:hover::before {
    transform: scaleX(1);
}

/* ===== IMAGES DE PRESSE ===== */
.press-image {
    width: 180px;
    height: 90px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-lg);
    filter: grayscale(0.4);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.press-logo:hover .press-image {
    filter: grayscale(0);
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* ===== LABELS DE PRESSE ===== */
.press-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    transition: color var(--transition-normal);
    margin-top: 0.5rem;
}

.press-logo:hover .press-label {
    color: var(--soft-gold);
}

/* ===== ÉLÉMENTS DÉCORATIFS ===== */
.press-section::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -70px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatDecorationPress 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes floatDecorationPress {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-35px, 25px) scale(1.15); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .press-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .press-section {
        padding: 4rem 0;
    }
    
    .press-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .press-logo {
        padding: 1.75rem 1.25rem;
    }
    
    .press-image {
        width: 160px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .press-section {
        padding: 3rem 0;
    }
    
    .section-title {
        margin-bottom: 1.25rem;
    }
    
    .press-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .press-logo {
        padding: 1.5rem 1rem;
        gap: 0.75rem;
    }
    
    .press-image {
        width: 140px;
        height: 70px;
    }
    
    .press-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .press-section {
        padding: 2.5rem 0;
    }
    
    .press-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .press-logo {
        padding: 1.25rem 1rem;
        gap: 0.5rem;
    }
    
    .press-image {
        width: 200px;
        height: 100px;
    }
    
    .press-label {
        font-size: 0.875rem;
    }
}

/* ===== ACCESSIBILITÉ ===== */
.press-logo:focus {
    outline: 2px solid var(--soft-gold);
    outline-offset: 4px;
    border-radius: var(--radius-2xl);
}

.press-logo:focus-visible {
    outline: 2px solid var(--soft-gold);
    outline-offset: 4px;
}

/* ===== OPTIMISATIONS DE PERFORMANCE ===== */
.press-section {
    will-change: transform;
}

.press-logo {
    will-change: transform, box-shadow;
}

.press-image {
    will-change: transform, filter;
}

.press-label {
    will-change: color;
}

/* ===== ANIMATIONS D'ENTRÉE ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.press-logo {
    animation: fadeInScale 0.6s ease-out;
}

.press-logo:nth-child(1) { animation-delay: 0.1s; }
.press-logo:nth-child(2) { animation-delay: 0.2s; }
.press-logo:nth-child(3) { animation-delay: 0.3s; }
.press-logo:nth-child(4) { animation-delay: 0.4s; }
.press-logo:nth-child(5) { animation-delay: 0.5s; }
.press-logo:nth-child(6) { animation-delay: 0.6s; }

/* ===== ÉTATS HOVER AVANCÉS ===== */
.press-logo {
    background: linear-gradient(135deg, var(--clean-white) 0%, rgba(248, 250, 252, 0.9) 100%);
}

.press-logo:hover {
    background: linear-gradient(135deg, var(--clean-white) 0%, rgba(212, 175, 55, 0.05) 100%);
}

/* ===== MICRO-INTERACTIONS ===== */
.press-logo:active {
    transform: translateY(-4px) scale(0.98);
}

/* ===== EFFET DE BADGE MÉDIA ===== */
.press-logo::after {
    content: '📰';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.25rem;
    opacity: 0;
    transform: scale(0);
    transition: all var(--transition-normal);
}

.press-logo:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* ===== EFFET DE SURBRILLANCE SÉQUENTIEL ===== */
.press-logo {
    animation: fadeInScale 0.6s ease-out, mediaGlow 12s ease-in-out infinite;
}

.press-logo:nth-child(1) { animation-delay: 0.1s, 0s; }
.press-logo:nth-child(2) { animation-delay: 0.2s, 2s; }
.press-logo:nth-child(3) { animation-delay: 0.3s, 4s; }
.press-logo:nth-child(4) { animation-delay: 0.4s, 6s; }
.press-logo:nth-child(5) { animation-delay: 0.5s, 8s; }
.press-logo:nth-child(6) { animation-delay: 0.6s, 10s; }

@keyframes mediaGlow {
    0%, 90%, 100% { box-shadow: var(--shadow-sm); }
    5%, 10% { 
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), var(--shadow-lg);
        transform: translateY(-2px);
    }
}

/* ===== AMÉLIORATION VISUELLE ===== */
.press-grid {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(248, 250, 252, 0.3) 100%);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

/* ===== EFFET DE PARALLAXE SUBTIL ===== */
@media (min-width: 992px) {
    .press-logo:nth-child(even) {
        transform: translateY(10px);
    }
    
    .press-logo:nth-child(even):hover {
        transform: translateY(2px);
    }
    
    .press-logo:nth-child(odd):hover {
        transform: translateY(-8px);
    }
}

/* ===== OPTIMISATION POUR LES ANIMATIONS ===== */
@media (prefers-reduced-motion: reduce) {
    .press-logo {
        animation: none;
    }
    
    .press-logo:hover {
        transform: none;
    }
    
    .press-image {
        transition: filter var(--transition-normal);
    }
}

/* ===== AMÉLIORATION DE L'ACCESSIBILITÉ ===== */
.press-logo[aria-label]:focus::before {
    content: attr(aria-label);
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--deep-blue);
    color: var(--clean-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    white-space: nowrap;
    z-index: 10;
}

/* ===== EFFET DE RECONNAISSANCE MÉDIA ===== */
.press-logo {
    position: relative;
}

.press-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--soft-gold) 0%, 
        var(--accent-light) 25%, 
        var(--soft-gold) 50%, 
        var(--accent-light) 75%, 
        var(--soft-gold) 100%);
    background-size: 200% 100%;
    transform: scaleX(0);
    transition: transform var(--transition-normal);
    transform-origin: left;
}

.press-logo:hover::before {
    transform: scaleX(1);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ===== INDICATEUR DE CONFIANCE ===== */
.press-logo {
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

.press-logo:hover {
    border-color: var(--soft-gold);
    box-shadow: 
        var(--shadow-xl),
        0 0 0 1px rgba(212, 175, 55, 0.2);
}
/* ===== SECTION GALERIE ===== */
.gallery-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(248, 250, 252, 1) 30%, 
        rgba(241, 245, 249, 1) 70%,
        rgba(10, 25, 49, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(10, 25, 49, 0.03) 0%, transparent 50%);
    background-size: 400px 400px, 350px 350px;
    animation: galleryFloat 25s ease-in-out infinite;
    z-index: 1;
}

@keyframes galleryFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(12px, -12px) rotate(120deg); }
    66% { transform: translate(-12px, 12px) rotate(240deg); }
}

/* ===== TITRE ET INTRO ===== */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--deep-blue);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--deep-blue), var(--soft-gold));
    border-radius: var(--radius-full);
    transform: translateX(-50%);
}

.section-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

/* ===== SECTION IMAGES STATIQUES ===== */
.static-images-section {
    position: relative;
    z-index: 2;
    margin-bottom: 5rem;
}

.static-images-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 2rem;
    text-align: center;
}

.image-container {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    height: 400px;
}

.image-container:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all var(--transition-slow);
    filter: brightness(1.1) contrast(1.05);
}

.image-container:hover .gallery-image {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.1);
}

/* ===== OVERLAY D'IMAGE ===== */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(10, 25, 49, 0.4) 0%, 
        rgba(212, 175, 55, 0.3) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-normal);
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--clean-white);
    transform: translateY(20px);
    transition: all var(--transition-normal);
}

.image-container:hover .overlay-content {
    transform: translateY(0);
}

.overlay-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.overlay-description {
    font-size: 0.95rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ===== SECTION CARROUSEL ===== */
.carousel-section {
    position: relative;
    z-index: 2;
}

.carousel-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 2rem;
    text-align: center;
}

/* ===== STYLES DU CARROUSEL ===== */
.gallery-carousel {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
}

.carousel-item {
    height: 500px;
    position: relative;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(1.1) contrast(1.05);
}

/* ===== CONTRÔLES DU CARROUSEL ===== */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(10, 25, 49, 0.8);
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(212, 175, 55, 0.9);
    border-color: var(--soft-gold);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

/* ===== INDICATEURS DU CARROUSEL ===== */
.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.7);
    transition: all var(--transition-normal);
}

.carousel-indicators .active {
    background-color: var(--soft-gold);
    border-color: var(--soft-gold);
    transform: scale(1.2);
}

/* ===== LÉGENDES DU CARROUSEL ===== */
.carousel-caption {
    bottom: 60px;
    background: rgba(10, 25, 49, 0.8);
    border-radius: var(--radius-xl);
    padding: 1.5rem 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    max-width: 80%;
}

.carousel-caption h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--clean-white);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.carousel-caption p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .gallery-section {
        padding: 4rem 0;
    }
    
    .static-images-section {
        margin-bottom: 4rem;
    }
    
    .image-container {
        height: 350px;
        margin-bottom: 2rem;
    }
    
    .carousel-item {
        height: 400px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 3rem 0;
    }
    
    .section-title {
        margin-bottom: 1.25rem;
    }
    
    .static-images-section {
        margin-bottom: 3rem;
    }
    
    .static-images-title,
    .carousel-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .image-container {
        height: 300px;
    }
    
    .carousel-item {
        height: 350px;
    }
    
    .carousel-caption {
        bottom: 40px;
        padding: 1rem 1.5rem;
        max-width: 90%;
    }
    
    .carousel-caption h5 {
        font-size: 1.125rem;
    }
    
    .carousel-caption p {
        font-size: 0.875rem;
    }
    
    .overlay-title {
        font-size: 1.125rem;
    }
    
    .overlay-description {
        font-size: 0.875rem;
    }
}

@media (max-width: 576px) {
    .gallery-section {
        padding: 2.5rem 0;
    }
    
    .image-container {
        height: 250px;
    }
    
    .carousel-item {
        height: 300px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }
    
    .carousel-caption {
        bottom: 30px;
        padding: 0.75rem 1rem;
        max-width: 95%;
    }
    
    .carousel-caption h5 {
        font-size: 1rem;
    }
    
    .carousel-caption p {
        font-size: 0.8rem;
    }
}

/* ===== ACCESSIBILITÉ ===== */
.image-container:focus-within {
    outline: 2px solid var(--soft-gold);
    outline-offset: 4px;
}

.carousel-control-prev:focus,
.carousel-control-next:focus {
    outline: 2px solid var(--soft-gold);
    outline-offset: 2px;
}

/* ===== OPTIMISATIONS DE PERFORMANCE ===== */
.gallery-section {
    will-change: transform;
}

.image-container {
    will-change: transform, box-shadow;
}

.gallery-image {
    will-change: transform, filter;
}

.image-overlay {
    will-change: opacity;
}

.overlay-content {
    will-change: transform;
}

/* ===== ANIMATIONS D'ENTRÉE ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.static-images-section {
    animation: fadeInUp 0.8s ease-out;
}

.carousel-section {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.image-container:nth-child(1) {
    animation: fadeInLeft 0.8s ease-out 0.1s both;
}

.image-container:nth-child(2) {
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

/* ===== ÉTATS HOVER AVANCÉS ===== */
.image-container {
    background: linear-gradient(135deg, var(--clean-white) 0%, rgba(248, 250, 252, 0.9) 100%);
}

.image-container:hover {
    background: linear-gradient(135deg, var(--clean-white) 0%, rgba(212, 175, 55, 0.05) 100%);
}

/* ===== MICRO-INTERACTIONS ===== */
.image-container:active {
    transform: translateY(-4px) scale(0.98);
}

.carousel-control-prev:active,
.carousel-control-next:active {
    transform: translateY(-50%) scale(0.95);
}

/* ===== EFFET DE PARALLAXE SUBTIL ===== */
@media (min-width: 992px) {
    .image-container:nth-child(even) {
        transform: translateY(20px);
    }
    
    .image-container:nth-child(even):hover {
        transform: translateY(12px);
    }
    
    .image-container:nth-child(odd):hover {
        transform: translateY(-8px);
    }
}

/* ===== OPTIMISATION POUR LES ANIMATIONS ===== */
@media (prefers-reduced-motion: reduce) {
    .gallery-section::before,
    .static-images-section,
    .carousel-section,
    .image-container {
        animation: none;
    }
    
    .image-container:hover {
        transform: none;
    }
    
    .gallery-image {
        transition: filter var(--transition-normal);
    }
}

/* ===== AMÉLIORATION VISUELLE ===== */
.static-images-section,
.carousel-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(248, 250, 252, 0.3) 100%);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 3rem;
}

/* ===== EFFET DE BADGE PREMIUM ===== */
.image-container::before {
    content: '✨';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    opacity: 0;
    transform: scale(0);
    transition: all var(--transition-normal);
    z-index: 3;
}

.image-container:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* ===== AMÉLIORATION DU CONTRASTE ===== */
.carousel-caption {
    box-shadow: var(--shadow-lg);
}

/* ===== EFFET DE SURBRILLANCE ===== */
.gallery-carousel {
    position: relative;
}

.gallery-carousel::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--soft-gold), 
        var(--accent-light), 
        var(--soft-gold), 
        var(--accent-light));
    background-size: 400% 400%;
    border-radius: var(--radius-2xl);
    z-index: -1;
    animation: gradientShift 4s ease-in-out infinite;
    opacity: 0.3;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
/* ===== SECTION FAQ ===== */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(248, 250, 252, 1) 30%, 
        rgba(241, 245, 249, 1) 70%,
        rgba(10, 25, 49, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(10, 25, 49, 0.03) 0%, transparent 50%);
    background-size: 400px 400px, 350px 350px;
    animation: faqFloat 28s ease-in-out infinite;
    z-index: 1;
}

@keyframes faqFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, -10px) rotate(90deg); }
    50% { transform: translate(-10px, 15px) rotate(180deg); }
    75% { transform: translate(10px, 10px) rotate(270deg); }
}

/* ===== TITRE ET INTRO ===== */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--deep-blue);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--deep-blue), var(--soft-gold));
    border-radius: var(--radius-full);
    transform: translateX(-50%);
}

.section-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

/* ===== ACCORDION FAQ ===== */
.faq-accordion {
    position: relative;
    z-index: 2;
}

.faq-item {
    background: var(--clean-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.faq-item:last-child {
    margin-bottom: 0;
}

/* ===== BOUTON ACCORDION ===== */
.faq-button {
    background: transparent;
    border: none;
    padding: 1.5rem 2rem;
    width: 100%;
    text-align: left;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--deep-blue);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition-normal);
    position: relative;
    border-radius: var(--radius-xl);
}

.faq-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(10, 25, 49, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    color: var(--deep-blue);
    box-shadow: none;
}

.faq-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    border-color: var(--soft-gold);
}

.faq-button::after {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23D4AF37'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 20px;
    transition: transform var(--transition-normal);
    margin-left: auto;
    flex-shrink: 0;
}

.faq-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

/* ===== ICÔNES FAQ ===== */
.faq-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all var(--transition-normal);
}

.faq-button:not(.collapsed) .faq-icon {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--soft-gold);
    transform: scale(1.05);
}

/* ===== QUESTION ===== */
.faq-question {
    flex-grow: 1;
    line-height: 1.4;
}

/* ===== RÉPONSE ===== */
.faq-answer {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    border-top: 1px solid var(--border-light);
    margin-top: 0;
}

.faq-answer p {
    margin-bottom: 0;
    padding-left: 3rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-button {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
    
    .faq-answer p {
        padding-left: 2.5rem;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }
    
    .section-title {
        margin-bottom: 1.25rem;
    }
    
    .faq-button {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
        gap: 0.75rem;
    }
    
    .faq-icon {
        width: 35px;
        height: 35px;
        font-size: 1.25rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem 1rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding-left: 2rem;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 2.5rem 0;
    }
    
    .faq-button {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
        gap: 0.5rem;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .faq-button::after {
        position: absolute;
        top: 1rem;
        right: 1rem;
        margin-left: 0;
    }
    
    .faq-icon {
        width: 30px;
        height: 30px;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .faq-question {
        padding-right: 2rem;
    }
    
    .faq-answer {
        padding: 0 1rem 0.875rem 1rem;
        font-size: 0.9rem;
    }
    
    .faq-answer p {
        padding-left: 0;
    }
}

/* ===== ACCESSIBILITÉ ===== */
.faq-button:focus {
    outline: none;
}

.faq-item:focus-within {
    outline: 2px solid var(--soft-gold);
    outline-offset: 2px;
}

/* ===== OPTIMISATIONS DE PERFORMANCE ===== */
.faq-section {
    will-change: transform;
}

.faq-item {
    will-change: transform, box-shadow;
}

.faq-button {
    will-change: background-color, color;
}

.faq-icon {
    will-change: transform, background-color, border-color;
}

/* ===== ANIMATIONS D'ENTRÉE ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item {
    animation: fadeInUp 0.6s ease-out;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }

/* ===== ÉTATS HOVER AVANCÉS ===== */
.faq-item {
    background: linear-gradient(135deg, var(--clean-white) 0%, rgba(248, 250, 252, 0.9) 100%);
}

.faq-item:hover {
    background: linear-gradient(135deg, var(--clean-white) 0%, rgba(212, 175, 55, 0.03) 100%);
}

/* ===== MICRO-INTERACTIONS ===== */
.faq-button:active {
    transform: scale(0.98);
}

.faq-item:hover .faq-icon {
    transform: scale(1.1);
}

/* ===== TRANSITION FLUIDE POUR L'ACCORDION ===== */
.accordion-collapse {
    transition: height 0.35s ease;
}

/* ===== AMÉLIORATION VISUELLE DU CONTENU ===== */
.faq-answer p {
    position: relative;
}

.faq-answer p::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 0.5rem;
    width: 4px;
    height: calc(100% - 1rem);
    background: linear-gradient(180deg, var(--soft-gold), var(--accent-light));
    border-radius: var(--radius-full);
    opacity: 0.3;
}

/* ===== EFFET DE FOCUS AMÉLIORÉ ===== */
.faq-button:focus-visible {
    outline: 2px solid var(--soft-gold);
    outline-offset: 2px;
    border-radius: var(--radius-xl);
}

/* ===== ANIMATION DE L'ICÔNE ===== */
.faq-icon {
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.faq-button:not(.collapsed) .faq-icon {
    animation: none;
}
/* ===== SECTION CALL TO ACTION ===== */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        var(--deep-blue) 0%, 
        var(--primary-light) 50%, 
        var(--deep-blue) 100%);
    position: relative;
    overflow: hidden;
    color: var(--clean-white);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    background-size: 300px 300px, 400px 400px, 600px 600px;
    animation: ctaFloat 25s ease-in-out infinite;
    z-index: 1;
}

@keyframes ctaFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, -15px) rotate(90deg); }
    50% { transform: translate(-15px, 15px) rotate(180deg); }
    75% { transform: translate(15px, 15px) rotate(270deg); }
}

/* ===== CONTENU CTA ===== */
.cta-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-2xl);
}

/* ===== TITRE CTA ===== */
.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--clean-white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--soft-gold), var(--accent-light));
    border-radius: var(--radius-full);
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* ===== DESCRIPTION CTA ===== */
.cta-description {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ===== ACTION CTA ===== */
.cta-action {
    margin-top: 2rem;
}

.btn-cta {
    background: linear-gradient(135deg, var(--soft-gold) 0%, var(--accent-light) 100%);
    color: var(--deep-blue);
    border: 3px solid var(--soft-gold);
    border-radius: var(--radius-full);
    padding: 1.25rem 3rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(212, 175, 55, 0.4),
        0 0 0 0 rgba(212, 175, 55, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 300px;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left var(--transition-slow);
}

.btn-cta:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    color: var(--deep-blue);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(212, 175, 55, 0.6),
        0 0 0 8px rgba(212, 175, 55, 0.2);
    text-decoration: none;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:active {
    transform: translateY(-2px) scale(1.02);
}

/* ===== TEXTE ET ICÔNE DU BOUTON ===== */
.btn-text {
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.btn-icon {
    font-size: 1.5rem;
    transition: transform var(--transition-normal);
    position: relative;
    z-index: 2;
}

.btn-cta:hover .btn-icon {
    transform: scale(1.2) rotate(10deg);
}

/* ===== ÉLÉMENTS DÉCORATIFS ===== */
.cta-section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatDecorationCta 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes floatDecorationCta {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 30px) scale(1.2); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-content {
        padding: 1.75rem;
    }
    
    .cta-title {
        margin-bottom: 1.25rem;
    }
    
    .cta-description {
        margin-bottom: 2rem;
    }
    
    .btn-cta {
        padding: 1.125rem 2.5rem;
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-content {
        padding: 1.5rem;
    }
    
    .cta-title {
        margin-bottom: 1rem;
    }
    
    .cta-description {
        margin-bottom: 1.75rem;
    }
    
    .btn-cta {
        padding: 1rem 2rem;
        min-width: 260px;
        gap: 0.75rem;
    }
    
    .btn-icon {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .cta-section {
        padding: 2.5rem 0;
    }
    
    .cta-content {
        padding: 1.25rem;
    }
    
    .cta-title {
        margin-bottom: 0.875rem;
    }
    
    .cta-description {
        margin-bottom: 1.5rem;
    }
    
    .btn-cta {
        padding: 0.875rem 1.75rem;
        min-width: 240px;
        font-size: 1rem;
        gap: 0.5rem;
    }
    
    .btn-icon {
        font-size: 1.125rem;
    }
}

/* ===== ACCESSIBILITÉ ===== */
.btn-cta:focus {
    outline: 3px solid rgba(255, 255, 255, 0.8);
    outline-offset: 4px;
    border-radius: var(--radius-full);
}

.btn-cta:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.8);
    outline-offset: 4px;
}

/* ===== OPTIMISATIONS DE PERFORMANCE ===== */
.cta-section {
    will-change: transform;
}

.cta-content {
    will-change: transform, box-shadow;
}

.btn-cta {
    will-change: transform, box-shadow, background-color;
}

.btn-icon {
    will-change: transform;
}

/* ===== ANIMATIONS D'ENTRÉE ===== */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 
            0 8px 25px rgba(212, 175, 55, 0.4),
            0 0 0 0 rgba(212, 175, 55, 0.5);
    }
    50% { 
        box-shadow: 
            0 8px 25px rgba(212, 175, 55, 0.6),
            0 0 0 4px rgba(212, 175, 55, 0.3);
    }
}

.cta-content {
    animation: fadeInScale 0.8s ease-out;
}

.btn-cta {
    animation: pulseGlow 3s ease-in-out infinite;
}

/* ===== EFFET DE PARTICULES ===== */
.cta-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--soft-gold), 
        var(--accent-light), 
        var(--soft-gold), 
        var(--accent-light));
    background-size: 400% 400%;
    border-radius: var(--radius-2xl);
    z-index: -1;
    animation: gradientShift 4s ease-in-out infinite;
    opacity: 0.3;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ===== EFFET DE SURBRILLANCE ===== */
.btn-cta {
    position: relative;
}

.btn-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all var(--transition-normal);
    z-index: 1;
}

.btn-cta:hover::after {
    width: 100%;
    height: 100%;
    opacity: 0.2;
}

/* ===== AMÉLIORATION VISUELLE ===== */
.cta-title {
    background: linear-gradient(135deg, var(--clean-white) 0%, rgba(212, 175, 55, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* ===== EFFET DE MOUVEMENT SUBTIL ===== */
.cta-content:hover {
    transform: translateY(-5px);
    transition: transform var(--transition-normal);
}

/* ===== OPTIMISATION POUR LES ANIMATIONS ===== */
@media (prefers-reduced-motion: reduce) {
    .cta-section::before,
    .cta-section::after,
    .cta-content,
    .btn-cta {
        animation: none;
    }
    
    .btn-cta:hover {
        transform: none;
    }
    
    .cta-content:hover {
        transform: none;
    }
}

/* ===== EFFET DE BRILLANCE ===== */
.btn-cta {
    background: linear-gradient(135deg, 
        var(--soft-gold) 0%, 
        var(--accent-light) 25%, 
        var(--soft-gold) 50%, 
        var(--accent-light) 75%, 
        var(--soft-gold) 100%);
    background-size: 200% 100%;
    animation: shimmerButton 3s ease-in-out infinite;
}

@keyframes shimmerButton {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-cta:hover {
    animation: shimmerButton 1s ease-in-out infinite;
}
/* ===== SECTION CONTACT ===== */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(248, 250, 252, 1) 30%, 
        rgba(241, 245, 249, 1) 70%,
        rgba(10, 25, 49, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(10, 25, 49, 0.03) 0%, transparent 50%);
    background-size: 350px 350px, 450px 450px;
    animation: contactFloat 25s ease-in-out infinite;
    z-index: 1;
}

@keyframes contactFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(12px, -12px) rotate(120deg); }
    66% { transform: translate(-12px, 12px) rotate(240deg); }
}

/* ===== TITRE ET INTRO ===== */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--deep-blue);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--deep-blue), var(--soft-gold));
    border-radius: var(--radius-full);
    transform: translateX(-50%);
}

.section-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

/* ===== CONTENEUR DU FORMULAIRE ===== */
.contact-form-container {
    background: var(--clean-white);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    position: relative;
    z-index: 2;
    height: fit-content;
}

.form-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 2rem;
    text-align: center;
}

/* ===== STYLES DU FORMULAIRE ===== */
.form-label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control,
.form-select {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: all var(--transition-normal);
    background-color: var(--clean-white);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--soft-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    background-color: var(--clean-white);
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: var(--error-color);
}

.form-control.is-valid,
.form-select.is-valid {
    border-color: var(--success-color);
}

.invalid-feedback {
    font-size: 0.875rem;
    color: var(--error-color);
    margin-top: 0.25rem;
}

.form-check-input {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
}

.form-check-input:checked {
    background-color: var(--soft-gold);
    border-color: var(--soft-gold);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.form-check-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-check-label a {
    color: var(--soft-gold);
    text-decoration: none;
    font-weight: 500;
}

.form-check-label a:hover {
    text-decoration: underline;
}

/* ===== BOUTON DU FORMULAIRE ===== */
.btn-primary {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--primary-light) 100%);
    border: 2px solid var(--deep-blue);
    border-radius: var(--radius-lg);
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:disabled {
    opacity: 0.7;
    transform: none;
}

.btn-text {
    margin-right: 0.5rem;
}

.btn-icon {
    font-size: 1.25rem;
    transition: transform var(--transition-normal);
}

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

/* ===== CONTENEUR DES INFORMATIONS ===== */
.contact-info-container {
    position: relative;
    z-index: 2;
}

.info-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 2rem;
    text-align: center;
}

/* ===== GRILLE DES INFORMATIONS ===== */
.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--clean-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 175, 55, 0.3);
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.info-content {
    flex-grow: 1;
}

.info-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
}

.info-value {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ===== INFORMATIONS LÉGALES ===== */
.legal-info {
    background: linear-gradient(135deg, rgba(10, 25, 49, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid var(--border-light);
}

.legal-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
    text-align: center;
}

.legal-grid {
    display: grid;
    gap: 0.75rem;
}

.legal-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
}

.legal-item:last-child {
    border-bottom: none;
}

.legal-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
}

.legal-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* ===== CARTE GOOGLE MAPS ===== */
.map-container {
    position: relative;
    z-index: 2;
}

.map-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
    text-align: center;
}

.map-wrapper {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    margin-bottom: 1rem;
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.map-description {
    text-align: center;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    font-style: italic;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .contact-section {
        padding: 4rem 0;
    }
    
    .contact-form-container {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .info-item {
        padding: 1.25rem;
    }
    
    .legal-info {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .section-title {
        margin-bottom: 1.25rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .form-title,
    .info-title,
    .map-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .info-item {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .info-icon {
        width: 35px;
        height: 35px;
        font-size: 1.25rem;
    }
    
    .info-label {
        font-size: 0.95rem;
    }
    
    .info-value {
        font-size: 0.9rem;
    }
    
    .legal-info {
        padding: 1.25rem;
    }
    
    .legal-title {
        font-size: 1rem;
    }
    
    .map-wrapper iframe {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 2.5rem 0;
    }
    
    .contact-form-container {
        padding: 1.25rem;
    }
    
    .form-control,
    .form-select {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
    
    .btn-primary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .info-icon {
        margin: 0 auto;
    }
    
    .legal-item {
        text-align: center;
    }
    
    .map-wrapper iframe {
        height: 250px;
    }
}

/* ===== ACCESSIBILITÉ ===== */
.form-control:focus,
.form-select:focus,
.form-check-input:focus {
    outline: none;
}

.btn-primary:focus {
    outline: 2px solid var(--soft-gold);
    outline-offset: 2px;
}

.info-item:focus-within {
    outline: 2px solid var(--soft-gold);
    outline-offset: 2px;
}

/* ===== OPTIMISATIONS DE PERFORMANCE ===== */
.contact-section {
    will-change: transform;
}

.contact-form-container,
.info-item {
    will-change: transform, box-shadow;
}

.btn-primary {
    will-change: transform, background-color;
}

/* ===== ANIMATIONS D'ENTRÉE ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-form-container {
    animation: fadeInLeft 0.8s ease-out;
}

.contact-info-container {
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.map-container {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* ===== ÉTATS HOVER AVANCÉS ===== */
.contact-form-container:hover {
    box-shadow: var(--shadow-xl);
}

.info-item:hover .info-icon {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--soft-gold);
    transform: scale(1.05);
}

/* ===== MICRO-INTERACTIONS ===== */
.form-control:focus,
.form-select:focus {
    transform: scale(1.01);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

/* ===== VALIDATION VISUELLE ===== */
.was-validated .form-control:valid,
.was-validated .form-select:valid {
    border-color: var(--success-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2310b981' d='m2.3 6.73.94-.94 2.94 2.94L7.83 7.09 8.77 8.03 5.24 11.56z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
    border-color: var(--error-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ef4444'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 4.6 2.4 2.4M8.2 4.6l-2.4 2.4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
/* ===== SECTION À PROPOS ===== */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(248, 250, 252, 1) 50%, 
        rgba(241, 245, 249, 1) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(10, 25, 49, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    background-size: 300px 300px, 400px 400px;
    animation: subtleFloat 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes subtleFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(10px, -10px) rotate(180deg); }
}

/* ===== CONTENU À PROPOS ===== */
.about-content {
    position: relative;
    z-index: 2;
    padding-right: 2rem;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--deep-blue);
    line-height: 1.2;
    margin-bottom: 2rem;
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--deep-blue), var(--soft-gold));
    border-radius: var(--radius-full);
}

.about-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 0;
    text-align: justify;
}

/* ===== CONTENEUR D'IMAGE ===== */
.about-image-container {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: all var(--transition-slow);
}

.about-image-container:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(10, 25, 49, 0.2);
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    transition: all var(--transition-slow);
    filter: brightness(1.1) contrast(1.1) saturate(1.2);
}

.about-image-container:hover .about-image {
    transform: scale(1.05);
}

/* ===== OVERLAY D'IMAGE ===== */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(10, 25, 49, 0.3) 0%, 
        rgba(212, 175, 55, 0.2) 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 2rem;
    opacity: 0;
    transition: all var(--transition-normal);
}

.about-image-container:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(20px);
    transition: all var(--transition-normal);
}

.about-image-container:hover .overlay-content {
    transform: translateY(0);
}

.overlay-icon {
    font-size: 1.5rem;
}

.overlay-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: var(--deep-blue);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

/* ===== ÉLÉMENTS DÉCORATIFS ===== */
.about-section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatDecoration 15s ease-in-out infinite;
    z-index: 1;
}

@keyframes floatDecoration {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -30px) scale(1.1); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .about-section {
        padding: 4rem 0;
    }
    
    .about-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .about-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-description {
        text-align: center;
    }
    
    .about-image-container {
        transform: none;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-image-container:hover {
        transform: scale(1.02);
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 3rem 0;
    }
    
    .about-title {
        margin-bottom: 1.5rem;
    }
    
    .about-description {
        font-size: 1rem;
        text-align: left;
    }
    
    .about-image {
        height: 300px;
    }
    
    .image-overlay {
        padding: 1.5rem;
    }
    
    .overlay-content {
        padding: 0.75rem 1.25rem;
    }
    
    .overlay-icon {
        font-size: 1.25rem;
    }
    
    .overlay-text {
        font-size: 0.875rem;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 2.5rem 0;
    }
    
    .about-content {
        margin-bottom: 2rem;
    }
    
    .about-title {
        margin-bottom: 1.25rem;
    }
    
    .about-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .about-image {
        height: 250px;
    }
    
    .image-overlay {
        padding: 1rem;
    }
    
    .overlay-content {
        padding: 0.5rem 1rem;
        gap: 0.5rem;
    }
    
    .overlay-icon {
        font-size: 1.1rem;
    }
    
    .overlay-text {
        font-size: 0.8rem;
    }
}

/* ===== ACCESSIBILITÉ ===== */
.about-image-container:focus-within {
    outline: 2px solid var(--soft-gold);
    outline-offset: 4px;
}

/* ===== OPTIMISATIONS DE PERFORMANCE ===== */
.about-section {
    will-change: transform;
}

.about-image-container {
    will-change: transform, box-shadow;
}

.about-image {
    will-change: transform;
}

.image-overlay {
    will-change: opacity;
}

.overlay-content {
    will-change: transform;
}

/* ===== ANIMATIONS D'ENTRÉE ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-content {
    animation: fadeInUp 0.8s ease-out;
}

.about-image-container {
    animation: fadeInRight 0.8s ease-out 0.2s both;
}
/* ===== STYLES DU HEADER ===== */
.header-section {
    position: relative;
    z-index: 1000;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    padding: 1rem 0;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--border-color);
}

/* ===== STYLES DE LA MARQUE ===== */
.navbar-brand {
    text-decoration: none;
    transition: transform var(--transition-normal);
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.brand-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--deep-blue);
    letter-spacing: -0.02em;
    margin: 0;
}

/* ===== STYLES DE NAVIGATION ===== */
.navbar-nav {
    align-items: center;
    gap: 0.5rem;
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-primary);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    position: relative;
    text-decoration: none;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--deep-blue), var(--soft-gold));
    transition: all var(--transition-normal);
    transform: translateX(-50%);
    border-radius: var(--radius-full);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--deep-blue);
    background-color: rgba(10, 25, 49, 0.08);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 80%;
}

/* ===== LIEN CTA SPÉCIAL ===== */
.navbar-nav .nav-link-cta {
    background: linear-gradient(135deg, var(--soft-gold), var(--accent-light));
    color: var(--deep-blue) !important;
    font-weight: 600;
    border-radius: var(--radius-full);
    padding: 0.75rem 1.5rem;
    margin-left: 1rem;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
}

.navbar-nav .nav-link-cta::before {
    display: none;
}

.navbar-nav .nav-link-cta:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--soft-gold);
}

/* ===== BOUTON DE MENU MOBILE ===== */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    background-color: transparent;
    transition: all var(--transition-normal);
}

.navbar-toggler:hover {
    background-color: rgba(10, 25, 49, 0.1);
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: 2px solid var(--deep-blue);
    outline-offset: 2px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2810, 25, 49, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5rem;
    height: 1.5rem;
}

/* ===== STYLES DU MENU MOBILE ===== */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: var(--radius-xl);
        margin-top: 1rem;
        padding: 1.5rem;
        box-shadow: var(--shadow-xl);
        border: 1px solid var(--border-color);
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 0.25rem;
        width: 100%;
    }
    
    .navbar-nav .nav-link {
        width: 100%;
        text-align: left;
        padding: 1rem 1.25rem;
        border-radius: var(--radius-lg);
    }
    
    .navbar-nav .nav-link::before {
        display: none;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background-color: rgba(10, 25, 49, 0.1);
        transform: translateX(8px);
    }
    
    .navbar-nav .nav-link-cta {
        margin-left: 0;
        margin-top: 1rem;
        text-align: center;
        width: 100%;
    }
    
    .navbar-nav .nav-link-cta:hover {
        transform: translateY(-2px);
    }
}

/* ===== ANIMATIONS DU HEADER ===== */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-collapse.show {
    animation: slideDown 0.3s ease-out;
}

/* ===== ACCESSIBILITÉ ===== */
.navbar-nav .nav-link:focus {
    outline: 2px solid var(--soft-gold);
    outline-offset: 2px;
    border-radius: var(--radius-lg);
}

.navbar-brand:focus {
    outline: 2px solid var(--soft-gold);
    outline-offset: 4px;
    border-radius: var(--radius-md);
}

/* ===== OPTIMISATIONS DE PERFORMANCE ===== */
.navbar {
    will-change: background-color, box-shadow;
}

.navbar-nav .nav-link {
    will-change: color, background-color, transform;
}

.brand-container {
    will-change: transform;
}

/* ===== SUPPORT MODE SOMBRE (pour usage futur) ===== */
@media (prefers-color-scheme: dark) {
    .navbar {
        background-color: rgba(10, 25, 49, 0.95);
        border-bottom-color: rgba(51, 65, 85, 0.8);
    }
    
    .navbar.scrolled {
        background-color: rgba(10, 25, 49, 0.98);
        border-bottom-color: var(--dark-secondary);
    }
    
    .brand-text {
        color: var(--soft-gold);
    }
    
    .navbar-nav .nav-link {
        color: var(--text-light);
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--soft-gold);
        background-color: rgba(212, 175, 55, 0.15);
    }
    
    .navbar-collapse {
        background-color: rgba(10, 25, 49, 0.98);
        border-color: var(--dark-secondary);
    }
}
/* ===== STYLES DU FOOTER ===== */
.footer-section {
    position: relative;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    padding: 5rem 0 2rem;
    margin-top: 5rem;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    background-size: 200px 200px, 300px 300px, 250px 250px;
    animation: patternFloat 30s ease-in-out infinite;
}

@keyframes patternFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -20px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.footer-main {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

/* ===== MARQUE DU FOOTER ===== */
.footer-brand {
    margin-bottom: 2rem;
}

.footer-brand .brand-container {
    margin-bottom: 1.5rem;
}

.footer-brand .brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--clean-white);
    font-weight: 700;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 350px;
}

/* ===== LIENS SOCIAUX DU FOOTER ===== */
.footer-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.social-link:hover {
    background: rgba(212, 175, 55, 0.4);
    border-color: var(--soft-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.social-icon {
    font-size: 1.25rem;
    filter: grayscale(1);
    transition: filter var(--transition-normal);
}

.social-link:hover .social-icon {
    filter: grayscale(0);
}

/* ===== TITRES DU FOOTER ===== */
.footer-heading {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--clean-white);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--soft-gold), var(--accent-light));
    border-radius: var(--radius-full);
}

/* ===== LIENS DU FOOTER ===== */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--soft-gold);
    transition: width var(--transition-normal);
    transform: translateY(-50%);
    border-radius: var(--radius-full);
}

.footer-links a:hover {
    color: var(--soft-gold);
    transform: translateX(15px);
}

.footer-links a:hover::before {
    width: 10px;
}

/* ===== BAS DU FOOTER ===== */
.footer-bottom {
    position: relative;
    z-index: 2;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===== DESIGN RESPONSIVE ===== */
@media (max-width: 768px) {
    .footer-section {
        padding: 3rem 0 1.5rem;
        margin-top: 3rem;
    }
    
    .footer-main {
        margin-bottom: 2rem;
    }
    
    .footer-brand {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .footer-description {
        max-width: none;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-heading {
        text-align: center;
        margin-bottom: 1.25rem;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links a:hover {
        transform: none;
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .footer-copyright {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-section {
        padding: 2.5rem 0 1.25rem;
    }
    
    .footer-brand .brand-text {
        font-size: 1.5rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-icon {
        font-size: 1.1rem;
    }
    
    .footer-heading {
        font-size: 1rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
}

/* ===== AMÉLIORATIONS D'ACCESSIBILITÉ ===== */
.social-link:focus,
.footer-links a:focus {
    outline: 2px solid var(--soft-gold);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* ===== OPTIMISATIONS DE PERFORMANCE ===== */
.footer-section {
    will-change: transform;
}

.social-link,
.footer-links a {
    will-change: transform, background-color;
}

.footer-pattern {
    will-change: transform;
}