/* Page Contact - Styles spécifiques */

/* Section 1: Hero Contact */
.contact-hero-section {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb {
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
}

.breadcrumb a {
    color: #803101;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #b34700;
    text-decoration: underline;
}

.breadcrumb span {
    color: #333;
    font-weight: 600;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.1;
}

.hero-text h2 {
    font-size: 1.8rem;
    color: #803101;
    margin-bottom: 40px;
    font-weight: 600;
    line-height: 1.5;
}

/* Messages dynamiques */
.dynamic-message {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* border-left: 5px solid #803101; */
    /* margin-top: 30px; */
}

.message-box {
    display: none;
    align-items: flex-start;
    gap: 20px;
}

.message-box.active {
    display: flex;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-box i {
    font-size: 2rem;
    color: #803101;
    margin-top: 5px;
}

.message-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
    flex: 1;
}

/* Section 2: Formulaire principal */
.contact-form-section {
    padding: 80px 0;
    background: white;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 15px;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Messages du formulaire */
#form-messages {
    margin-bottom: 30px;
    padding: 15px;
    border-radius: 8px;
    display: none;
}

#form-messages.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

#form-messages.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Formulaire */
.contact-form-main .form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.contact-form-main .form-group {
    flex: 1;
}

.contact-form-main label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.contact-form-main input,
.contact-form-main select,
.contact-form-main textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eaeaea;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.contact-form-main input:focus,
.contact-form-main select:focus,
.contact-form-main textarea:focus {
    outline: none;
    border-color: #803101;
    box-shadow: 0 0 0 3px rgba(128, 49, 1, 0.1);
}

.contact-form-main textarea {
    resize: vertical;
    min-height: 150px;
}

/* Checkbox personnalisée */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-top: 20px;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    transform: scale(1.2);
}

.checkbox-label span {
    color: #555;
    font-weight: normal;
}

/* Bouton de soumission */
.form-submit {
    text-align: center;
    margin-top: 40px;
}

.submit-btn {
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
}

.form-note {
    margin-top: 20px;
    color: #666;
    font-size: 0.9rem;
}

.form-note i {
    color: #803101;
    margin-right: 5px;
}

/* Section 3: Contact rapide */
.quick-contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.quick-contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.quick-contact-header h3 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 15px;
}

.quick-contact-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.quick-contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.contact-card.whatsapp-card {
    border-top: 4px solid #25D366;
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: #803101;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.whatsapp-card .contact-card-icon {
    background: #25D366;
}

.contact-card-content h4 {
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 20px;
}

.contact-number,
.contact-email {
    font-size: 1.2rem;
    color: #803101;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-hours,
.contact-response {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.contact-action-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #803101;
    border-radius: .50rem;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.contact-action-btn:hover {
    background: #b34700;
    transform: translateY(-2px);
}

.whatsapp-btn {
    background: #25D366;
    border-radius: .50rem;

}

.whatsapp-btn:hover {
    background: #1da851;
}

/* Section 4: Zones d'intervention */
.intervention-zones {
    padding: 80px 0;
    background: white;
}

.zones-header {
    text-align: center;
    margin-bottom: 60px;
}

.zones-header h3 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 15px;
}

.zones-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.zone-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid #eaeaea;
    transition: all 0.3s ease;
}

.zone-card:hover {
    border-color: #803101;
    transform: translateY(-5px);
}

.zone-icon {
    width: 70px;
    height: 70px;
    background: #803101;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: white;
}

.zone-card h4 {
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 20px;
}

.zone-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.zone-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    border-bottom: 1px dashed #e0e0e0;
}

.zone-list li:last-child {
    border-bottom: none;
}

.zone-list li i {
    color: #803101;
}

/* Section 5: Localisation */
.location-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.location-header {
    text-align: center;
    margin-bottom: 60px;
}

.location-header h3 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 15px;
}

.location-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.location-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    height: 450px;
}

#map {
    width: 100%;
    height: 100%;
}

.address-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.address-icon {
    width: 40px;
    height: 40px;
    background: #803101;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: .8rem;
    color: white;
}

.address-content h4 {
    font-size: 1.4rem;
    color: #222;
    margin-bottom: 20px;
}

.address-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.address-info {
    margin-bottom: 30px;
}

.address-info p {
    color: #666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.address-info i {
    color: #803101;
    width: 20px;
}

.outline-btn {
    background: transparent;
    border: 2px solid #803101;
    color: #803101;
    border-radius: .50rem;

}

.outline-btn:hover {
    background: #803101;
    color: white;
}

/* Section 6: Réassurance */
.reassurance-section {
    padding: 80px 0;
    background: white;
}

.reassurance-header {
    text-align: center;
    margin-bottom: 60px;
}

.reassurance-header h3 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 15px;
}

.reassurance-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.reassurance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.reassurance-card {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.reassurance-card:hover {
    background: #803101;
    color: white;
    transform: translateY(-10px);
}

.reassurance-card:hover,
.reassurance-card:hover h4,
.reassurance-card:hover p {
    color: white;
}

.reassurance-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #803101;
    border: 2px solid #803101;
}

.reassurance-card h4 {
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.reassurance-card p {
    color: #666;
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* Section 7: CTA Final */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #803101 0%, #b34700 100%);
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: white;
}

.final-cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 50px;
}

.cta-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cta-card.email-cta {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-card.email-cta:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cta-card.whatsapp-cta {
    background: #25D366;
    border: 2px solid #25D366;
}

.cta-card.whatsapp-cta:hover {
    background: #1da851;
}

.cta-icon {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
}

.cta-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.cta-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.cta-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 400;
}

.contact-info-summary {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 40px;
}

.contact-info-summary p {
    margin: 0;
    opacity: 0.9;
    font-size: 1.1rem;
}

.contact-info-summary i {
    margin-right: 10px;
    width: 20px;
}

/* Boutons flottants mobiles */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
    display: none;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-btn.call-btn {
    background: #803101;
    border-radius: .50rem;
}

.floating-btn.whatsapp-btn {
    background: #25D366;
    border-radius: .50rem;

}

/* Responsive */
@media (max-width: 992px) {

    .quick-contact-cards,
    .zones-grid,
    .reassurance-grid {
        grid-template-columns: 1fr;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 100px 0 40px;
    }

    .contact-form-container {
        padding: 30px;
    }

    .contact-form-main .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .cta-buttons-group {
        flex-direction: column;
        align-items: center;
    }

    .floating-buttons {
        display: flex;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {

    .contact-card,
    .zone-card,
    .reassurance-card {
        padding: 30px 20px;
    }

    .contact-form-container {
        padding: 25px 20px;
    }

    .final-cta-content h2 {
        font-size: 2rem;
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
}

/* Page Contact - Styles spécifiques */

/* Section 1: Hero Contact (bannière comme services.html) */
.contact-hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 20px;
}

.contact-hero-text {
    flex: 1;
}

.contact-hero-text .breadcrumb {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-hero-text .breadcrumb a {
    color: #803101;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-hero-text .breadcrumb a:hover {
    color: #b34700;
    text-decoration: underline;
}

.contact-hero-text .breadcrumb span {
    color: #333;
    font-weight: 600;
}

.contact-hero-text h1 {
    font-size: 3.5rem;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.1;
    font-weight: 700;
}

.contact-hero-text h2 {
    font-size: 1.8rem;
    color: #803101;
    margin-bottom: 40px;
    font-weight: 600;
    line-height: 1.5;
    max-width: 800px;
}

/* Messages dynamiques */
/* .dynamic-message {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-left: 5px solid #803101;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.dynamic-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #803101 0%, #b34700 100%);
}

.message-box {
    display: none;
    align-items: flex-start;
    gap: 20px;
    animation: fadeInMessage 0.5s ease;
}

@keyframes fadeInMessage {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.message-box.active {
    display: flex;
}

.message-box i {
    font-size: 2.5rem;
    color: #803101;
    margin-top: 5px;
    flex-shrink: 0;
}

.message-box h4 {
    font-size: 1.3rem;
    color: #222;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.message-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
} */


/* Messages dynamiques améliorés */
.dynamic-message {
    background: rgba(255, 255, 255, 0.95);
    /* border-radius: 12px; */
    /* padding: 20px; */
    /* margin: 25px 0; */
    /* border-left: 4px solid #803101; */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    transform-origin: top center;
    animation: slideInDown 0.6s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Boutons d'action rapide */
.quick-action-buttons {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.action-btn {
    padding: 10px 20px;
    border: 2px solid #803101;
    background: white;
    color: #803101;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.action-btn:hover {
    background: #803101;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(128, 49, 1, 0.2);
}

.action-btn.active {
    background: #803101;
    color: white;
}

.action-btn i {
    font-size: 1.1rem;
}

/* Animation de pulsation pour attirer l'attention */
@keyframes attentionPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(128, 49, 1, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(128, 49, 1, 0);
    }
}

.dynamic-message:first-child {
    animation: attentionPulse 2s infinite 3s;
}

.message-box {
    display: none;
    align-items: center;
    gap: 20px;
    padding: 15px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid rgba(128, 49, 1, 0.1);
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.3s ease;
}

.message-box.active {
    display: flex;
    opacity: 1;
    transform: scale(1);
    animation: messageAppear 0.5s ease-out;
}

@keyframes messageAppear {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.message-box i {
    font-size: 2.5rem;
    color: #803101;
    min-width: 60px;
    text-align: center;
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.message-box h4 {
    color: #803101;
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 600;
}

.message-box p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Indicateur de changement dynamique */
.message-indicator {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-dot.active {
    background: #803101;
    transform: scale(1.3);
}

/* Animation pour le changement de message */
.message-switch {
    animation: switchMessage 0.5s ease-out;
}

@keyframes switchMessage {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* État hover pour la section dynamique */
.dynamic-message:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(128, 49, 1, 0.15);
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.hero-cta .primary-btn {
    background: #803101;
    color: white;
    /* padding: 18px 35px; */
    font-size: 1.1rem;
    /* font-weight: 600; */
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid #803101;
}

.hero-cta .primary-btn:hover {
    background: #b34700;
    border-color: #b34700;
    border-radius: .50rem;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(128, 49, 1, 0.2);
}

.hero-cta .secondary-btn {
    background: white;
    color: #803101;
    /* padding: 18px 35px; */
    font-size: 1.1rem;
    /* font-weight: 600; */
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid #803101;
}

.hero-cta .secondary-btn:hover {
    background: #803101;
    border-radius: .50rem;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(128, 49, 1, 0.2);
}

/* Image Hero */
.contact-hero-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    position: relative;
}

.contact-hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(128, 49, 1, 0.1), rgba(179, 71, 0, 0.1));
    z-index: 1;
}

.contact-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.8s ease;
    position: relative;
    z-index: 0;
}

.contact-hero-image:hover img {
    transform: scale(1.05);
}

/* Section 2: Formulaire principal */
.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #803101 0%, #b34700 100%);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.05;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h3 {
    font-size: 2.2rem;
    color: #222;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.form-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #803101 0%, #b34700 100%);
    border-radius: 2px;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 25px auto 0;
}

/* Autres styles restent identiques... */

/* Responsive pour la bannière */
@media (max-width: 992px) {
    .contact-hero-content {
        flex-direction: column;
        gap: 50px;
    }

    .contact-hero-text {
        text-align: center;
    }

    .contact-hero-text h1 {
        font-size: 2.8rem;
    }

    .contact-hero-text h2 {
        font-size: 1.5rem;
    }

    .contact-hero-image {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 100px 0 60px;
    }

    .contact-hero-text h1 {
        font-size: 2.2rem;
    }

    .contact-hero-text h2 {
        font-size: 1.3rem;
    }

    .dynamic-message {
        padding: 25px;
    }

    .message-box {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .contact-form-container {
        padding: 40px 30px;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .contact-form-container {
        padding: 30px 20px;
    }

    .form-header h3 {
        font-size: 1.8rem;
    }

    .contact-hero-text h1 {
        font-size: 2rem;
    }
}

/* Styles supplémentaires pour la section formulaire */
.contact-form-main select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23803101' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 45px;
}

.contact-form-main select:focus {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b34700' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
}

/* Animation pour les messages */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#form-messages {
    animation: slideDown 0.4s ease;
}