        /* Container de contact */
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        /* Animation d'entrée */
        .fade-in {
            animation: fadeInUp 0.6s ease;
        }

        /* Items d'information de contact */
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 20px;
            background: var(--hover-bg);
            border-radius: 10px;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

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

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            flex-shrink: 0;
        }

        .contact-info-item h5 {
            color: var(--primary-color);
            margin-bottom: 5px;
            font-weight: 600;
        }

        .contact-info-item p {
            color: var(--dark-text);
            margin: 0;
            line-height: 1.6;
        }

        /* Bouton WhatsApp */
        .whatsapp-cta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: #25D366;
            color: white;
            padding: 15px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            margin: 25px 0;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }

        .whatsapp-cta:hover {
            background: #20BA5A;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        }

        .whatsapp-cta i {
            font-size: 24px;
        }

        /* Section réseaux sociaux */
        .social-section {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 2px solid var(--border-color);
        }

        .social-section h3 {
            color: var(--primary-color);
            font-size: 18px;
            margin-bottom: 15px;
        }

        .social-section h3 i {
            color: var(--accent-color);
            margin-right: 8px;
        }

        .contact-social-links {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .contact-social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px var(--shadow-light);
        }

        .contact-social-link.facebook { background: #1877F2; }
        .contact-social-link.youtube { background: #FF0000; }
        .contact-social-link.instagram { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF); }
        .contact-social-link.twitter { background: #1DA1F2; }
        .contact-social-link.whatsapp { background: #25D366; }

        .contact-social-link:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 4px 15px var(--shadow-medium);
        }

        /* Statut de disponibilité */
        .availability-status {
            margin-top: 25px;
            padding: 15px;
            background: var(--light-bg);
            border-radius: 8px;
            border-left: 4px solid var(--accent-color);
        }

        .status-indicator {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .status-dot {
            width: 12px;
            height: 12px;
            background: #4CAF50;
            border-radius: 50%;
            animation: pulse-dot 2s infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .status-indicator span {
            color: var(--dark-text);
            font-weight: 500;
        }

        /* Formulaire de contact */
        .contact-form {
            margin-top: 20px;
        }

        .form-label-custom {
            color: var(--primary-color);
            font-weight: 500;
            margin-bottom: 8px;
            display: block;
        }

        .form-label-custom i {
            margin-right: 5px;
            color: var(--accent-color);
        }

        .form-control-custom {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            font-size: 14px;
            transition: all 0.3s ease;
            background: white;
            color: var(--dark-text);
        }

        [data-theme="black"] .form-control-custom {
            background: var(--medium-bg);
            color: var(--dark-text);
            border-color: var(--border-color);
        }

        .form-control-custom:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px var(--shadow-light);
        }

        .form-control-custom::placeholder {
            color: #999;
        }

        .btn-submit {
            width: 100%;
            background: var(--primary-color);
            color: white;
            padding: 15px;
            border: none;
            border-radius: 25px;
            font-weight: bold;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px var(--shadow-color);
        }

        .btn-submit:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px var(--shadow-color);
        }

        .btn-submit:active {
            transform: translateY(-1px);
        }

        .btn-submit i {
            margin-right: 8px;
        }

        /* Section carte */
        .map-section {
            margin-top: 30px;
        }

        .map-subtitle {
            color: var(--dark-text);
            margin-bottom: 20px;
        }

        .map-container {
            width: 100%;
            height: 400px;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 25px;
            box-shadow: 0 4px 15px var(--shadow-light);
        }

        .map-placeholder {
            width: 100%;
            height: 100%;
            background: var(--light-bg);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 15px;
            border: 2px dashed var(--border-color);
        }

        .map-placeholder i {
            font-size: 48px;
            color: var(--primary-color);
        }

        .map-placeholder h4 {
            color: var(--primary-color);
            margin: 0;
        }

        .map-placeholder p {
            color: var(--dark-text);
            margin: 0;
        }

        .btn-map {
            background: var(--primary-color);
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 10px var(--shadow-color);
        }

        .btn-map:hover {
            background: var(--primary-dark);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px var(--shadow-color);
        }

        .btn-map i {
            font-size: 16px;
        }

        /* Détails de la carte */
        .map-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 25px;
        }

        .detail-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 15px;
            background: var(--hover-bg);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .detail-item:hover {
            background: var(--light-bg);
            transform: translateY(-3px);
        }

        .detail-item i {
            color: var(--accent-color);
            font-size: 20px;
            margin-top: 3px;
        }

        .detail-item strong {
            color: var(--primary-color);
            display: block;
            margin-bottom: 5px;
        }

        .detail-item span {
            color: var(--dark-text);
        }

        /* Actions de la carte */
        .map-actions {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 25px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .contact-container {
                grid-template-columns: 1fr;
            }

            .contact-info-item {
                padding: 15px;
            }

            .contact-icon {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }

            .whatsapp-cta {
                padding: 12px 20px;
            }

            .contact-social-links {
                justify-content: center;
            }

            .map-container {
                height: 300px;
            }

            .map-details {
                grid-template-columns: 1fr;
            }

            .map-actions {
                flex-direction: column;
            }

            .btn-map {
                width: 100%;
                justify-content: center;
            }
        }

        /* Thème noir - adaptations spécifiques */
        [data-theme="black"] .contact-info-item {
            background: var(--medium-bg);
        }

        [data-theme="black"] .contact-info-item:hover {
            background: var(--hover-bg);
        }

        [data-theme="black"] .map-placeholder {
            background: var(--medium-bg);
        }

        [data-theme="black"] .detail-item {
            background: var(--medium-bg);
        }

        [data-theme="black"] .detail-item:hover {
            background: var(--hover-bg);
        }

        [data-theme="black"] .availability-status {
            background: var(--medium-bg);
        }
        
        /* 
	 * Styles pour notifications et validations - CMCI Contact
	 * Ajoutez ceci à votre fichier static/css/style_contact.css
	 */

	/* ============================================
	   NOTIFICATIONS
	   ============================================ */
	.notification {
	    position: fixed;
	    top: 80px;
	    right: 20px;
	    min-width: 320px;
	    max-width: 500px;
	    padding: 16px 20px;
	    border-radius: 12px;
	    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
	    z-index: 9999;
	    transform: translateX(120%);
	    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	    backdrop-filter: blur(10px);
	}

	.notification.show {
	    transform: translateX(0);
	}

	.notification-success {
	    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	    color: white;
	}

	.notification-error {
	    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
	    color: white;
	}

	.notification-info {
	    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
	    color: white;
	}

	.notification-content {
	    display: flex;
	    align-items: center;
	    gap: 12px;
	}

	.notification-icon {
	    font-size: 24px;
	    flex-shrink: 0;
	}

	.notification-message {
	    flex: 1;
	    font-size: 14px;
	    line-height: 1.5;
	}

	.notification-close {
	    background: none;
	    border: none;
	    color: white;
	    cursor: pointer;
	    padding: 4px;
	    opacity: 0.8;
	    transition: opacity 0.2s;
	    font-size: 16px;
	    flex-shrink: 0;
	}

	.notification-close:hover {
	    opacity: 1;
	}

	/* ============================================
	   VALIDATION DES CHAMPS
	   ============================================ */
	.is-invalid {
	    border-color: #ef4444 !important;
	    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
	    animation: shake 0.3s;
	}

	@keyframes shake {
	    0%, 100% { transform: translateX(0); }
	    25% { transform: translateX(-5px); }
	    75% { transform: translateX(5px); }
	}

	.field-error {
	    color: #ef4444;
	    font-size: 12px;
	    margin-top: 6px;
	    display: flex;
	    align-items: center;
	    gap: 5px;
	    animation: slideDown 0.3s ease;
	}

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

	/* ============================================
	   COMPTEUR DE CARACTÈRES
	   ============================================ */
	.char-counter {
	    text-align: right;
	    font-size: 12px;
	    color: #6b7280;
	    margin-top: 6px;
	    transition: color 0.3s;
	}

	/* ============================================
	   BOUTON DE SOUMISSION
	   ============================================ */
	.btn-submit {
	    width: 100%;
	    padding: 14px 24px;
	    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	    color: white;
	    border: none;
	    border-radius: 10px;
	    font-size: 16px;
	    font-weight: 600;
	    cursor: pointer;
	    transition: all 0.3s ease;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    gap: 10px;
	    position: relative;
	    overflow: hidden;
	}

	.btn-submit::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.5s;
	}

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

	.btn-submit:hover {
	    transform: translateY(-2px);
	    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
	}

	.btn-submit:active {
	    transform: translateY(0);
	}

	.btn-submit:disabled {
	    opacity: 0.7;
	    cursor: not-allowed;
	    transform: none;
	}

	.btn-submit:disabled:hover {
	    box-shadow: none;
	}

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

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

	/* ============================================
	   CHAMPS DE FORMULAIRE
	   ============================================ */
	.form-control-custom {
	    width: 100%;
	    padding: 12px 16px;
	    border: 2px solid #e5e7eb;
	    border-radius: 8px;
	    font-size: 15px;
	    transition: all 0.3s ease;
	    background: white;
	}

	.form-control-custom:focus {
	    outline: none;
	    border-color: #667eea;
	    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
	}

	.form-control-custom:hover {
	    border-color: #d1d5db;
	}

	.form-label-custom {
	    display: block;
	    margin-bottom: 8px;
	    font-weight: 500;
	    color: #374151;
	    font-size: 14px;
	}

	.form-label-custom i {
	    color: #667eea;
	    margin-right: 5px;
	}

	.mb-3 {
	    margin-bottom: 20px;
	}

	/* ============================================
	   RESPONSIVE
	   ============================================ */
	@media (max-width: 768px) {
	    .notification {
		left: 10px;
		right: 10px;
		min-width: auto;
		max-width: none;
		transform: translateY(-120%);
	    }
	    
	    .notification.show {
		transform: translateY(0);
	    }
	}

	/* ============================================
	   LOADING SPINNER
	   ============================================ */
	@keyframes spin {
	    from { transform: rotate(0deg); }
	    to { transform: rotate(360deg); }
	}

	.fa-spinner {
	    animation: spin 1s linear infinite;
	}

