body {
    background-color: #f4f7f3;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
html{

    scroll-behavior:smooth;

}
:root{

    --primary:#135f02;
    --secondary:#ffc107;
    --white:#ffffff;
    --dark:#222;
    --gray:#666;
    --light:#f8f9fa;

}

/* Header */
header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(19,95,2,.92);
    backdrop-filter:blur(8px);
    color:white;
    padding:18px 0;
    z-index:999;
    transition:0.35s ease;
}

/* Judul */
h1 {
    margin: 0;
}

/* Semua section */
section {
    padding: 30px;
}

/* Container */

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img{
    width:70px;
    transition:.35s ease;
}
.logo h1{
    transition:.35s ease;
}
/* Menu */

.menu {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.menu a{
    color:white;
    text-decoration:none;
    font-weight:bold;
    position:relative;
    transition:.3s;
}

.menu a:hover{
    color:#FFC107;
}

/* ================= HERO ================= */

.hero {
    background: linear-gradient(rgba(0, 80, 0, .65), rgba(0, 80, 0, .65)),
        url("../images/banner/banner.jpg");

    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding:180px 20px 120px;
}

.hero h1 {
    font-size: 60px;
    margin-top: 10px;
}

.hero h2 {
    font-size: 30px;
}

.hero p {
    width: 70%;
    margin: auto;
    line-height: 30px;
    font-size: 20px;
}

/* Tombol */

.hero-button {
    margin-top: 40px;
}

.btn {
    background: #ffc107;
    color: black;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 8px;
    margin-right: 15px;
    font-weight: bold;
}

.btn:hover {
    background: white;
}

.btn2 {
    background: white;
    color: #135f02;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}

.btn2:hover {
    background: #ffc107;
}

/*======================
ABOUT
======================*/

.about{
    padding:80px 0;
}

.about-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

.about-text{
    flex:1;
}

.about-text h2{
    color:#135f02;
    font-size:40px;
    margin-bottom:20px;
}

.about-text p{
    line-height:30px;
    color:#555;
    margin-bottom:20px;
    text-align:justify;
}

.about-image{
    flex:1;
}

.about-image img{
    width:50%;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.2);
}

/* ================================
   PRODUK
================================ */

.produk{
    padding:90px 0;
    background:#f7f9f6;
}

.section-title{

    text-align:center;

    font-size:42px;

    color:#135f02;

}

.section-subtitle{

    text-align:center;

    color:#666;

    margin-bottom:50px;

}

.produk-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:35px;

margin-top:50px;

}

@media(max-width:768px){

.produk-grid{

grid-template-columns:1fr;

}

}

.produk-card{

    background:white;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.10);

    transition:.4s;

}

.produk-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 35px rgba(0,0,0,.18);

}

.produk-card img{

    width:100%;

    height:250px;

    object-fit:cover;

}

.produk-info{

    padding:25px;

}

.badge{

    display:inline-block;

    background:#135f02;

    color:white;

    padding:6px 14px;

    border-radius:30px;

    font-size:13px;

    margin-bottom:15px;

}

.produk-info h3{

    margin-bottom:15px;

    color:#222;

}

.produk-info p{

    color:#666;

    line-height:28px;

}

.harga{

    font-size:24px;

    font-weight:bold;

    color:#135f02;

    margin:20px 0;

}

.btn-produk{

    display:block;

    text-align:center;

    background:#ffc107;

    color:#222;

    padding:14px;

    border-radius:10px;

    text-decoration:none;

    font-weight:bold;

    transition:.3s;

}

.btn-produk:hover{

    background:#135f02;

    color:white;

}

/* ===========================
   KEUNGGULAN
=========================== */

.keunggulan{

    padding:90px 0;

    background:white;

}

.keunggulan-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

    margin-top:50px;

}

.keunggulan-card{

    background:#f8f8f8;

    padding:35px;

    text-align:center;

    border-radius:15px;

    transition:.4s;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.keunggulan-card:hover{

    transform:translateY(-10px);

    background:#135f02;

    color:white;

}

.icon {

    width: 80px;

    height: 80px;

    margin: 0 auto 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(19, 95, 2, .1);

    color: #135f02;

    font-size: 38px;

    transition: .4s;

}
.keunggulan-card:hover .icon {

    background: #ffc107;

    color: #135f02;

    transform: scale(1.1) rotate(5deg);

}

.keunggulan-card h3{

    margin-bottom:15px;

}

.keunggulan-card p{

    line-height:28px;

}

/* ===================== */
/*      STATISTIK        */
/* ===================== */

.stats{

    background:#135f02;

    padding:80px 0;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-box{

    background:white;

    border-radius:15px;

    text-align:center;

    padding:35px;

    transition:.3s;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.stat-box:hover{

    transform:translateY(-10px);

}

.stat-box h2{

    color:#135f02;

    font-size:48px;

    margin-bottom:10px;

}

.stat-box p{

    font-size:18px;

    color:#555;

}

@media(max-width:768px){

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

}
@media(max-width:500px){

.stats-grid{

grid-template-columns:1fr;

}

}

/* =========================================
   UNIT USAHA
========================================= */

.unit-usaha {

    padding: 100px 0;

    background:
        linear-gradient(
            180deg,
            #f8faf7 0%,
            #ffffff 100%
        );

}


/* =========================================
   GRID
========================================= */

.usaha-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 30px;

    margin-top: 55px;

}


/* =========================================
   CARD
========================================= */

.usaha-card {

    position: relative;

    background: #ffffff;

    padding: 45px 35px 35px;

    border-radius: 22px;

    text-align: center;

    border: 1px solid
        rgba(19, 95, 2, .08);

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, .07);

    transition:
        transform .4s ease,
        box-shadow .4s ease;

    overflow: hidden;

}


/* Garis dekorasi bagian atas */

.usaha-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 5px;

    background:
        linear-gradient(
            90deg,
            #135f02,
            #ffc107
        );

}


/* Efek hover */

.usaha-card:hover {

    transform:
        translateY(-10px);

    box-shadow:
        0 20px 45px
        rgba(19, 95, 2, .15);

}


/* =========================================
   ICON
========================================= */

.usaha-icon{

width:130px;

height:130px;

margin:0 auto 25px;

display:flex;

align-items:center;

justify-content:center;

}
.usaha-icon img{

width:100%;

height:100%;

object-fit:contain;

transition:.4s;

filter:drop-shadow(0 12px 25px rgba(0,0,0,.18));

}

.usaha-card:hover .usaha-icon img{

transform:

translateY(-8px)

scale(1.08);

filter:drop-shadow(0 18px 35px rgba(0,0,0,.28));

}


.usaha-card:hover
.usaha-icon {

    background:
        #135f02;

    color: #ffffff;

    transform:
        scale(1.08)
        rotate(5deg);

}


/* =========================================
   JUDUL UNIT USAHA
========================================= */

.usaha-card h3 {

    color: #135f02;

    font-size: 22px;

    line-height: 1.4;

    margin:
        0 0 15px;

}


/* =========================================
   DESKRIPSI
========================================= */

.usaha-card p {

    color: #666;

    font-size: 15px;

    line-height: 1.8;

    margin:
        0 0 25px;

}


/* =========================================
   MANAGER
========================================= */

.usaha-manager {

    display: flex;

    flex-direction: column;

    gap: 5px;

    padding:
        15px;

    margin-bottom: 20px;

    background:
        #f5f8f4;

    border-radius:
        12px;

    border-left:
        4px solid #135f02;

}


.usaha-manager strong {

    font-size: 12px;

    text-transform:
        uppercase;

    letter-spacing:
        1px;

    color: #888;

}


.usaha-manager span {

    color: #135f02;

    font-size: 15px;

    font-weight: bold;

}


/* =========================================
   BIDANG USAHA
========================================= */

.usaha-bidang {

    display: flex;

    flex-wrap: wrap;

    justify-content:
        center;

    gap: 8px;

}


.usaha-bidang span {

    display: inline-flex;

    align-items: center;

    padding:
        7px 12px;

    background:
        #f1f5ef;

    color:
        #3f5739;

    border-radius:
        20px;

    font-size:
        12px;

    line-height:
        1.4;

    border:
        1px solid
        rgba(19, 95, 2, .08);

    transition:
        .3s ease;

}


.usaha-card:hover
.usaha-bidang span {

    background:
        rgba(255, 193, 7, .18);

    color:
        #135f02;

}


/* =========================================
   RESPONSIVE TABLET
========================================= */

@media (max-width: 900px) {

    .usaha-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =========================================
   RESPONSIVE MOBILE
========================================= */

@media (max-width: 600px) {

    .unit-usaha {

        padding:
            70px 0;

    }


    .usaha-grid {

        grid-template-columns:
            1fr;

        gap:
            25px;

        margin-top:
            40px;

    }


    .usaha-card {

        padding:
            40px 25px 30px;

    }


    .usaha-card h3 {

        font-size:
            20px;

    }


    .usaha-icon {

        width:
            75px;

        height:
            75px;

        font-size:
            34px;

    }

}
.usaha-bidang span i {

    color: #135f02;

    margin-right: 6px;

    font-size: 13px;

}

/* =========================================
   WARNA IDENTITAS UNIT USAHA
========================================= */


/* =========================================
   UNIT USAHA TERNAK SEJAHTERA
   Identitas: Biru
========================================= */

.usaha-ternak {

    --unit-color: #1976d2;

    --unit-bg: rgba(25, 118, 210, .08);

    --unit-soft: rgba(25, 118, 210, .15);

}


/* Icon */

.usaha-ternak .usaha-icon {

    background:
        var(--unit-bg);

    color:
        var(--unit-color);

}


/* Hover Icon */

.usaha-ternak:hover .usaha-icon {

    background:
        var(--unit-color);

    color:
        #ffffff;

}


/* Judul */

.usaha-ternak h3 {

    color:
        var(--unit-color);

}


/* Manager */

.usaha-ternak .usaha-manager {

    border-left-color:
        var(--unit-color);

    background:
        var(--unit-bg);

}


.usaha-ternak .usaha-manager span {

    color:
        var(--unit-color);

}


/* Icon bidang */

.usaha-ternak .usaha-bidang span i {

    color:
        var(--unit-color);

}


/* Badge bidang */

.usaha-ternak .usaha-bidang span {

    background:
        var(--unit-bg);

    color:
        #31506b;

}


/* Hover badge */

.usaha-ternak:hover
.usaha-bidang span {

    background:
        var(--unit-soft);

    color:
        var(--unit-color);

}



/* =========================================
   UNIT USAHA AGRO LESTARI
   Identitas: Hijau
========================================= */

.usaha-agro {

    --unit-color: #2e7d32;

    --unit-bg: rgba(46, 125, 50, .08);

    --unit-soft: rgba(46, 125, 50, .15);

}


/* Icon */

.usaha-agro .usaha-icon {

    background:
        var(--unit-bg);

    color:
        var(--unit-color);

}


/* Hover Icon */

.usaha-agro:hover .usaha-icon {

    background:
        var(--unit-color);

    color:
        #ffffff;

}


/* Judul */

.usaha-agro h3 {

    color:
        var(--unit-color);

}


/* Manager */

.usaha-agro .usaha-manager {

    border-left-color:
        var(--unit-color);

    background:
        var(--unit-bg);

}


.usaha-agro .usaha-manager span {

    color:
        var(--unit-color);

}


/* Icon bidang */

.usaha-agro .usaha-bidang span i {

    color:
        var(--unit-color);

}


/* Badge bidang */

.usaha-agro .usaha-bidang span {

    background:
        var(--unit-bg);

    color:
        #3f5739;

}


/* Hover badge */

.usaha-agro:hover
.usaha-bidang span {

    background:
        var(--unit-soft);

    color:
        var(--unit-color);

}



/* =========================================
   UNIT USAHA NIAGA MANDIRI
   Identitas: Oranye
========================================= */

.usaha-niaga {

    --unit-color: #ef6c00;

    --unit-bg: rgba(239, 108, 0, .08);

    --unit-soft: rgba(239, 108, 0, .15);

}


/* Icon */

.usaha-niaga .usaha-icon {

    background:
        var(--unit-bg);

    color:
        var(--unit-color);

}


/* Hover Icon */

.usaha-niaga:hover .usaha-icon {

    background:
        var(--unit-color);

    color:
        #ffffff;

}


/* Judul */

.usaha-niaga h3 {

    color:
        var(--unit-color);

}


/* Manager */

.usaha-niaga .usaha-manager {

    border-left-color:
        var(--unit-color);

    background:
        var(--unit-bg);

}


.usaha-niaga .usaha-manager span {

    color:
        var(--unit-color);

}


/* Icon bidang */

.usaha-niaga .usaha-bidang span i {

    color:
        var(--unit-color);

}


/* Badge bidang */

.usaha-niaga .usaha-bidang span {

    background:
        var(--unit-bg);

    color:
        #68451f;

}


/* Hover badge */

.usaha-niaga:hover
.usaha-bidang span {

    background:
        var(--unit-soft);

    color:
        var(--unit-color);

}

.usaha-ternak::before {

    background:
        linear-gradient(
            90deg,
            #1976d2,
            #64b5f6
        );

}


.usaha-agro::before {

    background:
        linear-gradient(
            90deg,
            #2e7d32,
            #81c784
        );

}


.usaha-niaga::before {

    background:
        linear-gradient(
            90deg,
            #ef6c00,
            #ffb74d
        );

}
/*================ GALERI =================*/

.gallery{

    padding:90px 0;

    background:white;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:25px;

    margin-top:50px;

}

.gallery-item{

    overflow:hidden;

    border-radius:15px;

    position:relative;

    cursor:pointer;

    box-shadow:0 10px 25px rgba(0,0,0,.1);

}

.gallery-item img{

    width:100%;

    height:250px;

    object-fit:cover;

    transition:.4s;

    display:block;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-item span{

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    background:rgba(0,0,0,.65);

    color:white;

    padding:15px;

    text-align:center;

    font-weight:bold;

}

/* ================= TESTIMONI ================= */

.testimoni{

    padding:90px 0;

    background:#f6f6f6;

    text-align:center;

}

.testimoni h2{

    color:#135f02;

    font-size:42px;

}

.testimoni .subtitle{

    color:#666;

    margin-bottom:50px;

}

.testimoni-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

}

.testi-card{

    background:white;

    padding:35px;

    border-radius:18px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.quote{

    font-size:28px;

    color:#FFC107;

    margin-bottom:20px;

}

.testi-card p{

    color:#555;

    line-height:28px;

    margin-bottom:25px;

}

.testi-card h4{

    color:#135f02;

    margin-bottom:5px;

}

.testi-card span{

    color:#888;

}

header.scrolled{

    padding:8px 0;

    background:#135f02;

    box-shadow:0 5px 20px rgba(0,0,0,.25);

}

header.scrolled .logo img{

    width:55px;

}

header.scrolled .logo h1{

    font-size:30px;

}


.menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:3px;

    background:#ffc107;

    transition:.3s;

}

.menu a:hover::after{

    width:100%;

}

/*================ FOOTER =================*/

footer{

    background:#135f02;

    color:white;

    padding:70px 0 20px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.5fr;

    gap:40px;

}

.footer-logo{

    width:80px;

    margin-bottom:15px;

}

footer h3{

    margin-bottom:20px;

}

footer p{

    line-height:28px;

    color:#ddd;

}

footer ul{

    list-style:none;

    padding:0;

}

footer ul li{

    margin-bottom:12px;

}

footer ul li a{

    color:#ddd;

    text-decoration:none;

    transition:.3s;

}

footer ul li a:hover{

    color:#FFC107;

}

.copyright{

    margin-top:50px;

    border-top:1px solid rgba(255,255,255,.2);

    padding-top:20px;

    text-align:center;

    color:#ccc;

}

@media(max-width:900px){

.footer-grid{

grid-template-columns:1fr;

}

}

/* ===========================
   PAGE BANNER
=========================== */

.page-banner{

    background:
    linear-gradient(rgba(19,95,2,.75),rgba(19,95,2,.75)),
    url("../images/banner/banner.jpg");

    background-size:cover;
    background-position:center;

    color:white;

    text-align:center;

    padding:180px 20px 100px;

}

.page-banner h1{

    font-size:60px;
    margin-bottom:20px;

}

.page-banner p{

    font-size:22px;
    width:700px;
    max-width:90%;
    margin:auto;
    line-height:35px;

}
/* ===========================
   PROFIL ABOUT
=========================== */

.profil-about{

    padding:100px 0;

    background:white;

}

.about-profile-wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:70px;

}

.about-profile-text{

    flex:1;

}

.sub-title{

    display:inline-block;

    color:#ffc107;

    font-weight:bold;

    text-transform:uppercase;

    letter-spacing:2px;

    margin-bottom:15px;

}

.about-profile-text h2{

    color:var(--primary);

    font-size:42px;

    margin-bottom:25px;

}

.about-profile-text p{

    color:#555;

    line-height:32px;

    text-align:justify;

    margin-bottom:20px;

}

.about-list{

    list-style:none;

    padding:0;

    margin:30px 0;

}

.about-list li{

    margin-bottom:15px;

    font-size:18px;

    position:relative;

    padding-left:35px;

}

.about-list li::before{

    content:"✔";

    position:absolute;

    left:0;

    color:#1f8f39;

    font-weight:bold;

}

.about-profile-image{

    flex:1;

    text-align:center;

}

.about-profile-image img{

    width:100%;

    max-width:500px;

    border-radius:20px;

    box-shadow:0 20px 40px rgba(0,0,0,.18);

}

@media(max-width:900px){

.about-profile-wrapper{

    flex-direction:column;

}

.about-profile-text{

    order:2;

}

.about-profile-image{

    order:1;

}

.about-profile-text h2{

    font-size:34px;

}

}

/*==========================
      HISTORY
==========================*/

.history{

    padding:100px 0;

    background:#f8f9fa;

}

.timeline{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:35px;

    margin-top:60px;

}

.timeline-item{

    background:white;

    border-radius:20px;

    padding:35px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.timeline-item:hover{

    transform:translateY(-12px);

}

.timeline-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:#135f02;

    color:white;

    font-size:42px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:20px;

}

.timeline-item h3{

    color:#ffc107;

    font-size:30px;

    margin-bottom:10px;

}

.timeline-item h4{

    color:#135f02;

    margin-bottom:15px;

}

.timeline-item p{

    color:#666;

    line-height:28px;

}
/*==================================================
TIMELINE / SEJARAH BUMDES
==================================================*/

.timeline-section{

padding:100px 0;

background:linear-gradient(180deg,#f8fbf8,#ffffff);

}

.timeline-grid{

display:grid;

grid-template-columns:repeat(5,1fr);

gap:28px;

margin-top:60px;

}

.timeline-card{

position:relative;

background:#fff;

padding:40px 28px;

border-radius:24px;

text-align:center;

overflow:hidden;

border:1px solid rgba(25,135,84,.08);

box-shadow:0 12px 35px rgba(0,0,0,.08);

transition:.4s;

}

.timeline-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:5px;

background:linear-gradient(90deg,#198754,#ffc107);

}

.timeline-card:hover{

transform:translateY(-12px);

box-shadow:0 22px 50px rgba(0,0,0,.15);

}

.timeline-image{

width:170px;

height:170px;

margin:0 auto 30px;

border-radius:50%;

overflow:hidden;

background:#fff;

border:8px solid #f5f5f5;

box-shadow:0 18px 40px rgba(25,135,84,.18);

transition:.45s;

}

.timeline-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.6s;

}

.timeline-card:hover .timeline-image{

transform:translateY(-6px) scale(1.05);

box-shadow:0 25px 60px rgba(25,135,84,.28);

}

.timeline-card:hover .timeline-image img{

transform:scale(1.12);

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1400px){

.timeline-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:992px){

.timeline-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.timeline-grid{

grid-template-columns:1fr;

}

.timeline-card{

padding:35px 25px;

}

.timeline-card h2{

font-size:34px;

}

.timeline-card h3{

font-size:22px;

min-height:auto;

}

.timeline-image{

width:120px;

height:120px;

border-width:6px;

}

}
/*==========================
     VISI MISI
==========================*/

.vision-mission{

    padding:100px 0;

    background:white;

}

.vm-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(450px,1fr));

    gap:40px;

    margin-top:60px;

}

.visi-card,
.misi-card{

    background:#f8f9fa;

    padding:45px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.visi-card:hover,
.misi-card:hover{

    transform:translateY(-10px);

}

.vm-icon{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:#135f02;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:42px;

}

.visi-card h3,
.misi-card h3{

    text-align:center;

    color:#135f02;

    margin-bottom:25px;

    font-size:32px;

}

.visi-card p{

    text-align:center;

    line-height:32px;

    color:#555;

}

.misi-card ul{

    list-style:none;

    padding:0;

}

.misi-card li{

    margin-bottom:18px;

    position:relative;

    padding-left:35px;

    line-height:28px;

}

.misi-card li::before{

    content:"✔";

    position:absolute;

    left:0;

    color:#198754;

    font-weight:bold;

}

/*==========================
     CORE VALUE
==========================*/

.core-value{

    padding:100px 0;

    background:#f8f9fa;

}

.value-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

    margin-top:60px;

}

.value-card{

    background:white;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s ease;

}

.value-card:hover{

    transform:translateY(-10px);

    background:var(--primary);

    color:white;

}

.value-card:hover p,
.value-card:hover h3{

    color:white;

}

.core-icon{

width:120px;

height:120px;

margin:0 auto 30px;

background:#ffffff;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

border:8px solid #eef8f0;

box-shadow:0 15px 40px rgba(25,135,84,.18);

transition:.4s;

overflow:hidden;

}

.core-icon img{

width:120px;

height:120px;

object-fit:contain;

transition:.45s;

}

.core-card:hover .core-icon{

transform:translateY(-8px) scale(1.05);

box-shadow:0 25px 55px rgba(25,135,84,.25);

}

.core-card:hover .core-icon img{

transform:scale(1.12);

}

/* =========================================
   LEGALITAS BUMDES
========================================= */

.legalitas {

    padding: 100px 0;

    background:
        #ffffff;

}


/* =========================================
   GRID LEGALITAS
========================================= */

.legal-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        25px;

    margin-top:
        55px;

}


/* =========================================
   CARD LEGALITAS
========================================= */

.legal-card {

    position:
        relative;

    background:
        #f8faf7;

    padding:
        35px 25px;

    border-radius:
        18px;

    text-align:
        center;

    border:
        1px solid
        rgba(19, 95, 2, .08);

    box-shadow:
        0 8px 25px
        rgba(0, 0, 0, .06);

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}


/* Hover */

.legal-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 16px 35px
        rgba(0, 0, 0, .11);

}


/* =========================================
   ICON
========================================= */

.legal-icon {

    width:
        70px;

    height:
        70px;

    margin:
        0 auto 20px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        18px;

    background:
        rgba(19, 95, 2, .09);

    color:
        #135f02;

    font-size:
        30px;

}


/* =========================================
   JUDUL
========================================= */

.legal-card h3 {

    margin:
        0 0 10px;

    font-size:
        18px;

    color:
        #135f02;

}


/* =========================================
   NOMOR
========================================= */

.legal-card p {

    margin:
        0;

    font-size:
        14px;

    color:
        #666;

    line-height:
        1.6;

}


/* =========================================
   RESPONSIVE TABLET
========================================= */

@media (max-width: 900px) {

    .legal-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =========================================
   RESPONSIVE MOBILE
========================================= */

@media (max-width: 600px) {

    .legalitas {

        padding:
            70px 0;

    }


    .legal-grid {

        grid-template-columns:
            1fr;

        gap:
            20px;

        margin-top:
            40px;

    }

}

/*==========================
   STRUKTUR ORGANISASI
==========================*/

.struktur{

    padding:100px 0;

    background:#f8f9fa;

}

.org-chart{

    margin-top:60px;

    text-align:center;

}

.org-row{

    display:flex;

    justify-content:center;

    gap:25px;

    flex-wrap:wrap;

    margin:25px 0;

}

.org-box{

    background:white;

    width:230px;

    padding:25px;

    border-radius:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.35s;

}

.org-box:hover{

    transform:translateY(-8px);

}

.level1{

    margin:auto;

}

.org-box h3{

    color:var(--primary);

    margin-bottom:10px;

}

.org-box p{

    color:#666;

    line-height:28px;

}

.line{

    width:4px;

    height:40px;

    background:var(--primary);

    margin:0 auto;

}
/*==========================
      PENGURUS
==========================*/

.pengurus {

    padding: 100px 0;

    background: #ffffff;

}


/*==========================
      GRID
==========================*/

.pengurus-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));

    gap: 35px;

    margin-top: 60px;

}


/*==========================
      CARD
==========================*/

.pengurus-card {

    background: #f8f9fa;

    border-radius: 20px;

    text-align: center;

    padding: 0 0 35px;

    overflow: hidden;

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, .08);

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}


.pengurus-card:hover {

    transform:
        translateY(-12px);

    box-shadow:
        0 18px 40px
        rgba(0, 0, 0, .13);

}


/*==========================
      FOTO PENGURUS
==========================*/

.pengurus-card img {

    display: block;

    width: 100%;

    height: 420px;

    object-fit: cover;

    object-position: center;

    border-radius:
        0 0 18px 18px;

    border: none;

    margin: 0 0 25px;

}


/*==========================
      ISI CARD
==========================*/

.pengurus-card h3 {

    color:
        #135f02;

    margin:
        0 25px 8px;

    font-size:
        21px;

}


.pengurus-card span {

    display: block;

    color:
        #d99f00;

    font-weight:
        bold;

    font-size:
        13px;

    margin:
        0 25px 18px;

    line-height:
        1.5;

}


.pengurus-card p {

    color:
        #666;

    line-height:
        1.8;

    font-style:
        italic;

    font-size:
        14px;

    margin:
        0 25px;

}


/*==========================
      RESPONSIVE TABLET
==========================*/

@media (max-width: 900px) {

    .pengurus-card img {

        height: 230px;

    }

}


/*==========================
      RESPONSIVE MOBILE
==========================*/

@media (max-width: 600px) {

    .pengurus {

        padding:
            70px 0;

    }


    .pengurus-grid {

        grid-template-columns:
            1fr;

        gap:
            25px;

        margin-top:
            40px;

    }


    .pengurus-card img {

        height:
            280px;

    }

}
/* =========================================
   HIERARKI PENGURUS BUMDES
========================================= */


/* =========================================
   DIREKTUR
========================================= */

.pengurus-card.pengurus-direktur {

    border-top:
        6px solid #135f02;

    background:
        linear-gradient(
            180deg,
            #f4faf2 0%,
            #ffffff 100%
        );

}


/* Foto Direktur lebih tinggi */

.pengurus-card.pengurus-direktur img {

    height:
        450px;

}


/* Nama Direktur */

.pengurus-card.pengurus-direktur h3 {

    font-size:
        24px;

    color:
        #135f02;

}


/* Jabatan Direktur */

.pengurus-card.pengurus-direktur span {

    color:
        #135f02;

    font-size:
        14px;

}


/* =========================================
   SEKRETARIS
========================================= */

.pengurus-card.pengurus-sekretaris {

    border-top:
        5px solid #607d8b;

}


.pengurus-card.pengurus-sekretaris h3 {

    color:
        #455a64;

}


.pengurus-card.pengurus-sekretaris span {

    color:
        #607d8b;

}


/* =========================================
   BENDAHARA
========================================= */

.pengurus-card.pengurus-bendahara {

    border-top:
        5px solid #c49a00;

}


.pengurus-card.pengurus-bendahara h3 {

    color:
        #9a7800;

}


.pengurus-card.pengurus-bendahara span {

    color:
        #c49a00;

}


/* =========================================
   MANAGER TERNAK SEJAHTERA
========================================= */

.pengurus-card.usaha-ternak {

    border-top:
        5px solid #1976d2;

}


.pengurus-card.usaha-ternak h3 {

    color:
        #1976d2;

}


.pengurus-card.usaha-ternak span {

    color:
        #1976d2;

}


/* =========================================
   MANAGER AGRO LESTARI
========================================= */

.pengurus-card.usaha-agro {

    border-top:
        5px solid #2e7d32;

}


.pengurus-card.usaha-agro h3 {

    color:
        #2e7d32;

}


.pengurus-card.usaha-agro span {

    color:
        #2e7d32;

}


/* =========================================
   MANAGER NIAGA MANDIRI
========================================= */

.pengurus-card.usaha-niaga {

    border-top:
        5px solid #ef6c00;

}


.pengurus-card.usaha-niaga h3 {

    color:
        #ef6c00;

}


.pengurus-card.usaha-niaga span {

    color:
        #ef6c00;

}


/* =========================================
   RESPONSIVE DIREKTUR
========================================= */

@media (max-width: 600px) {

    .pengurus-card.pengurus-direktur img {

        height:
            280px;

    }

}

/*==========================================
        RESPONSIVE
==========================================*/

@media (max-width:992px){

.container{

    width:95%;

}

/* Header */

.header-wrapper{

    flex-direction:column;

    gap:20px;

}

.menu{

    flex-wrap:wrap;

    justify-content:center;

}

/* Hero */

.hero h1{

    font-size:42px;

}

.hero h2{

    font-size:24px;

}

.hero p{

    width:100%;

    font-size:18px;

}

/* About */

.about-wrapper{

    flex-direction:column;

}

.about-image img{

    width:100%;

}

/* Statistik */

.stats-grid{

    grid-template-columns:repeat(2,1fr);

}

/* Profil */

.about-profile-wrapper{

    flex-direction:column;

}

.vm-grid{

    grid-template-columns:1fr;

}

}

@media (max-width:768px){

header{

    position:relative;

}

.menu{

    flex-direction:column;

    gap:15px;

}

.hero{

    padding:100px 20px;

}

.hero h1{

    font-size:34px;

}

.hero h2{

    font-size:22px;

}

.hero p{

    font-size:16px;

    line-height:28px;

}

.btn,
.btn2{

    display:block;

    margin:15px auto;

    width:220px;

}

.produk-grid,
.keunggulan-grid,
.usaha-grid,
.gallery-grid,
.testimoni-grid,
.value-grid,
.legal-grid,
.pengurus-grid{

    grid-template-columns:1fr;

}

.section-title{

    font-size:34px;

}

.page-banner h1{

    font-size:42px;

}

.page-banner p{

    font-size:18px;

}

.org-row{

    flex-direction:column;

    align-items:center;

}

}

@media (max-width:480px){

.hero h1{

    font-size:28px;

}

.hero h2{

    font-size:20px;

}

.section-title{

    font-size:28px;

}

.logo img{

    width:55px;

}

.logo h1{

    font-size:22px;

}

.stat-box h2{

    font-size:36px;

}

}
/* =========================================
   STRUKTUR LEVEL PENGURUS
========================================= */

.pengurus-grid {

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    gap:
        45px;

    margin-top:
        60px;

}


/* =========================================
   LEVEL PENGURUS
========================================= */

.pengurus-level {

    width:
        100%;

    display:
        flex;

    justify-content:
        center;

    gap:
        30px;

}


/* =========================================
   DIREKTUR
========================================= */

.direktur-level {

    max-width:
        420px;

}


/* =========================================
   SEKRETARIS & BENDAHARA
========================================= */

.pengurus-inti-level {

    max-width:
        850px;

}


/* =========================================
   MANAGER UNIT USAHA
========================================= */

.manager-level {

    max-width:
        1200px;

}


/* =========================================
   UKURAN CARD
========================================= */

.pengurus-level .pengurus-card {

    width:
        100%;

}


/* =========================================
   GARIS PEMISAH VISUAL
========================================= */

.pengurus-level {

    position:
        relative;

}


/* Garis kecil di atas level 2 dan 3 */

.pengurus-inti-level::before,
.manager-level::before {

    content:
        "";

    position:
        absolute;

    top:
        -23px;

    left:
        50%;

    transform:
        translateX(-50%);

    width:
        2px;

    height:
        23px;

    background:
        #d5ddd2;

}


/* =========================================
   RESPONSIVE TABLET
========================================= */

@media (max-width: 900px) {

    .manager-level {

        flex-wrap:
            wrap;

    }

    .manager-level .pengurus-card {

        max-width:
            380px;

    }

}


/* =========================================
   RESPONSIVE MOBILE
========================================= */

@media (max-width: 600px) {

    .pengurus-grid {

        gap:
            35px;

    }


    .pengurus-level {

        flex-direction:
            column;

        align-items:
            center;

        gap:
            25px;

    }


    .pengurus-level .pengurus-card {

        width:
            100%;

        max-width:
            380px;

    }


    .pengurus-inti-level::before,
    .manager-level::before {

        display:
            none;

    }

}
/*==========================================
        SCROLL ANIMATION
==========================================*/

/* Fade */

.fade-up{

    opacity:0;

    transform:translateY(60px);

    transition:.8s;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}

/* Left */

.fade-left{

    opacity:0;

    transform:translateX(-80px);

    transition:.8s;

}

.fade-left.show{

    opacity:1;

    transform:translateX(0);

}

/* Right */

.fade-right{

    opacity:0;

    transform:translateX(80px);

    transition:.8s;

}

.fade-right.show{

    opacity:1;

    transform:translateX(0);

}

/* Zoom */

.zoom{

    opacity:0;

    transform:scale(.8);

    transition:.8s;

}

.zoom.show{

    opacity:1;

    transform:scale(1);

}
#progress-bar{

position:fixed;

top:0;

left:0;

width:0;

height:5px;

background:#ffc107;

z-index:99999;

transition:.1s;

}
/* ================================
   ANIMASI SCROLL
================================ */

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Animasi dari kiri */
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* Animasi dari kanan */
.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Animasi zoom */
.reveal-zoom {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-zoom.active {
    opacity: 1;
    transform: scale(1);
}
/* ================================
   NAVBAR ACTIVE
================================ */

.menu a {
    position: relative;
    transition: color 0.3s ease;
}

/* Garis bawah menu aktif */

.menu a.active {
    color: #ffc107;
}

/* Animasi garis bawah */

.menu a.active::after {
    content: "";
    position: absolute;

    left: 0;
    bottom: -8px;

    width: 100%;
    height: 3px;

    background: #ffc107;

    border-radius: 10px;
}
html {
    scroll-behavior: smooth;
}
/* ================================
   RESPONSIVE MOBILE
================================ */

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

/* =================================
   RESPONSIVE HERO MOBILE
================================= */

@media (max-width: 600px) {

    .hero {
        padding: 140px 20px 80px;
        min-height: auto;
    }

    .hero h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .hero h1 {
        font-size: 34px;
        line-height: 1.2;
        margin: 10px 0 15px;
    }

    .hero p {
        width: 100%;
        font-size: 16px;
        line-height: 25px;
    }

    .hero-button {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn,
    .btn2 {
        width: 80%;
        max-width: 250px;
        text-align: center;
        margin-right: 0;
        padding: 13px 20px;
    }

}


/* ================================
   TABLET
================================ */

@media (max-width: 768px) {

    .container {
        width: 90%;
    }

    .header-wrapper {
        position: relative;
    }

    .logo h1 {
        font-size: 24px;
    }

    .logo img {
        width: 55px;
    }

    .menu {
        gap: 15px;
    }

    .menu a {
        font-size: 14px;
    }

}


/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {

    header {
        padding: 10px 0;
    }

    .logo h1 {
        font-size: 18px;
    }

    .logo img {
        width: 45px;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        position: relative;
    }

    .menu {
        display: none;
        position: absolute;
        top: 50px;
        right: 0;
        width: 200px;
        background: #135f02;
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
        border-radius: 10px;
        box-shadow: 0 10px 25px rgba(0,0,0,.2);
    }

    .menu.active {
        display: flex;
    }

    .menu li {
        width: 100%;
    }

    .menu a {
        display: block;
        padding: 12px 20px;
    }

    .menu a:hover {
        background: rgba(255,255,255,.1);
    }

}

/* =================================
   RESPONSIVE ABOUT MOBILE
================================= */

@media (max-width: 600px) {

    .about {
        padding: 60px 0;
    }

    .about-wrapper {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .about-text {
        width: 100%;
    }

    .about-text h2 {
        font-size: 32px;
    }

    .about-text p {
        font-size: 15px;
        line-height: 26px;
        text-align: justify;
    }

    .about-image {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .about-image img {
        width: 80%;
        max-width: 350px;
    }

}
/* =================================
   RESPONSIVE STATISTIK MOBILE
================================= */

@media (max-width: 600px) {

    .stats {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-box {
        padding: 25px 10px;
        border-radius: 12px;
    }

    .stat-box h2 {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .stat-box p {
        font-size: 14px;
        line-height: 20px;
    }

}
/* =================================
   RESPONSIVE PRODUK MOBILE
================================= */

@media (max-width: 600px) {

    .produk {
        padding: 60px 0;
    }

    .section-title {
        font-size: 30px;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 30px;
    }

    .produk-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .produk-card img{
       width:100%;
       height:250px;
       object-fit:cover;
    }

    .produk-info {
        padding: 20px;
    }

    .produk-info h3 {
        font-size: 20px;
    }

    .produk-info p {
        font-size: 14px;
        line-height: 24px;
    }

    .harga {
        font-size: 20px;
        margin: 15px 0;
    }

}
/* =================================
   RESPONSIVE KEUNGGULAN MOBILE
================================= */

@media (max-width: 600px) {

    .keunggulan {
        padding: 60px 0;
    }

    .keunggulan .section-title {
        font-size: 30px;
        line-height: 1.3;
        padding: 0 15px;
    }

    .keunggulan-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 35px;
    }

    .keunggulan-card {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .icon {
        font-size: 45px;
        margin-bottom: 15px;
    }

    .keunggulan-card h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .keunggulan-card p {
        font-size: 14px;
        line-height: 24px;
    }

}
/* =================================
   RESPONSIVE UNIT USAHA MOBILE
================================= */

@media (max-width: 600px) {

    .unit-usaha {
        padding: 60px 0;
    }

    .unit-usaha .section-title {
        font-size: 30px;
        line-height: 1.3;
        padding: 0 15px;
    }

    .usaha-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 35px;
    }

    .usaha-card {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .usaha-icon {
        font-size: 50px;
        margin-bottom: 15px;
    }

    .usaha-card h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .usaha-card p {
        font-size: 14px;
        line-height: 24px;
    }

}
/* =================================
   RESPONSIVE TESTIMONI MOBILE
================================= */

@media (max-width: 600px) {

    .testimoni {
        padding: 60px 0;
    }

    .testimoni h2 {
        font-size: 30px;
        line-height: 1.3;
        padding: 0 15px;
    }

    .testimoni .subtitle {
        font-size: 14px;
        line-height: 22px;
        padding: 0 15px;
        margin-bottom: 35px;
    }

    .testimoni-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testi-card {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .quote {
        font-size: 24px;
    }

    .testi-card p {
        font-size: 14px;
        line-height: 24px;
    }

    .testi-card h4 {
        font-size: 17px;
    }

    .testi-card span {
        font-size: 13px;
    }

}

/* =================================
   RESPONSIVE GALERI MOBILE
================================= */

@media (max-width: 600px) {

    .gallery {
        padding: 60px 0;
    }

    .gallery .section-title {
        font-size: 30px;
        line-height: 1.3;
        padding: 0 15px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 35px;
    }

    .gallery-item {
        border-radius: 12px;
    }

    .gallery-item img {
        width: 100%;
        height: 230px;
        object-fit: cover;
    }

    .gallery-item span {
        font-size: 14px;
        padding: 12px;
    }

}

/* =================================
   FOOTER
================================= */

footer {
    background: #135f02;
    color: white;
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
}

.footer-grid > div {
    min-width: 0;
}

.footer-logo {
    width: 80px;
    margin-bottom: 15px;
}

.footer-grid h3 {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-grid p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 28px;
    font-size: 14px;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-grid ul li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

.footer-grid ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: 0.3s;
}

.footer-grid ul li a:hover {
    color: #ffc107;
    padding-left: 5px;
}

.copyright {
    margin-top: 60px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}


/* =================================
   FOOTER RESPONSIVE MOBILE
================================= */

@media (max-width: 768px) {

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 25px;
    }

}


@media (max-width: 600px) {

    footer {
        padding: 50px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-grid > div {
        text-align: center;
    }

    .footer-logo {
        width: 70px;
    }

    .footer-grid h3 {
        font-size: 19px;
        margin-bottom: 15px;
    }

    .footer-grid p {
        font-size: 14px;
        line-height: 25px;
    }

    .footer-grid ul li {
        font-size: 14px;
    }

    .copyright {
        margin-top: 40px;
        padding: 18px 15px;
        line-height: 22px;
    }

}
/* =================================
   STAGGER ANIMATION
================================= */

.stagger-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.stagger-item.active {
    opacity: 1;
    transform: translateY(0);
}

/* Jarak kemunculan setiap kartu */

.stagger-item:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger-item:nth-child(2) {
    transition-delay: 0.2s;
}

.stagger-item:nth-child(3) {
    transition-delay: 0.3s;
}

.stagger-item:nth-child(4) {
    transition-delay: 0.4s;
}

.stagger-item:nth-child(5) {
    transition-delay: 0.5s;
}

.stagger-item:nth-child(6) {
    transition-delay: 0.6s;
}

/* =================================
   HALAMAN PRODUK
================================= */

.produk-hero {
    background:
        linear-gradient(
            rgba(0, 80, 0, .7),
            rgba(0, 80, 0, .7)
        ),
        url("../images/banner/banner.jpg");

    background-size: cover;
    background-position: center;

    color: white;

    text-align: center;

    padding: 170px 20px 100px;
}

.produk-hero h1 {
    font-size: 55px;
    margin-bottom: 20px;
}

.produk-hero p {
    max-width: 750px;
    margin: auto;

    font-size: 18px;
    line-height: 30px;
}


/* =================================
   PRODUK PAGE
================================= */

.produk-page {
    padding: 90px 0;
    background: #f7f9f6;
}

.produk-page .produk-grid {
    margin-top: 50px;
}


/* =================================
   CTA PRODUK
================================= */

.produk-cta {
    background: #135f02;
    color: white;

    text-align: center;

    padding: 80px 20px;
}

.produk-cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.produk-cta p {
    font-size: 18px;
    margin-bottom: 35px;
}


/* =================================
   RESPONSIVE PRODUK PAGE
================================= */

@media (max-width: 600px) {

    .produk-hero {
        padding: 140px 20px 70px;
    }

    .produk-hero h1 {
        font-size: 35px;
    }

    .produk-hero p {
        font-size: 15px;
        line-height: 25px;
    }

    .produk-page {
        padding: 60px 0;
    }

    .produk-cta {
        padding: 60px 20px;
    }

    .produk-cta h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .produk-cta p {
        font-size: 15px;
        line-height: 24px;
    }

}

/* =================================
   HALAMAN KONTAK
================================= */

.kontak-hero {

    background:
        linear-gradient(
            rgba(0, 80, 0, .75),
            rgba(0, 80, 0, .75)
        ),
        url("../images/banner/banner.jpg");

    background-size: cover;

    background-position: center;

    color: white;

    text-align: center;

    padding: 170px 20px 100px;

}

.kontak-hero h1 {

    font-size: 55px;

    margin-bottom: 20px;

}

.kontak-hero p {

    max-width: 750px;

    margin: auto;

    font-size: 18px;

    line-height: 30px;

}


/* =================================
   KONTAK GRID
================================= */

.kontak-page {

    padding: 90px 0;

    background: #f7f9f6;

}


.kontak-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));

    gap: 30px;

    margin-top: 50px;

}


/* =================================
   KONTAK CARD
================================= */

.kontak-card {

    background: white;

    padding: 40px 30px;

    border-radius: 18px;

    text-align: center;

    text-decoration: none;

    color: inherit;

    box-shadow:
        0 10px 25px
        rgba(0,0,0,.08);

    transition: .4s;

}


.kontak-card:hover {

    transform:
        translateY(-10px);

    box-shadow:
        0 20px 35px
        rgba(0,0,0,.15);

}


.kontak-icon {

    font-size: 55px;

    margin-bottom: 20px;

}


.kontak-card h3 {

    color: #135f02;

    font-size: 24px;

    margin-bottom: 15px;

}


.kontak-card p {

    color: #666;

    line-height: 28px;

    margin-bottom: 20px;

}


.kontak-card span {

    display: inline-block;

    color: #135f02;

    font-weight: bold;

}


/* =================================
   CTA KONTAK
================================= */

.kontak-cta {

    background: #135f02;

    color: white;

    text-align: center;

    padding: 80px 20px;

}


.kontak-cta h2 {

    font-size: 40px;

    margin-bottom: 20px;

}


.kontak-cta p {

    max-width: 700px;

    margin:
        0 auto 35px;

    line-height: 28px;

}


/* =================================
   RESPONSIVE
================================= */

@media (max-width: 600px) {

    .kontak-hero {

        padding:
            140px 20px 70px;

    }


    .kontak-hero h1 {

        font-size: 35px;

    }


    .kontak-hero p {

        font-size: 15px;

        line-height: 25px;

    }


    .kontak-page {

        padding: 60px 0;

    }


    .kontak-cta {

        padding: 60px 20px;

    }


    .kontak-cta h2 {

        font-size: 28px;

        line-height: 1.3;

    }

}

/* =================================
   HALAMAN GALERI
================================= */

.galeri-hero {

    background:
        linear-gradient(
            rgba(0, 80, 0, .75),
            rgba(0, 80, 0, .75)
        ),
        url("../images/banner/banner.jpg");

    background-size: cover;

    background-position: center;

    color: white;

    text-align: center;

    padding: 170px 20px 100px;

}


.galeri-hero h1 {

    font-size: 55px;

    margin-bottom: 20px;

}


.galeri-hero p {

    max-width: 750px;

    margin: auto;

    font-size: 18px;

    line-height: 30px;

}


/* =================================
   GALERI PAGE
================================= */

.galeri-page {

    padding: 90px 0;

    background: #f7f9f6;

}


.galeri-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(300px, 1fr));

    gap: 30px;

    margin-top: 50px;

}


/* =================================
   GALERI ITEM
================================= */

.galeri-item {

    position: relative;

    overflow: hidden;

    border-radius: 18px;

    height: 300px;

    cursor: pointer;

    box-shadow:
        0 10px 25px
        rgba(0,0,0,.12);

}


.galeri-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: .5s;

}


.galeri-item:hover img {

    transform: scale(1.08);

}


/* =================================
   GALERI OVERLAY
================================= */

.galeri-overlay {

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    padding: 25px;

    color: white;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.85)
        );

    display: flex;

    justify-content: space-between;

    align-items: end;

}


.galeri-overlay h3 {

    margin: 0;

    font-size: 20px;

}


.galeri-overlay i {

    font-size: 22px;

}


/* =================================
   CTA GALERI
================================= */

.galeri-cta {

    background: #135f02;

    color: white;

    text-align: center;

    padding: 80px 20px;

}


.galeri-cta h2 {

    font-size: 40px;

    margin-bottom: 20px;

}


.galeri-cta p {

    max-width: 700px;

    margin:
        0 auto 35px;

    line-height: 28px;

}


/* =================================
   RESPONSIVE GALERI
================================= */

@media (max-width: 600px) {

    .galeri-hero {

        padding:
            140px 20px 70px;

    }


    .galeri-hero h1 {

        font-size: 35px;

    }


    .galeri-hero p {

        font-size: 15px;

        line-height: 25px;

    }


    .galeri-page {

        padding: 60px 0;

    }


    .galeri-grid {

        grid-template-columns: 1fr;

    }


    .galeri-item {

        height: 250px;

    }


    .galeri-cta {

        padding: 60px 20px;

    }


    .galeri-cta h2 {

        font-size: 28px;

    }

}

/* =========================================
   UNIT USAHA - HALAMAN PROFIL
========================================= */

.profil-unit-usaha {

    padding: 100px 0;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7f9f6 100%
        );

}


/* =========================================
   GRID UNIT USAHA
========================================= */

.profil-unit-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 30px;

    margin-top: 55px;

    align-items: stretch;

}


/* =========================================
   CARD UNIT USAHA
========================================= */

.profil-unit-card {

    position: relative;

    background: #ffffff;

    border-radius: 24px;

    overflow: hidden;

    border: 1px solid
        rgba(0, 0, 0, .06);

    box-shadow:
        0 12px 35px
        rgba(0, 0, 0, .08);

    transition:
        transform .4s ease,
        box-shadow .4s ease;

}


/* Hover */

.profil-unit-card:hover {

    transform:
        translateY(-10px);

    box-shadow:
        0 22px 50px
        rgba(0, 0, 0, .14);

}


/* =========================================
   GARIS ATAS
========================================= */

.profil-unit-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 6px;

}


/* Ternak */

.profil-unit-card.usaha-ternak::before {

    background:
        linear-gradient(
            90deg,
            #1976d2,
            #64b5f6
        );

}


/* Agro */

.profil-unit-card.usaha-agro::before {

    background:
        linear-gradient(
            90deg,
            #2e7d32,
            #81c784
        );

}


/* Niaga */

.profil-unit-card.usaha-niaga::before {

    background:
        linear-gradient(
            90deg,
            #ef6c00,
            #ffb74d
        );

}


/* =========================================
   ICON UNIT
========================================= */

.profil-unit-icon {

    width: 90px;

    height: 90px;

    margin:
        40px auto 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    font-size: 40px;

    transition:
        .4s ease;

}


/* Ternak */

.usaha-ternak
.profil-unit-icon {

    background:
        rgba(25, 118, 210, .10);

    color:
        #1976d2;

}


/* Agro */

.usaha-agro
.profil-unit-icon {

    background:
        rgba(46, 125, 50, .10);

    color:
        #2e7d32;

}


/* Niaga */

.usaha-niaga
.profil-unit-icon {

    background:
        rgba(239, 108, 0, .10);

    color:
        #ef6c00;

}


/* Hover icon */

.profil-unit-card:hover
.profil-unit-icon {

    transform:
        scale(1.08)
        rotate(5deg);

}


/* =========================================
   CONTENT
========================================= */

.profil-unit-content {

    padding:
        0 30px 35px;

}


/* Label */

.profil-unit-label {

    display: block;

    text-align: center;

    font-size: 11px;

    font-weight: bold;

    letter-spacing:
        1.5px;

    color:
        #999;

    margin-bottom:
        10px;

}


/* Judul */

.profil-unit-content h3 {

    text-align: center;

    font-size: 23px;

    line-height:
        1.4;

    margin:
        0 0 20px;

}


/* Warna Judul */

.usaha-ternak
.profil-unit-content h3 {

    color:
        #1976d2;

}


.usaha-agro
.profil-unit-content h3 {

    color:
        #2e7d32;

}


.usaha-niaga
.profil-unit-content h3 {

    color:
        #ef6c00;

}


/* Deskripsi */

.profil-unit-content > p {

    color:
        #666;

    font-size:
        14px;

    line-height:
        1.8;

    text-align:
        justify;

    margin-bottom:
        25px;

}


/* =========================================
   MANAGER
========================================= */

.profil-manager {

    display:
        flex;

    flex-direction:
        column;

    gap:
        5px;

    padding:
        15px;

    margin-bottom:
        25px;

    border-radius:
        12px;

}


.usaha-ternak
.profil-manager {

    background:
        rgba(25, 118, 210, .07);

    border-left:
        4px solid #1976d2;

}


.usaha-agro
.profil-manager {

    background:
        rgba(46, 125, 50, .07);

    border-left:
        4px solid #2e7d32;

}


.usaha-niaga
.profil-manager {

    background:
        rgba(239, 108, 0, .07);

    border-left:
        4px solid #ef6c00;

}


.profil-manager span {

    font-size:
        11px;

    text-transform:
        uppercase;

    letter-spacing:
        1px;

    color:
        #888;

}


.profil-manager strong {

    font-size:
        15px;

}


/* Warna nama manager */

.usaha-ternak
.profil-manager strong {

    color:
        #1976d2;

}


.usaha-agro
.profil-manager strong {

    color:
        #2e7d32;

}


.usaha-niaga
.profil-manager strong {

    color:
        #ef6c00;

}


/* =========================================
   JUDUL BIDANG USAHA
========================================= */

.profil-unit-content h4 {

    font-size:
        14px;

    color:
        #444;

    margin:
        0 0 12px;

}


/* =========================================
   BIDANG USAHA / BADGE
========================================= */

.profil-bidang {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        8px;

}


.profil-bidang span {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        6px;

    padding:
        7px 11px;

    border-radius:
        20px;

    font-size:
        12px;

    line-height:
        1.4;

    border:
        1px solid
        rgba(0, 0, 0, .06);

}


/* Warna badge Ternak */

.usaha-ternak
.profil-bidang span {

    background:
        rgba(25, 118, 210, .07);

    color:
        #31506b;

}


.usaha-ternak
.profil-bidang span i {

    color:
        #1976d2;

}


/* Warna badge Agro */

.usaha-agro
.profil-bidang span {

    background:
        rgba(46, 125, 50, .07);

    color:
        #3f5739;

}


.usaha-agro
.profil-bidang span i {

    color:
        #2e7d32;

}


/* Warna badge Niaga */

.usaha-niaga
.profil-bidang span {

    background:
        rgba(239, 108, 0, .07);

    color:
        #68451f;

}


.usaha-niaga
.profil-bidang span i {

    color:
        #ef6c00;

}


/* =========================================
   RESPONSIVE TABLET
========================================= */

@media (max-width: 1000px) {

    .profil-unit-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =========================================
   RESPONSIVE MOBILE
========================================= */

@media (max-width: 650px) {

    .profil-unit-usaha {

        padding:
            70px 0;

    }


    .profil-unit-grid {

        grid-template-columns:
            1fr;

        gap:
            25px;

        margin-top:
            40px;

    }


    .profil-unit-content {

        padding:
            0 25px 30px;

    }


    .profil-unit-content h3 {

        font-size:
            21px;

    }


    .profil-unit-icon {

        width:
            75px;

        height:
            75px;

        font-size:
            32px;

        margin-top:
            35px;

    }
}

/* =========================================
   STRUKTUR ORGANISASI
========================================= */

.struktur {

    padding:
        100px 0;

    background:
        #f7f9f6;

}


/* =========================================
   ORGANIZATION CHART
========================================= */

.org-chart {

    max-width:
        1100px;

    margin:
        60px auto 0;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

}


/* =========================================
   ORGANIZATION BOX
========================================= */

.org-box {

    position:
        relative;

    min-width:
        220px;

    max-width:
        280px;

    padding:
        22px 25px;

    background:
        #ffffff;

    border-radius:
        16px;

    text-align:
        center;

    border:
        1px solid
        rgba(0,0,0,.06);

    box-shadow:
        0 10px 30px
        rgba(0,0,0,.07);

    transition:
        all .35s ease;

}


.org-box:hover {

    transform:
        translateY(-6px);

    box-shadow:
        0 18px 40px
        rgba(0,0,0,.12);

}


/* =========================================
   JABATAN
========================================= */

.org-box h3 {

    margin:
        0 0 8px;

    font-size:
        17px;

    color:
        #135f02;

}


/* =========================================
   NAMA
========================================= */

.org-box p {

    margin:
        0;

    font-size:
        14px;

    line-height:
        1.6;

    color:
        #555;

}


.org-box span {

    display:
        block;

    margin-top:
        8px;

    font-size:
        13px;

    font-weight:
        700;

    text-transform:
        uppercase;

    letter-spacing:
        .5px;

}


/* =========================================
   PENGURUS UTAMA
========================================= */

.org-box.level1 {

    border-top:
        5px solid
        #135f02;

}


.org-box.level1 h3 {

    color:
        #135f02;

}


.org-box.level1 p {

    font-weight:
        600;

    color:
        #333;

}


/* =========================================
   BARIS ORGANISASI
========================================= */

.org-row {

    display:
        flex;

    justify-content:
        center;

    align-items:
        stretch;

    flex-wrap:
        wrap;

    gap:
        25px;

    width:
        100%;

}


/* =========================================
   GARIS STRUKTUR
========================================= */

.org-chart > .line {

    width:
        2px;

    height:
        45px;

    background:
        #c8d0c5;

}


/* =========================================
   PENGAWAS
========================================= */

.org-row .org-box {

    flex:
        1 1 220px;

}


/* =========================================
   WARNA UNIT USAHA
========================================= */


/* Ternak Sejahtera */

.org-box.usaha-ternak {

    border-top:
        5px solid
        #1976d2;

}


.org-box.usaha-ternak h3 {

    color:
        #1976d2;

}


.org-box.usaha-ternak span {

    color:
        #1976d2;

}


/* Agro Lestari */

.org-box.usaha-agro {

    border-top:
        5px solid
        #2e7d32;

}


.org-box.usaha-agro h3 {

    color:
        #2e7d32;

}


.org-box.usaha-agro span {

    color:
        #2e7d32;

}


/* Niaga Mandiri */

.org-box.usaha-niaga {

    border-top:
        5px solid
        #ef6c00;

}


.org-box.usaha-niaga h3 {

    color:
        #ef6c00;

}


.org-box.usaha-niaga span {

    color:
        #ef6c00;

}
/* ==========================
   STRUKTUR ORGANISASI
========================== */

.org-chart {
    width: 100%;
    text-align: center;
}

/* Semua kotak struktur */

.org-box {
    width: 240px;
    height: 150px;
    padding: 20px;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background: #ffffff;

    border-radius: 15px;

    border-top: 5px solid #135f02;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

    text-align: center;

    flex-shrink: 0;
}

/* Judul jabatan */

.org-box h3 {
    margin: 0 0 10px;

    color: #135f02;

    font-size: 20px;

    line-height: 1.3;
}

/* Nama */

.org-box p {
    margin: 0;

    color: #555;

    font-size: 16px;

    line-height: 1.5;
}


/* ==========================
   KOTAK LEVEL UTAMA
========================== */

.org-box.level1 {
    width: 240px;
    height: 150px;

    margin: 0 auto;
}


/* ==========================
   BARIS ORGANISASI
========================== */

.org-row {

    display: flex;

    justify-content: center;

    align-items: stretch;

    flex-wrap: wrap;

    gap: 25px;

}


/* ==========================
   GARIS STRUKTUR
========================== */

.org-chart .line {

    width: 2px;

    height: 40px;

    background: #135f02;

    margin: 0 auto;

}


/* ==========================
   MOBILE
========================== */

@media (max-width: 768px) {

    .org-row {

        flex-direction: column;

        align-items: center;

        gap: 20px;

    }

    .org-box,
    .org-box.level1 {

        width: 280px;

        height: 150px;

        min-height: 150px;

        max-width: 90%;

        margin-left: auto;

        margin-right: auto;

    }

}

/* =========================================
   RESPONSIVE TABLET
========================================= */

@media (max-width: 900px) {

    .org-row {

        gap:
            20px;

    }

    .org-box {

        min-width:
            190px;

    }

}


/* =========================================
   RESPONSIVE MOBILE
========================================= */

@media (max-width: 600px) {

    .struktur {

        padding:
            70px 0;

    }


    .org-chart {

        margin-top:
            40px;

    }


    .org-row {

        flex-direction:
            column;

        align-items:
            center;

    }


    .org-row .org-box {

        width:
            100%;

        max-width:
            350px;

    }


    .org-chart > .line {

        height:
            30px;

    }

}
/* =========================================
   FLOATING WHATSAPP
========================================= */

.floating-whatsapp {

    position:
        fixed;

    right:
        25px;

    bottom:
        25px;

    width:
        60px;

    height:
        60px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        #25D366;

    color:
        #ffffff;

    font-size:
        32px;

    border-radius:
        50%;

    text-decoration:
        none;

    box-shadow:
        0 8px 25px
        rgba(0, 0, 0, .20);

    z-index:
        9999;

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


/* Hover */

.floating-whatsapp:hover {

    transform:
        scale(1.1);

    box-shadow:
        0 12px 30px
        rgba(0, 0, 0, .30);

}


/* =========================================
   ANIMASI DENYUT
========================================= */

.floating-whatsapp::before {

    content:
        "";

    position:
        absolute;

    width:
        100%;

    height:
        100%;

    border-radius:
        50%;

    border:
        2px solid
        #25D366;

    animation:
        whatsappPulse 2s infinite;

}


@keyframes whatsappPulse {

    0% {

        transform:
            scale(1);

        opacity:
            .8;

    }

    70% {

        transform:
            scale(1.5);

        opacity:
            0;

    }

    100% {

        transform:
            scale(1.5);

        opacity:
            0;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .floating-whatsapp {

        width:
            55px;

        height:
            55px;

        right:
            18px;

        bottom:
            18px;

        font-size:
            28px;

    }

}
/* =========================================
   UNIT USAHA - HALAMAN PRODUK
========================================= */

.unit-usaha-page {

    padding: 90px 0;

    background:
        #f7f9f6;

}


/* =========================================
   GRID UNIT USAHA
========================================= */

.unit-usaha-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        30px;

    margin-top:
        55px;

}


/* =========================================
   CARD UNIT USAHA
========================================= */

.unit-usaha-card {

    position:
        relative;

    padding:
        40px 35px;

    background:
        #ffffff;

    border-radius:
        20px;

    border-top:
        6px solid;

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, .07);

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}


.unit-usaha-card:hover {

    transform:
        translateY(-10px);

    box-shadow:
        0 18px 40px
        rgba(0, 0, 0, .12);

}


/* =========================================
   WARNA UNIT USAHA
========================================= */


/* Ternak Sejahtera */

.unit-usaha-card.unit-ternak {

    border-color:
        #1976d2;

}


/* Agro Lestari */

.unit-usaha-card.unit-agro {

    border-color:
        #2e7d32;

}


/* Niaga Mandiri */

.unit-usaha-card.unit-niaga {

    border-color:
        #ef6c00;

}


/* =========================================
   ICON
========================================= */

.usaha-icon{

width:130px;

height:130px;

margin:0 auto 25px;

display:flex;

align-items:center;

justify-content:center;

}
.usaha-icon img{

width:100%;

height:100%;

object-fit:contain;

transition:.4s;

filter:drop-shadow(0 12px 25px rgba(0,0,0,.18));

}

.usaha-card:hover .usaha-icon img{

transform:

translateY(-8px)

scale(1.08);

filter:drop-shadow(0 18px 35px rgba(0,0,0,.28));

}

/* Icon Ternak */

.unit-ternak .unit-usaha-icon {

    background:
        rgba(25, 118, 210, .10);

}


/* Icon Agro */

.unit-agro .unit-usaha-icon {

    background:
        rgba(46, 125, 50, .10);

}


/* Icon Niaga */

.unit-niaga .unit-usaha-icon {

    background:
        rgba(239, 108, 0, .10);

}


/* =========================================
   LABEL
========================================= */

.unit-usaha-label {

    display:
        block;

    margin-bottom:
        8px;

    font-size:
        12px;

    font-weight:
        700;

    letter-spacing:
        1.5px;

}


/* =========================================
   JUDUL
========================================= */

.unit-usaha-card h3 {

    margin:
        0 0 15px;

    font-size:
        24px;

}


/* Warna judul */

.unit-ternak h3 {

    color:
        #1976d2;

}


.unit-agro h3 {

    color:
        #2e7d32;

}


.unit-niaga h3 {

    color:
        #ef6c00;

}


/* =========================================
   DESKRIPSI
========================================= */

.unit-usaha-card p {

    color:
        #666;

    line-height:
        1.8;

    margin-bottom:
        25px;

}


/* =========================================
   DAFTAR BIDANG USAHA
========================================= */

.unit-usaha-card ul {

    margin:
        0;

    padding-left:
        20px;

}


.unit-usaha-card li {

    margin-bottom:
        10px;

    color:
        #555;

    line-height:
        1.5;

}


/* =========================================
   RESPONSIVE TABLET
========================================= */

@media (max-width: 900px) {

    .unit-usaha-grid {

        grid-template-columns:
            1fr;

    }


    .unit-usaha-card {

        max-width:
            600px;

        width:
            100%;

        margin:
            0 auto;

    }

}


/* =========================================
   RESPONSIVE MOBILE
========================================= */

@media (max-width: 600px) {

    .unit-usaha-page {

        padding:
            70px 0;

    }


    .unit-usaha-grid {

        gap:
            20px;

        margin-top:
            40px;

    }


    .unit-usaha-card {

        padding:
            30px 25px;

    }


    .unit-usaha-card h3 {

        font-size:
            21px;

    }

}

/* =========================================
   PRODUK UNIT AGRO LESTARI
========================================= */

.produk-unit-heading {

    text-align:
        center;

    margin-bottom:
        50px;

}


.produk-unit-label {

    display:
        inline-block;

    margin-bottom:
        12px;

    padding:
        7px 16px;

    border-radius:
        30px;

    background:
        rgba(46, 125, 50, .10);

    color:
        #2e7d32;

    font-size:
        12px;

    font-weight:
        700;

    letter-spacing:
        1.5px;

}


.produk-unit-heading h2 {

    margin:
        0 0 15px;

    color:
        #135f02;

}


.produk-unit-heading p {

    max-width:
        700px;

    margin:
        0 auto;

    color:
        #666;

    line-height:
        1.7;

}
/* =========================================
   NEWS & BERITA
========================================= */

.news-page {

    padding:
        90px 0;

    background:
        #ffffff;

}


.news-grid {

    display:
        grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap:
        30px;

    margin-top:
        50px;

}


.news-card {

    background:
        #ffffff;

    border-radius:
        20px;

    overflow:
        hidden;

    box-shadow:
        0 10px 30px
        rgba(0,0,0,.08);

    transition:
        .35s;

}


.news-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 18px 40px
        rgba(0,0,0,.12);

}


.news-image {

    height:
        260px;

    overflow:
        hidden;

}


.news-image img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    transition:
        transform .5s;

}


.news-card:hover
.news-image img {

    transform:
        scale(1.06);

}


.news-content {

    padding:
        30px;

}


.news-date {

    color:
        #2e7d32;

    font-size:
        14px;

    font-weight:
        600;

}


.news-content h3 {

    margin:
        15px 0;

    color:
        #135f02;

    font-size:
        22px;

}


.news-content p {

    color:
        #666;

    line-height:
        1.7;

}


.news-link {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        8px;

    margin-top:
        15px;

    color:
        #135f02;

    font-weight:
        700;

}


/* =========================================
   ALBUM
========================================= */

.album-page {

    padding:
        90px 0;

    background:
        #f7f9f6;

}


.album-grid {

    display:
        grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap:
        30px;

    margin-top:
        50px;

}


.album-card {

    display:
        block;

    background:
        #ffffff;

    border-radius:
        20px;

    overflow:
        hidden;

    text-decoration:
        none;

    box-shadow:
        0 10px 30px
        rgba(0,0,0,.07);

    transition:
        .35s;

}


.album-card:hover {

    transform:
        translateY(-10px);

    box-shadow:
        0 18px 40px
        rgba(0,0,0,.12);

}


.album-cover {

    position:
        relative;

    height:
        300px;

    overflow:
        hidden;

}


.album-cover img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    transition:
        transform .5s;

}


.album-card:hover
.album-cover img {

    transform:
        scale(1.07);

}


.album-count {

    position:
        absolute;

    bottom:
        15px;

    left:
        15px;

    padding:
        8px 14px;

    background:
        rgba(0,0,0,.7);

    color:
        #ffffff;

    border-radius:
        30px;

    font-size:
        13px;

}


.album-content {

    padding:
        25px 30px 30px;

}


.album-content h3 {

    margin:
        0 0 10px;

    color:
        #135f02;

    font-size:
        22px;

}


.album-content p {

    color:
        #666;

    line-height:
        1.7;

}


.album-content span {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        8px;

    margin-top:
        12px;

    color:
        #135f02;

    font-weight:
        700;

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {

    .news-grid,
    .album-grid {

        grid-template-columns:
            1fr;

    }


    .news-image {

        height:
            220px;

    }


    .album-cover {

        height:
            240px;

    }

}
/* =========================================
   ALBUM DETAIL
========================================= */
/* ==========================================
   ALBUM DETAIL HERO
========================================== */

.album-detail-hero {

    min-height: 470px;

    padding: 150px 20px 90px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            rgba(19, 95, 2, 0.88),
            rgba(19, 95, 2, 0.88)
        ),
        url("../images/galeri/1.jpg");

    background-size: cover;

    background-position: center;

    color: white;

    text-align: center;

}


.album-detail-hero .container {

    width: 100%;

    max-width: 1000px;

    margin: 0 auto;

    text-align: center;

}


.album-detail-hero .sub-title {

    display: block;

    margin-bottom: 20px;

    color: #ffc107;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

    text-align: center;

}


.album-detail-hero h1 {

    margin: 0 auto 20px;

    color: white;

    font-size: 48px;

    line-height: 1.2;

    text-align: center;

}


.album-detail-hero p {

    max-width: 800px;

    margin: 0 auto;

    color: white;

    font-size: 18px;

    line-height: 1.8;

    text-align: center;

}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 600px) {

    .album-detail-hero {

        min-height: 420px;

        padding: 130px 20px 70px;

    }


    .album-detail-hero h1 {

        font-size: 32px;

    }


    .album-detail-hero p {

        font-size: 16px;

    }

}
/* =========================================
   LIGHTBOX GALERI
========================================= */

.lightbox {

    position:
        fixed;

    top:
        0;

    left:
        0;

    width:
        100%;

    height:
        100vh;

    background:
        rgba(0, 0, 0, .92);

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    opacity:
        0;

    visibility:
        hidden;

    z-index:
        9999;

    transition:
        .3s ease;

}


.lightbox.active {

    opacity:
        1;

    visibility:
        visible;

}


.lightbox img {

    max-width:
        85%;

    max-height:
        85vh;

    object-fit:
        contain;

    border-radius:
        10px;

    box-shadow:
        0 10px 50px
        rgba(0,0,0,.5);

}


.lightbox button {

    position:
        absolute;

    width:
        50px;

    height:
        50px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        none;

    border-radius:
        50%;

    background:
        rgba(255,255,255,.15);

    color:
        #ffffff;

    font-size:
        22px;

    cursor:
        pointer;

    transition:
        .3s;

}


.lightbox button:hover {

    background:
        rgba(255,255,255,.3);

}


.lightbox-close {

    top:
        30px;

    right:
        30px;

}


.lightbox-prev {

    left:
        30px;

    top:
        50%;

    transform:
        translateY(-50%);

}


.lightbox-next {

    right:
        30px;

    top:
        50%;

    transform:
        translateY(-50%);

}


@media (max-width: 600px) {

    .lightbox img {

        max-width:
            92%;

        max-height:
            75vh;

    }


    .lightbox button {

        width:
            42px;

        height:
            42px;

        font-size:
            18px;

    }


    .lightbox-prev {

        left:
            10px;

    }


    .lightbox-next {

        right:
            10px;

    }


    .lightbox-close {

        top:
            15px;

        right:
            15px;

    }

}

/* ==========================================
   ALBUM PREVIEW - BERANDA
========================================== */

.album-preview {
    padding: 100px 0;
    background: #f7f9f7;
}


/* ==========================================
   JUDUL SECTION
========================================== */

.album-preview .section-title {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.album-preview .sub-title {
    display: inline-block;
    color: #135f02;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.album-preview .section-title h2 {
    font-size: 42px;
    color: #135f02;
    margin-bottom: 20px;
}

.album-preview .section-title p {
    color: #666;
    font-size: 17px;
    line-height: 1.8;
}


/* ==========================================
   GRID ALBUM
========================================== */

.album-preview-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 30px;
}


/* ==========================================
   CARD ALBUM
========================================== */

.album-preview-card {
    display: block;

    background: #ffffff;

    border-radius: 20px;

    overflow: hidden;

    text-decoration: none;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.album-preview-card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.15);

}


/* ==========================================
   GAMBAR ALBUM
========================================== */

.album-preview-image {

    position: relative;

    width: 100%;

    height: 250px;

    overflow: hidden;

    background: #eee;
}


.album-preview-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.5s ease;

}


.album-preview-card:hover
.album-preview-image img {

    transform: scale(1.08);

}


/* ==========================================
   OVERLAY GAMBAR
========================================== */

.album-preview-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 10px;

    background:
        rgba(19, 95, 2, 0.75);

    color: white;

    opacity: 0;

    transition:
        opacity 0.35s ease;
}


.album-preview-card:hover
.album-preview-overlay {

    opacity: 1;

}


.album-preview-overlay i {

    font-size: 38px;

}


.album-preview-overlay span {

    font-size: 16px;

    font-weight: 600;

}


/* ==========================================
   KONTEN ALBUM
========================================== */

.album-preview-content {

    padding: 28px;

}


.album-preview-category {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #135f02;

    font-size: 13px;

    font-weight: 700;

    text-transform: uppercase;

    margin-bottom: 12px;

}


.album-preview-category i {

    font-size: 15px;

}


.album-preview-content h3 {

    color: #135f02;

    font-size: 23px;

    margin-bottom: 12px;

}


.album-preview-content p {

    color: #666;

    line-height: 1.7;

    font-size: 15px;

    margin-bottom: 20px;

}


/* ==========================================
   LINK LIHAT ALBUM
========================================== */

.album-preview-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #135f02;

    font-weight: 700;

    transition:
        gap 0.3s ease;
}


.album-preview-card:hover
.album-preview-link {

    gap: 16px;

}


.album-preview-link i {

    font-size: 14px;

}


/* ==========================================
   TOMBOL LIHAT SEMUA
========================================== */

.album-preview-button {

    text-align: center;

    margin-top: 50px;

}


.album-preview-button .btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

}


/* ==========================================
   RESPONSIVE TABLET
========================================== */

@media (max-width: 992px) {

    .album-preview-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .album-preview .section-title h2 {

        font-size: 36px;

    }

}


/* ==========================================
   RESPONSIVE HP
========================================== */

@media (max-width: 600px) {

    .album-preview {

        padding: 70px 0;

    }

    .album-preview .section-title {

        margin-bottom: 40px;

    }

    .album-preview .section-title h2 {

        font-size: 30px;

    }

    .album-preview .section-title p {

        font-size: 15px;

    }

    .album-preview-grid {

        grid-template-columns: 1fr;

        gap: 25px;

    }

    .album-preview-image {

        height: 220px;

    }

    .album-preview-content {

        padding: 24px;

    }

    .album-preview-content h3 {

        font-size: 21px;

    }

}

/* ==========================================
   NEWS / BERITA TERBARU
========================================== */

.news-section {

    padding: 100px 0;

    background: #ffffff;

}


/* ==========================================
   JUDUL NEWS
========================================== */

.news-section .section-title {

    text-align: center;

    max-width: 750px;

    margin: 0 auto 60px;

}


.news-section .sub-title {

    display: inline-block;

    color: #135f02;

    font-weight: 700;

    font-size: 15px;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 12px;

}


.news-section .section-title h2 {

    color: #135f02;

    font-size: 42px;

    margin-bottom: 18px;

}


.news-section .section-title p {

    color: #666;

    font-size: 16px;

    line-height: 1.8;

}


/* ==========================================
   GRID NEWS
========================================== */

.news-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 30px;

}


/* ==========================================
   NEWS CARD
========================================== */

.news-card {

    background: #ffffff;

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.08);

    border:
        1px solid
        rgba(19, 95, 2, 0.08);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;

}


.news-card:hover {

    transform:
        translateY(-10px);

    box-shadow:
        0 20px 45px
        rgba(0, 0, 0, 0.14);

}


/* ==========================================
   FOTO NEWS
========================================== */

.news-image {

    position: relative;

    width: 100%;

    height: 240px;

    overflow: hidden;

    background: #eeeeee;

}


.news-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.5s ease;

}


.news-card:hover
.news-image img {

    transform:
        scale(1.08);

}


/* ==========================================
   NEWS CONTENT
========================================== */

.news-content {

    padding: 28px;

}


/* ==========================================
   META NEWS
========================================== */

.news-meta {

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 18px;

    margin-bottom: 15px;

}


.news-meta span {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #777;

    font-size: 13px;

}


.news-meta i {

    color: #135f02;

}


/* ==========================================
   JUDUL BERITA
========================================== */

.news-content h3 {

    color: #135f02;

    font-size: 23px;

    line-height: 1.4;

    margin-bottom: 14px;

}


.news-content p {

    color: #666;

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 22px;

}


/* ==========================================
   BACA SELENGKAPNYA
========================================== */

.news-read-more {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #135f02;

    font-size: 15px;

    font-weight: 700;

    text-decoration: none;

    transition:
        gap 0.3s ease,
        color 0.3s ease;

}


.news-read-more:hover {

    gap: 16px;

    color: #0d4501;

}


.news-read-more i {

    font-size: 13px;

}


/* ==========================================
   TOMBOL NEWS
========================================== */

.news-button {

    text-align: center;

    margin-top: 50px;

}


.news-button .btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

}


/* ==========================================
   RESPONSIVE TABLET
========================================== */

@media (max-width: 992px) {

    .news-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .news-section {

        padding: 80px 0;

    }


    .news-section .section-title h2 {

        font-size: 36px;

    }

}


/* ==========================================
   RESPONSIVE HP
========================================== */

@media (max-width: 600px) {

    .news-section {

        padding: 70px 0;

    }


    .news-section .section-title {

        margin-bottom: 40px;

    }


    .news-section .section-title h2 {

        font-size: 30px;

    }


    .news-section .section-title p {

        font-size: 15px;

    }


    .news-grid {

        grid-template-columns:
            1fr;

        gap: 25px;

    }


    .news-image {

        height: 220px;

    }


    .news-content {

        padding: 24px;

    }


    .news-content h3 {

        font-size: 21px;

    }


    .news-content p {

        font-size: 14px;

    }

}
/* ==========================================
   NEWS DETAIL - HALAMAN BERITA
========================================== */

.news-detail {

    padding: 140px 0 100px;

    background: #f7f9f7;

}


/* CONTAINER BERITA */

.news-detail > .container {

    max-width: 1000px;

    margin: 0 auto;

}


/* KATEGORI */

.news-detail-category {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #135f02;

    font-weight: 700;

    font-size: 15px;

    margin-bottom: 20px;

}


/* JUDUL BERITA */

.news-detail-title {

    max-width: 900px;

    margin: 0 0 20px;

    color: #135f02;

    font-size: 46px;

    line-height: 1.2;

    font-weight: 800;

}


/* META */

.news-detail-meta {

    display: flex;

    align-items: center;

    gap: 25px;

    margin-bottom: 40px;

    color: #777;

    font-size: 15px;

}


.news-detail-meta span {

    display: flex;

    align-items: center;

    gap: 8px;

}


/* FOTO UTAMA */

.news-detail-image {

    width: 100%;

    height: 500px;

    overflow: hidden;

    border-radius: 20px;

    margin-bottom: 45px;

    box-shadow:
        0 15px 40px
        rgba(0, 0, 0, 0.12);

}


.news-detail-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}


/* ISI BERITA */

.news-detail-content {

    max-width: 850px;

    margin: 0 auto;

    background: white;

    padding: 50px;

    border-radius: 20px;

    box-shadow:
        0 10px 35px
        rgba(0, 0, 0, 0.06);

}


.news-detail-content p {

    color: #555;

    font-size: 17px;

    line-height: 1.9;

    margin-bottom: 25px;

}


.news-detail-content .news-lead {

    color: #333;

    font-size: 20px;

    line-height: 1.8;

    font-weight: 500;

}


.news-detail-content h2 {

    color: #135f02;

    font-size: 28px;

    margin-top: 40px;

    margin-bottom: 20px;

}


/* TOMBOL ALBUM */

.news-detail-gallery {

    text-align: center;

    margin-top: 40px;

}


/* TOMBOL KEMBALI */

.news-detail-back {

    text-align: center;

    margin-top: 25px;

}


/* ==========================================
   RESPONSIVE TABLET
========================================== */

@media (max-width: 992px) {

    .news-detail {

        padding: 80px 20px;

    }


    .news-detail-title {

        font-size: 38px;

    }


    .news-detail-image {

        height: 400px;

    }

}


/* ==========================================
   RESPONSIVE MOBILE
========================================== */

@media (max-width: 600px) {

    .news-detail {

        padding: 60px 15px;

    }


    .news-detail-title {

        font-size: 30px;

        line-height: 1.3;

    }


    .news-detail-meta {

        flex-direction: column;

        align-items: flex-start;

        gap: 10px;

    }


    .news-detail-image {

        height: 280px;

        border-radius: 15px;

        margin-bottom: 30px;

    }


    .news-detail-content {

        padding: 30px 20px;

        border-radius: 15px;

    }


    .news-detail-content p {

        font-size: 16px;

        line-height: 1.8;

    }


    .news-detail-content .news-lead {

        font-size: 18px;

    }


    .news-detail-content h2 {

        font-size: 24px;

    }

}
/* ==========================
   TOMBOL ALBUM FOTO NEWS
========================== */

.news-album-link {

    margin-top: 40px;

    padding-top: 30px;

    border-top: 1px solid #e5e5e5;

    text-align: center;

}

.news-album-link .btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    text-decoration: none;

}
/* ==========================
   BACK BUTTON
========================== */

.back-section {
    padding: 40px 0 80px;
    text-align: center;
    background: #ffffff;
}

.back-btn {
    display: inline-block;
    text-decoration: none;
}

/*=====================================
HOME NEWS
======================================*/

.home-news,
.home-album{

padding:90px 0;

background:#fff;

}


.section-header{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:35px;

}


.section-header h2{

font-size:40px;

margin-top:8px;

color:#135b21;

}


.section-header a{

font-weight:700;

color:#198754;

text-decoration:none;

}


.home-news-grid{

display:grid;

grid-template-columns:2fr 1fr;

gap:35px;

align-items:start;

}


.news-main{

position:relative;

overflow:hidden;

border-radius:22px;

}


.news-main img{

width:100%;

height:520px;

object-fit:cover;

transition:.5s;

}


.news-main:hover img{

transform:scale(1.08);

}


.overlay{

position:absolute;

bottom:0;

left:0;

width:100%;

padding:40px;

background:linear-gradient(transparent,rgba(0,0,0,.9));

color:white;

}


.news-side{
    display:flex;
    flex-direction:column;
    gap:18px;
    height:100%;
    justify-content:space-between;
}

.side-news{
    min-height:145px;
}


.side-news:hover{

transform:translateX(8px);

}


.side-news img{

width:160px;

height:110px;

object-fit:cover;

border-radius:12px;

}


.badge-new{

display:inline-block;

padding:7px 15px;

background:#22c55e;

color:white;

border-radius:30px;

font-size:12px;

margin-bottom:18px;

font-weight:bold;

}

/*==================================================
BERITA & ALBUM HOME
LAYOUT PROFESIONAL
==================================================*/

.news-home-grid,
.album-home-grid{

    display:grid;

    grid-template-columns:
        minmax(0, 2fr)
        minmax(320px, 1fr);

    gap:32px;

    align-items:stretch;

    margin-top:40px;

}


/*==================================================
FEATURE CARD
==================================================*/

.news-feature,
.album-feature{

    position:relative;

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:
        0 12px 35px rgba(0,0,0,.08);

    border:1px solid
        rgba(0,0,0,.05);

    min-height:100%;

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}


.news-feature:hover,
.album-feature:hover{

    transform:translateY(-5px);

    box-shadow:
        0 20px 45px rgba(0,0,0,.13);

}


/*==================================================
FEATURE IMAGE
==================================================*/

.news-feature img,
.album-feature img{

    width:100%;

    height:420px;

    object-fit:cover;

    display:block;

}


/*==================================================
FEATURE CONTENT
==================================================*/

.news-feature-content,
.album-feature-content{

    padding:26px 28px 30px;

}


.news-feature-content h3,
.album-feature-content h3{

    margin:0 0 10px;

    font-size:27px;

    line-height:1.3;

    color:var(--title);

}


.news-feature-content p,
.album-feature-content p{

    margin:0 0 12px;

    color:#777;

    font-size:14px;

    line-height:1.7;

}


/*==================================================
DATE FEATURE
==================================================*/

.news-feature-content .date,
.album-feature-content .date{

    display:block;

    margin-bottom:15px;

    color:#777;

    font-size:14px;

}


/*==================================================
BUTTON FEATURE
==================================================*/

.news-feature-content .news-btn,
.album-feature-content .album-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    padding:11px 20px;

    background:#198754;

    color:#fff;

    border-radius:10px;

    text-decoration:none;

    font-size:14px;

    font-weight:700;

    transition:.3s ease;

}


.news-feature-content .news-btn:hover,
.album-feature-content .album-btn:hover{

    background:#146c43;

    transform:translateY(-2px);

}


/*==================================================
SIDE COLUMN
==================================================*/

.news-side,
.album-side{

    display:grid;

    grid-template-columns:1fr;

    grid-template-rows:
        repeat(3,1fr);

    gap:18px;

}


/*==================================================
SIDE CARD
==================================================*/

.news-side-item,
.album-side-item{

    display:grid;

    grid-template-columns:
        135px
        minmax(0,1fr);

    gap:16px;

    align-items:center;

    background:#fff;

    padding:14px;

    border-radius:18px;

    border:1px solid
        rgba(0,0,0,.05);

    box-shadow:
        0 8px 25px rgba(0,0,0,.07);

    transition:
        transform .3s ease,
        box-shadow .3s ease;

    overflow:hidden;

}


.news-side-item:hover,
.album-side-item:hover{

    transform:translateY(-4px);

    box-shadow:
        0 14px 32px rgba(0,0,0,.11);

}


/*==================================================
SIDE IMAGE
==================================================*/

.news-side-item img,
.album-side-item img{

    width:135px;

    height:105px;

    object-fit:cover;

    border-radius:13px;

    display:block;

}


/*==================================================
SIDE CONTENT
==================================================*/

.news-side-item > div,
.album-side-item > div{

    min-width:0;

}


.news-side-item h4,
.album-side-item h4{

    margin:0 0 7px;

    font-size:17px;

    line-height:1.35;

    color:var(--title);

}


.news-side-item p,
.album-side-item p{

    margin:0 0 9px;

    color:#777;

    font-size:13px;

    line-height:1.5;

}


/*==================================================
SIDE BUTTON
==================================================*/

.news-side-item a,
.album-side-item a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:6px;

    padding:7px 13px;

    background:#eef8f1;

    color:#198754;

    border-radius:8px;

    text-decoration:none;

    font-size:12px;

    font-weight:700;

    transition:.3s ease;

}


.news-side-item a:hover,
.album-side-item a:hover{

    background:#198754;

    color:#fff;

}


/*==================================================
BADGE TERBARU
==================================================*/

.news-feature::before{

    content:"TERBARU";

    position:absolute;

    top:20px;

    left:20px;

    z-index:3;

    padding:8px 16px;

    background:#20c978;

    color:#fff;

    border-radius:30px;

    font-size:12px;

    font-weight:800;

    letter-spacing:.4px;

    box-shadow:
        0 5px 15px rgba(0,0,0,.15);

}


/*==================================================
ALBUM FEATURE
==================================================*/

.album-feature{

    position:relative;

}


.album-feature::before{

    content:"ALBUM TERBARU";

    position:absolute;

    top:20px;

    left:20px;

    z-index:3;

    padding:8px 16px;

    background:#198754;

    color:#fff;

    border-radius:30px;

    font-size:12px;

    font-weight:800;

    letter-spacing:.4px;

    box-shadow:
        0 5px 15px rgba(0,0,0,.15);

}


/*==================================================
JUDUL SECTION
==================================================*/

.news-home,
.album-home{

    padding:90px 0;

}


.news-home .section-title,
.album-home .section-title{

    margin-bottom:10px;

}


.news-home .section-subtitle,
.album-home .section-subtitle{

    margin-bottom:0;

}


/*==================================================
HEADER SECTION
==================================================*/

.news-section-header,
.album-section-header{

    display:flex;

    align-items:flex-end;

    justify-content:space-between;

    gap:20px;

    margin-bottom:35px;

}


.news-section-header .section-title,
.album-section-header .section-title{

    margin-bottom:8px;

}


.news-section-header > a,
.album-section-header > a{

    display:inline-flex;

    align-items:center;

    gap:7px;

    padding:10px 18px;

    background:#eef8f1;

    color:#198754;

    border-radius:10px;

    text-decoration:none;

    font-size:14px;

    font-weight:700;

    white-space:nowrap;

    transition:.3s ease;

}


.news-section-header > a:hover,
.album-section-header > a:hover{

    background:#198754;

    color:#fff;

}


/*==================================================
ALBUM SIDE IMAGE
==================================================*/

.album-side-item img{

    aspect-ratio:4 / 3;

}


/*==================================================
HOVER IMAGE
==================================================*/

.news-feature img,
.album-feature img,
.news-side-item img,
.album-side-item img{

    transition:
        transform .5s ease;

}


.news-feature:hover img,
.album-feature:hover img{

    transform:scale(1.03);

}


.news-side-item:hover img,
.album-side-item:hover img{

    transform:scale(1.05);

}


/*==================================================
TABLET
==================================================*/

@media (max-width:1100px){

    .news-home-grid,
    .album-home-grid{

        grid-template-columns:
            minmax(0, 1.6fr)
            minmax(280px, 1fr);

        gap:25px;

    }


    .news-feature img,
    .album-feature img{

        height:360px;

    }


    .news-side-item,
    .album-side-item{

        grid-template-columns:
            110px
            minmax(0,1fr);

        padding:12px;

        gap:12px;

    }


    .news-side-item img,
    .album-side-item img{

        width:110px;

        height:90px;

    }


    .news-side-item h4,
    .album-side-item h4{

        font-size:15px;

    }

}


/*==================================================
TABLET PORTRAIT
==================================================*/

@media (max-width:850px){

    .news-home-grid,
    .album-home-grid{

        grid-template-columns:1fr;

    }


    .news-feature img,
    .album-feature img{

        height:400px;

    }


    .news-side,
    .album-side{

        grid-template-columns:
            repeat(3,1fr);

        grid-template-rows:auto;

        gap:15px;

    }


    .news-side-item,
    .album-side-item{

        display:flex;

        flex-direction:column;

        align-items:stretch;

    }


    .news-side-item img,
    .album-side-item img{

        width:100%;

        height:150px;

    }

}


/*==================================================
MOBILE
==================================================*/

@media (max-width:600px){

    .news-home,
    .album-home{

        padding:65px 0;

    }


    .news-section-header,
    .album-section-header{

        align-items:flex-start;

        flex-direction:column;

        margin-bottom:25px;

    }


    .news-feature img,
    .album-feature img{

        height:280px;

    }


    .news-feature-content,
    .album-feature-content{

        padding:22px;

    }


    .news-feature-content h3,
    .album-feature-content h3{

        font-size:22px;

    }


    .news-side,
    .album-side{

        grid-template-columns:1fr;

    }


    .news-side-item,
    .album-side-item{

        display:grid;

        grid-template-columns:
            105px
            minmax(0,1fr);

        flex-direction:initial;

        align-items:center;

    }


    .news-side-item img,
    .album-side-item img{

        width:105px;

        height:85px;

    }


    .news-side-item h4,
    .album-side-item h4{

        font-size:15px;

    }


    .news-side-item p,
    .album-side-item p{

        font-size:12px;

    }

}


/*==================================================
SMALL MOBILE
==================================================*/

@media (max-width:400px){

    .news-feature img,
    .album-feature img{

        height:230px;

    }


    .news-side-item,
    .album-side-item{

        grid-template-columns:
            90px
            minmax(0,1fr);

    }


    .news-side-item img,
    .album-side-item img{

        width:90px;

        height:75px;

    }


    .news-feature-content h3,
    .album-feature-content h3{

        font-size:20px;

    }

}