/* 
 * Styles Premium pour la Page Contact
 * Design aligné sur la Home mais sans Section Hero massive.
 */

/* ============================================
   HEADER SIMPLE (REMPLACEMENT HERO)
   ============================================ */
.section-header-simple {
    padding-top: 130px !important;
    /* Compense la navbar fixe (85px) + marge */
    padding-bottom: 60px !important;
    text-align: center !important;
    background: #fbfbfb !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    margin-bottom: 50px !important;
}

.page-title {
    font-size: 3rem !important;
    font-weight: 800 !important;
    color: #1b5e20 !important;
    margin-bottom: 15px !important;
}

.page-subtitle {
    font-size: 1.1rem !important;
    color: #666 !important;
    max-width: 700px !important;
    margin: 0 auto !important;
}

/* ============================================
   CONTACT LAYOUT
   ============================================ */
/* ============================================
   CONTACT LAYOUT RESTYLÉ (SANS MAP)
   ============================================ */
.contact-container {
    max-width: 1200px !important;
    /* Plus large pour élargir le formulaire */
    margin: 0 auto 80px !important;
    padding: 0 20px !important;
}

/* Carte Globale plus Premium */
.contact-wrapper {
    background: #ffffff !important;
    border-radius: 30px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08) !important;
    overflow: hidden !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    display: flex !important;
    flex-wrap: wrap !important;
}

/* Panneau d'informations (Gauche) */
.contact-info-panel {
    background: linear-gradient(135deg, #0d2e14 0%, #1b5e20 100%) !important;
    padding: 50px 40px !important;
    color: #ffffff !important;
    flex: 1 1 350px !important;
    position: relative !important;
    overflow: hidden !important;
}

.contact-info-panel::before {
    content: '' !important;
    position: absolute !important;
    top: -50px !important;
    right: -50px !important;
    width: 200px !important;
    height: 200px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 50% !important;
}

.info-item {
    display: flex !important;
    align-items: flex-start !important;
    margin-bottom: 35px !important;
    position: relative !important;
    z-index: 2 !important;
}

.info-icon {
    width: 50px !important;
    height: 50px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    margin-right: 20px !important;
    color: #FCD116 !important;
    flex-shrink: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.info-content h4 {
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-bottom: 5px !important;
    color: #ffffff !important;
}

.info-content p,
.info-content a {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    text-decoration: none !important;
}

.info-content a:hover {
    color: #FCD116 !important;
}

/* Formulaire (Droite) */
.contact-form-panel {
    flex: 2 1 600px !important;
    /* Priorité plus haute à l'élargissement */
    padding: 50px !important;
    background: #fff !important;
}

.form-label {
    font-weight: 700 !important;
    color: #333 !important;
    margin-bottom: 10px !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.form-control {
    padding: 18px 25px !important;
    border-radius: 15px !important;
    border: 2px solid #f0f0f0 !important;
    background: #fcfcfc !important;
    transition: all 0.3s ease !important;
    font-size: 15px !important;
    color: #333 !important;
}

.form-control:focus {
    background: #fff !important;
    border-color: #1b5e20 !important;
    box-shadow: 0 10px 20px rgba(27, 94, 32, 0.05) !important;
}

.submit-btn {
    background: #CE1126 !important;
    color: white !important;
    border: none !important;
    padding: 20px 50px !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    font-size: 16px !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    width: auto !important;
    min-width: 200px !important;
    justify-content: center !important;
    box-shadow: 0 10px 25px rgba(206, 17, 38, 0.3) !important;
    cursor: pointer !important;
    margin-top: 10px !important;
}

.submit-btn:hover {
    background: #a50e1e !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(206, 17, 38, 0.5) !important;
}