/* --- VARIABLES & RESET --- */
:root {
    --primary: #2E7D32;
    /* Hijau Daun Alami */
    --primary-dark: #1B5E20;
    --accent: #F9A825;
    /* Kuning Emas Bulir Sorgum */
    --text-dark: #2D3436;
    --text-light: #636E72;
    --bg-light: #F7F9F7;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

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

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

ul {
    list-style: none;
}

/* --- UTILITIES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(249, 168, 37, 0.4);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(249, 168, 37, 0.6);
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-header span {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
}

.section-header .line {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* --- NAVBAR --- */
nav {
    background: var(--white);
    padding: 32px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nav-content .logo {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

/* Download Button Styles */
.btn-download {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border: 2px solid var(--accent);
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    background: var(--accent);
    transition: all 0.3s ease;
}

.btn-download:hover {
    background: var(--primary);
    border: 2px solid var(--primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.2);
}

.btn-download i {
    font-size: 1rem;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1;
    display: inline-block;
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* --- HERO SECTION --- */
/* --- HERO SECTION --- */
#hero {
    height: 100vh;
    /* GAMBAR BARU: Landscape Ladang Hijau */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1711530388583-04a3a17be96f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 80px;
}

.hero-content-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-text {
    width: 100%;
    text-align: left;
    max-width: 800px;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    color: #eee;
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 40px;
    font-family: 'Lora', serif;
}

/* Hero Actions (Button + Partners) */
.hero-actions {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    /* Align bottom of button with bottom of logos */
    margin-top: 20px;
}

/* Hero Partners */
.hero-partners {
    display: flex;
    gap: 15px;
    /* Removed absolute positioning to allow flex alignment */
}

.partner-card {
    background: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.partner-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Responsiveness for Hero Partners */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 2.8rem;
        /* Slightly smaller on tablets */
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .hero-partners {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .hero-content-wrapper {
        padding-top: 100px;
        /* Adjust for fixed nav */
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 2rem;
        /* Much smaller on mobile */
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-actions {
        gap: 20px;
        width: 100%;
    }

    .hero-partners {
        width: 100%;
        gap: 10px;
        flex-wrap: nowrap;
        /* Force single row */
        justify-content: space-between;
        /* Distribute evenly */
    }

    .partner-card {
        width: 60px;
        /* Smaller cards */
        height: 60px;
        padding: 8px;
        border-radius: 8px;
        flex-shrink: 0;
        /* Prevent squishing */
    }
}

/* --- PLANT ANATOMY --- */
#anatomy {
    background: var(--white);
}

.anatomy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.plant-stats .stat-item {
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 4px solid var(--accent);
}

.stat-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.stat-item p {
    margin: 0;
    font-size: 0.95rem;
}

/* Container Image */
.plant-img {
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #eee;
}

.plant-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- ABOUT & PURPOSE --- */
#about {
    background-color: var(--bg-light);
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.purpose-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border-bottom: 4px solid transparent;
}

.purpose-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--primary);
}

.purpose-icon {
    width: 60px;
    height: 60px;
    background: #E8F5E9;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

/* --- 4 PILLARS --- */
#pillars {
    background: var(--primary-dark);
    color: var(--white);
    position: relative;
}

#pillars .section-header h2 {
    color: var(--white);
}

#pillars .section-header span {
    color: var(--accent);
}

#pillars p {
    color: #ccc;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.pillar-item {
    display: flex;
    gap: 20px;
}

.pillar-item i {
    font-size: 2.5rem;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 5px;
}

.pillar-content h3 {
    color: var(--white);
    margin-bottom: 10px;
}

/* --- PRODUCTS --- */
#products {
    background: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

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

.p-img {
    height: 250px;
    width: 100%;
    overflow: hidden;
    background: #ddd;
}

.p-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.product-card:hover .p-img img {
    transform: scale(1.1);
}

.p-content {
    padding: 25px;
    flex-grow: 1;
}

.p-tag {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.p-content ul li {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* --- SWOT ANALYSIS --- */
#swot {
    background: var(--bg-light);
}

.swot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.swot-box {
    padding: 40px;
    border-radius: 15px;
    color: var(--white);
}

.swot-s {
    background: #4CAF50;
}

.swot-w {
    background: #FF9800;
}

.swot-o {
    background: #2196F3;
}

.swot-t {
    background: #f44336;
}

.swot-box h3 {
    color: var(--white);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 15px;
    display: flex;
    justify-content: space-between;
}

.swot-box ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.swot-box ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* --- TECHNICAL & DAIRY --- */
#technical {
    background: var(--white);
}

.tech-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.dairy-highlight {
    background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #FFD54F;
}

.layout-highlight {
    background: #E8F5E9;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #C8E6C9;
}

/* --- ROADMAP --- */

/* --- ROADMAP (BRIGHT VERSION) --- */
#roadmap {
    /* Mengganti bg gelap dengan gradasi Putih ke Hijau Muda lembut */
    background: linear-gradient(180deg, #FFFFFF 0%, #F1F8E9 100%);
    color: var(--text-dark);
    padding-bottom: 60px;
    position: relative;
}

/* Memastikan Judul terlihat jelas di background terang */
#roadmap .section-header h2 {
    color: var(--primary-dark);
}

#roadmap .section-header span {
    color: var(--accent);
}

.timeline {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 30px 20px 50px;
    /* Menambah padding bawah untuk shadow */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
    margin: 0;
}

/* Styling Scrollbar agar pas dengan tema terang */
.timeline::-webkit-scrollbar {
    height: 8px;
}

.timeline::-webkit-scrollbar-track {
    background: #E0E0E0;
    border-radius: 4px;
}

.timeline::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.timeline-item {
    min-width: 280px;
    max-width: 300px;
    /* Kartu Putih Bersih */
    background: var(--white);
    border-radius: 20px;
    padding: 35px 30px;
    /* Border halus & Shadow modern */
    border: 1px solid #E8F5E9;
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.05);
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

/* Efek Hover: Kartu naik sedikit & border jadi hijau */
.timeline-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(46, 125, 50, 0.15);
    border-color: var(--primary);
}

/* Garis dekorasi di atas kartu */
.timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--bg-light);
    transition: 0.3s;
}

.timeline-item:hover::before {
    background: var(--accent);
    /* Jadi kuning saat di-hover */
}

/* Judul Fase */
.time-content h3 {
    color: var(--primary-dark);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Badge Tahun (Pill Shape) */
.time-content span {
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
    /* Background Hijau Segar */
    background: rgba(46, 125, 50, 0.1);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Deskripsi Text */
.time-content p {
    color: var(--text-light);
    /* Abu-abu agar enak dibaca */
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Controls (Panah) */
.roadmap-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.slider-btn {
    background: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.slider-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 8px 15px rgba(46, 125, 50, 0.2);
}

/* Progress Bar */
.slider-progress {
    width: 200px;
    height: 6px;
    background: #E0E0E0;
    /* Abu-abu terang */
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--primary);
    /* Hijau */
    border-radius: 3px;
    transition: width 0.1s;
}

@media (max-width: 768px) {
    .timeline {
        padding: 20px 20px 40px 20px;
        gap: 20px;
        scroll-snap-type: x mandatory;
    }

    .timeline-item {
        min-width: 85%;
        /* Make card take up ~85% of screen width */
        scroll-snap-align: center;
        /* Snap cards to center */
    }

    .slider-progress {
        width: 120px;
    }

    .roadmap-controls {
        display: flex !important;
        /* Force visibility just in case */
        margin-top: 30px;
    }
}

/* --- BLOG SECTION --- */
#blog {
    background: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-img-wrapper {
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.05);
}

.blog-content {
    padding: 10px 10px 5px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Tags */
.blog-tags {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.blog-date {
    font-size: 0.8rem;
    color: #999;
    font-weight: 500;
}

.tag {
    background: #f1f3f5;
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    transition: 0.2s;
}

.tag:hover {
    background: #e9ecef;
}

/* Title & Text */
.blog-content h3 {
    font-size: 1.15rem;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-content p {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 25px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Footer Section */
.blog-footer {
    border-top: 1px solid #f1f3f5;
    padding-top: 15px;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.btn-read {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 0;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s;
}

.btn-read:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.2);
    color: var(--white);
}

/* --- FOOTER --- */
/* --- FOOTER --- */
/* --- FOOTER --- */
footer {
    background: #FFFFFF;
    color: #636E72;
    padding: 80px 0 30px;
    border-top: 1px solid #EAEAEA;
    font-size: 0.95rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand .footer-logo img {
    height: 48px;
    margin-bottom: 25px;
}

.footer-brand p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #636E72;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
    background: #F0F4F0;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.2);
}

.footer-column h4,
.footer-contact h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.footer-column ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li,
.footer-contact ul li {
    margin-bottom: 16px;
}

.footer-column ul li a {
    color: #636E72;
    font-size: 1rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-contact ul li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    font-size: 1rem;
    color: #636E72;
    line-height: 1.5;
}

.footer-contact ul li i {
    color: var(--primary);
    margin-top: 4px;
    font-size: 1.1rem;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #EAEAEA;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    color: #888;
}

.legal-links a {
    color: #888;
    margin-left: 20px;
    transition: 0.3s;
}

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

/* RESPONSIVE */
@media (max-width: 992px) {

    .anatomy-grid,
    .tech-wrapper,
    .swot-grid,
    .pillars-grid,
    .about-cards,
    .footer-top,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .nav-content {
        justify-content: space-between;
        /* Revert to space-between for mobile */
    }

    .nav-content .logo {
        position: static;
        /* Reset absolute positioning */
        transform: none;
    }

    .btn-download {
        display: none;
        /* Hide download button on mobile */
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    /* Smaller Logo on Mobile */
    .logo img {
        height: 35px;
    }

    /* Mobile Menu - Side Drawer */
    .menu-toggle {
        display: block;
        z-index: 1002;
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 80px 20px 20px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateX(100%);
        z-index: 1001;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 25px;
        text-align: left;
        width: 100%;
    }

    .nav-links a {
        font-size: 1.1rem;
        display: block;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 15px;
    }
}

/* Responsive Footer Adjustments */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto 30px;
    }

    .social-links {
        justify-content: center;
    }
}

/* --- ARTICLE DETAIL PAGE --- */

/* Article Hero */
.article-hero {
    padding: 160px 0 60px;
    background: #fcfcfc;
    text-align: center;
}

.article-header-content {
    max-width: 900px;
    margin: 0 auto;
}

.article-meta-top {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.category-badge {
    background: #e3f2fd;
    color: #1976d2;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.read-time {
    color: #888;
    font-size: 0.9rem;
}

.article-header-content h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.article-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.article-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--text-dark);
    font-size: 1rem;
}

.author-info span {
    font-size: 0.85rem;
    color: #888;
}

/* Article Main Layout */
.article-main-wrapper {
    background: var(--white);
    padding-bottom: 80px;
}

.article-container {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

/* Sidebar Sticky Share */
.article-sidebar {
    position: relative;
}

.share-sticky {
    position: sticky;
    top: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.share-sticky p {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #ccc;
    font-weight: 600;
    margin-bottom: 10px;
    transform: rotate(-90deg);
    white-space: nowrap;
    margin-top: 30px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f3f5;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.share-btn:hover {
    color: white;
    transform: scale(1.1);
}

.share-btn.fb:hover {
    background: #3b5998;
}

.share-btn.tw:hover {
    background: #1da1f2;
}

.share-btn.wa:hover {
    background: #25d366;
}

.share-btn.ln:hover {
    background: #0077b5;
}


/* Article Content Body */
.article-content {
    font-family: 'Lora', serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
}

.lead-paragraph {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #222;
    margin-bottom: 40px;
    font-weight: 500;
}

.featured-image {
    margin-bottom: 50px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.featured-image img {
    width: 100%;
    height: auto;
}

.featured-image figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
}

.article-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.article-content p {
    margin-bottom: 30px;
}

.article-content ul {
    list-style: disc;
    margin-bottom: 30px;
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 15px;
}

blockquote {
    border-left: 5px solid var(--accent);
    padding: 20px 30px;
    background: #fff8e1;
    margin: 40px 0;
    font-size: 1.3rem;
    font-style: italic;
    color: #555;
    border-radius: 0 10px 10px 0;
}

.content-image-inset {
    float: right;
    width: 40%;
    margin-left: 30px;
    margin-bottom: 30px;
    border-radius: 12px;
}

/* Footer Tags */
.article-footer-tags {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 15px;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

.article-footer-tags span {
    font-weight: 700;
    color: var(--text-dark);
}

.article-footer-tags a {
    color: #888;
    font-size: 0.9rem;
    transition: 0.3s;
}

.article-footer-tags a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Related Articles Head */
.section-heading-small {
    font-size: 1.5rem;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary);
    padding-left: 15px;
}

/* Responsive Article */
@media (max-width: 992px) {
    .article-container {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .share-sticky {
        display: none;
        /* Hide sticky share on mobile */
    }

    .content-image-inset {
        float: none;
        width: 100%;
        margin: 30px 0;
    }

    .article-header-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {

    /* Article Page Mobile Optimization */
    .article-hero {
        padding: 120px 0 40px;
        /* Reduced top padding */
    }

    .article-header-content h1 {
        font-size: 1.6rem;
        /* Smaller title */
        margin-bottom: 20px;
    }

    .article-meta-top {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px;
    }

    .article-content {
        font-size: 1rem;
        /* Readable body text */
        line-height: 1.7;
    }

    .article-content h3 {
        font-size: 1.4rem;
        margin-top: 30px;
    }

    .lead-paragraph {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .featured-image {
        margin-bottom: 30px;
        border-radius: 10px;
    }

    .featured-image figcaption {
        font-size: 0.75rem;
        padding: 8px 15px;
    }

    /* Pull quotes and floats */
    blockquote {
        padding: 15px 20px;
        font-size: 1.1rem;
        margin: 30px 0;
    }

    .content-image-inset {
        width: 100%;
        margin: 20px 0;
        float: none;
    }

    /* Ensure container padding is sufficient */
    .article-container {
        display: block;
        /* Switch to block to avoid grid overflow issues */
        padding: 0 25px;
        width: 100%;
        overflow-x: hidden;
        /* Prevent horizontal overflow */
    }

    .article-sidebar {
        display: none;
        /* Completely hide sidebar on mobile to free up space */
    }
}

/* --- ORGANIZATION CHART PAGE --- */

/* Section Specifics */
.org-page-container {
    padding-top: 120px;
    /* Account for fixed navbar if applicable, or just spacing */
    padding-bottom: 60px;
}

.org-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.org-section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.org-section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* CARD STYLES */
.org-card {
    background: var(--white);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
    border-top: 5px solid var(--primary);
    width: 220px;
    flex-shrink: 0;
}

.org-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(46, 125, 50, 0.15);
}

.org-img-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 15px;
    overflow: hidden;
    border: 3px solid #E8F5E9;
    padding: 2px;
    position: relative;
}

.org-img-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #E0E0E0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9E9E9E;
    font-size: 2rem;
}

.org-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.org-role {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

/* HIERARCHY LAYOUT */
.org-chart-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    /* Vertical gap */
    position: relative;
    padding-bottom: 50px;
}

.level-row {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    z-index: 2;
}

/* Connector Overlay */
.connector-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.connector-path {
    fill: none;
    stroke: #B0BEC5;
    stroke-width: 2;
}

/* RESPONSIVE ORGANIZATION CHART */
@media (max-width: 992px) {

    /* Hide SVG lines on tablet/mobile */
    .connector-svg {
        display: none;
    }

    .level-row {
        flex-wrap: wrap;
        gap: 30px !important;
        /* Override inline styles */
    }

    .org-card {
        margin: 0 10px;
        width: 100%;
        /* Adapts to screen better if flex column or smaller grid */
        max-width: 280px;
    }

    /* Reset custom margins for mobile flow */
    .org-card[style*="margin-right"],
    .org-card[style*="margin-left"] {
        margin-right: 10px !important;
        margin-left: 10px !important;
    }

    /* Add simple vertical lines using pseudo-elements for mobile */
    .org-card::before {
        content: '';
        position: absolute;
        top: -40px;
        left: 50%;
        width: 2px;
        height: 40px;
        background: #B0BEC5;
        transform: translateX(-50%);
    }

    /* No top line for top card */
    .org-chart-wrapper .level-row:first-child .org-card::before {
        display: none;
    }

    .org-chart-wrapper {
        gap: 40px;
    }
}

/* --- TENTANG KAMI PAGE --- */

/* (Hero section removed) */

/* 2. LAYOUT GRIDS */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    /* Ensure equal height columns */
}

.img-box {
    position: relative;
    height: 100%;
    /* Fill the grid cell height */
}

/* Decorative border/shadow for images */
.img-box img {
    width: 100%;
    height: 100%;
    /* Fill the container height */
    object-fit: cover;
    /* Maintain aspect ratio while filling */
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.img-box:hover img {
    transform: scale(1.02);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* 3. CARDS (Modernized) */
.feature-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Softer initial shadow */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-card[style*="text-align: center"] {
    align-items: center;
    /* Override for centered cards */
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(46, 125, 50, 0.15);
    border-color: var(--primary);
}

/* Icon with Gradient */
.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    /* Squircle */
    margin-bottom: 25px;
    font-size: 2rem;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.1);
}

.feature-card:hover .icon-circle {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.feature-card h3,
.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* --- PRODUCT PAGE STYLES --- */

/* 1. HERO PRODUCT */
.hero-product {
    padding: 180px 0 100px;
    background: radial-gradient(circle at top right, rgba(46, 125, 50, 0.05), transparent 40%),
        radial-gradient(circle at bottom left, rgba(249, 168, 37, 0.05), transparent 40%),
        var(--white);
    text-align: center;
}

.hero-label {
    display: inline-block;
    background: #e8f5e9;
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-product h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-product p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* 2. PRODUCT FILTER (Modern Pill Style) */
.product-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 60px;
}

.filter-btn {
    border: 1px solid #e0e0e0;
    background: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--primary);
    transition: width 0.3s ease;
    z-index: -1;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.15);
}

.filter-btn:hover::before,
.filter-btn.active::before {
    width: 100%;
}

/* 3. SHOP GRID */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
    /* Increased gap for breathing room */
}

/* 4. SHOP CARD (Premium Card) */
.shop-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    /* Soft premium shadow */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    position: relative;
}

.shop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.shop-img {
    position: relative;
    height: 260px;
    /* Slightly taller */
    overflow: hidden;
    background: #f8f8f8;
}

.shop-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.shop-card:hover .shop-img img {
    transform: scale(1.08);
}

.shop-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: white;
    color: var(--text-dark);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shop-badge.new {
    background: var(--accent);
    /* Accent color for 'New' */
    color: var(--white);
}

/* Shop Actions Overlay */
.shop-actions {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    z-index: 2;
}

.shop-card:hover .shop-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: none;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    font-size: 1.1rem;
}

.action-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.shop-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.shop-meta {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.shop-content h3 {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.shop-content p {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 25px;
    flex-grow: 1;
    line-height: 1.6;
}

.shop-footer {
    padding-top: 15px;
    border-top: 1px dashed #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shop-footer .price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
}

.btn-buy {
    padding: 10px 24px;
    background: var(--primary);
    /* Green button */
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.2);
}

.btn-buy:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}

.check-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    /* Align top for multi-line text */
    gap: 15px;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.check-list i {
    color: var(--white);
    background: var(--primary);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
    margin-top: 3px;
    /* visual alignment */
    flex-shrink: 0;
}

/* 5. CTA SECTION */
/* 5. CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    text-align: center;
    padding: 80px 40px;
    border-radius: 30px;
    margin-bottom: 80px;
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.3);
    position: relative;
    overflow: hidden;
}

/* Decorative element (optional subtle circle) */
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.btn-cta {
    display: inline-block;
    padding: 18px 45px;
    background: var(--accent);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: var(--primary);
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* --- BLOG LISTING PAGE --- */

/* Blog Hero */
.blog-hero {
    padding: 180px 0 100px;
    background: linear-gradient(rgba(27, 94, 32, 0.9), rgba(27, 94, 32, 0.8)), url('https://images.unsplash.com/photo-1505471768190-275e2ad7b3f9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
}

.blog-hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
}

.blog-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Featured Post */
.featured-post-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    /* Premium shadow */
    transition: transform 0.3s ease;
    align-items: center;
    /* Center content vertically */
}

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

.featured-img {
    height: 100%;
    min-height: 300px;
    /* Reduced from 400px */
    max-height: 400px;
    /* Cap the max height */
    background: #eee;
    position: relative;
    overflow: hidden;
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-post-card:hover .featured-img img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.featured-content {
    padding: 30px 40px;
    /* Reduced padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content h3 {
    font-size: 1.8rem;
    /* Slightly smaller font */
    margin-bottom: 15px;
    line-height: 1.3;
    color: var(--text-dark);
}

.featured-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Limit text lines */
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Blog Grid 2 */
/* Blog Grid 2 & Related */
/* Blog Grid 2 & Related */
.blog-grid2,
.blog-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
}

.blog-grid .blog-card,
.blog-grid2 .blog-card {
    flex: 0 1 350px;
    /* Base width */
    max-width: 350px;
}

/* Related Articles Section specific adjustments */
.related-articles {
    background-color: #f0f4f0;
    /* Darker greenish-grey background */
    border-top: 1px solid #e0e0e0;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    color: var(--text-dark);
    font-weight: 600;
    transition: 0.3s;
    border: 1px solid #eee;
}

.page-link:hover,
.page-link.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.page-dots {
    display: flex;
    align-items: flex-end;
    padding-bottom: 10px;
    color: var(--text-light);
    font-weight: 700;
    letter-spacing: 2px;
}

/* Responsive Blog */
@media (max-width: 992px) {
    .featured-post-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .featured-img {
        height: 300px;
        min-height: auto;
    }

    .featured-content {
        padding: 30px;
    }

    .featured-content h3 {
        font-size: 1.5rem;
    }

    .blog-hero h1 {
        font-size: 2.5rem;
    }

    .blog-grid2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* --- NEW HERO PRODUCT UI --- */

.hero-product {
    padding: 160px 0 100px;
    /* Reduced top padding slightly */
    background: #fff;
    /* Solid white background for cleanness */
    background-image: radial-gradient(#2E7D32 1px, transparent 1px);
    background-size: 40px 40px;
    /* Subtle dot pattern */
    background-color: #f8fcf8;
    text-align: left;
    /* Reset text align */
    overflow: hidden;
    /* For floating elements */
    position: relative;
}

.hero-product-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Column: Text */
.label-wrapper {
    margin-bottom: 25px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 125, 50, 0.1);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-text-col h1 {
    font-size: 4rem;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.highlight-text {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

/* Underline effect */
.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 15px;
    background: rgba(249, 168, 37, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.hero-text-col p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 50px;
}

.btn-primary {
    padding: 15px 35px;
    background: var(--text-dark);
    /* Modern black button */
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(46, 125, 50, 0.2);
}

.btn-text {
    color: var(--text-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-text i {
    font-size: 1.5rem;
    color: var(--accent);
}

.btn-text:hover {
    color: var(--primary);
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid #e0e0e0;
    padding-top: 30px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-size: 1.5rem;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 5px;
}

.stat span {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Right Column: Image Composition */
.hero-img-col {
    position: relative;
    /* Center img in col */
    display: flex;
    justify-content: center;
}

.img-composition {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.main-img-box {
    width: 100%;
    height: 600px;
    border-radius: 200px 200px 20px 20px;
    /* Arch shape */
    overflow: hidden;
    position: relative;
    box-shadow: 20px 20px 0px rgba(46, 125, 50, 0.1);
    /* Solid shadow offset */
    z-index: 1;
}

.main-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    bottom: 50px;
    left: -40px;
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
    max-width: 250px;
}

.floating-card .icon-box {
    width: 50px;
    height: 50px;
    background: #E8F5E9;
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.floating-card strong {
    display: block;
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 2px;
}

.floating-card span {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.2;
    display: block;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Responsiveness for Hero */
@media (max-width: 992px) {
    .hero-product {
        padding: 120px 0 60px;
    }

    .hero-product-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-text-col {
        order: 1;
        text-align: center;
    }

    .hero-text-col h1 {
        font-size: 3rem;
    }

    .hero-text-col p {
        margin: 0 auto 40px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-img-col {
        order: 2;
        /* Image bottom on mobile, or top? Usually visual first. Let's try top. */
        order: 0;
    }

    .main-img-box {
        height: 400px;
        border-radius: 20px;
        /* Simpler shape on mobile */
        box-shadow: 10px 10px 0px rgba(46, 125, 50, 0.1);
    }

    .floating-card {
        left: 20px;
        bottom: 20px;
    }
}


/* --- NEW HERO ABOUT UI (Distinct Style) --- */

.hero-about {
    padding: 120px 0 100px;
    background-color: #fcfcfc;
    position: relative;
    overflow: hidden;
}

/* Background blob */
.hero-about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 168, 37, 0.08) 0%, transparent 70%);
    z-index: 0;
}

.hero-about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text-col {
    padding-right: 20px;
}

.badge-pill {
    display: inline-block;
    padding: 6px 16px;
    background: #E8F5E9;
    color: var(--primary);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.about-text-col h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.about-text-col .highlight {
    color: var(--primary);
    font-style: italic;
    font-family: 'Lora', serif;
}

.intro-lead {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
    border-left: 5px solid var(--accent);
    padding-left: 25px;
}

/* Image Collage Layout */
.about-img-collage {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    height: 550px;
    /* Fixed height for composition */
    position: relative;
}

.collage-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.collage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.collage-img:hover img {
    transform: scale(1.05);
    /* Gentle zoom */
}

/* Large Main Image (Top Left) */
.c-img-1 {
    grid-column: 1 / 10;
    grid-row: 1 / 10;
    z-index: 1;
}

/* Secondary Image (Bottom Right overlap) */
.c-img-2 {
    grid-column: 8 / 13;
    grid-row: 7 / 13;
    z-index: 2;
    border: 8px solid white;
    /* Thick white border for separation */
}

/* Decorative Card (Top Right) */
.collage-decor {
    grid-column: 10 / 13;
    grid-row: 2 / 5;
    background: var(--white);
    z-index: 3;
    border-radius: 15px;
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 2.5rem;
    animation: bounce 3s infinite ease-in-out;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Responsive About Hero */
@media (max-width: 992px) {
    .hero-about {
        padding: 100px 0 60px;
    }

    .hero-about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-text-col {
        padding-right: 0;
        text-align: center;
    }

    .intro-lead {
        border-left: none;
        border-top: 4px solid var(--accent);
        padding-top: 20px;
        padding-left: 0;
    }

    .about-img-collage {
        height: 400px;
        /* Shorter on mobile */
    }

    .c-img-1 {
        grid-column: 1 / 11;
        grid-row: 1 / 10;
    }

    .c-img-2 {
        grid-column: 8 / 13;
        grid-row: 8 / 13;
    }

    .collage-decor {
        display: none;
        /* Hide decor on mobile to save space */
    }

    .about-text-col h1 {
        font-size: 2.5rem;
    }
}

/* --- NEW HERO SHOP (Banner Style) --- */

.hero-shop {
    padding: 160px 0 100px;
    background-color: #f7f9f7;
    /* Very light neutral base */
    position: relative;
    overflow: hidden;
}

.hero-shop-wrapper {
    display: flex;
    justify-content: center;
}

.hero-banner {
    width: 100%;
    background: linear-gradient(110deg, #1b5e20 0%, #2e7d32 60%, #43a047 100%);
    border-radius: 30px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 40px;
    position: relative;
    color: white;
    box-shadow: 0 25px 50px rgba(27, 94, 32, 0.25);
    overflow: hidden;
}

/* Background patterns on banner */
.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.05;
    pointer-events: none;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-badge {
    display: inline-block;
    background: var(--bg-light);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--primary);
    /* Gold accent */
}

.banner-content h1 {
    font-size: 3.2rem;
    margin-bottom: 25px;
    line-height: 1.15;
    color: var(--bg-light);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.banner-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 500px;
}

.banner-btns {
    display: flex;
    gap: 20px;
}

.btn-white {
    background: white;
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 50px;
    border-color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-white:hover {
    transform: translateY(-3px);
    background: var(--accent);
    color: var(--bg-light);
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline-white:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

/* Banner Image Composition */
.banner-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Product Collage inside Banner */
.prod-img-collage {
    position: relative;
    width: 100%;
    height: 100%;
}

.p-img-main {
    width: 320px;
    height: 400px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    z-index: 2;
    transition: 0.5s;
}

.p-img-main:hover {
    transform: translate(-50%, -50%) rotate(0deg) scale(1.05);
}

.p-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-circle-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.floating-tag {
    position: absolute;
    background: white;
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    z-index: 3;
}

.tag-1 {
    top: 10%;
    right: 10%;
    transform: rotate(5deg);
}

.tag-2 {
    bottom: 15%;
    left: 10%;
    transform: rotate(-5deg);
}

/* Responsive Shop Hero */
@media (max-width: 992px) {
    .hero-banner {
        grid-template-columns: 1fr;
        padding: 40px;
        text-align: center;
    }

    .banner-content h1 {
        font-size: 2.5rem;
    }

    .banner-content p {
        margin: 0 auto 30px;
    }

    .banner-btns {
        justify-content: center;
    }

    .banner-image {
        min-height: 300px;
    }

    .p-img-main {
        width: 250px;
        height: 320px;
    }

    .p-circle-bg {
        width: 300px;
        height: 300px;
    }
}

/* --- TECHNICAL HIGHLIGHTS (Added via Update) --- */

.tech-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.dairy-highlight,
.layout-highlight,
.synergy-highlight {
    padding: 30px;
    border-radius: 20px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dairy-highlight:hover,
.layout-highlight:hover,
.synergy-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.dairy-highlight {
    background: #FFF8E1;
    /* Light Amber */
    border: 1px solid #FFE082;
}

.layout-highlight {
    background: #E8F5E9;
    /* Light Green */
    border: 1px solid #C8E6C9;
}

.synergy-highlight {
    background: #E3F2FD;
    /* Light Blue */
    border: 1px solid #BBDEFB;
}


/* --- REFACTORED INLINE STYLES --- */

/* Tech Highlights Internal Elements */
.highlight-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.highlight-header i {
    font-size: 3rem;
}

.highlight-header h3 {
    margin: 0;
    font-size: 1.5rem;
    /* Explicit size to match h3 defaults or previous look */
}

/* Dairy Card Colors */
.dairy-highlight .highlight-header i,
.dairy-highlight .highlight-header h3 {
    color: #D88218;
}

.dairy-stat {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2E7D32;
    margin-top: 10px;
}

/* System Tanam Card Colors */
.layout-highlight .highlight-header i,
.layout-highlight .highlight-header h3 {
    color: #2E7D32;
}

.layout-list {
    margin-top: 10px;
    font-weight: 600;
    color: #1B5E20;
    padding-left: 0;
    /* consistent with previous */
    list-style: none;
    /* explicitly remove dots if they weren't there */
}

/* Synergy Card Colors */
.synergy-highlight .highlight-header i,
.synergy-highlight .highlight-header h3 {
    color: #1565C0;
}

.synergy-stat {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0D47A1;
    margin-top: 10px;
}

.highlight-label {
    font-size: 0.8rem;
    font-weight: 400;
    color: #555;
    margin-left: 5px;
}

/* Product Card Icons */
.p-content ul li i {
    color: var(--primary);
}

/* Footer Icons */
.footer-brand img[style*='width'] {
    width: 20px;
    vertical-align: middle;
}