 .contact-header {
            position: relative;
            background: url('../images/ABH-Safran.jpg') bottom/cover no-repeat;
            color: white;
            padding: 5rem 0;
            text-align: center;
            margin-top: -100px;
        }

        .contact-header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgb(0 0 0 / 70%);
            z-index: 1;
        }

        .contact-header-content {
            position: relative;
            z-index: 2;
            color: white;
            padding-top: 20px;
        }

        .contact-header h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .contact-header p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        /* Section Contact */
        .contact-section {
            padding: 80px 0;
        }

        .contact-info-card {
            background: #f8f9fa;
            border-radius: 5px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
            border: 2px solid transparent;
        }

        .contact-info-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-color);
        }

        .contact-info-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color) 0%, #84645b 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: white;
        }

        .contact-info-card h3 {
            color: #333;
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .contact-info-card p {
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 10px;
        }

        .contact-info-card a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .contact-info-card a:hover {
            color: #84645b;
            text-decoration: underline;
        }

        /* Formulaire de contact */
        .contact-form-wrapper {
            background: #f8f9fa;
            border-radius: 5px;
            padding: 50px 40px;
            margin-top: 50px;
        }

        .contact-form-wrapper h2 {
            color: #333;
            font-weight: 700;
            font-size: 2rem;
            margin-bottom: 15px;
            text-align: center;
        }

        .maps-form-wrapper {
            background: #f8f9fa;
            border-radius: 5px;
            padding: 50px 40px;
            margin-top: 50px;
        }

        .maps-form-wrapper h2 {
            color: #333;
            font-weight: 700;
            font-size: 2rem;
            margin-bottom: 15px;
            text-align: center;
        }

        .contact-form-wrapper .subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 40px;
            font-size: 1.1rem;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
            display: block;
        }

        .form-group label i {
            color: var(--primary-color);
            margin-right: 8px;
        }

        .form-control {
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            padding: 15px 20px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary-color);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 150px;
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--primary-color) 0%, #84645b 100%);
            color: white;
            border: none;
            padding: 18px 50px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            width: 100%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
        }

        .submit-btn i {
            font-size: 1.2rem;
        }

        /* Map Section */
        .map-section {
            background: white;
            padding: 80px 0;
        }

        .map-section h2 {
            color: #333;
            font-weight: 700;
            font-size: 2rem;
            margin-bottom: 40px;
            text-align: center;
        }

        .map-container {
            border-radius: 5px;
            overflow: hidden;
            height: 450px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .faq-section h2 {
            color: #333;
            font-weight: 700;
            font-size: 2rem;
            margin-bottom: 50px;
            text-align: center;
        }

        .faq-item {
            background: white;
            border-radius: 10px;
            margin-bottom: 20px;
            overflow: hidden;
        }

        .faq-question {
            background: linear-gradient(135deg, var(--primary-color) 0%, #84645b 100%);
            color: white;
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            opacity: 0.9;
        }

        .faq-question i {
            transition: transform 0.3s ease;
        }

        .faq-question.active i {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: #666;
        }

        .faq-answer.show {
            padding: 20px 25px;
            max-height: 500px;
        }

        /* Alert Messages */
        .alert-custom {
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 30px;
            border: none;
        }

        .alert-success {
            background: #d4edda;
            color: #155724;
        }

        .alert-error {
            background: #f8d7da;
            color: #721c24;
        }



                .contact-header {
            position: relative;
            background: url(assets/images/ABH-Safran.jpg) bottom/cover no-repeat;
            color: white;
            padding: 5rem 0;
            text-align: center;
            margin-top: -100px;
        }

        .contact-header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgb(0 0 0 / 70%);
            z-index: 1;
        }

        .contact-header-content {
            position: relative;
            z-index: 2;
            color: white;
            padding-top: 20px;
        }

        /* Modern Input Styles */
        .form-group {
            margin-bottom: 1.5rem;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #2c3e50;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .form-group label i {
            margin-right: 0.5rem;
            color: #27ae60;
        }

        .form-control {
            width: 100%;
            padding: 0.875rem 1rem;
            font-size: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            transition: all 0.3s ease;
            background-color: #f8f9fa;
        }

        .form-control:focus {
            outline: none;
            border-color: #27ae60;
            background-color: #fff;
            box-shadow: none;
            transform: translateY(-2px);
        }

        .form-control:hover {
            border-color: #bdc3c7;
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        select.form-control {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2327ae60' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            padding-right: 2.5rem;
        }

        .submit-btn {
            background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
            color: white;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .submit-btn i {
            font-size: 1rem;
        }

        /* Responsive */

        @media (max-width: 992px) {
            .contact-header h1 {
                font-size: 2rem;
            }

            .contact-form-wrapper {
                padding: 30px 20px;
            }

            .contact-section {
                padding: 50px 0;
            }

            .contact-header{
                margin-top: 20px;
            }
        }

        @media (max-width: 768px) {
            .contact-header h1 {
                font-size: 2rem;
            }

            .contact-form-wrapper {
                padding: 30px 20px;
            }

            .contact-section {
                padding: 50px 0;
            }

            .contact-header{
                margin-top: 20px;
            }
        }

        @media (max-width: 500px) {
            .contact-header h1 {
                font-size: 2rem;
            }

            .contact-form-wrapper {
                padding: 30px 20px;
            }

            .contact-section {
                padding: 50px 0;
            }

            .contact-header{
                margin-top: 20px;
            }
        }