
        .contact-container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .contact-card {
            max-width: 700px;
            width: 100%;
            background: var(--blanc);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .contact-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }

        .contact-header {
            background: var(--bleu-gradient);
            padding: 2.5rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .contact-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 200px;
            height: 200px;
            background: var(--jaune-orange);
            opacity: 0.1;
            border-radius: 50%;
            pointer-events: none;
        }

        .contact-header::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 150px;
            height: 150px;
            background: var(--jaune-orange);
            opacity: 0.1;
            border-radius: 50%;
            pointer-events: none;
        }

        .contact-header h1 {
            color: var(--blanc);
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 1;
        }

        .contact-header p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
            position: relative;
            z-index: 1;
        }

        .contact-form {
            padding: 2.5rem;
        }

        .form-group {
            margin-bottom: 1.75rem;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--noir-texte);
            font-size: 0.9rem;
        }

        .form-group label i {
            margin-right: 0.5rem;
            color: var(--bleu);
        }

        .input-icon {
            position: relative;
        }

        .input-icon i {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--bleu);
            font-size: 1.1rem;
            pointer-events: none;
        }

        .input-icon input,
        .input-icon textarea {
            width: 100%;
            padding: 0.875rem 1rem 0.875rem 2.75rem;
            border: 2px solid var(--gris-border);
            border-radius: 12px;
            font-size: 1rem;
            font-family: 'Inter', sans-serif;
            transition: var(--transition);
            background: var(--blanc);
            color: var(--noir-texte);
        }

        .input-icon textarea {
            padding: 0.875rem 1rem 0.875rem 2.75rem;
            resize: vertical;
            min-height: 120px;
            font-family: 'Inter', sans-serif;
        }

        .input-icon textarea ~ i {
            top: 1.2rem;
            transform: none;
        }

        .input-icon input:focus,
        .input-icon textarea:focus {
            outline: none;
            border-color: var(--jaune-orange);
            box-shadow: 0 0 0 3px rgba(250, 207, 15, 0.1);
        }

        .btn-submit {
            width: 100%;
            padding: 1rem;
            background: var(--bleu-gradient);
            color: var(--blanc);
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .btn-submit::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--jaune-orange-gradient);
            transition: left 0.3s ease;
            z-index: 0;
        }

        .btn-submit:hover::before {
            left: 0;
        }

        .btn-submit span {
            position: relative;
            z-index: 1;
        }

        .btn-submit:hover {
            transform: translateY(-1px);
            box-shadow: var(--shadow-hover);
        }

        .btn-submit:active {
            transform: translateY(0);
        }

        .status-message {
            margin-top: 1.5rem;
            padding: 1rem;
            border-radius: 12px;
            text-align: center;
            font-size: 0.9rem;
            font-weight: 500;
            display: none;
            animation: slideIn 0.3s ease;
        }

        .status-message.success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
            display: block;
        }

        .status-message.error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
            display: block;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .contact-info {
            background: var(--gris-pale);
            padding: 1.5rem 2.5rem;
            border-top: 1px solid var(--gris-border);
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.875rem;
            color: var(--noir-texte);
        }

        .info-item i {
            color: var(--bleu);
            font-size: 1.1rem;
        }

        @media (max-width: 640px) {
            .contact-container {
                padding: 1rem;
            }
            
            .contact-form {
                padding: 1.5rem;
            }
            
            .contact-header {
                padding: 1.5rem;
            }
            
            .contact-header h1 {
                font-size: 1.5rem;
            }
            
            .contact-info {
                padding: 1rem 1.5rem;
                flex-direction: column;
                align-items: center;
            }
        }