:root {
        --primary-color: #f46315;
        --brand-blue: #395FA7;
        --brand-green: #00970B;
        --background-light: #f8f6f5;
        --background-dark: #221610;
    }

    /* Hero Section */
    .contact-hero {
        background: linear-gradient(135deg, var(--primary-color) 0%, #f46315 100%);
        padding: 80px 0;
        position: relative;
        overflow: hidden;
    }

    .contact-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
    }

    .contact-hero::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -5%;
        width: 400px;
        height: 400px;
        background: rgba(255,255,255,0.08);
        border-radius: 50%;
    }

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

    /* Info Cards */
    .info-card {
        background: white;
        border-radius: 16px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        height: 100%;
        border: 1px solid #e0e0e0;
    }

    .info-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 32px rgba(244, 99, 21, 0.12);
        border-color: var(--primary-color);
    }

    .info-icon {
        width: 80px;
        height: 80px;
        background: rgba(244, 99, 21, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 2rem;
        color: var(--primary-color);
        transition: all 0.3s ease;
    }

    .info-card:hover .info-icon {
        background: var(--primary-color);
        color: white;
        transform: rotateY(180deg);
    }

    /* Formulaires */
    .contact-form-wrapper {
        background: white;
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        border: 1px solid #e0e0e0;
    }

    .form-control-custom {
        border: 2px solid #e0e0e0;
        border-radius: 12px;
        padding: 12px 18px;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        width: 100%;
    }

    .form-control-custom:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 4px rgba(244, 99, 21, 0.1);
        outline: none;
    }

    .btn-send {
        background: linear-gradient(135deg, var(--primary-color), #d4550f);
        color: white;
        font-weight: 700;
        padding: 14px 35px;
        border: none;
        border-radius: 12px;
        font-size: 1rem;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .btn-send:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(244, 99, 21, 0.3);
    }

    /* Map Container */
    .map-container {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        border: 1px solid #e0e0e0;
    }

    iframe {
        display: block;
        width: 100%;
    }

    /* FAQ Cards */
    .faq-card {
        background: white;
        border-radius: 16px;
        padding: 24px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        border-top: 4px solid var(--brand-green);
        height: 100%;
        transition: all 0.3s ease;
    }

    .faq-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 32px rgba(0,151,11,0.12);
    }

    .faq-title {
        color: var(--brand-green);
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 12px;
    }

    /* Social Icons */
    .social-icon {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--brand-blue);
        color: white;
        transition: all 0.3s ease;
    }

    .social-icon:hover {
        opacity: 0.8;
        transform: translateY(-3px);
    }

    /* Hours Card */
    .hours-card {
        background: white;
        border-radius: 16px;
        padding: 30px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        border-left: 6px solid var(--brand-green);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .contact-hero {
            padding: 60px 0;
        }

        .contact-form-wrapper {
            padding: 25px;
        }

        .info-card {
            margin-bottom: 20px;
        }
    }

body {
        font-family: 'Inter', sans-serif;
    }
