/* ========================================
   Hugo Rouillard - Site Web CSS
   Conseiller Financier Certifié IQPF
   ======================================== */

/* CSS Variables */
:root {
    --primary-navy: #1e293b;
    --secondary-blue: #334155;
    --accent-blue: #475569;
    --slate-gray: #475569;
    --light-gray: #F8FAFC;
    --medium-gray: #E2E8F0;
    --monochrome-accent: #64748B;
    --white: #FFFFFF;
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --text-light: #94A3B8;
    --success: #10B981;
    --shadow-light: rgba(30, 41, 59, 0.05);
    --shadow-medium: rgba(30, 41, 59, 0.1);
    --shadow-heavy: rgba(30, 41, 59, 0.25);
    --gradient-primary: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    --gradient-accent: linear-gradient(135deg, #475569 0%, #334155 100%);
    --gold-metallic: #BFA76A;
    --gold-gradient: linear-gradient(90deg, #F5E7B4 0%, #BFA76A 100%);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    font-weight: 400;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   HEADER STYLES - MODERN DESIGN
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 30px rgba(30, 41, 59, 0.3);
    transform: translateY(0);
    will-change: transform;
}

.header.scrolled {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    box-shadow: 0 8px 40px rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header.hidden {
    transform: translateY(-100%);
}

.header.visible {
    transform: translateY(0);
}

/* Animation simple et efficace pour le header */
.header {
    transition: transform 0.3s ease-in-out;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    position: relative;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-nav {
    display: flex;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Logo Styles - Modern Design */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem;
    border-radius: 12px;
}

.logo:hover {
    transform: translateY(-2px);
    background: rgba(74, 107, 138, 0.05);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--accent-blue) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(56, 84, 108, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover .logo-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(56, 84, 108, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.logo .accent {
    color: var(--gold-metallic);
    transition: color 0.4s ease;
}

.logo:hover .accent {
    color: var(--white);
}

.logo-subtitle {
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: color 0.4s ease;
}

.logo:hover .logo-subtitle {
    color: var(--white);
}

/* Navigation Menu - Modern Design */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

/* Standard Navigation Links */
.nav-menu .nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
    background: transparent;
    border: 1px solid transparent;
}

.nav-menu .nav-link i {
    font-size: 0.85rem;
    opacity: 0.8;
    transition: all 0.4s ease;
}

.nav-menu .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: all 0.4s ease;
    transform: scale(0.8);
}

.nav-menu .nav-link:hover {
    color: var(--white);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

.nav-menu .nav-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav-menu .nav-link:hover i {
    opacity: 1;
    transform: scale(1.1);
}

/* Calculatrice Button Special Styling */
.nav-menu .calculatrice-link {
    background: var(--gradient-accent);
    color: var(--white) !important;
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(74, 107, 138, 0.25);
    border: 2px solid transparent;
}

.nav-menu .calculatrice-link::before {
    display: none;
}

.nav-menu .calculatrice-link::after {
    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 0.5s ease;
}

.nav-menu .calculatrice-link:hover {
    color: var(--white) !important;
    background: var(--gradient-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 107, 138, 0.35);
    border-color: rgba(255, 255, 255, 0.2);
}

.nav-menu .calculatrice-link:hover::after {
    left: 100%;
}

.nav-menu .calculatrice-link i {
    margin-right: 0.4rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-menu .calculatrice-link:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* CTA Button - Modern Design */
.cta-button {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: var(--white);
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 25px rgba(30, 41, 59, 0.3);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}

.cta-button::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 0.6s ease;
}

.cta-button:hover {
    color: var(--white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(30, 41, 59, 0.4);
    background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
}

.cta-button i {
    font-size: 1rem;
    transition: transform 0.4s ease;
}

.cta-button:hover i {
    transform: translateX(3px) scale(1.1);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1e293b;
    z-index: 999;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100vw;
    height: 100vh;
}

.mobile-menu-overlay.active {
    visibility: visible;
    transform: translateX(0);
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: #1e293b;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #475569;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-navy);
}

.mobile-logo i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--accent-blue) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    background: #334155;
    border: none;
    border-radius: 10px;
    color: var(--primary-navy);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: #475569;
    transform: scale(1.1);
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.mobile-nav-menu li {
    margin-bottom: 0.5rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #334155;
    border: 1px solid #475569;
}

.mobile-nav-link:hover {
    background: #475569;
    color: white;
    transform: translateX(10px);
    border-color: var(--gold-metallic);
}

.mobile-nav-link i {
    width: 24px;
    color: var(--gold-metallic);
    opacity: 0.9;
}

.mobile-cta {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid #475569;
}

.mobile-cta-button {
    width: 100%;
    background: linear-gradient(135deg, var(--gold-metallic) 0%, #D4AF37 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.4s ease;
    box-shadow: 0 6px 25px rgba(191, 167, 106, 0.3);
}

.mobile-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(191, 167, 106, 0.4);
    color: white;
}

.cta-button:hover::before {
    left: 100%;
}

/* Active State for Current Page */
.nav-menu a.active {
    color: var(--secondary-blue);
    background: rgba(74, 107, 138, 0.1);
}

.nav-menu a.active::before {
    width: 80%;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    min-height: 80vh;
    width: 100vw;
    padding: 200px 0 80px 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transform: translateZ(0);
    will-change: auto;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0%;
    left: -10%;
    width: 140vw;
    height: 140vh;
    background: radial-gradient(circle at 30% 30%, rgba(74,107,138,0.08) 0%, rgba(191,167,106,0.05) 30%, rgba(255,255,255,0) 60%);
    z-index: 1;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 120vw;
    height: 120vh;
    background: radial-gradient(circle at 70% 70%, rgba(191,167,106,0.06) 0%, rgba(74,107,138,0.04) 40%, rgba(255,255,255,0) 70%);
    z-index: 1;
    pointer-events: none;
    animation: float 25s ease-in-out infinite reverse;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 3rem 3rem 3rem;
    border-radius: 2rem;
    background: rgba(255,255,255,0.85);
    box-shadow: 
        0 20px 60px rgba(56,84,108,0.08),
        0 8px 32px rgba(191,167,106,0.1),
        inset 0 1px 0 rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.3);
    transform: translateZ(0);
    will-change: auto;
}

.hero-content {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-visual {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    animation: slideInRight 1s ease-out 0.6s both;
}

.hero-text .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--white) 0%, #f8fafc 100%);
    color: var(--secondary-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    box-shadow: 
        0 8px 25px rgba(56,84,108,0.1),
        0 4px 15px rgba(191,167,106,0.15);
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
}

.hero-text .badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.hero-text .badge:hover::before {
    left: 100%;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1rem;
    color: var(--primary-navy);
    text-align: center;
    max-width: 700px;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-metallic), var(--accent-blue));
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.4;
    font-weight: 400;
    text-align: center;
    max-width: 650px;
    position: relative;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    font-size: 1rem;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 700;
}

.btn-primary {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px 0 rgba(30,41,59,0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(30,41,59,0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-navy);
    border: 2px solid var(--medium-gray);
    transition: border 0.3s, color 0.3s;
}

.btn-secondary:hover {
    border-color: var(--secondary-blue);
    color: var(--secondary-blue);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.2rem;
    padding: 1.2rem;
    background: rgba(255,255,255,0.7);
    border-radius: 1.2rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 10px 40px rgba(56,84,108,0.08);
    animation: fadeInUp 1s ease-out 0.9s both;
}

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

.stat-number {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    color: var(--secondary-blue);
    font-weight: 800;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    margin-top: 0.4rem;
}

.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(191,167,106,0.1) 0%, rgba(74,107,138,0.05) 50%, transparent 100%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

.hero-profile-card {
    background: rgba(255,255,255,0.9);
    padding: 1.5rem;
    border-radius: 1.2rem;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(56,84,108,0.1),
        0 8px 32px rgba(191,167,106,0.15);
    border: 1px solid rgba(255,255,255,0.6);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-top: 1rem; /* Marge supplémentaire au top pour éviter la coupure */
    margin-bottom: 1rem; /* Marge supplémentaire en bas */
}

.hero-profile-card::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 0.8s ease;
}

.hero-profile-card:hover::before {
    left: 100%;
}

.hero-profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 80px rgba(56,84,108,0.15),
        0 12px 40px rgba(191,167,106,0.2);
}

.hero-profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-metallic), var(--accent-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(191,167,106,0.3);
    transition: all 0.3s ease;
}

.hero-profile-image:hover {
    transform: scale(1.1) rotate(5deg);
}

.hero-profile-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.4rem;
    font-family: 'Playfair Display', serif;
}

.hero-profile-title {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.hero-trust-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-badge {
    background: rgba(255,255,255,0.8);
    padding: 0.5rem 0.7rem;
    border-radius: 0.6rem;
    font-size: 0.75rem;
    color: var(--secondary-blue);
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(56,84,108,0.1);
}

.profile-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px var(--shadow-medium);
    text-align: center;
    position: relative;
    max-width: 400px;
    width: 100%;
    transition: all 0.4s ease;
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px var(--shadow-heavy);
}

.profile-image {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 3rem;
    position: relative;
    transition: all 0.4s ease;
}

.profile-image:hover {
    transform: rotate(5deg) scale(1.1);
}

.profile-image::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--gradient-accent);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.2;
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.profile-title {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.certifications {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cert-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
    border-left: 4px solid var(--monochrome-accent);
    transition: all 0.3s ease;
}

.cert-item:hover {
    transform: translateX(5px);
    background: var(--white);
    box-shadow: 0 4px 15px var(--shadow-light);
}

.cert-label {
    font-weight: 500;
    color: var(--text-secondary);
}

.cert-value {
    font-weight: 600;
    color: var(--primary-navy);
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services {
    padding: 100px 0;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    background: var(--light-gray);
    color: var(--secondary-blue);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.section-badge:hover {
    transform: scale(1.05);
    background: var(--secondary-blue);
    color: var(--white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--medium-gray);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px var(--shadow-medium);
    border-color: var(--accent-blue);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

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

.service-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.service-features i {
    color: var(--monochrome-accent);
    font-size: 0.8rem;
}

.service-link {
    color: var(--secondary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-link:hover {
    color: var(--accent-blue);
    gap: 0.75rem;
}

.service-cta {
    margin-top: 1rem;
    text-align: center;
}

.btn-service {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.btn-service:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

/* ========================================
   ASSURANCES SECTION
   ======================================== */

.assurances {
    padding: 100px 0;
    background: var(--light-gray);
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.insurance-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 40px var(--shadow-light);
    transition: all 0.4s ease;
    border: 1px solid var(--medium-gray);
    display: flex;
    flex-direction: column;
}

.insurance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px var(--shadow-medium);
}

.insurance-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.insurance-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.insurance-card:hover .insurance-icon {
    transform: scale(1.1);
    background: var(--gradient-accent);
}

.insurance-header h3 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.insurance-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

.insurance-content {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.insurance-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--white);
    transform: translateX(5px);
    box-shadow: 0 4px 15px var(--shadow-light);
}

.feature-item i {
    color: var(--secondary-blue);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.25rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

.insurance-benefits {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 12px;
}

.insurance-benefits h4 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.insurance-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.insurance-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.insurance-benefits li::before {
    content: '✓';
    color: var(--monochrome-accent);
    font-weight: 600;
    font-size: 1rem;
}

.insurance-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-insurance {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.btn-insurance:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.btn-secondary-insurance {
    background: transparent;
    color: var(--primary-navy);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--medium-gray);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary-insurance:hover {
    border-color: var(--secondary-blue);
    color: var(--secondary-blue);
    background: var(--light-gray);
    transform: translateY(-1px);
}

/* ========================================
   ASSURANCES OVERVIEW STYLES
   ======================================== */

.assurances-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.assurance-overview-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(56, 84, 108, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 2px solid transparent;
}

.assurance-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.assurance-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(56, 84, 108, 0.15);
    border-color: var(--accent-blue);
}

.assurance-overview-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.assurance-overview-icon i {
    font-size: 2rem;
    color: var(--white);
}

.assurance-overview-card:hover .assurance-overview-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(74, 107, 138, 0.3);
}

.assurance-overview-card h3 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.assurance-overview-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-assurance-overview {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-assurance-overview:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(74, 107, 138, 0.3);
}

.assurances-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ========================================
   PLACEMENTS SECTION
   ======================================== */

.placements {
    padding: 100px 0;
    background: var(--white);
}

.placement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.placement-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 40px var(--shadow-light);
    transition: all 0.4s ease;
    border: 1px solid var(--medium-gray);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.placement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.placement-card:hover::before {
    transform: translateX(0);
}

.placement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px var(--shadow-medium);
}

.placement-header {
    text-align: center;
    margin-bottom: 2rem;
}

.placement-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.placement-card:hover .placement-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-primary);
}

.placement-header h3 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.placement-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

.placement-highlight {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2rem;
    border-left: 4px solid var(--monochrome-accent);
}

.highlight-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.highlight-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-navy);
}

.placement-options {
    margin-top: 1.5rem;
}

.placement-options h4 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.option-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.option-tag {
    background: var(--light-gray);
    color: var(--text-secondary);
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.option-tag:hover {
    background: var(--secondary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.placement-cta {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-placement {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.btn-placement:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
    background: var(--gradient-primary);
}

.btn-secondary-placement {
    background: transparent;
    color: var(--primary-navy);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--medium-gray);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary-placement:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    background: var(--light-gray);
    transform: translateY(-1px);
}

/* ========================================
   PARTENAIRES SECTION
   ======================================== */

.partenaires {
    padding: 6rem 0;
    background: var(--light-gray);
}

.partenaires-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.partenaire-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(56, 84, 108, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partenaire-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.partenaire-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(56, 84, 108, 0.15);
}

.partenaire-header {
    text-align: center;
    margin-bottom: 2rem;
}

.partenaire-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.partenaire-icon i {
    font-size: 2rem;
    color: var(--white);
}

.partenaire-card:hover .partenaire-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(74, 107, 138, 0.3);
}

.partenaire-header h3 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.partenaire-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.partenaire-content {
    margin-bottom: 2rem;
}

.partenaire-features {
    margin-bottom: 1.5rem;
}

.partenaire-benefits {
    background: rgba(74, 107, 138, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-blue);
}

.partenaire-benefits h4 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.partenaire-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.partenaire-benefits li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.partenaire-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
}

.partenaire-cta {
    text-align: center;
}

.btn-partenaire {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-partenaire:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(74, 107, 138, 0.3);
}

/* ========================================
   ABOUT SECTION STYLES - MODERN & COMPACT
   ======================================== */

.about {
    padding: 4rem 0;
    background: var(--bg-light);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(240,240,240,0.4) 100%);
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about .section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.about-content-modern {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    align-items: start;
}

.about-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-text-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.text-block {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.text-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--monochrome-accent), var(--gradient-primary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.text-block:hover::before {
    transform: scaleX(1);
}

.text-block:hover {
    border-left-color: var(--monochrome-accent);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.text-block.highlight {
    background: linear-gradient(135deg, var(--monochrome-accent) 0%, #f0e68c 100%);
    color: white;
    border-left-color: var(--monochrome-accent);
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.text-block.highlight strong {
    color: white;
}

.text-block p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    color: var(--text-primary);
}

.text-block.highlight p {
    color: white;
    font-weight: 600;
}

.text-block strong.gold {
    color: var(--monochrome-accent);
    font-weight: 600;
}

.about-approach-modern {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--monochrome-accent), var(--gradient-primary)) border-box;
}

.about-approach-modern h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: center;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    background: var(--bg-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--monochrome-accent);
    transition: width 0.3s ease;
    z-index: 0;
}

.step:hover::before {
    width: 100%;
}

.step:hover {
    background: var(--monochrome-accent);
    color: white;
    transform: translateX(5px);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.step:hover .step-icon {
    background: white;
    color: var(--monochrome-accent);
    transform: scale(1.1);
}

.step-content {
    position: relative;
    z-index: 1;
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.step-content p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.step:hover .step-content h4,
.step:hover .step-content p {
    color: white;
}

.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 2rem;
}

.credentials-modern {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--monochrome-accent);
    position: relative;
    overflow: hidden;
}

.credentials-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.credentials-modern:hover::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.credentials-modern h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: center;
}

.credentials-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    background: var(--bg-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.credential-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--monochrome-accent);
    transition: width 0.3s ease;
    z-index: 0;
}

.credential-item:hover::before {
    width: 100%;
}

.credential-item:hover {
    background: var(--monochrome-accent);
    color: white;
    transform: translateX(5px);
}

.credential-item i {
    font-size: 1.25rem;
    color: var(--monochrome-accent);
    width: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.credential-item:hover i {
    color: white;
    transform: scale(1.2);
}

.credential-item span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.credential-item:hover span {
    color: white;
}

.signature-modern {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.signature-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--monochrome-accent), var(--gradient-primary), var(--monochrome-accent));
    background-size: 200% 100%;
    animation: gradient-shift 3s ease-in-out infinite;
}

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

.signature-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.signature-avatar::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid transparent;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--monochrome-accent), var(--gradient-primary)) border-box;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.signature-modern:hover .signature-avatar::after {
    opacity: 1;
}

.signature-modern:hover .signature-avatar {
    transform: scale(1.1);
}

.signature-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.signature-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.signature-title {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.signature-motto {
    font-size: 0.9rem;
    color: var(--monochrome-accent);
    font-style: italic;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* New Visual Elements Styles */
.about-visual-elements {
    margin: 4rem 0;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--monochrome-accent), var(--gradient-primary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--monochrome-accent);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quote-section {
    background: linear-gradient(135deg, var(--monochrome-accent) 0%, #f0e68c 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.quote-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: rotate(45deg) translate(-100%, -100%); }
    50% { transform: rotate(45deg) translate(100%, 100%); }
}

.quote-content {
    position: relative;
    z-index: 1;
}

.quote-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.quote-content blockquote {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    font-style: italic;
    line-height: 1.4;
}

.quote-author {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

.about-cta-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 4px solid var(--monochrome-accent);
}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--monochrome-accent), var(--gradient-primary), var(--monochrome-accent));
    background-size: 200% 100%;
    animation: gradient-shift 3s ease-in-out infinite;
}

.about-cta-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.about-cta-section h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.about-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #ecf0f1;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    color: #2c3e50;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: 3px solid white;
    cursor: pointer;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 62, 80, 0.1), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: #f8f9fa;
    border-color: #e9ecef;
    color: #2c3e50;
}

.cta-button:active {
    transform: translateY(-4px) scale(1.04);
}

.cta-button i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    color: #2c3e50;
}

.cta-button:hover i {
    transform: translateX(10px);
    color: #2c3e50;
}

/* Responsive adjustments for CTA */
@media (max-width: 768px) {
    .about-cta-section {
        padding: 2.5rem 2rem;
    }
    
    .about-cta-section h3 {
        font-size: 2rem;
    }
    
    .about-cta-section p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about-cta-section {
        padding: 2rem 1.5rem;
    }
    
    .about-cta-section h3 {
        font-size: 1.75rem;
    }
    
    .about-cta-section p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
        gap: 0.75rem;
    }
}

/* ===== SECTION CONTACT MODERNISÉE ===== */
.contact {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--monochrome-accent), var(--gradient-primary), var(--monochrome-accent));
    background-size: 200% 100%;
    animation: gradient-shift 3s ease-in-out infinite;
}

.contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(255, 215, 0, 0.01) 100%);
    z-index: 1;
}

.contact > * {
    position: relative;
    z-index: 2;
}

/* ===== HEADER MODERNE ===== */
.contact-header-modern {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out both;
}

.contact-badge {
    background: linear-gradient(135deg, var(--monochrome-accent), #3b82f6);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.contact-badge i {
    font-size: 1rem;
    color: #ffd700;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary), var(--gradient-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* ===== CONTENU PRINCIPAL ===== */
.contact-content-redesigned {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* ===== PROFIL MODERNE ===== */
.contact-profile-modern {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.profile-card-modern {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.profile-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--monochrome-accent), var(--gradient-primary));
}

.profile-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.profile-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--monochrome-accent), var(--gradient-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.profile-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.profile-title {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.profile-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.profile-badge {
    background: rgba(59, 130, 246, 0.1);
    color: var(--gradient-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.profile-badge i {
    font-size: 0.875rem;
}

/* ===== MÉTHODES DE CONTACT ===== */
.contact-methods-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method-modern {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.contact-method-modern:hover {
    transform: translateX(5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(255, 215, 0, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--gradient-primary);
    flex-shrink: 0;
}

.method-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.method-content a,
.method-content p {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.method-content a:hover {
    color: var(--gradient-primary);
}

/* ===== FORMULAIRE MODERNE ===== */
.contact-form-redesigned {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-redesigned::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--monochrome-accent), var(--gradient-primary));
}

.form-header-modern {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header-modern h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.form-header-modern p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.form-content-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group-modern {
    display: flex;
    flex-direction: column;
}

.form-group-modern.full-width {
    grid-column: 1 / -1;
}

.form-group-modern label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.form-group-modern input,
.form-group-modern select,
.form-group-modern textarea {
    padding: 1rem 1.25rem;
    border: 2px solid rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-group-modern input:focus,
.form-group-modern select:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: var(--gradient-primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

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

/* ===== CHECKBOX MODERNE ===== */
.checkbox-modern {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checkbox-modern input[type="checkbox"] {
    display: none;
}

.checkmark-modern {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 6px;
    position: relative;
    flex-shrink: 0;
    margin-top: 0.125rem;
    transition: all 0.3s ease;
}

.checkbox-modern input[type="checkbox"]:checked + .checkmark-modern {
    background: var(--gradient-primary);
    border-color: var(--gradient-primary);
}

.checkbox-modern input[type="checkbox"]:checked + .checkmark-modern::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.875rem;
    font-weight: bold;
}

/* ===== BOUTON DE SOUMISSION ===== */
.submit-btn-modern {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(56, 84, 108, 0.3);
    margin-top: 1rem;
}

.submit-btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(56, 84, 108, 0.4);
    color: white;
}

.submit-btn-modern i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.submit-btn-modern:hover i {
    transform: translateX(3px);
}

/* ===== HIGHLIGHTS ET CITATION ===== */
.contact-highlights-modern {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.highlight-item {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--monochrome-accent), var(--gradient-primary));
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(255, 215, 0, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--gradient-primary);
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--monochrome-accent), var(--gradient-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== CITATION MODERNE ===== */
.contact-quote-modern {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact-quote-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--monochrome-accent), var(--gradient-primary));
}

.quote-content-modern {
    position: relative;
    z-index: 2;
}

.quote-icon-modern {
    font-size: 3rem;
    color: rgba(59, 130, 246, 0.2);
    margin-bottom: 1.5rem;
    display: block;
}

.quote-text-modern {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.quote-author-modern {
    font-size: 1.1rem;
    color: var(--gradient-primary);
    font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .contact-content-redesigned {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 6rem 0;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .highlight-item {
        padding: 1.5rem;
    }
    
    .contact-quote-modern {
        padding: 2rem;
    }
    
    .quote-text-modern {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .profile-card-modern,
    .contact-form-redesigned {
        padding: 2rem;
    }
    
    .highlight-item {
        padding: 1.25rem;
    }
    
    .highlight-number {
        font-size: 2rem;
    }
}

.contact-card-icon {
    font-size: 3rem;
    color: var(--monochrome-accent);
    margin-bottom: 1rem;
}

.contact-card-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-card-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.contact-method:hover {
    background: #f1f5f9;
    transform: translateX(8px);
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--monochrome-accent), var(--gradient-primary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-method-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.contact-method-details a,
.contact-method-details p {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method-details a:hover {
    color: var(--monochrome-accent);
}

/* Contact Form Modern */
.contact-form-modern {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--gradient-primary), var(--monochrome-accent)) border-box;
    position: relative;
    overflow: hidden;
}

.contact-form-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gradient-primary), var(--monochrome-accent));
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f1f5f9;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.contact-form-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--monochrome-accent);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

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

/* Checkbox Styling */
.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: normal;
    line-height: 1.4;
    color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 0.2rem;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--monochrome-accent);
    border-color: var(--monochrome-accent);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

/* Contact Submit Button */
.contact-submit-btn {
    background: linear-gradient(135deg, var(--monochrome-accent), var(--gradient-primary));
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-submit-btn::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 0.6s ease;
}

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

.contact-submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

.contact-submit-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover i {
    transform: translateX(8px);
}

/* Contact Visual Elements */
.contact-visual-elements {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--monochrome-accent), var(--gradient-primary)) border-box;
    transition: all 0.3s ease;
}

.contact-stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--monochrome-accent), var(--gradient-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.contact-stat-label {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1rem;
}

.contact-quote {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.contact-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--monochrome-accent), var(--gradient-primary), var(--monochrome-accent));
    background-size: 200% 100%;
    animation: gradient-shift 3s ease-in-out infinite;
}

.contact-quote::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.contact-quote-content {
    position: relative;
    z-index: 1;
}

.contact-quote-icon {
    font-size: 3rem;
    color: var(--monochrome-accent);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.contact-quote blockquote {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.contact-quote-author {
    font-size: 1.1rem;
    color: var(--monochrome-accent);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-header .section-title {
        font-size: 2.5rem;
    }
    
    .contact-card,
    .contact-form-modern {
        padding: 2rem;
    }
    
    .contact-quote {
        padding: 2rem;
    }
    
    .contact-quote blockquote {
        font-size: 1.25rem;
    }
}

/* Testimonial Section Modern Styles */
.testimonial {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--monochrome-accent), var(--gradient-primary), var(--monochrome-accent));
    background-size: 200% 100%;
    animation: gradient-shift 3s ease-in-out infinite;
}

.testimonial::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(255, 215, 0, 0.02) 100%);
    z-index: 1;
}

.testimonial > * {
    position: relative;
    z-index: 2;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 5rem;
    animation: fadeInUp 0.8s ease-out both;
}

.testimonial-header .badge {
    background: linear-gradient(135deg, var(--monochrome-accent), #3b82f6);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.testimonial-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary), var(--gradient-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.testimonial-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* ===== CARROUSEL DE TÉMOIGNAGES ===== */
.testimonials-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.carousel-container {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
    padding: 2.5rem;
    box-sizing: border-box;
}

/* ===== CARTES DE TÉMOIGNAGES MODERNES ===== */
.testimonial-card.modern {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(59, 130, 246, 0.3)) border-box;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out both;
    height: 100%;
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card.modern:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card.modern:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card.modern:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card.modern:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.6);
}



.testimonial-card-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.decoration-line {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
    animation: gradient-shift 3s ease-in-out infinite;
}

.testimonial-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 1.75rem;
    position: relative;
    z-index: 2;
}

.testimonial-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.client-type {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.testimonial-rating-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.rating-stars {
    display: flex;
    gap: 0.2rem;
}

.rating-stars i {
    color: #ffd700;
    font-size: 1rem;
    animation: fadeInUp 0.6s ease-out both;
}

.rating-stars i:nth-child(1) { animation-delay: 0.1s; }
.rating-stars i:nth-child(2) { animation-delay: 0.2s; }
.rating-stars i:nth-child(3) { animation-delay: 0.3s; }
.rating-stars i:nth-child(4) { animation-delay: 0.4s; }
.rating-stars i:nth-child(5) { animation-delay: 0.5s; }

.rating-text {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.testimonial-content {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-content blockquote {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 1.25rem 0;
    padding: 0;
    font-style: italic;
    position: relative;
}

.testimonial-footer {
    display: flex;
    gap: 0.8rem;
    margin-top: auto;
    flex-wrap: wrap;
}

.testimonial-tag {
    background: rgba(59, 130, 246, 0.1);
    color: var(--gradient-primary);
    padding: 0.4rem 0.8rem;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.testimonial-tag:hover {
    background: rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 3px 12px rgba(59, 130, 246, 0.2);
}

.testimonial-tag i {
    font-size: 0.8rem;
}



/* ===== CTA MODERNE ===== */
.testimonial-cta-modern {
    background: linear-gradient(135deg, #1f2937, #374151);
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 5rem;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    animation: float 15s ease-in-out infinite;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite reverse;
}

.cta-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

.cta-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}

.cta-feature i {
    color: #ffd700;
    font-size: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-btn-primary {
    background: linear-gradient(135deg, var(--gradient-primary), #3b82f6);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    border: none;
    cursor: pointer;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
    color: white;
    text-decoration: none;
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
}

/* ===== NAVIGATION DU CARROUSEL ===== */
.carousel-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 10;
}

.carousel-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: white;
    border: 2px solid rgba(59, 130, 246, 0.2);
    color: var(--gradient-primary);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--gradient-primary);
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-dots {
    display: flex;
    gap: 0.75rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--gradient-primary);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: rgba(59, 130, 246, 0.6);
    transform: scale(1.1);
}

/* ===== BARRE DE PROGRESSION ===== */
.carousel-progress {
    width: 100%;
    height: 4px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 2px;
    margin-top: 2rem;
    overflow: hidden;
}

.progress-bar-carousel {
    height: 100%;
    background: linear-gradient(90deg, var(--gradient-primary), #3b82f6);
    border-radius: 2px;
    width: 20%;
    transition: width 0.3s ease;
}

/* ===== ANIMATIONS ===== */
@keyframes progressFill {
    from { width: 0%; }
    to { width: 100%; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes gradient-shift {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .testimonial-header h2 {
        font-size: 3rem;
    }
    

    
    .cta-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonial {
        padding: 6rem 0;
    }
    
    .testimonial-header h2 {
        font-size: 2.5rem;
    }
    
    .testimonial-header p {
        font-size: 1.125rem;
    }
    
    .carousel-slide {
        padding: 2rem;
    }
    
    .testimonial-card.modern {
        padding: 2rem;
        max-width: 100%;
    }
    
    .testimonial-card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .testimonial-info h4 {
        font-size: 1.4rem;
    }
    

    
    .testimonial-cta-modern {
        padding: 3rem 2rem;
    }
    
    .cta-header h3 {
        font-size: 2rem;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .carousel-navigation {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .testimonial-header h2 {
        font-size: 2rem;
    }
    
    .testimonial-header .badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .carousel-slide {
        padding: 1.5rem;
    }
    
    .testimonial-card.modern {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .testimonial-info h4 {
        font-size: 1.3rem;
    }
    
    .testimonial-content blockquote {
        font-size: 1rem;
    }
    
    .testimonial-footer {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-tag {
        width: 100%;
        justify-content: center;
    }
    

    
    .testimonial-cta-modern {
        padding: 2rem 1.5rem;
    }
    
    .cta-header h3 {
        font-size: 1.75rem;
    }
    
    .cta-header p {
        font-size: 1.125rem;
    }
    
    .carousel-btn {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }
}

/* ========================================
   FOOTER STYLES - MODERN DESIGN
   ======================================== */

.footer {
    position: relative;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    padding: 4rem 0 0 0;
    overflow: hidden;
    margin-top: 6rem;
}

/* Footer Background Elements */
.footer-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-pattern)"/></svg>');
    opacity: 0.6;
    z-index: 1;
    animation: fadeIn 1s ease-out 0.5s both;
}

.footer-bg-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(74, 107, 138, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.footer .container {
    position: relative;
    z-index: 2;
}

/* Footer Main Content */
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* Company Section */
.footer-company {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold-metallic) 0%, #D4AF37 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
    box-shadow: 0 8px 32px rgba(191, 167, 106, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-logo:hover .footer-logo-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 40px rgba(191, 167, 106, 0.4);
}

.footer-logo-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
}

.footer-logo-text .accent {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--white);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--gold-metallic);
    border-color: var(--gold-metallic);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(191, 167, 106, 0.4);
    color: var(--white);
}

/* Footer Sections */
.footer-services,
.footer-quick-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 1rem 0;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-radius: 8px;
    position: relative;
}

.footer-links a i {
    color: var(--gold-metallic);
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-links a:hover i {
    color: var(--white);
    transform: scale(1.2);
}

/* Contact Section */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(191, 167, 106, 0.2);
    border: 1px solid rgba(191, 167, 106, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-metallic);
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: var(--gold-metallic);
    color: var(--white);
    transform: scale(1.1);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-details a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--gold-metallic);
}

.contact-details span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 400;
}

/* Footer CTA Section */
.footer-cta {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem 0;
    text-align: center;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(191, 167, 106, 0.1) 0%, rgba(74, 107, 138, 0.1) 100%);
    border-radius: 20px;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.footer-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.footer-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0 0 2rem 0;
    line-height: 1.6;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gold-gradient);
    color: var(--white);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(191, 167, 106, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-cta-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 0.6s ease;
}

.footer-cta-btn:hover::before {
    left: 100%;
}

.footer-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(191, 167, 106, 0.4);
}

.footer-cta-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.footer-cta-btn:hover i {
    transform: translateX(3px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--gold-metallic);
}

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-company {
        grid-column: 1 / -1;
    }
    
    .footer-cta h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 0 0;
        margin-top: 4rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-company {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-cta {
        padding: 2rem 1.5rem;
        margin: 1.5rem 0;
    }
    
    .footer-cta h3 {
        font-size: 1.5rem;
    }
    
    .footer-cta p {
        font-size: 1rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2.5rem 0 0 0;
    }
    
    .footer-main {
        gap: 1.5rem;
    }
    
    .footer-cta {
        padding: 1.5rem 1rem;
    }
    
    .footer-cta h3 {
        font-size: 1.4rem;
    }
    
    .footer-cta-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .footer-logo-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
    
    .footer-logo-text h3 {
        font-size: 1.5rem;
    }
}

/* ========================================
   OPTIMISATION MOBILE COMPLÈTE - MOBILE FIRST
   ======================================== */

/* ===== MOBILE MENU TOGGLE - TOUJOURS VISIBLE SUR MOBILE ===== */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .header-nav {
        display: none;
    }
    
    .header-right {
        gap: 1rem;
    }
    
    .cta-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
}

/* ===== TABLET STYLES (768px - 1024px) ===== */
@media (max-width: 1024px) and (min-width: 769px) {
    .header-content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    /* Style pour tablettes uniquement - ne pas affecter mobile */
    .hero-container {
        padding: 4rem 2.5rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .insurance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .placement-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content-redesigned {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== MOBILE STYLES (max-width: 768px) - OPTIMISATION COMPLÈTE ===== */
@media (max-width: 768px) {
    /* ===== HEADER MOBILE OPTIMIZATION ===== */
    .header {
        padding: 0.5rem 0;
    }
    
    .header-content {
        padding-left: 1rem;
        padding-right: 1rem;
        gap: 1rem;
        justify-content: center; /* Centrer le contenu du header */
        position: relative;
    }
    
    .header-left {
        flex: 1;
        display: flex;
        justify-content: center; /* Centrer le logo */
    }
    
    .header-right {
        position: absolute;
        right: 1rem; /* Positionner le menu hamburger à droite */
    }
    
    .logo-text {
        display: flex !important; /* Afficher le logo sur mobile */
        flex-direction: column;
        align-items: center; /* Centrer le logo sur mobile */
        text-align: center;
    }
    
    .logo-name {
        font-size: 1.2rem; /* Taille réduite pour header plus petit */
        font-weight: 700;
        color: white;
        line-height: 1.2;
    }
    
    .logo-subtitle {
        font-size: 0.7rem; /* Taille réduite pour header plus petit */
        color: #bfa76a;
        font-weight: 500;
        margin-top: 0.125rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .cta-button {
        display: none !important; /* Masquer le bouton CTA du header sur mobile */
    }
    
    /* Exception : garder visible le bouton CTA dans la section about-cta */
    .about-cta-section .cta-button {
        display: inline-flex !important;
        padding: 1.25rem 2rem !important;
        font-size: 1.1rem !important;
        border-radius: 20px !important;
        min-height: 48px !important;
        min-width: 200px !important;
        justify-content: center !important;
        align-items: center !important;
        flex-direction: row !important;
        gap: 0.5rem !important;
        white-space: nowrap !important;
    }
    
    /* ===== MOBILE MENU ENHANCEMENTS ===== */
    .mobile-menu-overlay {
        background: #1e293b !important; /* Fond bleu opaque */
        width: 100vw !important;
        height: 100vh !important;
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
    }
    
    .mobile-menu-content {
        max-width: 100%;
        width: 100vw;
        padding: 1.5rem;
        background: #1e293b !important; /* Fond bleu opaque */
        border-radius: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        right: 0;
        left: 0;
    }
    
    .mobile-nav-link {
        padding: 1.25rem 1.5rem;
        font-size: 1.2rem;
        border-radius: 16px;
        margin-bottom: 0.75rem;
        color: white !important; /* Texte blanc pour la lisibilité sur fond bleu */
        background: #334155 !important; /* Fond gris-bleu opaque */
        border: 1px solid #475569;
        font-weight: 500;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Ombre pour plus de profondeur */
    }
    
    .mobile-nav-link:hover {
        background: #475569 !important;
        color: white !important;
        border-color: var(--gold-metallic);
        transform: translateX(8px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); /* Ombre plus prononcée au hover */
    }
    
    .mobile-nav-link i {
        color: var(--gold-metallic) !important;
        margin-right: 0.75rem;
    }
    
    .mobile-menu-header {
        background: #1e293b !important; /* Fond bleu opaque */
        padding: 1.5rem;
        border-bottom: 1px solid #475569;
    }
    
    .mobile-logo {
        color: white !important; /* Texte blanc sur fond bleu */
        font-weight: 600;
    }
    
    .mobile-logo i {
        color: var(--gold-metallic) !important;
        margin-right: 0.75rem;
    }
    
    .mobile-menu-close {
        color: white !important; /* Texte blanc sur fond bleu */
        background: #334155;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-cta-button {
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
        border-radius: 20px;
        background: linear-gradient(135deg, #bfa76a 0%, #d4af37 100%) !important;
        color: #1e293b !important;
        font-weight: 600;
        box-shadow: 0 8px 30px rgba(191, 167, 106, 0.4); /* Ombre plus prononcée */
        border: 2px solid rgba(255, 255, 255, 0.2); /* Bordure subtile */
        margin-top: 1rem;
    }
    
    .mobile-cta-button:hover {
        background: linear-gradient(135deg, #d4af37 0%, #bfa76a 100%) !important;
        transform: translateY(-3px);
        box-shadow: 0 15px 50px rgba(191, 167, 106, 0.6); /* Ombre plus intense au hover */
        border-color: rgba(255, 255, 255, 0.4);
    }
    
    /* ===== HERO SECTION MOBILE ===== */
    .hero {
        padding: 140px 0 40px 0 !important; /* Réduction du padding pour moins d'encombrement */
        min-height: 65vh !important;
    }
    
    .hero-container {
        padding: 1.5rem 1rem !important; /* Réduction significative du padding pour carte plus compacte */
        margin: 0 0.75rem !important;
        border-radius: 1.25rem !important;
        margin-top: 0.5rem !important; /* Réduction de la marge au top */
    }
    
    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.1 !important;
        margin-bottom: 0.75rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.3 !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.75rem !important;
        width: 100% !important;
        margin-bottom: 1rem !important;
    }
    
    .btn-primary, .btn-secondary {
        width: 100% !important;
        max-width: 260px !important;
        padding: 0.9rem 1.75rem !important;
        font-size: 0.95rem !important;
        border-radius: 10px !important;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1.25rem;
        margin-top: 1.5rem;
    }
    
    .stat-item {
        text-align: center;
        padding: 0.875rem;
    }
    
    /* Optimisation de l'espacement du badge */
    .hero-text .badge {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    /* Optimisation de l'espacement du contenu hero */
    .hero-content {
        gap: 1rem;
    }
    
    /* Suppression de la barre gradient sous le titre sur mobile */
    .hero-title::after {
        display: none !important;
    }
    
    /* Suppression des éléments décoratifs avec gradient sur mobile */
    .hero::before,
    .hero::after {
        display: none !important;
    }
    
    /* ===== CORRECTION DES MOTS COUPÉS SUR MOBILE ===== */
    /* Éviter les mots coupés sur tous les éléments de texte */
    * {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        -webkit-hyphens: auto !important;
        -ms-hyphens: auto !important;
    }
    
    /* Correction spécifique pour les éléments de texte */
    h1, h2, h3, h4, h5, h6,
    p, span, div, a, button,
    .section-title, .section-subtitle, .section-badge,
    .hero-title, .hero-subtitle,
    .service-title, .insurance-title, .placement-title,
    .testimonial-text, .contact-text,
    .btn-primary, .btn-secondary {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        hyphens: auto !important;
    }
    
    /* Augmentation de la taille du conteneur pour dézoomer davantage l'image */
    .visual-element {
        height: 420px !important; /* Plus grand pour dézoomer l'image */
    }
    
    /* Ajustement du positionnement de l'image pour éviter de couper la tête */
    .visual-element img {
        object-fit: contain !important; /* Affiche l'image entière sans couper */
        object-position: center center !important;
    }
    
    /* Optimisation de la mise en page de la section "qui suis-je" sur mobile */
    .section-content {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
    
    /* Réduction de l'espacement entre le titre et sous-titre de la section */
    .section-header {
        margin-bottom: 2rem !important; /* Réduit de 4rem à 2rem */
    }
    
    .section-badge {
        margin-bottom: 0.75rem !important; /* Réduit de 1rem à 0.75rem */
    }
    
    /* Correction spécifique pour les boutons et badges */
    .btn-primary, .btn-secondary,
    .section-badge, .hero-text .badge,
    .service-card, .insurance-card, .placement-card {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        line-height: 1.3 !important;
    }
    
    /* Correction pour les titres longs */
    .hero-title, .section-title {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        line-height: 1.2 !important;
        hyphens: auto !important;
    }
    
    /* Correction pour les conteneurs qui peuvent déborder */
    .container, .hero-container, .section-header,
    .service-card, .insurance-card, .placement-card,
    .testimonial-card, .contact-form {
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Correction spécifique pour les textes longs */
    p, .hero-subtitle, .section-subtitle,
    .service-description, .insurance-description,
    .testimonial-text, .contact-text {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        line-height: 1.4 !important;
    }
    
    /* Correction spécifique pour le CTA du footer */
    .footer-cta h3 {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: none !important; /* Pas de césure pour ce titre important */
        line-height: 1.3 !important;
        max-width: 90% !important;
        margin: 0 auto !important;
        white-space: normal !important; /* Permet le retour à la ligne */
    }
    
    /* Le mot "financier" reste sur une seule ligne grâce aux espaces insécables */
    .footer-cta h3 {
        word-spacing: normal !important;
    }
    
    /* Ajout d'espacement au-dessus du bouton CTA */
    .footer-cta-btn {
        margin-top: 1.5rem !important; /* Espacement au-dessus du bouton */
    }
    
    /* Correction de la ligne de copyright pour éviter la coupure de "financière" */
    .footer-bottom p {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: none !important; /* Pas de césure pour les mots longs */
        line-height: 1.4 !important;
        white-space: normal !important;
    }
    
    /* Correction du texte de la case à cocher pour éviter la coupure de "projet" */
    .checkbox-text {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: none !important; /* Pas de césure pour les mots longs */
        line-height: 1.4 !important;
        white-space: normal !important;
    }
    
    /* Correction du texte du CTA "about-cta-section" pour éviter la coupure de "aider" */
    .about-cta-section p {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: none !important; /* Pas de césure pour les mots longs */
        line-height: 1.4 !important;
        white-space: normal !important;
    }
    
    /* Correction du titre du CTA "about-cta-section" pour éviter la coupure de "finances" */
    .about-cta-section h3 {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: none !important; /* Pas de césure pour les mots longs */
        line-height: 1.3 !important;
        white-space: normal !important;
    }
    
    /* Correction des cartes d'approche pour éviter la coupure de "basée" */
    .approach-card p {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: none !important; /* Pas de césure pour les mots longs */
        line-height: 1.4 !important;
        white-space: normal !important;
    }
    
    /* Correction de la carte "Le problème" pour éviter les mots coupés */
    .problem-card-creative p,
    .problem-card-creative h3,
    .problem-card-creative strong {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: none !important; /* Pas de césure pour les mots longs */
        line-height: 1.4 !important;
        white-space: normal !important;
    }
    
    /* Correction générale pour tous les éléments de texte dans la section problème */
    .problem-card-container *,
    .about-section * {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: none !important;
        white-space: normal !important;
    }
    
    /* Correction des cartes de services pour éviter la coupure de "surplus" */
    .service-card p,
    .service-card h3,
    .service-card li {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: none !important; /* Pas de césure pour les mots longs */
        line-height: 1.4 !important;
        white-space: normal !important;
    }
    
    /* Correction spécifique pour éviter la coupure de "réalité" */
    .about-section p,
    .about-section strong {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: none !important; /* Pas de césure pour les mots longs */
        line-height: 1.4 !important;
        white-space: normal !important;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* ===== SECTIONS MOBILE - OPTIMISATION COMPLÈTE ===== */
    .services, .assurances, .placements, .partenaires, .about, .contact, .testimonial {
        padding: 3rem 0;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .container {
        max-width: 100%;
        padding: 0 1rem;
        margin: 0 auto;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    .section-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    /* ===== GRIDS MOBILE - OPTIMISATION COMPLÈTE ===== */
    .services-grid,
    .insurance-grid,
    .placement-grid,
    .partenaires-grid,
    .assurances-overview {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
        padding: 0 0.5rem;
    }
    
    .service-card,
    .insurance-card,
    .placement-card,
    .partenaire-card,
    .assurance-overview-card {
        padding: 1.5rem 1rem;
        border-radius: 12px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    .service-card h3,
    .insurance-header h3,
    .placement-header h3,
    .partenaire-header h3,
    .assurance-overview-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    .service-card p,
    .insurance-card p,
    .placement-card p,
    .partenaire-card p,
    .assurance-overview-card p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1rem;
        word-wrap: break-word;
    }
    
    .service-icon,
    .insurance-icon,
    .placement-icon,
    .partenaire-icon,
    .assurance-overview-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    /* ===== ABOUT SECTION MOBILE - OPTIMISATION COMPLÈTE ===== */
    .about-content-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
        padding: 0 0.5rem;
    }
    
    .about-sidebar {
        position: static;
        order: -1;
        max-width: 100%;
    }
    
    .text-block {
        padding: 1rem;
        border-radius: 10px;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    /* ===== OPTIMISATION SECTION "QUI SUIS-JE" MOBILE ===== */
    .about {
        padding: 2rem 0;
    }
    
    .about .section-header {
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .about .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .about .section-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.875rem;
        margin-bottom: 0.75rem;
    }
    
    /* Optimisation du contenu about */
    .about-content-optimise {
        max-width: 100% !important;
        padding: 0 1rem;
    }
    
    .about-section {
        margin-bottom: 2rem !important;
    }
    
    .section-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        text-align: center;
    }
    
    .text-content h3 {
        font-size: 1.4rem !important;
        margin-bottom: 1rem !important;
    }
    
    .text-content p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1rem !important;
    }
    
    /* Optimisation des cartes - Section "Le problème" */
    .problem-card-creative {
        padding: 1.5rem 1.25rem !important;
        border-radius: 16px !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Layout de la carte problème sur mobile */
    .problem-card-creative > div {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    /* Centrer le titre "Le problème" sur mobile uniquement */
    .problem-card-creative h3 {
        text-align: center !important;
    }
    
    /* Modifier la structure flex du conteneur du titre sur mobile - surcharge les styles inline */
    .problem-card-creative > div[style*="display: grid"] > div[style*="flex: 1"] > div[style*="display: flex"] {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 1rem !important;
        justify-content: center !important;
    }
    
    /* Masquer la ligne dorée sur mobile */
    .problem-card-creative > div[style*="display: grid"] > div[style*="flex: 1"] > div[style*="display: flex"] > div[style*="width: 4px"] {
        display: none !important;
    }
    
    /* Centrer le titre h3 sur mobile */
    .problem-card-creative > div[style*="display: grid"] > div[style*="flex: 1"] > div[style*="display: flex"] > h3 {
        text-align: center !important;
        margin: 0 auto !important;
    }
    
    /* Masquer les 3 petits points au-dessus du titre sur mobile (pas l'icône principale) */
    .problem-card-creative > div[style*="display: grid"] > div[style*="flex-direction: column"] > div[style*="display: flex"][style*="gap: 1rem"] {
        display: none !important;
    }
    
    /* ===== REDESIGN COMPLET SECTION TÉMOIGNAGES MOBILE (768px) ===== */
    
    /* Section témoignages - Design moderne */
    .testimonials-section {
        padding: 3rem 0 !important;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
    }
    
    /* Header optimisé */
    .testimonials-header {
        margin-bottom: 2.5rem !important;
        text-align: center !important;
    }
    
    .section-badge {
        background: linear-gradient(135deg, #1e293b, #334155) !important;
        color: white !important;
        padding: 1rem 2rem !important;
        border-radius: 50px !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        box-shadow: 0 8px 25px rgba(30, 41, 59, 0.3) !important;
        border: 2px solid rgba(255, 255, 255, 0.2) !important;
        display: inline-block !important;
    }
    
    /* Conteneur carrousel redesigné */
    .testimonials-carousel-container {
        margin-bottom: 3rem !important;
        position: relative !important;
    }
    
    /* Masquer les flèches sur mobile */
    .carousel-arrow {
        display: none !important;
    }
    
    /* Carrousel redesigné */
    .testimonials-carousel {
        border-radius: 20px !important;
        overflow: visible !important;
        padding: 0 1rem !important;
    }
    
    .carousel-track {
        display: flex !important;
        transition: transform 0.5s ease-in-out !important;
        gap: 0 !important;
    }
    
    .testimonial-slide {
        min-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    /* Carte de témoignage - Design moderne et épuré */
    .testimonial-card-large {
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%) !important;
        padding: 2.5rem 2rem !important;
        border-radius: 24px !important;
        margin: 0 !important;
        min-height: auto !important;
        height: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        box-shadow: 0 20px 60px rgba(30, 41, 59, 0.3) !important;
        position: relative !important;
        overflow: visible !important;
    }
    
    /* Masquer l'icône de citation */
    .quote-icon {
        display: none !important;
    }
    
    /* Contenu du témoignage - Design moderne */
    .testimonial-content {
        margin-bottom: 2rem !important;
        padding: 0 !important;
        min-height: auto !important;
        height: auto !important;
    }
    
    .testimonial-content p {
        font-size: 1.1rem !important;
        line-height: 1.7 !important;
        text-align: center !important;
        color: #f8fafc !important;
        margin: 0 !important;
        padding: 0 !important;
        font-style: italic !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    }
    
    /* Auteur - Design moderne */
    .testimonial-author {
        margin-top: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem !important;
    }
    
    .author-info h4 {
        background: linear-gradient(135deg, #bfa76a, #d4af37) !important;
        color: #1e293b !important;
        font-size: 1.3rem !important;
        font-weight: 700 !important;
        padding: 1rem 2rem !important;
        border-radius: 50px !important;
        margin: 0 !important;
        box-shadow: 0 8px 25px rgba(191, 167, 106, 0.4) !important;
        text-shadow: none !important;
    }
    
    /* Points de navigation - Design moderne */
    .carousel-navigation {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0.75rem !important;
        margin-top: 2rem !important;
        position: static !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        z-index: auto !important;
    }
    
    .carousel-navigation .dot {
        width: 12px !important;
        height: 12px !important;
        border-radius: 50% !important;
        background: #cbd5e1 !important;
        transition: all 0.3s ease !important;
        cursor: pointer !important;
    }
    
    .carousel-navigation .dot.active {
        background: linear-gradient(135deg, #bfa76a, #d4af37) !important;
        transform: scale(1.2) !important;
        box-shadow: 0 4px 15px rgba(191, 167, 106, 0.4) !important;
    }
    
    /* Icône de la carte problème */
    .problem-card-creative .problem-icon-creative {
        width: 70px !important;
        height: 70px !important;
        margin: 0 auto !important;
    }
    
    .problem-card-creative .problem-icon-creative i {
        font-size: 1.75rem !important;
    }
    
    /* Titre de la carte problème */
    .problem-card-creative h3 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
        text-align: center !important;
    }
    
    /* Contenu de la carte problème */
    .problem-card-creative p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        text-align: left !important;
    }
    
    /* Éléments décoratifs de la carte */
    .problem-card-creative .decorative-dots {
        justify-content: center !important;
        margin-bottom: 0.75rem !important;
    }
    
    /* Barre décorative */
    .problem-card-creative .decorative-bar {
        width: 3px !important;
        height: 25px !important;
        margin: 0 auto 0.75rem !important;
    }
    
    /* Optimisation des éléments inline de la carte problème */
    .problem-card-creative div[style*="grid-template-columns: auto 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    
    .problem-card-creative div[style*="display: flex; align-items: center; gap: 1rem"] {
        justify-content: center !important;
        margin-bottom: 1.5rem !important;
    }
    
    .problem-card-creative div[style*="width: 4px; height: 40px"] {
        width: 3px !important;
        height: 30px !important;
        margin: 0 auto !important;
    }
    
    .problem-card-creative h3[style*="font-size: 2.5rem"] {
        font-size: 1.8rem !important;
        text-align: center !important;
        margin-bottom: 1.5rem !important;
    }
    
    .problem-card-creative div[style*="display: grid; gap: 2rem"] {
        gap: 1.5rem !important;
    }
    
    .problem-card-creative p[style*="font-size: 1.2rem"] {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
    
    /* Optimisation de la section mission */
    .mission-highlight {
        padding: 2rem 1.5rem !important;
        border-radius: 14px !important;
    }
    
    .mission-icon {
        width: 70px !important;
        height: 70px !important;
        margin-bottom: 1.5rem !important;
    }
    
    .mission-icon i {
        font-size: 1.75rem !important;
    }
    
    .mission-highlight h2 {
        font-size: 1.75rem !important;
        margin-bottom: 1rem !important;
    }
    
    .mission-highlight p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }
    
    .text-block p {
        font-size: 0.95rem;
        line-height: 1.5;
        word-wrap: break-word;
    }
    
    .step {
        padding: 1rem;
        border-radius: 10px;
        max-width: 100%;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-content h4 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .step-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .credentials-modern,
    .signature-modern {
        padding: 1.25rem;
        border-radius: 10px;
        max-width: 100%;
    }
    
    .credential-item {
        padding: 0.75rem;
        border-radius: 8px;
    }
    
    .credential-item span {
        font-size: 0.9rem;
        word-wrap: break-word;
    }
    
    .stats-section {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        max-width: 100%;
        padding: 0 0.5rem;
    }
    
    .stat-item {
        padding: 1.25rem;
        border-radius: 12px;
        max-width: 100%;
        text-align: center;
    }
    
    .stat-number {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
        word-wrap: break-word;
    }
    
    .quote-section {
        padding: 1.5rem 1rem;
        border-radius: 12px;
        max-width: 100%;
        margin: 0 0.5rem;
    }
    
    .quote-content blockquote {
        font-size: 1.2rem;
        line-height: 1.4;
        word-wrap: break-word;
    }
    
    .quote-author {
        font-size: 1rem;
    }
    
    /* ===== CONTACT SECTION MOBILE - OPTIMISATION COMPLÈTE ===== */
    .contact {
        padding: 3rem 0;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .contact-title {
        font-size: 2rem;
        line-height: 1.2;
        word-wrap: break-word;
    }
    
    .contact-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        word-wrap: break-word;
    }
    
    .contact-content-redesigned {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
        padding: 0 0.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        max-width: 100%;
        padding: 0 0.5rem;
    }
    
    .highlight-item {
        padding: 1.25rem;
        border-radius: 12px;
        max-width: 100%;
        text-align: center;
    }
    
    .highlight-number {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .highlight-label {
        font-size: 0.9rem;
        word-wrap: break-word;
    }
    
    .contact-quote-modern {
        padding: 1.5rem 1rem;
        border-radius: 12px;
        max-width: 100%;
        margin: 0 0.5rem;
    }
    
    .quote-text-modern {
        font-size: 1.1rem;
        line-height: 1.4;
        word-wrap: break-word;
    }
    
    .profile-card-modern,
    .contact-form-redesigned {
        padding: 1.5rem 1rem;
        border-radius: 12px;
        max-width: 100%;
    }
    
    .contact-method-modern {
        padding: 1rem;
        border-radius: 10px;
        max-width: 100%;
    }
    
    .method-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .method-content h4 {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    
    .method-content a,
    .method-content p {
        font-size: 0.85rem;
        word-wrap: break-word;
    }
    
    /* ===== TESTIMONIAL SECTION MOBILE - OPTIMISATION COMPLÈTE ===== */
    .testimonial {
        padding: 3rem 0;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .testimonial-header h2 {
        font-size: 2rem;
        line-height: 1.2;
        word-wrap: break-word;
    }
    
    .testimonial-header p {
        font-size: 1rem;
        line-height: 1.5;
        word-wrap: break-word;
    }
    
    .carousel-slide {
        padding: 1.5rem 1rem;
        max-width: 100%;
    }
    
    .testimonial-card.modern {
        padding: 1.5rem 1rem;
        max-width: 100%;
        border-radius: 12px;
    }
    
    .testimonial-card-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .testimonial-info h4 {
        font-size: 1.3rem;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    .client-type {
        font-size: 0.9rem;
    }
    
    .testimonial-content blockquote {
        font-size: 1rem;
        line-height: 1.5;
        word-wrap: break-word;
    }
    
    .testimonial-footer {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .testimonial-tag {
        width: 100%;
        justify-content: center;
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .testimonial-cta-modern {
        padding: 2rem 1rem;
        border-radius: 12px;
        max-width: 100%;
        margin: 0 0.5rem;
    }
    
    .cta-header h3 {
        font-size: 1.75rem;
        line-height: 1.2;
        word-wrap: break-word;
    }
    
    .cta-header p {
        font-size: 1rem;
        line-height: 1.5;
        word-wrap: break-word;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .cta-feature {
        font-size: 0.95rem;
        word-wrap: break-word;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .carousel-navigation {
        flex-direction: column;
        gap: 1.25rem;
    }
    
    .carousel-btn {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }
}

/* ===== SMALL MOBILE STYLES (max-width: 480px) - OPTIMISATION EXTRÊME ===== */
@media (max-width: 480px) {
    /* ===== HEADER SMALL MOBILE ===== */
    .header {
        padding: 0.375rem 0;
    }
    
    .header-content {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        gap: 0.75rem;
        justify-content: center; /* Centrer le contenu du header */
        position: relative;
    }
    
    .header-right {
        position: absolute;
        right: 0.75rem; /* Positionner le menu hamburger à droite */
    }
    
    .logo-name {
        font-size: 1.1rem; /* Taille encore plus petite pour header réduit */
    }
    
    .logo-subtitle {
        font-size: 0.7rem; /* Taille adaptée pour petits mobiles */
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .cta-button {
        display: none !important; /* Masquer le bouton CTA sur petits mobiles */
        border-radius: 10px;
    }
    
    /* Exception : garder visible le bouton CTA dans la section about-cta sur petits mobiles */
    .about-cta-section .cta-button {
        display: inline-flex !important;
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
        border-radius: 16px !important;
        min-height: 44px !important;
        min-width: 180px !important;
        justify-content: center !important;
        align-items: center !important;
        flex-direction: row !important;
        gap: 0.5rem !important;
        white-space: nowrap !important;
    }
    
    .mobile-menu-toggle {
        width: 26px;
        height: 20px;
    }
    
    .mobile-menu-toggle span {
        height: 2px;
    }
    
    /* ===== MOBILE MENU SMALL ===== */
    .mobile-menu-content {
        padding: 1.25rem;
    }
    
    .mobile-nav-link {
        padding: 1rem 1.25rem;
        font-size: 1.1rem;
        border-radius: 12px;
    }
    
    .mobile-menu-content {
        background: #1e293b !important; /* Fond bleu opaque */
    }
    
    .mobile-nav-link {
        color: white !important; /* Texte blanc pour la lisibilité sur fond bleu */
        background: #334155 !important; /* Fond gris-bleu opaque */
        border: 1px solid #475569;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Ombre pour plus de profondeur */
    }
    
    .mobile-cta-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 16px;
        background: linear-gradient(135deg, #bfa76a 0%, #d4af37 100%) !important;
        color: #1e293b !important;
        box-shadow: 0 6px 25px rgba(191, 167, 106, 0.4); /* Ombre plus prononcée */
        border: 2px solid rgba(255, 255, 255, 0.2); /* Bordure subtile */
    }
    
    /* ===== HERO SMALL MOBILE ===== */
    .hero {
        padding: 120px 0 30px 0 !important; /* Réduction encore plus importante pour petits mobiles */
        min-height: 55vh !important;
    }
    
    .hero-container {
        padding: 1.25rem 0.75rem !important; /* Réduction maximale du padding pour carte ultra-compacte */
        margin: 0 0.5rem !important;
        border-radius: 1rem !important;
        margin-top: 0.25rem !important; /* Marge minimale au top */
    }
    
    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.1 !important;
        margin-bottom: 0.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 1.25rem !important;
        line-height: 1.3 !important;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.25rem !important;
        font-size: 0.9rem !important;
        border-radius: 8px !important;
    }
    
    .hero-stats {
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Optimisation de l'espacement du badge pour petits mobiles */
    .hero-text .badge {
        padding: 0.5rem 0.875rem;
        font-size: 0.8rem;
        margin-bottom: 0.875rem;
    }
    
    /* Optimisation de l'espacement du contenu hero pour petits mobiles */
    .hero-content {
        gap: 0.875rem;
    }
    
    /* Suppression de la barre gradient sous le titre sur petits mobiles */
    .hero-title::after {
        display: none !important;
    }
    
    /* Suppression des éléments décoratifs avec gradient sur petits mobiles */
    .hero::before,
    .hero::after {
        display: none !important;
    }
    
    /* Augmentation de la taille du conteneur pour petits mobiles */
    .visual-element {
        height: 320px !important; /* Plus grand pour dézoomer l'image sur petits écrans */
    }
    
    /* Ajustement du positionnement de l'image pour petits mobiles */
    .visual-element img {
        object-fit: contain !important; /* Affiche l'image entière sans couper */
        object-position: center center !important;
    }
    
    /* Optimisation de la mise en page de la section "qui suis-je" sur petits mobiles */
    .section-content {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
    
    /* Réduction encore plus importante de l'espacement sur petits mobiles */
    .section-header {
        margin-bottom: 1.5rem !important; /* Réduit encore plus pour petits écrans */
    }
    
    .section-badge {
        margin-bottom: 0.5rem !important; /* Réduit encore plus pour petits écrans */
    }
    
    /* Correction renforcée des mots coupés pour petits mobiles */
    .btn-primary, .btn-secondary,
    .section-badge, .hero-text .badge,
    .service-card, .insurance-card, .placement-card {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        line-height: 1.25 !important;
        font-size: 0.9rem !important; /* Réduction légère pour éviter les débordements */
    }
    
    /* Correction renforcée pour les titres sur petits mobiles */
    .hero-title, .section-title {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        line-height: 1.15 !important;
        hyphens: auto !important;
        font-size: 1.8rem !important; /* Ajustement si nécessaire */
    }
    
    /* Correction globale pour éviter tout débordement horizontal */
    body, html {
        overflow-x: hidden !important;
    }
    
    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Correction pour les éléments avec position absolute */
    .hero::before, .hero::after,
    .float, .pulse, .rotate {
        max-width: none !important; /* Les éléments décoratifs peuvent dépasser */
    }
    
    /* Correction renforcée pour le CTA du footer sur petits mobiles */
    .footer-cta h3 {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: none !important; /* Pas de césure pour ce titre important */
        line-height: 1.25 !important;
        max-width: 95% !important;
        margin: 0 auto !important;
        font-size: 1.4rem !important; /* Réduction légère pour éviter les débordements */
        white-space: normal !important; /* Permet le retour à la ligne */
    }
    
    /* Espacement renforcé pour le bouton CTA sur petits mobiles */
    .footer-cta-btn {
        margin-top: 1.25rem !important; /* Espacement adapté pour petits écrans */
    }
    
    /* Correction renforcée de la ligne de copyright pour petits mobiles */
    .footer-bottom p {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: none !important; /* Pas de césure pour les mots longs */
        line-height: 1.3 !important;
        white-space: normal !important;
        font-size: 0.9rem !important; /* Réduction légère pour petits écrans */
    }
    
    /* Correction renforcée du texte de la case à cocher pour petits mobiles */
    .checkbox-text {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: none !important; /* Pas de césure pour les mots longs */
        line-height: 1.3 !important;
        white-space: normal !important;
        font-size: 0.9rem !important; /* Réduction légère pour petits écrans */
    }
    
    /* Correction renforcée du texte du CTA "about-cta-section" pour petits mobiles */
    .about-cta-section p {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: none !important; /* Pas de césure pour les mots longs */
        line-height: 1.3 !important;
        white-space: normal !important;
        font-size: 1rem !important; /* Réduction légère pour petits écrans */
    }
    
    /* Correction renforcée du titre du CTA "about-cta-section" pour petits mobiles */
    .about-cta-section h3 {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: none !important; /* Pas de césure pour les mots longs */
        line-height: 1.25 !important;
        white-space: normal !important;
        font-size: 1.6rem !important; /* Réduction légère pour petits écrans */
    }
    
    /* Correction renforcée des cartes d'approche pour petits mobiles */
    .approach-card p {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: none !important; /* Pas de césure pour les mots longs */
        line-height: 1.3 !important;
        white-space: normal !important;
        font-size: 0.9rem !important; /* Réduction légère pour petits écrans */
    }
    
    /* Correction renforcée de la carte "Le problème" pour petits mobiles */
    .problem-card-creative p,
    .problem-card-creative h3,
    .problem-card-creative strong {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: none !important; /* Pas de césure pour les mots longs */
        line-height: 1.3 !important;
        white-space: normal !important;
        font-size: 1rem !important; /* Réduction légère pour petits écrans */
    }
    
    /* Correction renforcée générale pour la section problème sur petits mobiles */
    .problem-card-container *,
    .about-section * {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: none !important;
        white-space: normal !important;
    }
    
    /* Correction renforcée des cartes de services pour petits mobiles */
    .service-card p,
    .service-card h3,
    .service-card li {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: none !important; /* Pas de césure pour les mots longs */
        line-height: 1.3 !important;
        white-space: normal !important;
        font-size: 0.9rem !important; /* Réduction légère pour petits écrans */
    }
    
    /* Correction renforcée spécifique pour éviter la coupure de "réalité" sur petits mobiles */
    .about-section p,
    .about-section strong {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: none !important; /* Pas de césure pour les mots longs */
        line-height: 1.3 !important;
        white-space: normal !important;
        font-size: 1rem !important; /* Réduction légère pour petits écrans */
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    /* ===== SECTIONS SMALL MOBILE - OPTIMISATION EXTRÊME ===== */
    .services, .assurances, .placements, .partenaires, .about, .contact, .testimonial {
        padding: 2.5rem 0;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 0.75rem;
        max-width: 100%;
    }
    
    .section-header {
        padding: 0 0.5rem;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
        line-height: 1.4;
        word-wrap: break-word;
    }
    
    .section-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
        border-radius: 15px;
        margin-bottom: 0.75rem;
    }
    
    /* ===== CARDS SMALL MOBILE - OPTIMISATION EXTRÊME ===== */
    .service-card,
    .insurance-card,
    .placement-card,
    .partenaire-card,
    .assurance-overview-card {
        padding: 1.25rem 0.75rem;
        border-radius: 10px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    .service-icon,
    .insurance-icon,
    .placement-icon,
    .partenaire-icon,
    .assurance-overview-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .service-card h3,
    .insurance-header h3,
    .placement-header h3,
    .partenaire-header h3,
    .assurance-overview-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    .service-card p,
    .insurance-card p,
    .placement-card p,
    .partenaire-card p,
    .assurance-overview-card p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
        word-wrap: break-word;
    }
    
    .btn-service,
    .btn-insurance,
    .btn-placement,
    .btn-partenaire,
    .btn-assurance-overview {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        border-radius: 15px;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    /* ===== ABOUT SMALL MOBILE ===== */
    .about-content-modern {
        gap: 1.5rem;
    }
    
    .text-block {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .text-block p {
        font-size: 0.95rem;
    }
    
    /* ===== OPTIMISATION SECTION "QUI SUIS-JE" PETITS MOBILES ===== */
    .about {
        padding: 1.5rem 0;
    }
    
    .about .section-header {
        margin-bottom: 1rem;
        padding: 0 0.75rem;
    }
    
    .about .section-title {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }
    
    .about .section-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    /* Optimisation du contenu about pour petits mobiles */
    .about-content-optimise {
        padding: 0 0.75rem !important;
    }
    
    .about-section {
        margin-bottom: 1.5rem !important;
    }
    
    .section-content {
        gap: 1rem !important;
    }
    
    .text-content h3 {
        font-size: 1.2rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .text-content p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.75rem !important;
    }
    
    /* Optimisation des cartes pour petits mobiles - Section "Le problème" */
    .problem-card-creative {
        padding: 1.25rem 1rem !important;
        border-radius: 14px !important;
        margin-bottom: 1rem !important;
    }
    
    /* Centrer le titre "Le problème" sur mobile uniquement */
    .problem-card-creative h3 {
        text-align: center !important;
    }
    
    /* Modifier la structure flex du conteneur du titre sur petits mobiles - surcharge les styles inline */
    .problem-card-creative > div[style*="display: grid"] > div[style*="flex: 1"] > div[style*="display: flex"] {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 0.75rem !important;
        justify-content: center !important;
    }
    
    /* Masquer la ligne dorée sur petits mobiles */
    .problem-card-creative > div[style*="display: grid"] > div[style*="flex: 1"] > div[style*="display: flex"] > div[style*="width: 4px"] {
        display: none !important;
    }
    
    /* Centrer le titre h3 sur petits mobiles */
    .problem-card-creative > div[style*="display: grid"] > div[style*="flex: 1"] > div[style*="display: flex"] > h3 {
        text-align: center !important;
        margin: 0 auto !important;
    }
    
    /* Masquer les 3 petits points au-dessus du titre sur petits mobiles (pas l'icône principale) */
    .problem-card-creative > div[style*="display: grid"] > div[style*="flex-direction: column"] > div[style*="display: flex"][style*="gap: 1rem"] {
        display: none !important;
    }
    
    /* Layout de la carte problème sur petits mobiles */
    .problem-card-creative > div {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        text-align: center !important;
    }
    
    /* ===== REDESIGN COMPLET SECTION TÉMOIGNAGES PETITS MOBILES (480px) ===== */
    
    /* Section témoignages - Design moderne pour petits mobiles */
    .testimonials-section {
        padding: 2.5rem 0 !important;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
    }
    
    /* Header optimisé pour petits mobiles */
    .testimonials-header {
        margin-bottom: 2rem !important;
        text-align: center !important;
    }
    
    .section-badge {
        background: linear-gradient(135deg, #1e293b, #334155) !important;
        color: white !important;
        padding: 0.875rem 1.5rem !important;
        border-radius: 50px !important;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        box-shadow: 0 6px 20px rgba(30, 41, 59, 0.3) !important;
        border: 2px solid rgba(255, 255, 255, 0.2) !important;
        display: inline-block !important;
    }
    
    /* Conteneur carrousel redesigné pour petits mobiles */
    .testimonials-carousel-container {
        margin-bottom: 2.5rem !important;
        position: relative !important;
    }
    
    /* Masquer les flèches sur petits mobiles */
    .carousel-arrow {
        display: none !important;
    }
    
    /* Carrousel redesigné pour petits mobiles */
    .testimonials-carousel {
        border-radius: 18px !important;
        overflow: visible !important;
        padding: 0 0.75rem !important;
    }
    
    .carousel-track {
        display: flex !important;
        transition: transform 0.5s ease-in-out !important;
        gap: 0 !important;
    }
    
    .testimonial-slide {
        min-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    /* Carte de témoignage - Design moderne pour petits mobiles */
    .testimonial-card-large {
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%) !important;
        padding: 2rem 1.5rem !important;
        border-radius: 20px !important;
        margin: 0 !important;
        min-height: auto !important;
        height: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        box-shadow: 0 15px 45px rgba(30, 41, 59, 0.3) !important;
        position: relative !important;
        overflow: visible !important;
    }
    
    /* Masquer l'icône de citation */
    .quote-icon {
        display: none !important;
    }
    
    /* Contenu du témoignage - Design moderne pour petits mobiles */
    .testimonial-content {
        margin-bottom: 1.5rem !important;
        padding: 0 !important;
        min-height: auto !important;
        height: auto !important;
    }
    
    .testimonial-content p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        text-align: center !important;
        color: #f8fafc !important;
        margin: 0 !important;
        padding: 0 !important;
        font-style: italic !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    }
    
    /* Auteur - Design moderne pour petits mobiles */
    .testimonial-author {
        margin-top: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.75rem !important;
    }
    
    .author-info h4 {
        background: linear-gradient(135deg, #bfa76a, #d4af37) !important;
        color: #1e293b !important;
        font-size: 1.2rem !important;
        font-weight: 700 !important;
        padding: 0.875rem 1.5rem !important;
        border-radius: 50px !important;
        margin: 0 !important;
        box-shadow: 0 6px 20px rgba(191, 167, 106, 0.4) !important;
        text-shadow: none !important;
    }
    
    /* Points de navigation - Design moderne pour petits mobiles */
    .carousel-navigation {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0.5rem !important;
        margin-top: 1.5rem !important;
        position: static !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        z-index: auto !important;
    }
    
    .carousel-navigation .dot {
        width: 10px !important;
        height: 10px !important;
        border-radius: 50% !important;
        background: #cbd5e1 !important;
        transition: all 0.3s ease !important;
        cursor: pointer !important;
    }
    
    .carousel-navigation .dot.active {
        background: linear-gradient(135deg, #bfa76a, #d4af37) !important;
        transform: scale(1.2) !important;
        box-shadow: 0 3px 12px rgba(191, 167, 106, 0.4) !important;
    }
    
    /* Icône de la carte problème sur petits mobiles */
    .problem-card-creative .problem-icon-creative {
        width: 60px !important;
        height: 60px !important;
        margin: 0 auto !important;
    }
    
    .problem-card-creative .problem-icon-creative i {
        font-size: 1.5rem !important;
    }
    
    /* Titre de la carte problème sur petits mobiles */
    .problem-card-creative h3 {
        font-size: 1.3rem !important;
        margin-bottom: 0.75rem !important;
        text-align: center !important;
    }
    
    /* Contenu de la carte problème sur petits mobiles */
    .problem-card-creative p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        text-align: left !important;
    }
    
    /* Éléments décoratifs de la carte sur petits mobiles */
    .problem-card-creative .decorative-dots {
        justify-content: center !important;
        margin-bottom: 0.5rem !important;
    }
    
    /* Barre décorative sur petits mobiles */
    .problem-card-creative .decorative-bar {
        width: 2px !important;
        height: 20px !important;
        margin: 0 auto 0.5rem !important;
    }
    
    /* Optimisation des éléments inline de la carte problème sur petits mobiles */
    .problem-card-creative div[style*="grid-template-columns: auto 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        text-align: center !important;
    }
    
    .problem-card-creative div[style*="display: flex; align-items: center; gap: 1rem"] {
        justify-content: center !important;
        margin-bottom: 1.25rem !important;
    }
    
    .problem-card-creative div[style*="width: 4px; height: 40px"] {
        width: 3px !important;
        height: 25px !important;
        margin: 0 auto !important;
    }
    
    .problem-card-creative h3[style*="font-size: 2.5rem"] {
        font-size: 1.5rem !important;
        text-align: center !important;
        margin-bottom: 1.25rem !important;
    }
    
    .problem-card-creative div[style*="display: grid; gap: 2rem"] {
        gap: 1.25rem !important;
    }
    
    .problem-card-creative p[style*="font-size: 1.2rem"] {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }
    
    /* Optimisation de la section mission pour petits mobiles */
    .mission-highlight {
        padding: 1.5rem 1.25rem !important;
        border-radius: 12px !important;
    }
    
    .mission-icon {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 1rem !important;
    }
    
    .mission-icon i {
        font-size: 1.5rem !important;
    }
    
    .mission-highlight h2 {
        font-size: 1.5rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .mission-highlight p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }
    
    .step {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-content h4 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.85rem;
    }
    
    .credentials-modern,
    .signature-modern {
        padding: 1.25rem;
        border-radius: 10px;
    }
    
    .credential-item {
        padding: 0.875rem;
        border-radius: 8px;
    }
    
    .credential-item span {
        font-size: 0.9rem;
    }
    
    .signature-avatar {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .signature-name {
        font-size: 1.3rem;
    }
    
    .signature-title {
        font-size: 0.9rem;
    }
    
    .stats-section {
        gap: 1.25rem;
    }
    
    .stat-item {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .quote-section {
        padding: 1.5rem 1.25rem;
        border-radius: 12px;
    }
    
    .quote-content blockquote {
        font-size: 1.2rem;
    }
    
    .quote-author {
        font-size: 1rem;
    }
    
    .about-cta-section {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .about-cta-section h3 {
        font-size: 1.75rem;
    }
    
    .about-cta-section p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
        gap: 0.75rem;
    }
    
    /* ===== CONTACT SMALL MOBILE ===== */
    .contact {
        padding: 3rem 0;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        border-radius: 25px;
    }
    
    .contact-content-redesigned {
        gap: 1.5rem;
    }
    
    .profile-card-modern,
    .contact-form-redesigned {
        padding: 1.5rem 1.25rem;
        border-radius: 12px;
    }
    
    .profile-avatar {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .profile-info h3 {
        font-size: 1.5rem;
    }
    
    .profile-title {
        font-size: 1rem;
    }
    
    .contact-method-modern {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .method-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .method-content h4 {
        font-size: 0.9rem;
    }
    
    .method-content a,
    .method-content p {
        font-size: 0.85rem;
    }
    
    .form-header-modern h3 {
        font-size: 1.6rem;
    }
    
    .form-header-modern p {
        font-size: 1rem;
    }
    
    .form-group-modern input,
    .form-group-modern select,
    .form-group-modern textarea {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
        border-radius: 10px;
    }
    
    .form-group-modern label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .submit-btn-modern {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    .highlights-grid {
        gap: 1.25rem;
    }
    
    .highlight-item {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .highlight-number {
        font-size: 1.8rem;
    }
    
    .highlight-label {
        font-size: 0.9rem;
    }
    
    .contact-quote-modern {
        padding: 1.5rem 1.25rem;
        border-radius: 12px;
    }
    
    .quote-icon-modern {
        font-size: 2.5rem;
    }
    
    .quote-text-modern {
        font-size: 1.1rem;
    }
    
    .quote-author-modern {
        font-size: 1rem;
    }
    
    /* ===== TESTIMONIAL SMALL MOBILE ===== */
    .testimonial {
        padding: 3rem 0;
    }
    
    .testimonial-header h2 {
        font-size: 2rem;
    }
    
    .testimonial-header p {
        font-size: 1rem;
    }
    
    .testimonial-header .badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        border-radius: 25px;
    }
    
    .carousel-slide {
        padding: 1.5rem 1.25rem;
    }
    
    .testimonial-card.modern {
        padding: 1.5rem 1.25rem;
        max-width: 100%;
        border-radius: 12px;
    }
    
    .testimonial-info h4 {
        font-size: 1.3rem;
    }
    
    .client-type {
        font-size: 0.9rem;
    }
    
    .testimonial-content blockquote {
        font-size: 1rem;
    }
    
    .testimonial-tag {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
        border-radius: 12px;
    }
    
    .testimonial-cta-modern {
        padding: 2rem 1.5rem;
        border-radius: 12px;
    }
    
    .cta-header h3 {
        font-size: 1.75rem;
    }
    
    .cta-header p {
        font-size: 1.125rem;
    }
    
    .cta-feature {
        font-size: 1rem;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        border-radius: 25px;
    }
    
    .carousel-btn {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }
}

/* ===== OPTIMISATIONS PERFORMANCE MOBILE ===== */
@media (max-width: 768px) {
    /* Optimisation des animations pour mobile */
    .hero::before,
    .hero::after {
        animation-duration: 30s;
    }
    
    .float {
        animation-duration: 8s;
    }
    
    /* Réduction des ombres pour les performances */
    .service-card,
    .insurance-card,
    .placement-card,
    .partenaire-card,
    .assurance-overview-card {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }
    
    .service-card:hover,
    .insurance-card:hover,
    .placement-card:hover,
    .partenaire-card:hover,
    .assurance-overview-card:hover {
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    }
    
    /* Optimisation des transitions */
    .service-card,
    .insurance-card,
    .placement-card,
    .partenaire-card,
    .assurance-overview-card,
    .btn-primary,
    .btn-secondary,
    .cta-button {
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
}

/* ===== TOUCH OPTIMIZATIONS ===== */
@media (max-width: 768px) {
    /* Augmentation des zones de touch */
    .nav-link,
    .btn-primary,
    .btn-secondary,
    .cta-button,
    .service-link,
    .btn-service,
    .btn-insurance,
    .btn-placement,
    .btn-partenaire,
    .btn-assurance-overview {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Optimisation des formulaires pour mobile */
    .form-group-modern input,
    .form-group-modern select,
    .form-group-modern textarea {
        font-size: 16px; /* Évite le zoom automatique sur iOS */
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Prévention de l'étirement des éléments de formulaire */
    .form-grid,
    .form-row,
    .contact-form-content,
    .contact-form-redesigned {
        max-width: 100%;
        width: 100%;
        overflow-x: hidden;
    }
    
    /* Optimisation des boutons pour éviter l'étirement */
    .btn-primary,
    .btn-secondary,
    .cta-button,
    .btn-service,
    .btn-insurance,
    .btn-placement,
    .btn-partenaire,
    .btn-assurance-overview {
        max-width: 100%;
        width: auto;
        min-width: 120px;
        word-wrap: break-word;
        white-space: normal;
    }
    
    /* Amélioration de la lisibilité */
    .hero-title,
    .section-title,
    .contact-title,
    .testimonial-header h2 {
        line-height: 1.2;
        word-spacing: -0.5px;
    }
    
    /* Optimisation des espacements */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 100%;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
        max-width: 100%;
    }
    
    /* Prévention de l'étirement des tableaux */
    table {
        max-width: 100%;
        width: 100%;
        table-layout: fixed;
        word-wrap: break-word;
    }
    
    td, th {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Prévention de l'étirement des éléments avec du texte long */
    .service-features,
    .insurance-features,
    .placement-options,
    .partenaire-benefits {
        max-width: 100%;
        word-wrap: break-word;
    }
    
    .service-features li,
    .insurance-features li,
    .placement-options li,
    .partenaire-benefits li {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* ===== LANDSCAPE MOBILE OPTIMIZATION ===== */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 100px 0 30px 0 !important;
        min-height: 45vh !important;
    }
    
    .hero-container {
        padding: 1rem 0.75rem !important;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .services, .assurances, .placements, .partenaires, .about, .contact, .testimonial {
        padding: 2.5rem 0;
    }
}

/* ===== ACCESSIBILITÉ MOBILE ===== */
@media (max-width: 768px) {
    /* Focus visible pour la navigation au clavier */
    .nav-link:focus,
    .btn-primary:focus,
    .btn-secondary:focus,
    .cta-button:focus,
    .mobile-nav-link:focus {
        outline: 3px solid var(--gold-metallic);
        outline-offset: 2px;
    }
    
    /* Amélioration du contraste pour la lisibilité */
    .hero-subtitle,
    .section-subtitle,
    .contact-subtitle {
        color: var(--text-primary);
        font-weight: 500;
    }
    
    /* Optimisation des couleurs pour les écrans mobiles */
    .service-card p,
    .insurance-card p,
    .placement-card p,
    .partenaire-card p,
    .assurance-overview-card p {
        color: var(--text-primary);
        line-height: 1.6;
    }
}

/* ===== OPTIMISATIONS GLOBALES MOBILE - PRÉVENTION ÉTIREMENT ===== */
@media (max-width: 768px) {
    /* Prévention de l'étirement horizontal */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    html {
        overflow-x: hidden;
        width: 100%;
    }
    
    /* Optimisation des conteneurs */
    .container,
    .hero-container,
    .section-header,
    .services-grid,
    .insurance-grid,
    .placement-grid,
    .partenaires-grid,
    .assurances-overview,
    .highlights-grid,
    .stats-section {
        max-width: 100%;
        width: 100%;
        overflow-x: hidden;
    }
    
    /* Optimisation des images pour mobile */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    /* Optimisation des icônes */
    .service-icon,
    .insurance-icon,
    .placement-icon,
    .partenaire-icon,
    .assurance-overview-icon,
    .step-icon,
    .method-icon,
    .highlight-icon,
    .contact-icon,
    .social-link {
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
    
    /* Optimisation des backgrounds */
    .hero::before,
    .hero::after,
    .about::before,
    .contact::before,
    .testimonial::before {
        will-change: transform;
        transform: translateZ(0);
        backface-visibility: hidden;
    }
    
    /* Optimisation des gradients pour mobile */
    .hero-container,
    .service-card,
    .insurance-card,
    .placement-card,
    .partenaire-card,
    .assurance-overview-card,
    .profile-card-modern,
    .contact-form-redesigned,
    .testimonial-card.modern {
        background-attachment: scroll;
    }
    
    /* Optimisation des ombres pour les performances */
    .hero-container,
    .service-card,
    .insurance-card,
    .placement-card,
    .partenaire-card,
    .assurance-overview-card,
    .profile-card-modern,
    .contact-form-redesigned,
    .testimonial-card.modern,
    .footer-cta {
        filter: none;
        -webkit-filter: none;
    }
    
    /* Optimisation des backdrop-filter pour mobile */
    .header {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    /* Optimisation des animations pour mobile */
    .hero-profile-card,
    .service-card,
    .insurance-card,
    .placement-card,
    .partenaire-card,
    .assurance-overview-card {
        transform: translateZ(0);
        will-change: transform;
    }
    
    /* Optimisation des transitions pour mobile */
    * {
        transition-duration: 0.2s !important;
        transition-timing-function: ease !important;
    }
    
    /* Optimisation des hover effects pour mobile */
    @media (hover: none) {
        .service-card:hover,
        .insurance-card:hover,
        .placement-card:hover,
        .partenaire-card:hover,
        .assurance-overview-card:hover,
        .btn-primary:hover,
        .btn-secondary:hover,
        .cta-button:hover {
            transform: none;
            box-shadow: inherit;
        }
    }
}

/* ===== OPTIMISATIONS PERFORMANCE AVANCÉES ===== */
@media (max-width: 768px) {
    /* Optimisation du rendu */
    .hero,
    .services,
    .assurances,
    .placements,
    .partenaires,
    .about,
    .contact,
    .testimonial,
    .footer {
        contain: layout style paint;
    }
    
    /* Optimisation des animations */
    .hero::before,
    .hero::after,
    .float,
    .pulse,
    .rotate,
    .gradient-shift {
        animation-play-state: paused;
    }
    
    /* Réactivation des animations uniquement si l'utilisateur préfère les animations */
    @media (prefers-reduced-motion: no-preference) {
        .hero::before,
        .hero::after,
        .float,
        .pulse,
        .rotate,
        .gradient-shift {
            animation-play-state: running;
        }
    }
    
    /* Optimisation des polices */
    .hero-title,
    .section-title,
    .contact-title,
    .testimonial-header h2 {
        font-display: swap;
        text-rendering: optimizeSpeed;
    }
    
    /* Optimisation des grilles */
    .services-grid,
    .insurance-grid,
    .placement-grid,
    .partenaires-grid,
    .assurances-overview,
    .highlights-grid {
        contain: layout;
    }
    
    /* Optimisation des flexbox */
    .hero-buttons,
    .hero-stats,
    .testimonial-footer,
    .cta-buttons,
    .carousel-navigation {
        contain: layout;
    }
}

/* ===== OPTIMISATIONS SPÉCIFIQUES iOS ===== */
@supports (-webkit-touch-callout: none) {
    @media (max-width: 768px) {
        /* Optimisation pour Safari iOS */
        .hero-container,
        .service-card,
        .insurance-card,
        .placement-card,
        .partenaire-card,
        .assurance-overview-card {
            -webkit-transform: translateZ(0);
            -webkit-backface-visibility: hidden;
            -webkit-perspective: 1000;
        }
        
        /* Optimisation des inputs pour iOS */
        .form-group-modern input,
        .form-group-modern select,
        .form-group-modern textarea {
            -webkit-appearance: none;
            border-radius: 12px;
        }
        
        /* Optimisation des boutons pour iOS */
        .btn-primary,
        .btn-secondary,
        .cta-button,
        .btn-service,
        .btn-insurance,
        .btn-placement,
        .btn-partenaire,
        .btn-assurance-overview {
            -webkit-appearance: none;
            -webkit-tap-highlight-color: transparent;
        }
    }
}

/* ===== OPTIMISATIONS SPÉCIFIQUES ANDROID ===== */
@media (max-width: 768px) {
    /* Optimisation pour Chrome Android */
    .hero-container,
    .service-card,
    .insurance-card,
    .placement-card,
    .partenaire-card,
    .assurance-overview-card {
        transform: translate3d(0, 0, 0);
        backface-visibility: hidden;
    }
    
    /* Optimisation des scrolls pour Android */
    .mobile-menu-content {
        -webkit-overflow-scrolling: touch;
        overflow-scrolling: touch;
    }
    
    /* Optimisation des transitions pour Android */
    .service-card,
    .insurance-card,
    .placement-card,
    .partenaire-card,
    .assurance-overview-card {
        transition: transform 0.15s ease-out;
    }
}

/* ===== OPTIMISATIONS RÉSEAU MOBILE ===== */
@media (max-width: 768px) {
    /* Optimisation du chargement des polices */
    .hero-title,
    .section-title,
    .contact-title,
    .testimonial-header h2 {
        font-family: 'Playfair Display', serif;
        font-display: swap;
    }
    
    /* Optimisation des icônes Font Awesome */
    .fas,
    .far,
    .fab {
        font-display: swap;
    }
    
    /* Optimisation des images de fond */
    .hero::before,
    .hero::after {
        background-image: none;
        background-color: rgba(74, 107, 138, 0.05);
    }
}

/* ===== OPTIMISATIONS BATTERIE MOBILE ===== */
@media (max-width: 768px) {
    /* Réduction des animations pour économiser la batterie */
    .hero::before,
    .hero::after {
        animation-duration: 60s;
        animation-iteration-count: 1;
    }
    
    /* Optimisation des transitions */
    .service-card,
    .insurance-card,
    .placement-card,
    .partenaire-card,
    .assurance-overview-card {
        transition: transform 0.1s ease-out;
    }
    
    /* Désactivation des animations coûteuses */
    .hero-profile-card::before,
    .service-card::before,
    .insurance-card::before,
    .placement-card::before,
    .partenaire-card::before,
    .assurance-overview-card::before {
        animation: none;
    }
}

/* ===== OPTIMISATIONS ACCESSIBILITÉ AVANCÉES ===== */
@media (max-width: 768px) {
    /* Amélioration du contraste pour les écrans mobiles */
    .hero-subtitle,
    .section-subtitle,
    .contact-subtitle,
    .testimonial-header p {
        color: var(--text-primary);
        font-weight: 500;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    }
    
    /* Optimisation des tailles de police pour la lisibilité */
    .service-card p,
    .insurance-card p,
    .placement-card p,
    .partenaire-card p,
    .assurance-overview-card p,
    .testimonial-content blockquote {
        font-size: 1rem;
        line-height: 1.6;
        color: var(--text-primary);
    }
    
    /* Amélioration des zones de touch */
    .mobile-nav-link,
    .btn-primary,
    .btn-secondary,
    .cta-button {
        min-height: 48px;
        min-width: 48px;
        padding: 12px 16px;
    }
    
    /* Optimisation des focus states */
    .nav-link:focus,
    .btn-primary:focus,
    .btn-secondary:focus,
    .cta-button:focus,
    .mobile-nav-link:focus {
        outline: 3px solid var(--gold-metallic);
        outline-offset: 3px;
        border-radius: 8px;
    }
    
    /* Amélioration de la navigation au clavier */
    .mobile-menu-content {
        scroll-behavior: smooth;
    }
    
    /* Optimisation des lecteurs d'écran */
    .hero-title,
    .section-title,
    .contact-title,
    .testimonial-header h2 {
        speak: normal;
        font-variant-numeric: normal;
    }
}

/* ===== CORRECTIONS FINALES POUR ÉVITER L'ÉTIREMENT MOBILE ===== */
@media (max-width: 768px) {
    /* Correction globale pour tous les éléments */
    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Correction spécifique pour les sections */
    .services,
    .assurances,
    .placements,
    .partenaires,
    .about,
    .contact,
    .testimonial {
        max-width: 100% !important;
        width: 100% !important;
        overflow-x: hidden !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Correction pour les conteneurs */
    .container {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Correction pour les grilles */
    .services-grid,
    .insurance-grid,
    .placement-grid,
    .partenaires-grid,
    .assurances-overview,
    .highlights-grid,
    .stats-section {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    
    /* Correction pour les cartes */
    .service-card,
    .insurance-card,
    .placement-card,
    .partenaire-card,
    .assurance-overview-card {
        max-width: 100% !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* Correction pour les formulaires */
    .form-group-modern input,
    .form-group-modern select,
    .form-group-modern textarea {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    /* Correction pour les boutons */
    .btn-primary,
    .btn-secondary,
    .cta-button,
    .btn-service,
    .btn-insurance,
    .btn-placement,
    .btn-partenaire,
    .btn-assurance-overview {
        max-width: 100% !important;
        width: auto !important;
        min-width: 120px !important;
    }
    
    /* Correction pour les textes longs */
    h1, h2, h3, h4, h5, h6,
    p, span, div, a, li {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    /* Correction pour les images */
    img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Correction pour les tableaux */
    table {
        max-width: 100% !important;
        width: 100% !important;
        table-layout: fixed !important;
    }
    
    /* Correction pour les éléments avec position absolute */
    .hero::before,
    .hero::after,
    .float,
    .pulse,
    .rotate {
        max-width: 100% !important;
    }
}

/* ===== OPTIMISATIONS POUR PETITS MOBILES (max-width: 480px) ===== */
@media (max-width: 480px) {
    /* Correction encore plus stricte pour petits mobiles */
    .container {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
    
    .services-grid,
    .insurance-grid,
    .placement-grid,
    .partenaires-grid,
    .assurances-overview,
    .highlights-grid,
    .stats-section {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }
    
    .service-card,
    .insurance-card,
    .placement-card,
    .partenaire-card,
    .assurance-overview-card {
        padding: 1rem 0.75rem !important;
    }
    
    .section-title {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
    }
    
    .section-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
    }
}

/* ===== OPTIMISATIONS SPÉCIFIQUES CARTE HERO PROFILE ===== */
@media (max-width: 768px) {
    .hero-profile-card {
        margin-top: 1.5rem !important; /* Marge supplémentaire au top */
        margin-bottom: 1rem !important; /* Marge supplémentaire en bas */
        padding: 1.75rem 1.5rem !important; /* Padding augmenté */
    }
    
    .hero-profile-avatar {
        margin-bottom: 1rem !important; /* Espacement pour l'avatar */
    }
    
    .hero-profile-name {
        margin-bottom: 0.5rem !important; /* Espacement pour le nom */
    }
    
    .hero-profile-title {
        margin-bottom: 1rem !important; /* Espacement pour le titre */
    }
}

@media (max-width: 480px) {
    .hero-profile-card {
        margin-top: 1.25rem !important; /* Marge réduite pour petits mobiles */
        margin-bottom: 0.75rem !important; /* Marge réduite en bas */
        padding: 1.5rem 1.25rem !important; /* Padding adapté */
    }
}

/* ========================================
   Optimisations Mobile - Formulaire de Contact
   Section "Parlons de ta retraite"
   ======================================== */

/* Styles pour mobile uniquement (max-width: 768px) - Basé sur placements.html */
@media (max-width: 768px) {
    /* Titre principal */
    #contact h2 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 2rem !important;
    }
    
    /* Section contact - padding réduit */
    #contact {
        padding: 4rem 0 !important;
    }
    
    /* Container avec padding mobile - même approche que placements */
    #contact .container {
        padding: 0 0.3rem 0 1.7rem !important;
        max-width: 600px !important;
        margin: 0 auto !important;
    }
    
    /* Marge du titre réduite */
    #contact > div:first-child {
        margin-bottom: 3rem !important;
    }
    
    /* Layout des cartes - empilage vertical */
    #contact .row {
        flex-direction: column !important;
        gap: 3rem !important;
    }
    
    /* Carte coordonnées - pleine largeur */
    #contact .col-md-5 {
        width: 100% !important;
        order: 2 !important;
    }
    
    /* Carte formulaire - pleine largeur */
    #contact .col-md-7 {
        width: 100% !important;
        order: 1 !important;
    }
    
    /* Carte coordonnées - padding réduit */
    #contact .col-md-5 > div {
        padding: 1.5rem !important;
        margin: 0 !important;
    }
    
    /* Titre coordonnées */
    #contact .col-md-5 h3 {
        font-size: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Items de contact - plus compacts */
    #contact .col-md-5 > div > div > div {
        padding: 0.8rem 1rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    /* Icônes de contact plus petites */
    #contact .col-md-5 > div > div > div > div:first-child {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }
    
    /* Texte de contact */
    #contact .col-md-5 > div > div > div > div:last-child > div {
        font-size: 0.95rem !important;
    }
    
    /* Optimisations du formulaire sur mobile */
    /* Bandeau du formulaire - padding réduit */
    #contact .col-md-7 > div > div:first-child {
        padding: 1.2rem 1.5rem !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 0.8rem !important;
    }
    
    /* Icône du bandeau plus petite */
    #contact .col-md-7 > div > div:first-child > div:first-child {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.1rem !important;
    }
    
    /* Titre du bandeau plus petit */
    #contact .col-md-7 > div > div:first-child > div:last-child > h3 {
        font-size: 1.3rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    /* Sous-titre du bandeau plus petit */
    #contact .col-md-7 > div > div:first-child > div:last-child > p {
        font-size: 0.9rem !important;
    }
    
    /* Formulaire - padding réduit */
    #contact form {
        padding: 1.5rem !important;
        gap: 1.5rem !important;
    }
    
    /* Grille des champs - une colonne sur mobile */
    #contact form > div:first-child,
    #contact form > div:nth-child(2) {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    /* Labels plus petits */
    #contact form label {
        font-size: 0.95rem !important;
        margin-bottom: 0.6rem !important;
    }
    
    /* Inputs plus compacts */
    #contact form input,
    #contact form select,
    #contact form textarea {
        padding: 0.9rem !important;
        font-size: 0.95rem !important;
        border-radius: 8px !important;
    }
    
    /* Textarea - hauteur réduite */
    #contact form textarea {
        min-height: 100px !important;
        resize: vertical !important;
    }
    
    /* Bouton centré et optimisé */
    #contact form button {
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
        padding: 1rem 2rem !important;
        font-size: 0.95rem !important;
    }
}

/* Styles pour très petits mobiles (max-width: 576px) - Basé sur placements.html */
@media (max-width: 576px) {
    /* Titre encore plus petit sur très petits écrans */
    #contact h2 {
        font-size: 1.8rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Section contact - padding minimal */
    #contact {
        padding: 3rem 0 !important;
    }
    
    /* Container avec padding minimal */
    #contact .container {
        padding: 0 0.1rem 0 1.4rem !important;
        max-width: 500px !important;
        margin: 0 auto !important;
    }
    
    /* Marge du titre minimale */
    #contact > div:first-child {
        margin-bottom: 2rem !important;
    }
    
    /* Gap entre cartes réduit */
    #contact .row {
        gap: 2.5rem !important;
    }
    
    /* Carte coordonnées - padding minimal */
    #contact .col-md-5 > div {
        padding: 1.2rem !important;
        border-radius: 16px !important;
    }
    
    /* Titre coordonnées plus petit */
    #contact .col-md-5 h3 {
        font-size: 1.3rem !important;
        margin-bottom: 1.2rem !important;
    }
    
    /* Items de contact - très compacts */
    #contact .col-md-5 > div > div > div {
        padding: 0.7rem 0.8rem !important;
        margin-bottom: 0.6rem !important;
        border-radius: 8px !important;
    }
    
    /* Icônes de contact encore plus petites */
    #contact .col-md-5 > div > div > div > div:first-child {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.9rem !important;
        border-radius: 8px !important;
    }
    
    /* Texte de contact plus petit */
    #contact .col-md-5 > div > div > div > div:last-child > div {
        font-size: 0.9rem !important;
    }
    
    /* Optimisations du formulaire pour très petits mobiles */
    /* Bandeau du formulaire - padding minimal */
    #contact .col-md-7 > div > div:first-child {
        padding: 1rem 1.2rem !important;
        gap: 0.6rem !important;
    }
    
    /* Icône du bandeau plus petite */
    #contact .col-md-7 > div > div:first-child > div:first-child {
        width: 36px !important;
        height: 36px !important;
        font-size: 1rem !important;
    }
    
    /* Titre du bandeau plus petit */
    #contact .col-md-7 > div > div:first-child > div:last-child > h3 {
        font-size: 1.2rem !important;
        margin-bottom: 0.2rem !important;
    }
    
    /* Sous-titre du bandeau plus petit */
    #contact .col-md-7 > div > div:first-child > div:last-child > p {
        font-size: 0.85rem !important;
    }
    
    /* Formulaire - padding minimal */
    #contact form {
        padding: 1.2rem !important;
        gap: 1.2rem !important;
    }
    
    /* Labels plus petits */
    #contact form label {
        font-size: 0.9rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    /* Inputs plus compacts */
    #contact form input,
    #contact form select,
    #contact form textarea {
        padding: 0.8rem !important;
        font-size: 0.9rem !important;
        border-radius: 6px !important;
    }
    
    /* Textarea - hauteur réduite */
    #contact form textarea {
        min-height: 80px !important;
    }
    
    /* Bouton optimisé pour très petits écrans */
    #contact form button {
        padding: 0.9rem 1.5rem !important;
        font-size: 0.9rem !important;
        max-width: 250px !important;
    }
}