/*======================================================
  CONTACT HERO
======================================================*/

.contact-hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

}


/*==============================
  HERO IMAGE
==============================*/

.contact-hero .page-hero-image{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

    transform:scale(1.08);

    animation:heroZoom 12s ease forwards;

    z-index:1;

}


/*==============================
  OVERLAY
==============================*/

.contact-hero .page-hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(8,22,16,.88) 0%,
        rgba(20,60,35,.75) 45%,
        rgba(20,60,35,.30) 100%
    );

    z-index:2;

}


/*==============================
  CONTENT
==============================*/

.contact-hero .page-hero-content{

    position:relative;

    z-index:3;

    max-width:720px;

    color:#ffffff;

}

.contact-hero .page-hero-badge{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:12px 24px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(10px);

    border-radius:50px;

    font-size:.95rem;

    font-weight:600;

    margin-bottom:30px;

}

.contact-hero .page-hero-badge i{

    color:#f7941d;

}

.contact-hero h1{

    font-size:clamp(3rem,5vw,5rem);

    line-height:1.1;

    margin-bottom:30px;

    color:#ffffff;

}

.contact-hero p{

    max-width:650px;

    font-size:1.08rem;

    line-height:1.9;

    color:rgba(255,255,255,.90);

    margin-bottom:45px;

}


/*==============================
  BUTTONS
==============================*/

.contact-hero .page-hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.contact-hero .btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    min-width:220px;

}

.contact-hero .btn-outline{

    border:2px solid rgba(255,255,255,.25);

    color:#ffffff;

    background:transparent;

}

.contact-hero .btn-outline:hover{

    background:#ffffff;

    color:#1f5d3a;

}


/*======================================================
 CONTACT HIGHLIGHTS
======================================================*/

.contact-highlights{

    position:relative;

    margin-top:-70px;

    z-index:10;

}

.contact-highlights .highlights-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.contact-highlights .highlight-item{

    display:flex;

    align-items:center;

    gap:18px;

    padding:30px;

    background:#ffffff;

    border-radius:22px;

    box-shadow:0 20px 50px rgba(15,23,42,.08);

    transition:.35s;

}

.contact-highlights .highlight-item:hover{

    transform:translateY(-8px);

}

.contact-highlights .highlight-item i{

    width:65px;

    height:65px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:18px;

    background:rgba(31,93,58,.08);

    color:#1f5d3a;

    font-size:1.6rem;

}

.contact-highlights h4{

    margin-bottom:8px;

    color:#0f172a;

}

.contact-highlights p{

    color:#64748b;

    margin:0;

    line-height:1.6;

}


/*======================================================
 ANIMATION
======================================================*/

@keyframes heroZoom{

    from{

        transform:scale(1.08);

    }

    to{

        transform:scale(1);

    }

}


/*======================================================
 RESPONSIVE
======================================================*/

@media(max-width:1200px){

    .contact-highlights .highlights-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .contact-hero{

        min-height:85vh;

        padding:120px 0 80px;

    }

    .contact-hero h1{

        font-size:2.5rem;

    }

    .contact-hero .page-hero-buttons{

        flex-direction:column;

        align-items:flex-start;

    }

    .contact-highlights{

        margin-top:60px;

    }

    .contact-highlights .highlights-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:576px){

    .contact-hero{

        min-height:75vh;

    }

    .contact-hero h1{

        font-size:2rem;

    }

    .contact-hero p{

        font-size:1rem;

    }



}

/*======================================================
CONTACT SECTION
======================================================*/

.contact-section{

    padding:120px 0;

    background:#fff;

}

.contact-grid{

    display:grid;

    grid-template-columns:380px 1fr;

    gap:60px;

    margin-top:70px;

}

.contact-info{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.info-card{

    display:flex;

    gap:20px;

    padding:28px;

    background:#fff;

    border-radius:20px;

    box-shadow:0 20px 50px rgba(15,23,42,.06);

}

.info-card .icon{

    width:60px;

    height:60px;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(31,93,58,.08);

    color:#1f5d3a;

    font-size:1.4rem;

}

.info-card h3{

    margin-bottom:8px;

}

.info-card a{

    color:#64748b;

    text-decoration:none;

}

.contact-form{

    background:#fff;

    padding:45px;

    border-radius:25px;

    box-shadow:0 20px 60px rgba(15,23,42,.08);

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}

.contact-form .full{

    grid-column:1/-1;

}

.contact-form input,

.contact-form select,

.contact-form textarea{

    width:100%;

    padding:16px;

    border:1px solid #dbe3eb;

    border-radius:14px;

    font-family:inherit;

    outline:none;

}

.contact-form textarea{

    resize:vertical;

}

.contact-form button{

    grid-column:1/-1;

}

/*======================================================
WHY CONTACT
======================================================*/

.why-contact{

    background:#f8fafc;

    padding:120px 0;

}

.why-contact-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:70px;

}

.why-box{

    background:#fff;

    padding:40px 30px;

    text-align:center;

    border-radius:22px;

    transition:.3s;

}

.why-box:hover{

    transform:translateY(-8px);

}

.why-box i{

    font-size:2rem;

    color:#1f5d3a;

    margin-bottom:20px;

}

.why-box p{

    color:#64748b;

}

/*======================================================
FAQ
======================================================*/

.faq{

    padding:120px 0;

}

.faq-container{

    max-width:900px;

    margin:70px auto 0;

}

.faq details{

    background:#fff;

    margin-bottom:20px;

    border-radius:18px;

    padding:25px;

    box-shadow:0 15px 35px rgba(15,23,42,.06);

}

.faq summary{

    cursor:pointer;

    font-weight:600;

    color:#0f172a;

}

.faq p{

    margin-top:20px;

    color:#64748b;

    line-height:1.8;

}

/*======================================================
CTA
======================================================*/

.contact-cta{

    padding:120px 0;

}

.contact-cta-content{

    background:linear-gradient(135deg,#1f5d3a,#2b7a4b);

    color:#fff;

    text-align:center;

    padding:80px;

    border-radius:30px;

}

.contact-cta-content span{

    display:inline-block;

    padding:10px 22px;

    background:rgba(255,255,255,.15);

    border-radius:40px;

    margin-bottom:25px;

}

.contact-cta-content h2{

    font-size:clamp(2.4rem,4vw,4rem);

    margin-bottom:25px;

}

.contact-cta-content p{

    max-width:700px;

    margin:0 auto 40px;

    color:rgba(255,255,255,.9);

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

/*======================================================
RESPONSIVE
======================================================*/

@media(max-width:992px){

    .contact-grid{

        grid-template-columns:1fr;

    }

    .why-contact-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .contact-form{

        grid-template-columns:1fr;

    }

    .why-contact-grid{

        grid-template-columns:1fr;

    }

    .contact-cta-content{

        padding:50px 30px;

    }

}

/*=================================
  FORM INTRO
=================================*/

.form-intro{

    margin-bottom:35px;

}

.form-intro h2{

    margin:20px 0;

    color:#0f172a;

    font-size:2rem;

}

.form-intro p{

    color:#64748b;

    line-height:1.9;

    max-width:650px;

}

/*======================================================
  RESPONSIVE - AJOUT
======================================================*/

@media (max-width:992px){

    .contact-hero .page-hero-content,
    .contact-form,
    .contact-cta-content{

        width:100%;
        max-width:100%;

    }

    .contact-grid{

        gap:40px;

    }

}


@media (max-width:768px){

    .contact-hero{

        padding:130px 0 80px;

    }

    .contact-hero .page-hero-content{

        text-align:center;
        margin:auto;

    }

    .contact-hero .page-hero-badge{

        margin-inline:auto;

    }

    .contact-hero .page-hero-buttons{

        justify-content:center;
        align-items:center;

    }

    .contact-hero .btn{

        width:100%;
        min-width:100%;

    }

    .contact-highlights .highlight-item{

        flex-direction:column;
        text-align:center;

    }

    .contact-info{

        gap:20px;

    }

    .info-card{

        flex-direction:column;
        align-items:center;
        text-align:center;

    }

    .contact-form{

        padding:30px 25px;

    }

    .form-intro{

        text-align:center;

    }

    .form-intro .section-badge{

        margin-inline:auto;

    }

    .contact-cta-content{

        text-align:center;

    }

    .cta-buttons{

        justify-content:center;

    }

}


@media (max-width:576px){

    .contact-hero h1{

        line-height:1.25;

    }

    .contact-form{

        padding:20px;

        border-radius:18px;

    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea{

        font-size:16px;

    }

    .contact-form button{

        width:100%;

    }

    .contact-cta-content{

        padding:35px 20px;

        border-radius:20px;

    }

    .cta-buttons .btn{

        width:100%;

    }

    .info-card .icon{

        margin-inline:auto;

    }

}


/*======================================================
  SÉCURITÉ RESPONSIVE
======================================================*/

.contact-form,
.contact-cta-content,
.info-card{

    overflow:hidden;

}

img,
iframe,
video{

    max-width:100%;
    height:auto;
    display:block;

}

.contact-grid,
.contact-highlights .highlights-grid,
.why-contact-grid{

    width:100%;

}

input,
select,
textarea{

    box-sizing:border-box;

}