*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f5f5f5;
    overflow-x:hidden;
}

.container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* =========================
   HEADER
========================= */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#0f172a;
    z-index:1000;
    box-shadow:0 4px 15px rgba(0,0,0,.25);
}

.navbar{
    padding:15px 0;
}

.navbar-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* =========================
   LOGO
========================= */

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    width:55px;
    height:55px;
    object-fit:contain;
}

.logo-text{
    color:white;
    line-height:1.1;
    font-size:22px;
    font-weight:700;
}

/* Desktop */
.desktop-break{
    display:inline;
}

/* Tablet & HP */
@media(max-width:992px){

    .desktop-break{
        display:none;
    }

    .logo-text{
        white-space:nowrap;
    }

}

/* =========================
   MENU DESKTOP
========================= */

.menu{
    display:flex;
    list-style:none;
    gap:25px;
}

.menu li{
    position:relative;
}

.menu a{
    color:white;
    text-decoration:none;
    font-size:16px;
    font-weight:500;
    padding:8px 0;
    display:block;
    position:relative;
}

.menu a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:3px;
    background:#f97316;
    border-radius:50px;
    transition:.35s;
}

.menu a:hover::after{
    width:100%;
}

/* =========================
   DROPDOWN
========================= */

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;

    background:white;

    min-width:220px;

    list-style:none;

    padding:10px 0;

    border-radius:12px;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

    opacity:0;
    visibility:hidden;

    transform:translateY(10px);

    transition:.3s;
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu a{
    color:#333;
    padding:12px 20px;
}

.dropdown-menu a:hover{
    background:#f5f5f5;
}

/* =========================
   SUBMENU
========================= */

.submenu{
    position:absolute;

    left:100%;
    top:0;

    background:white;

    min-width:250px;

    list-style:none;

    padding:10px 0;

    border-radius:12px;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

    opacity:0;
    visibility:hidden;

    transform:translateX(10px);

    transition:.3s;
}

.dropdown-sub:hover .submenu{
    opacity:1;
    visibility:visible;
    transform:translateX(0);
}

/* =========================
   HAMBURGER
========================= */

.hamburger{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
    z-index:9999;
}

.hamburger span{
    width:30px;
    height:3px;
    background:white;
    border-radius:10px;
    transition:.3s;
}

/* ANIMASI X */

.hamburger.active span:nth-child(1){
    transform:rotate(45deg) translate(6px,6px);
}

.hamburger.active span:nth-child(2){
    opacity:0;
}

.hamburger.active span:nth-child(3){
    transform:rotate(-45deg) translate(6px,-6px);
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .hamburger{
        display:flex;
    }

    .menu{

        position:fixed;

        top:85px;
        right:-100%;

        width:300px;
        height:calc(100vh - 85px);

        background:#0f172a;

        flex-direction:column;

        gap:0;

        padding:20px;

        overflow-y:auto;

        transition:.4s ease;
    }

    .menu.active{
        right:0;
    }

    .menu li{
        width:100%;
    }

    .menu a{
        width:100%;
        padding:15px 10px;
    }

    .dropdown-menu,
    .submenu{

        display:none;

        position:static;

        opacity:1;
        visibility:visible;

        transform:none;

        background:#1e293b;

        border-radius:10px;

        box-shadow:none;

        margin-top:5px;
    }

    .dropdown.active .dropdown-menu{
        display:block;
    }

    .dropdown-sub.active .submenu{
        display:block;
    }

    .dropdown-menu a,
    .submenu a{
        color:white;
        padding-left:20px;
    }

    .logo img{
        width:45px;
        height:45px;
    }

    .logo-text{
        font-size:15px;
    }
}



/* ===================================
   LOADER
=================================== */

#loader{

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:white;

display:flex;

justify-content:center;
align-items:center;

z-index:99999;

transition:opacity .8s ease,
visibility .8s ease;
}

.loader-container{

position:relative;

width:180px;
height:180px;

display:flex;

justify-content:center;
align-items:center;
}

/* Logo */

.loader-logo{

width:90px;
height:90px;

object-fit:contain;

z-index:10;
}

/* Lingkaran Biru */

.spinner-blue{

position:absolute;

width:150px;
height:150px;

border-radius:50%;

border:6px solid transparent;

border-top-color:#2563eb;

animation:
spin 2s linear infinite;
}

/* Lingkaran Oranye */

.spinner-orange{

position:absolute;

width:120px;
height:120px;

border-radius:50%;

border:6px solid transparent;

border-bottom-color:#f97316;

animation:
spin-reverse 1.5s linear infinite;
}
@keyframes spin{

0%{
transform:rotate(0deg);
}

100%{
transform:rotate(360deg);
}

}

@keyframes spin-reverse{

0%{
transform:rotate(360deg);
}

100%{
transform:rotate(0deg);
}

}



/* =======================
   HERO
======================= */

.hero{

    position:relative;

    height:100vh;

    background-image:url('../images/hero1.jpeg');

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    overflow:hidden;

    transition:
    background-image 1s ease-in-out;

}

.overlay{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:
    rgba(0,0,0,.55);

}

.hero-content{

    position:relative;

    z-index:2;

    color:white;

    padding:20px;

}

.hero-content h1{

    font-size:65px;

    margin-bottom:20px;

    font-weight:700;

}

.hero-content p{

    font-size:22px;

    max-width:700px;

    margin:auto;

    line-height:1.7;

}

.btn{

    display:inline-block;

    padding:15px 35px;

    margin-top:25px;

    background:#16a34a;

    color:white;

    text-decoration:none;

    font-weight:600;

    border-radius:12px;

    transition:
    transform .3s ease,
    box-shadow .3s ease,
    background .3s ease;

    box-shadow:
    0 8px 20px rgba(22,163,74,.25);

}

.btn:hover{

    transform:
    translateY(-5px)
    scale(1.03);

    box-shadow:
    0 15px 35px rgba(22,163,74,.35);

    background:#15803d;

}

.btn:active{

    transform:
    translateY(-1px)
    scale(.98);

}

.btn{

    position:relative;

    overflow:hidden;

}

.btn::before{

    content:"";

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.3),
        transparent
    );

    transition:.6s;

}

.btn:hover::before{

    left:100%;

}

/* RESPONSIVE */

@media(max-width:768px){

    .hero-content h1{

        font-size:48px;

        line-height:1.1;

    }

    .hero-content p{

        font-size:20px;

    }

}











/* ==========================
   TENTANG GOTTRASH
========================== */

.tentang-gottrash{
    padding:100px 20px;
    background:#ffffff;
}

.section-title{
    text-align:center;
    max-width:900px;
    margin:auto;
    margin-bottom:60px;
}

.section-title span{
    color:#16a34a;
    font-weight:700;
    letter-spacing:2px;
}

.section-title h2{
    font-size:42px;
    color:#0f172a;
    margin:15px 0;
}

.section-title p{
    color:#64748b;
    line-height:1.8;
}

.tentang-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.tentang-image img{
    width:100%;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.tentang-text h3{
    font-size:34px;
    color:#0f172a;
    margin-bottom:20px;
}

.tentang-text p{
    color:#475569;
    line-height:1.9;
    margin-bottom:20px;
}

.visi-misi{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:25px;

    margin-top:50px;

}

.visi,
.misi{

    background:#ffffff;

    padding:30px;

    border-radius:20px;

    border-top:5px solid #16a34a;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    transition:.3s;

}

.visi:hover,
.misi:hover{

    transform:translateY(-8px);

}


.visi,
.misi{
    background:#f8fafc;
    padding:25px;
    border-radius:20px;
    border-left:5px solid #16a34a;
}

.visi h4,
.misi h4{
    color:#16a34a;
    margin-bottom:15px;
}

.misi ul{
    padding-left:20px;
}

.misi li{
    margin-bottom:10px;
    color:#475569;
}

@media(max-width:768px){

    .tentang-content{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:32px;
    }

    .tentang-text h3{
        font-size:28px;
    }

    .visi-misi{
        grid-template-columns:1fr;
    }

}











/* ==========================
   BIDANG USAHA
========================== */

.bidang-usaha{

    padding:100px 0;

    background:#f8fafc;

}

.section-header{

    text-align:center;

    max-width:850px;

    margin:auto;

    margin-bottom:60px;

}

.section-header span{

    color:#16a34a;

    font-weight:700;

    letter-spacing:2px;

}

.section-header h2{

    font-size:42px;

    color:#0f172a;

    margin:15px 0;

}

.section-header p{

    color:#64748b;

    line-height:1.8;

}

.usaha-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

}

.usaha-card{

    background:white;

    padding:40px 30px;

    border-radius:25px;

    text-align:center;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    transition:.4s;

    border-top:5px solid transparent;

}

.usaha-card:hover{

    transform:
    translateY(-10px);

    border-top:5px solid #16a34a;

    box-shadow:
    0 20px 40px rgba(0,0,0,.12);

}

.usaha-card i{

    font-size:55px;

    color:#16a34a;

    margin-bottom:20px;

}

.usaha-card h3{

    color:#0f172a;

    margin-bottom:15px;

    font-size:24px;

}

.usaha-card p{

    color:#64748b;

    line-height:1.8;

}

@media(max-width:768px){

    .section-header h2{

        font-size:32px;

    }

}








/* ==========================
   SISTEM TERPADU
========================== */

.sistem-terpadu{

    padding:100px 0;

    background:#ffffff;

}

.flow-container{

    margin-top:60px;

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    align-items:center;

    gap:15px;

}

.flow-item{

    width:180px;

    min-height:180px;

    background:white;

    border-radius:25px;

    padding:25px;

    text-align:center;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    transition:.3s;

}

.flow-item:hover{

    transform:
    translateY(-10px);

}

.flow-item i{

    font-size:55px;

    color:#16a34a;

    margin-bottom:15px;

}

.flow-item h3{

    font-size:18px;

    color:#0f172a;

    line-height:1.5;

}

.flow-arrow{

    font-size:30px;

    color:#16a34a;

}

@media(max-width:768px){

    .flow-container{

        flex-direction:column;

    }

    .flow-arrow{

        transform:rotate(90deg);

    }

}






/* ==========================
   PRODUK UNGGULAN
========================== */

.produk{

    padding:100px 0;

    background:#f8fafc;

}

.produk-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

    margin-top:60px;

}

.produk-card{

    background:white;

    border-radius:25px;

    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    transition:.3s;

}

.produk-card:hover{

    transform:translateY(-10px);

}

.produk-card img{

    width:100%;

    height:250px;

    object-fit:cover;

}

.produk-content{

    padding:25px;

}

.produk-content h3{

    color:#0f172a;

    margin-bottom:10px;

}

.produk-content p{

    color:#64748b;

    line-height:1.7;

    margin-bottom:20px;

}

.produk-btn{

    display:inline-block;

    background:#16a34a;

    color:white;

    text-decoration:none;

    padding:10px 20px;

    border-radius:10px;

    transition:.3s;

}

.produk-btn:hover{

    background:#15803d;

}







/* ==========================
   GALERI
========================== */

.galeri{

    padding:100px 0;

    background:#ffffff;

}

.galeri-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    grid-auto-rows:250px;

    gap:20px;

    margin-top:60px;

}

.galeri-item{

    overflow:hidden;

    border-radius:25px;

    position:relative;

    cursor:pointer;

}

.galeri-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.galeri-item:hover img{

    transform:scale(1.1);

}

.besar{

    grid-column:span 2;

    grid-row:span 2;

}

@media(max-width:768px){

    .galeri-grid{

        grid-template-columns:1fr;

    }

    .besar{

        grid-column:auto;

        grid-row:auto;

    }

}











/* ==========================
   STATISTIK
========================== */

.statistik{

    padding:100px 0;

    background:#f8fafc;

}

.statistik-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

    margin-top:60px;

}

.stat-card{

    background:white;

    padding:40px 25px;

    text-align:center;

    border-radius:25px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    transition:.3s;

}

.stat-card:hover{

    transform:
    translateY(-10px);

}

.stat-card i{

    font-size:55px;

    color:#16a34a;

    margin-bottom:20px;

}

.stat-card h3{

    font-size:42px;

    color:#0f172a;

    margin-bottom:10px;

}

.stat-card p{

    color:#64748b;

    font-size:16px;

}






/* ==========================
   MITRA KERJASAMA
========================== */

.mitra{

    padding:100px 0;

    background:#ffffff;

}

.mitra-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

    margin-top:60px;

}

.mitra-card{

    background:#f8fafc;

    padding:40px 20px;

    border-radius:20px;

    text-align:center;

    transition:.3s;

}

.mitra-card:hover{

    transform:translateY(-8px);

    background:#16a34a;

}

.mitra-card:hover i,
.mitra-card:hover h3{

    color:white;

}

.mitra-card i{

    font-size:50px;

    color:#16a34a;

    margin-bottom:15px;

}

.mitra-card h3{

    color:#0f172a;

    font-size:18px;

}






/* ==========================
   BERITA & ARTIKEL
========================== */

.berita{

    padding:100px 0;

    background:#f8fafc;

}

.berita-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(350px,1fr));

    gap:30px;

    margin-top:60px;

}

.berita-card{

    background:white;

    border-radius:25px;

    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    transition:.3s;

}

.berita-card:hover{

    transform:translateY(-10px);

}

.berita-card img{

    width:100%;

    height:240px;

    object-fit:cover;

}

.berita-content{

    padding:25px;

}

.tanggal{

    color:#16a34a;

    font-size:14px;

    font-weight:600;

}

.berita-content h3{

    margin:15px 0;

    color:#0f172a;

    line-height:1.5;

}

.berita-content p{

    color:#64748b;

    line-height:1.8;

    margin-bottom:20px;

}

.berita-content a{

    text-decoration:none;

    color:#16a34a;

    font-weight:600;

}

.berita-btn{

    text-align:center;

    margin-top:50px;

}

.btn-semua-berita{

    display:inline-block;

    padding:15px 35px;

    background:#16a34a;

    color:white;

    text-decoration:none;

    border-radius:12px;

    font-weight:600;

    transition:.3s;

}

.btn-semua-berita:hover{

    background:#15803d;

}









/* ==========================
   CTA
========================== */

.cta{

    padding:100px 20px;

    background:
    linear-gradient(
        135deg,
        #16a34a,
        #15803d
    );

    text-align:center;

    color:white;

}

.cta-content{

    max-width:800px;

    margin:auto;

}

.cta-content h2{

    font-size:48px;

    margin-bottom:20px;

}

.cta-content p{

    font-size:18px;

    line-height:1.8;

    margin-bottom:35px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-cta{

    background:white;

    color:#16a34a;

    padding:15px 35px;

    border-radius:12px;

    text-decoration:none;

    font-weight:600;

}

.btn-cta-outline{

    border:2px solid white;

    color:white;

    padding:15px 35px;

    border-radius:12px;

    text-decoration:none;

    font-weight:600;

}

.btn-cta-outline:hover{

    background:white;

    color:#16a34a;

}












/* ==========================
   FOOTER
========================== */

footer{
    background:#0f172a;
    color:white;
    padding:50px 10%;
}

.footer-container{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:30px;
}

footer h3{
    margin-bottom:15px;
    font-size:20px;
}

footer p{
    margin:10px 0;
}

footer a{
    color:white;
    text-decoration:none;

    transition:.3s;
}

footer a:hover{
    color:#f97316;
    padding-left:5px;
}

footer i{
    margin-right:8px;
}

.copyright{
    text-align:center;

    margin-top:30px;

    padding-top:20px;

    border-top:1px solid
    rgba(255,255,255,.1);

    font-size:14px;
}

@media(max-width:768px){

    footer{
        padding:40px 20px;
    }

    .footer-container{
        grid-template-columns:1fr;
        gap:25px;
    }

    .copyright{
        margin-top:25px;
    }

}




/* ==========================
   tambahan multi device
========================== */
html,
body{
    width:100%;
    overflow-x:hidden;
}

*{
    max-width:100%;
}