/* ==========================
   GOOGLE FONT
========================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

:root{

    /* Primary */
    --primary:#215229;

    /* Hover / Dark Green */
    --primary-dark:#163A1B;

    /* Secondary (Gold) */
    --secondary:#C8A95B;

    /* Light Green */
    --accent:#5D8C64;

    /* Background */
    --light:#F8FAF8;

    /* Text */
    --dark:#1E293B;

    /* Text Abu */
    --gray:#64748B;

    --white:#FFFFFF;

    --shadow:0 15px 40px rgba(33,82,41,.10);

}

body{

    font-family:'Poppins',sans-serif;
    background:#F7F8F4;
    color:var(--dark);
    line-height:1.8;
}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    max-width:1280px;

    width:92%;

    margin:auto;

}

/* ==========================
   NAVBAR
========================== */

.navbar{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;

    padding:22px 0;

    transition:.35s;

    backdrop-filter:blur(12px);

    background:rgba(255,255,255,.15);

    border-bottom:1px solid rgba(255,255,255,.2);

}

.navbar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo img{

    height:55px;

}

.nav-menu{

    display:flex;

    gap:35px;

}

.nav-menu a{

    color:white;

    font-weight:500;

    transition:.3s;

}

.nav-menu a:hover{

    color:var(--secondary);

}

/* ==========================
   BUTTON
========================== */

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 36px;

    background:linear-gradient(
        135deg,
        #C8A95B,
        #B68D2A
    );

    color:#fff;

    border-radius:50px;

    transition:.35s;

}

.btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 40px rgba(200,169,91,.35);

}

.btn-secondary{

    display:inline-block;

    padding:15px 34px;

    border:2px solid white;

    color:white;

    border-radius:50px;

    margin-left:15px;

    transition:.35s;

}

.btn-secondary:hover{

    background:white;

    color:var(--primary);

}

/* ==========================
   HERO
========================== */

.hero{

    min-height:90vh;
    padding:120px 0 70px;

    display:flex;
    align-items:center;

    background:
    radial-gradient(
        circle at top right,
        rgba(200,169,91,.20),
        transparent 35%
    ),

    linear-gradient(
        135deg,
        #163A1B 0%,
        #215229 50%,
        #2F6B39 100%
    );

    color:#fff;

}

.hero-wrapper{
    display:grid;
    grid-template-columns:55% 45%;
    align-items:center;
    gap:40px;
}

.badge{

    display:inline-block;

    background:rgba(255,255,255,.15);

    border:1px solid rgba(255,255,255,.3);

    padding:10px 22px;

    border-radius:50px;

    margin-bottom:25px;

    font-size:14px;

}

.hero h1{
    max-width: 650px;
    font-size: 44px;
    line-height: 1.15;
}

.hero p{

    font-size:18px;

    color:#ececec;

    max-width:560px;

     margin-top:15px;
    margin-bottom:30px;
    

}

.hero-image{

    display:flex;

    justify-content:flex-end;

}

.hero-image img{

    width:100%;

    max-width:560px;

    border-radius:24px;

    border:8px solid rgba(255, 255, 255, 0.295);

    box-shadow:
        0 30px 80px rgba(0,0,0,.25);

    transition:.4s;

}

.hero-image img:hover{

    transform:translateY(-8px);

    box-shadow:
        0 40px 100px rgba(0,0,0,.35);

}

/* ==========================
   ABOUT
========================== */

.about{

    padding:120px 0;

    background:#FCFDFB;

}

.about-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-image img{

    border-radius:25px;

    box-shadow:var(--shadow);

}

.section-subtitle{

    color:var(--secondary);

    font-weight:600;

    letter-spacing:2px;

}

.about h2{

    font-size:42px;

    margin:15px 0 25px;

    color:var(--primary);

}

.about p{

    margin-bottom:20px;

    color:var(--gray);

}

/* ==========================
   ANIMATION
========================== */

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:992px){

    .hero-wrapper,
    .about-wrapper{

    grid-template-columns:1fr;

    text-align:center;

}

.hero{

    padding-top:130px;

}

.hero h1{
    max-width: 650px;
    font-size: 64px;
    line-height: 1.15;
}


.nav-menu{

    display:none;

}

.hero-button{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

}

.btn-secondary{

    margin-left:0;

    }

}

.hero-stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;

    margin-top:55px;

}

.stat-item{

    background:rgba(255,255,255,.10);

    border:1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(12px);

    border-radius:18px;

    padding:22px 18px;

    text-align:center;

}

.stat-item h3{

    font-size:34px;

    color:var(--secondary);

}

.stat-item span{

    color:#ddd;

    font-size:14px;

}

.hero-image{

    position:relative;

}

.floating-card{

    position:absolute;

    left:20px;

    bottom:25px;

    background:#fff;

    border-radius:20px;

    padding:18px 22px;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.floating-card i{

    width:55px;

    height:55px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:var(--secondary);

    color:white;

    font-size:22px;

}

.floating-card strong{

    color:var(--primary);

}

.floating-card p{

    color:#777;

    margin-top:5px;

    font-size:14px;

}



.hero-content{

    max-width:620px;

}

/*==================================
WHY US
==================================*/

.why-us{

    padding:120px 0;

   background:#F5F8F3;
}

.section-header{

    max-width:700px;

    margin:0 auto 70px;

    text-align:center;

}

.section-header h2{

    font-size:46px;

    color:#215229;

    margin:15px 0;

    line-height:1.3;

}

.section-header p{

    color:#666;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.why-card{

    background:#fff;

    padding:40px 35px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

    transition:.35s;

    border:1px solid #eee;

}

.why-card:hover{

    transform:translateY(-12px);

    border-color:#C8A95B;

    box-shadow:0 25px 70px rgba(33,82,41,.12);

}

.icon{

    width:75px;
    height:75px;

    border-radius:20px;

    background:linear-gradient(
        135deg,
        #215229,
        #2F6B39
    );

    display:flex;
    justify-content:center;
    align-items:center;

    margin-bottom:25px;

}

.icon i{

    color:#fff;

    font-size:30px;

}

.why-card h3{

    color:#215229;

    margin-bottom:15px;

    font-size:24px;

}

.why-card p{

    color:#666;

    font-size:15px;

    line-height:1.8;

}

/*==================================
PROJECT
==================================*/

.project{

    padding:120px 0;

    background:#fff;

}

.project-card{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:60px;

    align-items:center;

    margin-top:60px;

}

.project-image{

    position:relative;

}

.project-image img{

    width:100%;

    border-radius:24px;

    display:block;

    box-shadow:0 30px 80px rgba(0,0,0,.12);

}

.project-status{

    position:absolute;

    top:25px;

    left:25px;

    background:#215229;

    color:#fff;

    padding:10px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

}

.project-category{

    color:#C8A95B;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:2px;

}

.project-content h3{

    font-size:42px;

    color:#215229;

    margin:15px 0 25px;

}

.project-content p{

    color:#666;

    margin-bottom:35px;

}

.project-info{

    display:flex;

    gap:60px;

    margin-bottom:40px;

}

.project-info small{

    display:block;

    color:#888;

    margin-bottom:8px;

}

.project-info strong{

    color:#215229;

    font-size:22px;

}

.project-button{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.btn-outline-dark{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border:2px solid #215229;

    color:#215229;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.btn-outline-dark:hover{

    background:#215229;

    color:#fff;

}

/*==================================
PROJECT
==================================*/

.project{

    padding:120px 0;

    background:#fff;

}

.project-card{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:60px;

    align-items:center;

    margin-top:60px;

}

.project-image{

    position:relative;

}

.project-image img{

    width:100%;

    border-radius:24px;

    display:block;

    box-shadow:0 30px 80px rgba(0,0,0,.12);

}

.project-status{

    position:absolute;

    top:25px;

    left:25px;

    background:#215229;

    color:#fff;

    padding:10px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

}

.project-category{

    color:#C8A95B;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:2px;

}

.project-content h3{

    font-size:42px;

    color:#215229;

    margin:15px 0 25px;

}

.project-content p{

    color:#666;

    margin-bottom:35px;

}

.project-info{

    display:flex;

    gap:60px;

    margin-bottom:40px;

}

.project-info small{

    display:block;

    color:#888;

    margin-bottom:8px;

}

.project-info strong{

    color:#215229;

    font-size:22px;

}

.project-button{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.btn-outline-dark{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border:2px solid #215229;

    color:#215229;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.btn-outline-dark:hover{

    background:#215229;

    color:#fff;

}

/*==================================
ARTIKEL
==================================*/

.article{

    padding:120px 0;

    background:#F7F8F4;

}

.article-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.article-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.article-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.article-image{

    overflow:hidden;

}

.article-image img{

    width:100%;

    height:240px;

    object-fit:cover;

    transition:.5s;

}

.article-card:hover img{

    transform:scale(1.08);

}

.article-content{

    padding:30px;

}

.article-content span{

    display:inline-block;

    color:#C8A95B;

    font-size:14px;

    margin-bottom:15px;

    font-weight:600;

}

.article-content h3{

    color:#215229;

    font-size:20px;

    margin-bottom:15px;

    line-height:1.4;

}

.article-content p{

    color:#666;

    margin-bottom:25px;

    line-height:1.8;

}

.article-content a{

    color:#215229;

    font-weight:600;

    transition:.3s;

}

.article-content a:hover{

    color:#C8A95B;

}

.article-button{

    margin-top:60px;

    text-align:center;

}

.article-grid{

    grid-template-columns:repeat(2,1fr);

}

@media(max-width:768px){

.article-grid{

    grid-template-columns:1fr;

}

}

/*==================================
CTA
==================================*/

.cta{

    padding:120px 0;

    background:#F7F8F4;

}

.cta-box{

    background:linear-gradient(
        135deg,
        #215229,
        #2F6B39
    );

    border-radius:30px;

    padding:70px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

    color:white;

    overflow:hidden;

    position:relative;

}

.cta-box::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    top:-120px;

    right:-120px;

}

.cta-content{

    max-width:650px;

}

.cta-content h2{

    font-size:42px;

    margin:15px 0 20px;

    line-height:1.3;

}

.cta-content p{

    color:rgba(255,255,255,.85);

}

.cta-button{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.btn-white{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    background:white;

    color:#215229;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.btn-white:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 40px rgba(0,0,0,.2);

}

@media(max-width:992px){

.cta-box{

    flex-direction:column;

    text-align:center;

    padding:50px 35px;

}

}


/* ===========================
   FOOTER
=========================== */

.footer{
    background:#215229;
    color:#fff;
    padding:70px 8%;
}

/* Grid 4 Kolom */
.footer-container{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.3fr;
    gap:60px;
    align-items:flex-start;
}

.footer-logo{
    height:55px;
    margin-bottom:20px;
}

.footer h3{
    font-size:28px;
    margin-bottom:15px;
}

.footer h4{
    font-size:18px;
    margin-bottom:20px;
    color:#D4AF37;
}

.footer p{
    color:#CBD5E1;
    line-height:1.8;
}

.footer ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer ul li{
    margin-bottom:12px;
}

.footer ul li a{
    color:#CBD5E1;
    text-decoration:none;
    transition:.3s;
}

.footer ul li a:hover{
    color:#D4AF37;
}

.footer-social{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.footer-social a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;

    background:#ffffff;     /* Lingkaran putih */
    color:#0F172A;          /* Icon hitam/navy */

    border-radius:50%;
    text-decoration:none;

    transition:all .3s ease;
}

.footer-social a i{
    font-size:18px;
}

.footer-social a:hover{
    background:#D4AF37;     /* Gold */
    color:#0F172A;
    transform:translateY(-3px);
}

.footer-bottom{
    margin-top:60px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.15);

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-bottom-menu{
    display:flex;
    gap:25px;
}

.footer-bottom-menu a{
    color:#CBD5E1;
    text-decoration:none;
}

.footer-bottom-menu a:hover{
    color:#D4AF37;
}

@media(max-width:992px){

.footer-container{
    grid-template-columns:1fr;
    gap:40px;
}

.footer-bottom{
    flex-direction:column;
    gap:20px;
    text-align:center;
}

}

/* ==================================================
   RESPONSIVE MOBILE & TABLET
================================================== */

/* Tablet */
@media (max-width: 992px){

    .container{
        width:90%;
    }

    /* Navbar */
    .nav-menu{
        display:none;
    }

    /* Hero */
    .hero{
        min-height:auto;
        padding:140px 0 80px;
    }

    .hero-wrapper{
        grid-template-columns:1fr;
        text-align:center;
        gap:50px;
    }

    .hero-content{
        max-width:100%;
    }

    .hero h1{
        font-size:42px;
    }

    .hero p{
        max-width:100%;
        font-size:16px;
    }

    .hero-button{
        display:flex;
        justify-content:center;
        flex-wrap:wrap;
        gap:15px;
    }

    .hero-image{
        justify-content:center;
    }

    .hero-image img{
        max-width:500px;
    }

    .hero-stats{
        grid-template-columns:repeat(2,1fr);
    }

    /* About */

    .about{
        padding:80px 0;
    }

    .about-wrapper{
        grid-template-columns:1fr;
        gap:50px;
    }

    .about-content{
        text-align:center;
    }

    /* Why */

    .why-us{
        padding:80px 0;
    }

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    /* Project */

    .project{
        padding:80px 0;
    }

    .project-card{
        grid-template-columns:1fr;
        gap:40px;
    }

    .project-content{
        text-align:center;
    }

    .project-info{
        justify-content:center;
    }

    .project-button{
        justify-content:center;
    }

    /* Artikel */

    .article{
        padding:80px 0;
    }

    .article-grid{
        grid-template-columns:repeat(2,1fr);
    }

    /* CTA */

    .cta{
        padding:80px 0;
    }

    .cta-box{
        flex-direction:column;
        text-align:center;
        padding:50px 35px;
    }

    .cta-button{
        justify-content:center;
    }

    /* Footer */

    .footer-container{
        grid-template-columns:repeat(2,1fr);
        gap:40px;
    }

}

/* ==================================================
   MOBILE
================================================== */

@media (max-width:576px){

    .container{
        width:92%;
    }

    section{
        overflow:hidden;
    }

    .hero{
        padding:120px 0 60px;
    }

    .hero h1{
        font-size:32px;
        line-height:1.3;
    }

    .hero p{
        font-size:15px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-white,
    .btn-outline-dark{
        width:100%;
        justify-content:center;
        margin:0;
    }

    .hero-stats{
        grid-template-columns:1fr;
    }

    .about h2,
    .section-header h2,
    .project-content h3,
    .cta-content h2{
        font-size:28px;
    }

    .why-grid{
        grid-template-columns:1fr;
    }

    .article-grid{
        grid-template-columns:1fr;
    }

    .project-info{
        flex-direction:column;
        gap:20px;
        text-align:center;
    }

    .footer{
        padding:60px 20px 30px;
    }

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-social{
        justify-content:center;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
        gap:15px;
    }

    .footer-bottom-menu{
        justify-content:center;
        flex-wrap:wrap;
        gap:15px;
    }

}

/* ==========================
   HAMBURGER
========================== */

.hamburger{

    display:none;

    width:45px;

    height:45px;

    cursor:pointer;

    position:relative;

    z-index:1001;

}

.hamburger span{

    position:absolute;

    width:28px;

    height:3px;

    background:#fff;

    border-radius:10px;

    left:8px;

    transition:.35s;

}

.hamburger span:nth-child(1){

    top:12px;

}

.hamburger span:nth-child(2){

    top:21px;

}

.hamburger span:nth-child(3){

    top:30px;

}

/* Animasi X */

.hamburger.active span:nth-child(1){

    transform:rotate(45deg);

    top:21px;

}

.hamburger.active span:nth-child(2){

    opacity:0;

}

.hamburger.active span:nth-child(3){

    transform:rotate(-45deg);

    top:21px;

}

@media (max-width:992px){

.nav-menu{

    position:fixed;

    top:0;

    right:-100%;

    width:280px;

    height:100vh;

    background:#215229;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:35px;

    transition:.4s;

    z-index:1000;

    box-shadow:-10px 0 30px rgba(0,0,0,.2);

}

.nav-menu.active{

    right:0;

}

.nav-menu a{

    font-size:18px;

    color:#fff;

}

.hamburger{

    display:block;

}

}

/* Navbar Default (di Hero) */
.navbar{

    position:fixed;
    top:0;
    left:0;

    width:100%;

    z-index:999;

    padding:20px 0;

    transition:.35s ease;

    background:rgba(33,82,41,.20);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.08);

}

/* Saat Scroll */

.navbar.scrolled{

    background:#ffffff;

    backdrop-filter:none;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    border-bottom:none;

}

/* Hero */

.nav-menu a{

    color:#fff;

}

/* Setelah Scroll */

.navbar.scrolled .nav-menu a{

    color:#215229;

}

.navbar.scrolled .nav-menu a:hover{

    color:var(--secondary);

}

.logo{

    position:relative;

}

.logo img{

    height:55px;

}

.logo-color{

    display:none;

}

.navbar.scrolled .logo-white{

    display:none;

}

.navbar.scrolled .logo-color{

    display:block;

}

.navbar.scrolled .btn-primary{

    background:#215229;

    color:#fff;

}

/*==============================
FLOATING WA
==============================*/

.wa-floating{

    position:fixed;

    right:30px;

    bottom:30px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    cursor:pointer;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

    z-index:9999;

    transition:.3s;

}

.wa-floating:hover{

    transform:scale(1.1);

}

/*==============================
POPUP
==============================*/

.wa-popup{

    position:fixed;

    right:30px;

    bottom:110px;

    width:360px;

    background:#fff;

    border-radius:20px;

    box-shadow:0 25px 70px rgba(0,0,0,.15);

    overflow:hidden;

    display:none;

    z-index:9999;

}

.popup-header{

    background:#215229;

    color:#fff;

    padding:18px 20px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.popup-header button{

    background:none;

    border:none;

    color:#fff;

    font-size:28px;

    cursor:pointer;

}

.popup-body{

    padding:20px;

}

.popup-body input,
.popup-body select,
.popup-body textarea{

    width:100%;

    padding:14px;

    margin-bottom:15px;

    border:1px solid #ddd;

    border-radius:10px;

    font-family:Poppins;

}

.popup-body button{

    width:100%;

    padding:15px;

    border:none;

    border-radius:10px;

    background:#25D366;

    color:#fff;

    font-size:16px;

    cursor:pointer;

    font-weight:600;

}

/*==================================
RESPONSIVE WHATSAPP BUTTON
==================================*/

@media (max-width:480px){

    .wa-floating{

        width:50px;
        height:50px;

        right:15px;
        bottom:15px;

        font-size:24px;

    }

}

.navbar.scrolled .hamburger span{

    background:var(--primary);

}

/* Default (Hero) */
.nav-menu a{

    color:#fff;

    font-weight:500;

    transition:.3s;

}

/* Hover di Hero */
.nav-menu a:hover{

    color:var(--secondary);

}

/* Navbar scroll normal */
.navbar.scrolled .nav-menu a{
        
}

/* Saat menu mobile terbuka */
.nav-menu.active a{
    color:#fff;
}

/* Hover Saat Scroll */
.navbar.scrolled .nav-menu a:hover{

    color:var(--secondary);

}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 180px;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,.15);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .3s;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    background: #f5f5f5;
}

/* Hover buka dropdown */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}   

ul {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}