/* ================================
KANDANG QURBAN NUSANTARA OFFICIAL
PREMIUM MASTER CSS SEO VERSION
================================ */

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

body{
    font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
    background:#f6f8f1;
    color:#233223;
    line-height:1.7;
    overflow-x:hidden;
}

a{
    text-decoration:none;
    transition:0.3s ease;
}

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

.container{
    width:92%;
    max-width:1240px;
    margin:auto;
}

/* TOP BAR */

.topbar{
    background:#12381e;
    color:#fff;
    text-align:center;
    padding:9px 15px;
    font-size:14px;
    letter-spacing:0.5px;
}

/* HEADER */

.header{
    background:#1f5b2e;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
    position:sticky;
    top:0;
    z-index:999;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.brand{
    font-size:28px;
    font-weight:800;
    color:#fff;
    letter-spacing:0.5px;
}

nav a{
    color:#fff;
    margin-left:22px;
    font-size:15px;
    font-weight:600;
}

nav a:hover{
    color:#d4af37;
}

/* HERO SECTION */

.hero{
    background:
    linear-gradient(rgba(18,45,18,.60),rgba(18,45,18,.60)),
    url('/assets/images/hero.jpg');
    background-size:cover;
    background-position:center;
    min-height:620px;
    display:flex;
    align-items:center;
}

.overlay{
    width:100%;
    text-align:center;
    color:#fff;
}

.overlay h1{
    font-size:52px;
    line-height:1.2;
    max-width:920px;
    margin:auto;
    font-weight:800;
    margin-bottom:22px;
    text-shadow:1px 1px 3px rgba(0,0,0,.25);
}

.overlay p{
    max-width:780px;
    margin:auto;
    font-size:20px;
    margin-bottom:35px;
}

.cta{
    display:inline-block;
    background:#d4af37;
    color:#1f2b1f;
    padding:16px 34px;
    border-radius:8px;
    font-weight:700;
    font-size:17px;
    box-shadow:0 4px 15px rgba(0,0,0,.15);
}

.cta:hover{
    background:#e8c454;
    transform:translateY(-2px);
}

/* GENERAL SECTION */

.section{
    padding:80px 0;
}

.alt{
    background:#edf3e5;
}

.title{
    text-align:center;
    font-size:38px;
    font-weight:800;
    margin-bottom:45px;
    color:#183018;
}

.center{
    text-align:center;
    max-width:900px;
    margin:auto;
    font-size:18px;
}

/* GRID */

.cards3{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

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

/* CARD */

.card{
    background:#fff;
    padding:30px 25px;
    border-radius:14px;
    box-shadow:0 6px 18px rgba(0,0,0,.07);
    transition:0.3s ease;
}

.card:hover{
    transform:translateY(-5px);
}

.card h3{
    margin-bottom:12px;
    color:#1f5b2e;
    font-size:22px;
}

.card p{
    font-size:16px;
}

/* PRODUCT CARD */

.product{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 8px 22px rgba(0,0,0,.08);
    transition:0.3s ease;
}

.product:hover{
    transform:translateY(-6px);
}

.product img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.product-content{
    padding:24px;
}

.product-content h3{
    font-size:24px;
    margin-bottom:10px;
    color:#1f5b2e;
}

.product-content p{
    font-size:15px;
    margin-bottom:20px;
}

.btn{
    display:inline-block;
    background:#1f5b2e;
    color:#fff;
    padding:12px 22px;
    border-radius:7px;
    font-size:14px;
    font-weight:600;
}

.btn:hover{
    background:#12381e;
}

/* TRUST BADGE */

.badge-wrap{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-top:30px;
}

.badge{
    background:#fff;
    border-left:5px solid #d4af37;
    padding:24px;
    border-radius:12px;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
}

.badge h4{
    margin-bottom:8px;
    font-size:20px;
    color:#1f5b2e;
}

/* CTA BIG */

.cta-section{
    background:#1f5b2e;
    color:#fff;
    text-align:center;
    padding:90px 0;
}

.cta-section h2{
    font-size:40px;
    margin-bottom:18px;
}

.cta-section p{
    max-width:780px;
    margin:auto;
    margin-bottom:28px;
    font-size:18px;
}

/* STICKY WHATSAPP */

.stickywa{
    position:fixed;
    right:20px;
    bottom:20px;
    background:#25D366;
    color:#fff;
    padding:15px 22px;
    border-radius:40px;
    font-weight:700;
    box-shadow:0 4px 15px rgba(0,0,0,.18);
    z-index:9999;
}

/* FOOTER */

.footer{
    background:#16341d;
    color:#fff;
    padding:50px 0;
    text-align:center;
}

.footer h3{
    font-size:28px;
    margin-bottom:12px;
}

.footer p{
    margin-bottom:8px;
    font-size:15px;
}

/* RESPONSIVE */

@media(max-width:991px){

    .cards3,
    .cards4,
    .badge-wrap{
        grid-template-columns:1fr 1fr;
    }

    .overlay h1{
        font-size:38px;
    }

    .overlay p{
        font-size:18px;
    }

    .brand{
        font-size:22px;
    }

}

@media(max-width:768px){

    .nav{
        flex-direction:column;
        text-align:center;
    }

    nav{
        margin-top:15px;
    }

    nav a{
        margin:6px;
        display:inline-block;
    }

    .cards3,
    .cards4,
    .badge-wrap{
        grid-template-columns:1fr;
    }

    .overlay h1{
        font-size:30px;
    }

    .overlay p{
        font-size:16px;
    }

    .hero{
        min-height:500px;
    }

    .title{
        font-size:28px;
    }

    .cta-section h2{
        font-size:28px;
    }

    .stickywa{
        right:10px;
        bottom:10px;
        font-size:14px;
        padding:12px 16px;
    }

}