
        /* Hero Section */
        .contact-hero {
            position: relative;
            background: linear-gradient(rgba(44, 62, 73, 0.9), rgba(44, 62, 73, 0.7)), 
            url('../../banner/emera_contact_2048x2048.jpg') center/cover no-repeat;
            background-size: cover;
            color: white;
            /* height: 40vh; */
            min-height: 320px;
            padding: 70px 0 50px;
            margin-bottom: 20px;
        }
        
        .contact-hero h1 {
            color: white;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .contact-hero p {
            font-size: 1.2rem;
            /* margin: 0 auto 1rem; */
        }
        
        /* Section Contact */
        .contact-section {
            padding: 20px 0;
        }
        
        .contact-info-box {
            background-color: var(--light-gray);
            border-radius: var(--border-radius);
            padding: 20px 20px;
            height: 100%;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }
        
        .contact-info-box:hover {
            box-shadow: var(--box-shadow-hover);
        }
        
        .contact-info-box h3 {
            color: var(--dark-color);
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--primary-color);
        }
        
        .contact-method {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .contact-icon {
            background-color: var(--primary-color);
            color: var(--dark-color);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .contact-details h5 {
            color: var(--dark-color);
            margin-bottom: 5px;
        }
        
        /* Formulaire */
        .contact-form {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--box-shadow);
        }
        
        .form-control, .form-select {
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            padding: 12px 15px;
            margin-bottom: 20px;
            transition: var(--transition);
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(243, 215, 35, 0.25);
        }
        
        .form-label {
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 8px;
        }
        
        .btn-submit {
            background-color: var(--primary-color);
            color: var(--dark-color);
            font-weight: 600;
            padding: 12px 30px;
            border-radius: var(--border-radius);
            border: none;
            transition: var(--transition);
            width: 100%;
        }
        
        .btn-submit:hover {
            background-color: #e0c31f;
            transform: translateY(-3px);
        }
        
        /* Checkbox personnalisée */
        .form-check {
            margin: 25px 0;
        }
        
        .form-check-input {
            width: 20px;
            height: 20px;
            margin-top: 0.2rem;
        }
        
        .form-check-input:checked {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .form-check-label {
            color: var(--medium-gray);
        }
        
        /* Zone d'intervention */
        .intervention-section {
            padding: 60px 0;
            background-color: var(--light-gray);
        }
        
        .intervention-section h2 {
            color: var(--dark-color);
            margin-bottom: 40px;
            text-align: center;
        }
        
        .intervention-card {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--box-shadow);
            height: 100%;
            transition: var(--transition);
        }
        
        .intervention-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--box-shadow-hover);
        }
        
        .intervention-card h4 {
            color: var(--dark-color);
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--accent-color);
        }
        
        .department-list {
            list-style: none;
            padding-left: 0;
        }
        
        .department-list li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
        }
        
        .department-list li:last-child {
            border-bottom: none;
        }
        
        /* Carte */
        #map {
            height: 400px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            margin-top: 20px;
        }
        
        .map-container {
            position: relative;
        }
        
        .map-info {
            background-color: var(--primary-color);
            color: var(--dark-color);
            padding: 15px;
            border-radius: var(--border-radius);
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 1000;
            box-shadow: var(--box-shadow);
            max-width: 250px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .contact-hero h1 {
                font-size: 2.2rem;
            }
            
            .contact-form {
                padding: 30px 20px;
            }
            
            #map {
                height: 300px;
            }
        }
        
        @media (max-width: 576px) {
            /* .contact-hero {
                padding: 100px 0 60px;
            } */
            
            .contact-hero h1 {
                font-size: 1.8rem;
            }
        }
