    :root {
        --primary: #00D9A3;
        --primary-dark: #00B88A;
        --dark: #1a1a1a;
        --dark-light: #2c2c2c;
        --gray: #5a5a5a;
        --gray-light: #8a8a8a;
        --cream: #F5F5F5;
        --white: #FFFFFF;
        --radius: 16px;
        --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body.page-template-page-contact-modern {
        background: var(--white);
        font-family: 'Manrope', system-ui, sans-serif;
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden;
    }

    /* ============================================
       SECTION CONTACT - LAYOUT 2 COLONNES
    ============================================ */
    .contact-section {
        padding: 8rem 2rem 6rem 2rem;
        background: var(--white);
    }

    .contact-container {
        max-width: 1300px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 40% 1fr;
        gap: 4rem;
        align-items: start;
    }

    @media (max-width: 968px) {
        .contact-container {
            grid-template-columns: 1fr;
            gap: 3rem;
        }
    }

    /* ============================================
       COLONNE GAUCHE - INFO
    ============================================ */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .contact-info {
        position: sticky;
        top: 100px;
    }

    .contact-info-title {
        font-size: clamp(1.75rem, 2.5vw, 2rem);
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .contact-info-subtitle {
        font-size: 1.05rem;
        line-height: 1.7;
        color: var(--gray);
        margin-bottom: 2.5rem;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        opacity: 0;
        transform: translateX(-20px);
        animation: slideInLeft 0.6s ease forwards;
    }

    .contact-item:nth-child(1) { animation-delay: 0.2s; }
    .contact-item:nth-child(2) { animation-delay: 0.3s; }
    .contact-item:nth-child(3) { animation-delay: 0.4s; }
    .contact-item:nth-child(4) { animation-delay: 0.5s; }

    @keyframes slideInLeft {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .contact-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
        fill: white;
    }

    .contact-details h3 {
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--gray);
        margin-bottom: 0.5rem;
    }

    .contact-details p {
        font-size: 1rem;
        color: var(--dark);
        line-height: 1.6;
        margin: 0;
    }

    .contact-details a {
        color: var(--dark);
        text-decoration: none;
        transition: var(--transition);
    }

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

    /* Social Icons */
    .social-links {
        display: flex;
        gap: 1rem;
        margin-top: 2rem;
    }

    .social-link {
        width: 44px;
        height: 44px;
        background: var(--cream);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--dark);
        transition: var(--transition);
        text-decoration: none;
    }

    .social-link:hover {
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: white;
        transform: translateY(-3px);
    }

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

    /* ============================================
       COLONNE DROITE - FORMULAIRE
    ============================================ */
    .contact-form-wrapper {
        background: var(--white);
        padding: 3rem;
        border-radius: var(--radius);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.8s ease 0.6s forwards;
    }

    @media (max-width: 768px) {
        .contact-form-wrapper {
            padding: 2rem 1.5rem;
        }
    }

    .form-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 0.5rem;
    }

    .form-subtitle {
        font-size: 0.95rem;
        color: var(--gray);
        margin-bottom: 2rem;
    }

    /* ============================================
       FAQ SECTION
    ============================================ */
    .faq-section {
        padding: 6rem 2rem;
        background: var(--cream);
    }

    .faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .faq-title {
        font-size: clamp(2rem, 3vw, 2.5rem);
        font-weight: 700;
        color: var(--dark);
        text-align: center;
        margin-bottom: 3rem;
    }

    .faq-item {
        background: white;
        border-radius: var(--radius);
        margin-bottom: 1.5rem;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.6s ease forwards;
    }

    .faq-item:nth-child(1) { animation-delay: 0.1s; }
    .faq-item:nth-child(2) { animation-delay: 0.2s; }
    .faq-item:nth-child(3) { animation-delay: 0.3s; }
    .faq-item:nth-child(4) { animation-delay: 0.4s; }

    .faq-question {
        padding: 1.5rem 2rem;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        transition: var(--transition);
        background: white;
    }

    .faq-question:hover {
        background: rgba(0, 217, 163, 0.05);
    }

    .faq-question h3 {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--dark);
        margin: 0;
    }

    .faq-icon {
        width: 24px;
        height: 24px;
        min-width: 24px;
        color: var(--primary);
        transition: var(--transition);
    }

    .faq-item.active .faq-icon {
        transform: rotate(180deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .faq-answer-content {
        padding: 0 2rem 1.5rem 2rem;
        color: var(--gray);
        line-height: 1.7;
    }

    .faq-item.active .faq-answer {
        max-height: 500px;
    }

    /* ============================================
       RESPONSIVE
    ============================================ */
    @media (max-width: 768px) {
        .contact-section {
            padding: 5rem 1.5rem 4rem 1.5rem;
        }

        .contact-info {
            position: static;
        }

        .faq-section {
            padding: 4rem 1.5rem;
        }

        .faq-question {
            padding: 1.25rem 1.5rem;
        }

        .faq-answer-content {
            padding: 0 1.5rem 1.25rem 1.5rem;
        }
    }

    /* ============================================
       UTILITIES
    ============================================ */
    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

