/* ================= HEADER CORRIGE ================= */

/* ================= HEADER ================= */

.header {
    background: #ffffff;
    height: 82px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
}

.nav-container {
    width: 92%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo img {
    max-height: 60px;
    width: auto;
}

/* ================= MENU DESKTOP ================= */

nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: #000000;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    white-space: nowrap;
    transition: .3s;
}

nav ul li a:hover {
    color: #268801;
	}

/* BUTTON */
.btn-green {
    background: #218140;
    color: #FCFCFC;
    padding: 10px 22px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
}

.btn-green:hover{
	background: #218140;
    color: #FCFCFC;
	
}

.btn-outline {
    background: transparent;          /* ❗ transparent */
    color: #faba06;                   /* texte jaune */
    padding: 10px 22px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;

    border: 2px solid #faba06;        /* bordure visible */
    transition: all 0.3s ease;
}

/* Hover effect */
.btn-outline:hover {
    background: #faba06;              /* devient plein */
    color: #000;                      /* texte noir */
}


/* ================= MOBILE MENU ================= */

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    /* SHOW HAMBURGER */
    .menu-toggle {
        display: block;
    }

    /* HIDE MENU */
    nav {
        position: absolute;
        top: 82px;
        left: 0;
        width: 100%;
        background: #fff;

        max-height: 0;
        overflow: hidden;

        transition: 0.3s ease;
    }

    /* OPEN MENU */
    nav.active {
        max-height: 500px;
        box-shadow: 0 10px 20px rgba(0,0,0,.1);
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 15px;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        display: block;
        width: 100%;
    }

    /* BUTTON FULL WIDTH */
    .btn-green {
        width: 100%;
        text-align: center;
    }
}


.menu-toggle {
    display: none;
}

@media (max-width: 992px) {

    .menu-toggle {
        display: block;
        font-size: 28px;
        cursor: pointer;
    }

    nav {
        display: none;
        width: 100%;
        background: white;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        padding: 20px;
    }
}



/* ================= GLOBAL ================= */

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ================= HERO ================= */

/* ================= HERO SLIDER ================= */

.hero {
    min-height: 420px;
    position: relative;
    display:flex;
    align-items:center;
    overflow:hidden;
}


/* IMAGES SLIDER */

.hero-slide {
    position:absolute;
    inset:0;

    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;

    opacity:0;
    transform:scale(1.15);

    transition:
    opacity 1.5s ease,
    transform 8s ease;
}


.hero-slide.active {

    opacity:1;

    transform:scale(1);

    animation:
    heroZoom 8s ease forwards;

}



@keyframes heroZoom {

    from {
        transform:scale(1.15);
    }

    to {
        transform:scale(1);
    }

}



/* OVERLAY */

.hero-overlay {

    position:absolute;
    inset:0;

    z-index:1;

    background:linear-gradient(
        90deg,
        rgba(5,31,3,.95),
        rgba(25,65,6,.75) 45%,
        rgba(22,77,6,.35),
        transparent
    );

}



/* CONTENU */

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center; /* CENTRE */
    padding: 20px;
}



/* TEXTE */

.hero-text {
    max-width:820px;
    color:white;
    margin-left:0;
    padding: 0 15px;
}

.hero-text h1 span {
    color:#faba06;
    display:inline-block;

    text-shadow:
        5px 5px 0 #0b3d22,
        12px 12px 20px rgba(0,0,0,.55);
}

@keyframes textAppear {


0% {

    opacity:0;
    transform:translateY(50px);

}


100% {

    opacity:1;
    transform:translateY(0);

}


}



/* TITRE */

.hero-text h1 {

    font-size:48px;
    line-height:1.2;
    font-weight:700;

    margin-bottom:20px;

    animation:
    titleMove 1.4s ease;

}



@keyframes titleMove {


from {

opacity:0;
transform:translateX(-80px);

}


to {

opacity:1;
transform:translateX(0);

}


}



/* PARAGRAPHE */

.hero-text p {

    font-size:22px;

    color:#eee;

    margin-bottom:28px;

    animation:
    paragraphMove 1.8s ease;

}



@keyframes paragraphMove {


from {

opacity:0;
transform:translateX(80px);

}


to {

opacity:1;
transform:translateX(0);

}


}

/* ================= IMAGE FIX ================= */

img {
    max-width: 100%;
    height: auto;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .hero {
        min-height: 100vh;
    }

    .hero-content {
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .hero-text {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 22px;
        line-height: 1.3;
    }

    .hero-text p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .btn-green,
    .btn-outline {
        width: 80%;
        text-align: center;
    }
}

.hero-text {
    width: 100%;
}

/* ================= FEATURES  ================= */


/* ================= FEATURES ================= */

.features{
    padding:60px 0;
    background:#fff;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    align-items:start;
}

.feature{
    text-align:center;
    padding:0 35px;
    position:relative;
}

.feature:not(:last-child)::after{
    content:"";
    position:absolute;
    top:10px;
    right:0;
    width:1px;
    height:170px;
    background:#e6e6e6;
}

/* Icône */

.icon{
    width:74px;
    height:74px;
    margin:0 auto 18px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:30px;
    box-shadow:0 6px 15px rgba(0,0,0,.12);
    transition:.35s;
}

.icon.green{
    background:#0d6b37;
}

.icon.yellow{
    background:#f2b320;
}

/* Animation */

.feature:hover .icon{
    transform:translateY(-6px) scale(1.08);
}

/* Titre */

.feature h3{
    margin-bottom:10px;
    font-size:31px;
    font-weight:700;
    color:#133d2b;
}

/* Texte */

.feature p{
    margin:0;
    font-size:16px;
    line-height:1.6;
    color:#555;
    max-width:220px;
    margin-inline:auto;
}

/* Responsive */

@media(max-width:992px){

    .feature-grid{
        grid-template-columns:repeat(2,1fr);
        gap:40px;
    }

    .feature::after{
        display:none;
    }

}

@media(max-width:600px){

    .feature-grid{
        grid-template-columns:1fr;
    }

}
/* ================= SERVICES CARDS CORRIGE ================= */

.about{
    background:white;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 4px 15px rgba(0,0,0,.10);
    transition:.3s;
	width: 960px;
	text-align: justify;
	}

.about:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 25px rgba(0,0,0,.15);

}



.services{

    background:#f4f8f4;

    padding:35px 0 45px;

}



.cards-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

}



.second-row{

    margin-top:25px;

}



.card{

    background:white;

    border-radius:8px;

    overflow:hidden;

    box-shadow:0 4px 15px rgba(0,0,0,.10);

    transition:.3s;

}



.card:hover{

    transform:translateY(-6px);

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}



.card img{

    width:100%;

    height:125px;

    object-fit:cover;

}



.card-body{

    padding:16px 18px 20px;

}



.card-body h3{

    color:#1a6737;

    font-size:20px;

    line-height:1.3;

    margin-bottom:10px;

}



.card-body p{

    font-size:18px;

    color:#050505;

    line-height:1.4;

    min-height:60px;

    margin-bottom:12px;

}



.card-body a{

    color:#1a6737;

    text-decoration:none;

    font-size:16px;

    font-weight:bold;

}



.card-body a:hover{

    color:var(--yellow);

}



/* ================= MOVEMENT CARD ================= */
.mybotton-btn {
    background: #faba06;
    color: #000;
    padding: 10px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.mybotton-btn a:hover{
	 background: #0C900F;
    color:#FFFFFF;

}



/* CONTAINER */
.about-section {
    width: 92%;
    max-width: 1200px;
    margin: 60px auto;
    display: flex;
    gap: 20px;
    align-items: stretch;
}

/* ABOUT CARD */
.about {
    flex: 2;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,.10);
    transition: .3s;
    padding: 30px;
}

.about:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.card-body h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.card-body p {
    color: #555;
    line-height: 1.6;
    margin: 15px 0;
}

.card-body a {
    color: #196736;
    font-weight: bold;
    text-decoration: none;
}

/* DETAILS CARD */
.details-card {
    flex: 1;
    background: #196736;
    border-radius: 8px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
    text-align: center;
}

.movement-content i {
    font-size: 32px;
    margin-bottom: 15px;
}

.movement-content h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.movement-content p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* BUTTON */
.yellow-btn {
    background: #faba06;
    color: #000;
    padding: 10px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

/* ===================== */
/* 📱 RESPONSIVE MOBILE */
/* ===================== */

@media (max-width: 900px) {
    .about-section {
        flex-direction: column;
    }

    .about,
    .details-card {
        width: 100%;
    }
}







.movement-card{

    background:#196736;

    border-radius:8px;	

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:330px;

}



.movement-content{

    text-align:center;

    padding:25px;

}



.movement-content i{

    font-size:45px;

    color:var(--yellow);

    margin-bottom:15px;

}



.movement-content h2{

    font-size:28px;

    line-height:1.2;

    margin-bottom:15px;

}



.movement-content p{

    font-size:14px;

    line-height:1.6;

    color:#e7e7e7;

    margin-bottom:22px;

}



.yellow-btn{

    display:inline-block;

    background:#faba04;

    color:#098a28;

    padding:11px 25px;

    border-radius:5px;

    font-weight:bold;

    font-size:14px;

    text-decoration:none;

    transition:.3s;

}



.yellow-btn:hover{

    background:#D59F09;

}



/* ================= STATISTICS ================= */
/*================= STATS =================*/

.stats{
    background:#003B24;
    padding:28px 0;
    color:#fff;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.stat{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    padding:10px 30px;
    position:relative;
}

.stat:not(:last-child)::after{
    content:"";
    position:absolute;
    top:10px;
    right:0;
    width:1px;
    height:55px;
    background:rgba(255,255,255,.18);
}

/* Icône */

.stat-icon{
    flex-shrink:0;
}

.stat-icon i{
    color:#F4B223;
    font-size:34px;
}

/* Contenu */

.stat-content{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.stat h2{
    margin:0;
    color:#F4B223;
    font-size:42px;
    font-weight:700;
    line-height:1;
}

.stat p{
    margin-top:4px;
    color:#fff;
    font-size:16px;
    line-height:1.3;
}

/* Hover */

.stat{
    transition:.3s;
}

.stat:hover{
    transform:translateY(-3px);
}

.stat:hover .stat-icon i{
    transform:scale(1.1);
    transition:.3s;
}

/* Responsive */

@media (max-width:992px){

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .stat::after{
        display:none;
    }

}

@media (max-width:600px){

    .stats-grid{
        grid-template-columns:1fr;
    }

    .stat{
        justify-content:flex-start;
    }

}


/* ================= FOOTER CORRIGE ================= */


footer{

    background:#003522;
	border-top:1px solid rgba(255,255,255,.25);
    color:white;

    padding:55px 0 20px;

}



.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr 1.3fr;

    gap:35px;

}



.footer-about img{

    width:55px;

    margin-bottom:15px;

}



.footer-about h3{

    color:white;

    font-size:20px;

    margin-bottom:8px;

}



.footer-about p{

    color:#d8d8d8;

    font-size:14px;

    line-height:1.7;

    margin-bottom:20px;

}



.social-icons{

    display:flex;

    gap:12px;

}



.social-icons a{

    width:36px;

    height:36px;

    border-radius:50%;

    background:var(--green);

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    transition:.3s;

}



.social-icons a:hover{

    background:#fec432;

    color:dark-green;

}




footer h3{

    color:white;

    font-size:17px;

    margin-bottom:18px;

}



footer ul{

    list-style:none;

}



footer ul li{

    margin-bottom:10px;

}



footer ul li a{

    color:#dddddd;

    text-decoration:none;

    font-size:14px;

    transition:.3s;

}



footer ul li a:hover{

    color:white;

    padding-left:5px;

}



.footer-contact p{

    font-size:14px;

    color:#ddd;

    margin-bottom:12px;

}



.footer-contact i{

    color:white;

    margin-right:8px;

}



/* ================= FOOTER BOTTOM ================= */


.copyright{

    border-top:1px solid rgba(255,255,255,.25);
    margin-top:35px;
    padding-top:18px;
    text-align:center;
    justify-content:space-between;
    align-items:center;

    font-size:13px;

    color:#ddd;

}



.copyright a{

    color:white;

    text-decoration:none;

    margin-left:20px;

}



.copyright a:hover{

    color:yellow;

}



/* ================= RESPONSIVE ================= */


@media(max-width:1200px){


    nav ul{

        gap:14px;

    }


    nav ul li a{

        font-size:12px;

    }


    .cards-grid{

        grid-template-columns:repeat(2,1fr);

    }


    .footer-grid{

        grid-template-columns:repeat(3,1fr);

    }


}



@media(max-width:900px){


    .header{

        height:75px;

    }


    nav{

        display:none;

    }


    .feature-grid{

        grid-template-columns:repeat(2,1fr);

        gap:25px;

    }


    .hero{

        min-height:480px;

    }


    .hero-content{

        min-height:480px;

    }


    .hero-text{

        width:100%;

    }


    .hero-text h1{

        font-size:34px;

    }


    .stats-grid{

        grid-template-columns:repeat(2,1fr);

    }


    .footer-grid{

        grid-template-columns:repeat(2,1fr);

    }


}



@media(max-width:600px){


    .container{

        width:92%;

    }


    .logo img {
    width: 580px;
    height: 580px;
}

    .hero-text h1{

        font-size:28px;

    }


    .hero-text p{

        font-size:14px;

    }


    .hero-buttons{

        flex-direction:column;

        align-items:flex-start;

    }


    .feature-grid,

    .cards-grid,

    .stats-grid,

    .footer-grid{

        grid-template-columns:1fr;

    }


    .feature{

        border-right:none;

        border-bottom:20px solid #ddd;

        padding-bottom:25px;

    }


    .feature:last-child{

        border-bottom:none;

    }


    .movement-content h2{

        font-size:24px;

    }


    .copyright{

        flex-direction:column;

        gap:10px;

    }


}


/*FOR-CONTACT*/

.contact-section {
    width: 92%;
    max-width: 900px;
    margin: 60px auto;
    padding: 30px;

    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);

    text-align: center;
}

.contact-section h2 {
    margin-bottom: 10px;
}

.contact-section p {
    margin-bottom: 25px;
    color: #555;
}

/* Form */
.contact-form {
    width: 100%;
}

/* Row */
.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

/* Inputs */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

/* Focus */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #faba06;
    box-shadow: 0 0 5px rgba(250,186,6,0.3);
}

/* Button */
.contact-form button {
    background: #faba06;
    color: #000;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #e0a800;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
}


.contact-info {
    background: linear-gradient(135deg, #003c28, #0a5c3b);
    color: #fff;
    padding: 30px;
    border-radius: 8px;
    width: 100%;
    max-width: 350px;
}

/* Title */
.contact-info h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

/* Each row */
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

/* Icons */
.info-item i {
    font-size: 16px;
    color: #ffffff;
    margin-top: 4px;
}

/* Text */
.info-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .contact-info {
        max-width: 100%;
    }
}