/* ==========================================
BANNIÈRE CONTACT
========================================== */

.contact-hero{
    position:relative;
    min-height:65vh;
    display:flex;
    align-items:center;
    justify-content:center;
    background:url("../images/contact-banner.jpg") center center/cover no-repeat;
}

.contact-hero .overlay{
    position:absolute;
    inset:0;
    background:rgba(8,18,34,.70);
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-subtitle{
    color:#F39C12;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:3px;
}

.hero-title{
    color:#fff;
    font-size:3.3rem;
    font-weight:700;
}

.hero-text{
    color:#fff;
    max-width:750px;
    margin:auto;
    font-size:1.15rem;
}

/* ==========================================
SECTION CONTACT
========================================== */

.contact-section{
    background:#f5f7fa;
    padding:80px 0;
}

.contact-card{
    background:#fff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

/* ==========================================
FORMULAIRE
========================================== */

.form-control{
    border-radius:12px;
    padding:14px;
    border:1px solid #ddd;
    transition:.3s;
}

.form-control:focus{
    border-color:#F39C12;
    box-shadow:0 0 0 .2rem rgba(243,156,18,.25);
}

textarea.form-control{
    resize:none;
}

.btn-warning{
    border-radius:40px;
    padding:14px 35px;
    font-weight:600;
}

/* ==========================================
COORDONNÉES
========================================== */

.contact-card p{
    font-size:1.05rem;
    margin-bottom:18px;
}

.contact-card i{
    width:30px;
}

.social-icons{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.social-icons a{
    width:48px;
    height:48px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#0B3C5D;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.social-icons a:hover{
    background:#F39C12;
    transform:translateY(-4px);
}

/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:991px){

.hero-title{
    font-size:2.4rem;
}

.contact-card{
    padding:30px;
}

}/* Icône du formulaire */

.contact-icon{
    width:90px;
    height:90px;
    margin:0 auto;
    border-radius:50%;
    background:#F39C12;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(243,156,18,.35);
}

.contact-icon i{
    font-size:42px;
    color:#fff;
}