/* =====================================
   RESET
===================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#07110C;
    color:#fff;
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

button{
    border:none;
    cursor:pointer;
    font-family:inherit;
}

/* =====================================
   VARIABLES
===================================== */

:root{

    --primary:#7CB342;
    --primary-dark:#5f8f29;

    --dark:#07110C;
    --dark-2:#0D1B12;
    --dark-3:#102116;

    --text:#ffffff;
    --muted:#bcc7be;

    --border:#1c2f22;

    --container:1400px;
}

/* =====================================
   GLOBAL
===================================== */

.container{
    width:min(95%, var(--container));
    margin:auto;
}

.section-heading{
    text-align:center;
    margin-bottom:50px;
}

.section-heading h2{
    font-family:'Oswald',sans-serif;
    font-size:42px;
    letter-spacing:1px;
    margin-bottom:10px;
}

.section-heading p{
    color:var(--muted);
}

.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:var(--primary);
    color:#fff;
    padding:15px 28px;
    font-weight:600;
    transition:.3s;
}

.btn-primary:hover{
    background:var(--primary-dark);
}

.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:1px solid #fff;
    color:#fff;
    padding:15px 28px;
    transition:.3s;
}

.btn-secondary:hover{
    background:#fff;
    color:#000;
}

/* =====================================
   TOP BAR
===================================== */

.top-bar{
    background:#040906;
    border-bottom:1px solid var(--border);
    font-size:13px;
}

.top-bar-inner{
    min-height:42px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.top-left,
.top-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.top-bar span{
    display:flex;
    align-items:center;
    gap:7px;
    color:#d7ddd8;
}

.top-bar svg{
    width:14px;
    height:14px;
    color:var(--primary);
}

.report-btn{
    background:#c69c2f;
    color:#111;
    padding:8px 14px;
    font-size:12px;
    font-weight:700;
}

/* =====================================
   HEADER
===================================== */

.header{
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 3px 10px rgba(0,0,0,.15);
}

.mobile-toggle.open {
    transform: rotate(90deg);
    transition: 0.3s ease;
}

.nav-wrapper{
    min-height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}



.logo-placeholder{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#FFF;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:11px;
    font-weight:700;
}

.logo-text h2{
    font-family:'Oswald',sans-serif;
    color:#18391d;
    line-height:1;
}

.logo-text span{
    color:#18391d;
    font-size:13px;
    font-weight:700;
}

.nav-links{
    display:flex;
    gap:35px;
}

.nav-links a{
    color:#111;
    font-weight:600;
    font-size:14px;
    transition:.3s;
}

.nav-links a:hover{
    color:var(--primary);
}

.join-btn{
    background:#1f5b2b;
    color:#fff;
    padding:14px 22px;
    font-weight:700;
}

.mobile-toggle{
    display:none;
    background:none;
}

.mobile-toggle svg{
    width:28px;
    height:28px;
}

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

.hero{
    position:relative;
    min-height:700px;
    background:url("../assets/hero/hero-placeholder.jpg") center center/cover no-repeat;
    background-position: 80% 20%;
}

@media (max-width: 576px){
    .hero{
        background-position: 66% 10%;
    }
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.hero-content{
    position:relative;
    z-index:2;
    min-height:700px;
    display:grid;
    grid-template-columns:1.2fr 420px;
    align-items:center;
    gap:40px;
}

.hero-left{
    max-width:760px;
}

.hero-left h1{
    font-family:'Oswald',sans-serif;
    font-size:95px;
    line-height:.95;
    margin-bottom:20px;
}

.hero-left h1 span{
    display:block;
    color:var(--primary);
    font-size:72px;
}

.hero-left h3{
    font-size:30px;
    margin-bottom:20px;
}

.hero-left p{
    color:#d9ddd9;
    max-width:650px;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:15px;
}

.hero-features{
    background:rgba(6,17,12,.88);
    border:1px solid var(--border);
    backdrop-filter:blur(10px);
}

.feature-item{
    display:flex;
    gap:16px;
    padding:24px;
    border-bottom:1px solid var(--border);
}

.feature-item:last-child{
    border-bottom:none;
}

.feature-item svg{
    width:22px;
    height:22px;
    color:var(--primary);
    flex-shrink:0;
}

.feature-item h4{
    font-size:14px;
    margin-bottom:5px;
}

.feature-item p{
    font-size:13px;
    color:#c4cdc6;
}

/* =====================================
   ABOUT
===================================== */

.about-section{
    background:#0a1710;
}

.about-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
}

.about-card{
    padding:45px;
    border:1px solid var(--border);
}

.about-card h3{
    font-family:'Oswald',sans-serif;
    margin-bottom:20px;
    font-size:32px;
}

.about-card p{
    line-height:1.8;
    color:#cad0cb;
}

.about-card a{
    display:inline-block;
    margin-top:25px;
    color:var(--primary);
    font-weight:700;
}

.card-icon{
    margin-bottom:20px;
}

.card-icon svg{
    width:34px;
    height:34px;
    color:var(--primary);
}

/* =====================================
   OPERATIONS
===================================== */

.operations{
    background:#fff;
    color:#111;
    padding:90px 0;
}

.operations-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.operation-card{
    border:1px solid #ddd;
    background:#fff;
    transition:.35s;
    overflow:hidden;
}

.operation-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.operation-card img{
    height:180px;
    object-fit:cover;
}

.operation-content{
    padding:20px;
}

.operation-content svg{
    width:24px;
    height:24px;
    color:var(--primary);
    margin-bottom:10px;
}

.operation-content h4{
    font-size:15px;
    margin-bottom:10px;
}

.operation-content p{
    font-size:14px;
    color:#666;
    line-height:1.6;
}

/* =====================================
   IMPACT
===================================== */

.impact{
    background:#08140d;
    padding:55px 0;
}

.impact-grid{
    display:grid;
    grid-template-columns:2fr repeat(5,1fr);
    gap:20px;
    align-items:center;
}

.impact-intro h3{
    font-family:'Oswald',sans-serif;
    font-size:34px;
    margin-bottom:15px;
}

.impact-intro p{
    color:#c2ccc3;
    margin-bottom:20px;
}

.impact-btn{
    display:inline-block;
    border:1px solid var(--primary);
    padding:12px 22px;
}

.stat{
    text-align:center;
}

.stat h2{
    font-size:42px;
    color:var(--primary);
    margin-bottom:8px;
}

.stat p{
    font-size:14px;
    color:#d2d8d3;
}

/* =====================================
   FOOTER
===================================== */

.footer{
    background:#050a07;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr 1.2fr;
    gap:40px;
    padding:80px 0;
}

.footer-logo{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#102116;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
}

.footer-brand h3{
    font-family:'Oswald',sans-serif;
    margin-bottom:10px;
}

.footer-brand p{
    color:#b9c1bb;
}

.footer h4{
    margin-bottom:20px;
    color:#fff;
}

.footer ul{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.footer ul a{
    color:#bcc6be;
    transition:.3s;
}

.footer ul a:hover{
    color:var(--primary);
}

.newsletter{
    display:flex;
    margin-top:20px;
}

.newsletter input{
    flex:1;
    border:none;
    padding:14px;
    outline:none;
}

.newsletter button{
    background:var(--primary);
    color:#fff;
    padding:0 18px;
    font-weight:700;
}

.socials{
    display:flex;
    gap:14px;
    margin-top:25px;
}

.socials a{
    width:40px;
    height:40px;
    border:1px solid var(--border);
    display:flex;
    align-items:center;
    justify-content:center;
}

.socials svg{
    width:18px;
    height:18px;
}

.footer-bottom{
    border-top:1px solid var(--border);
}

.footer-bottom .container{
    min-height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.footer-bottom p{
    color:#9eaba0;
    text-align:center;
}

.feature-item:hover {
  background-color: #3c5b1b;
}

.about-card.show:hover {
  background-color: #3c5b1b;
}


.operation-card.show:hover {
  background-color: #ffdf92;
}


.impact-btn:hover {
  background-color: #7cb342;
}