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

html {
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
    color: #1a1a1a;
    overflow-x: hidden;
    background: #ffffff;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0.8rem 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
    overflow: visible;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

header.scrolled .nav-item > a,
header.scrolled .lang-switch,
header.scrolled .search-btn {
    color: #2c2c2c;
}

header.scrolled .lang-switch {
    border-color: #e38e00;
    color: #e38e00;
    background: rgba(227, 142, 0, 0.08);
}

header.scrolled .search-btn {
    color: #e38e00;
}

header.scrolled .menu-toggle {
    color: #e38e00;
    background: rgba(227, 142, 0, 0.08);
}

header .nav-item > a {
    color: white;
}

header .lang-switch {
    border-color: white;
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

header .search-btn {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.logo {
    height: 55px;
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s;
}

header.scrolled .logo img {
    filter: none;
}

/* Header Search */
.header-search {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    padding: 0 7%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.header-search.active {
    opacity: 1;
    visibility: visible;
}

.header-search-input {
    flex: 1 1 auto;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border: 2px solid #e38e00;
    background: white;
    color: #1a1a1a;
    border-radius: 30px;
    outline: none;
    margin-left: clamp(0px, 12vw, 200px);
    margin-right: 1rem;
    min-width: 0;
}

.header-search-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.header-search-close {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #e38e00;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-search-close:hover {
    background: #134d03;
    transform: rotate(90deg);
}

nav {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
}

nav.hidden {
    opacity: 0;
    pointer-events: none;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s;
    border-radius: 8px;
}

.nav-item > a:hover {
    background: rgba(227, 142, 0, 0.15);
}

header.scrolled .nav-item > a:hover {
    color: #e38e00;
    background: rgba(227, 142, 0, 0.1);
}

.nav-item > a i {
    font-size: 0.65rem;
    transition: transform 0.3s;
}

.nav-item:hover > a i {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-radius: 12px;
    padding: 0.6rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(227, 142, 0, 0.2);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 0.7rem 1.3rem;
    color: #4a4a4a;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.85rem;
}

.dropdown a:hover {
    background: linear-gradient(90deg, rgba(227, 142, 0, 0.1) 0%, transparent 100%);
    color: #e38e00;
    padding-left: 1.8rem;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.header-controls.hidden {
    opacity: 0;
    pointer-events: none;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: white;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 1001;
}

.menu-toggle i {
    font-size: 1.35rem;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
}

.lang-dropdown {
    position: relative;
}

.lang-switch {
    padding: 0.5rem 1.1rem;
    border: 2px solid;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.lang-switch:hover {
    background: #e38e00;
    color: white;
    border-color: #e38e00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 142, 0, 0.3);
}

.lang-switch:hover i {
    color: white;
}

.lang-options {
    position: absolute;
    top: 120%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 130px;
    border: 1px solid rgba(227, 142, 0, 0.2);
}

.lang-dropdown:hover .lang-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-options div {
    padding: 0.7rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.85rem;
}

.lang-options div:hover {
    background: rgba(227, 142, 0, 0.1);
    color: #e38e00;
    transform: translateX(5px);
}

.lang-options div.active {
    background: #e38e00;
    color: white;
}

.search-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.search-btn:hover {
    background: #e38e00 !important;
    color: white !important;
    transform: rotate(90deg);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: absolute;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 850px;
    color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.1s ease-out;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.2rem;
    animation: fadeInUp 1s ease;
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.3rem;
    animation: fadeInUp 1s ease 0.3s backwards;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0.95;
}

/* About Section */
.about-section {
    padding: 3rem 7% 2.5rem;
    background: #ffffff;
}

.section-label {
    font-size: 0.85rem;
    color: #e38e00;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.section-title {
    font-size: 2.2rem;
    color: #134d03;
    margin-bottom: 0.4rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.about-text {
    max-width: 100%;
    margin-bottom: 2rem;
}

.about-text p {
    line-height: 1.7;
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

/* Sustainability Intro */
.sustainability-intro {
    margin-bottom: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(227, 142, 0, 0.2);
}

.sustainability-intro-title {
    font-size: 1.5rem;
    color: #134d03;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.sustainability-intro-text {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
    max-width: 900px;
}

/* Sustainability Boxes */
.sustainability-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.sust-box {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid rgba(227, 142, 0, 0.1);
}

.sust-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(227, 142, 0, 0.2);
    border-color: #e38e00;
}

.sust-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* Sustainability Card - Revised */
.sust-content {
    padding: 1.5rem;
    position: relative;
}

.sust-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    color: #1a1a1a;
    font-weight: 700;
    padding-right: 2.2rem; /* Beri space untuk arrow */
}

.sust-content p {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Tag positioning */
.sust-footer {
    display: flex;
    justify-content: flex-start;
}

.sust-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(227, 142, 0, 0.1);
    color: #e38e00;
    border-radius: 18px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s;
}

.sust-tag:hover {
    background: #e38e00;
    color: white;
}

/* News Section */
.news-section {
    padding: 3rem 7% 2.5rem;
    background: #fafafa;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.see-all-btn {
    padding: 0.65rem 1.5rem;
    background: white;
    border: 2px solid #e38e00;
    color: #e38e00;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.see-all-btn:hover {
    background: #e38e00;
    color: white;
    transform: translateX(5px);
}

.news-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.news-featured {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    height: 100%;
}

.news-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: white;
    padding: 0.4rem 1rem;
    border-radius: 18px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    color: #e38e00;
}

.news-featured-image {
    width: 100%;
    height: 100%;
    min-height: 450px;
    object-fit: cover;
}

.news-featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    color: white;
    z-index: 1;
}

.news-featured-content .news-date {
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
    opacity: 0.9;
    color: #e38e00;
}

.news-featured-content h3 {
    font-size: 1.3rem;
    line-height: 1.4;
    font-weight: 700;
    color: white;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.news-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 1rem;
    background: white;
    padding: 0.9rem;
    border-radius: 10px;
    transition: all 0.3s;
    cursor: pointer;
    flex: 1;
    border: 1px solid rgba(227, 142, 0, 0.1);
}

.news-item:hover {
    transform: translateX(6px);
    box-shadow: 0 4px 16px rgba(227, 142, 0, 0.15);
    border-color: #e38e00;
}

.news-thumb {
    width: 90px;
    height: 100%;
    min-height: 90px;
    object-fit: cover;
    border-radius: 8px;
}

.news-item-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-item-content .news-date {
    font-size: 0.75rem;
    color: #e38e00;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.news-item-content h4 {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #1a1a1a;
    font-weight: 600;
}

/* Gallery Section */
.gallery-section {
    padding: 3rem 0 2.5rem 7%;
    background: white;
    overflow: visible;
}

.gallery-header {
    margin-bottom: 2rem;
}

.gallery-scroll-container {
    position: relative;
    margin-top: 1.5rem;
    overflow: visible;
}

.gallery-scroll {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    padding: 0.8rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-card {
    min-width: 330px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.4s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    flex-shrink: 0;
    border: 1px solid rgba(227, 142, 0, 0.1);
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(227, 142, 0, 0.2);
    border-color: #e38e00;
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.4s;
}

.gallery-card:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.3rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}

.gallery-content h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
    line-height: 1.3;
}

.gallery-tag {
    background: #e38e00;
    color: white;
    padding: 0.3rem 0.7rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    display: inline-block;
}

.gallery-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e38e00;
    box-shadow: 0 4px 15px rgba(227, 142, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s;
    color: #e38e00;
    font-size: 1.1rem;
}

.gallery-scroll-btn:hover {
    background: #e38e00;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.gallery-scroll-btn.prev {
    left: -22px;
}

.gallery-scroll-btn.next {
    right: -22px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e38e00;
    color: white;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(227, 142, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #134d03;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(19, 77, 3, 0.4);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0f3d02 0%, #134d03 100%);
    color: white;
    padding: 2.5rem 7% 1.2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
}

.footer-column h3 {
    margin-bottom: 1rem;
    color: #e38e00;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.footer-about p {
    line-height: 1.6;
    margin-bottom: 0.7rem;
    opacity: 0.9;
    font-size: 0.85rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    font-size: 0.85rem;
}

.footer-column a:hover {
    color: #e38e00;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #e38e00;
    transform: translateY(-4px) rotate(5deg);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
    font-size: 0.8rem;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
    padding: 1.2rem 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.2);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice p {
    max-width: 70%;
    line-height: 1.5;
    font-size: 0.9rem;
}

.cookie-notice button {
    padding: 0.7rem 2rem;
    background: linear-gradient(135deg, #e38e00 0%, #134d03 100%);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.cookie-notice button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(227, 142, 0, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .news-container {
        grid-template-columns: 1fr;
    }

    .gallery-card {
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .header-search {
        padding: 0 5%;
    }

    .header-search-input {
        margin-left: 0 !important;
        margin-right: 0.6rem;
        padding: 0.8rem 1.2rem;
        font-size: 1rem;
        width: 100%;
        min-width: 0;
    }

    .header-search-close {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    header {
        padding: 0.8rem 5%;
        flex-wrap: wrap;
        gap: 0.6rem;
    }

    .logo {
        height: 46px;
    }

    .header-controls {
        display: flex;
        gap: 0.6rem;
    }

    .header-controls .lang-switch {
        height: 46px;
        padding: 0 0.9rem;
        font-size: 0.75rem;
    }

    .header-controls .search-btn {
        width: 46px;
        height: 46px;
        font-size: 0.9rem;
    }

    nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: min(82vw, 320px);
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: 10px 0 25px rgba(0,0,0,0.12);
        z-index: 1001;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        height: 100vh;
        max-height: 100vh;
        overflow-y: auto;
    }

    nav.nav-open {
        display: flex !important;
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }

    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.1rem 1.2rem;
        border-bottom: 1px solid #eee;
        font-weight: 600;
        color: #134d03;
    }

    .mobile-nav-close {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        border: none;
        background: #f3f3f3;
        color: #333;
        cursor: pointer;
    }

    .nav-item > a {
        color: #1a1a1a !important;
        width: 100%;
        justify-content: space-between;
        padding: 0.9rem 1.2rem;
        border-bottom: 1px solid #f0f0f0;
        font-weight: 600;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0.2rem 0 0.6rem 1.2rem;
        display: none;
    }

    .nav-item.open .dropdown {
        display: block;
    }

    .dropdown a {
        padding: 0.5rem 0;
        font-size: 0.85rem;
        color: #5a5a5a;
    }

    .menu-toggle {
        display: inline-flex;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        width: 46px;
        height: 46px;
        color: #1a1a1a;
    }

    .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.35);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1000;
    }

    .nav-overlay.show {
        opacity: 1;
        visibility: visible;
    }

    .sustainability-boxes,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .news-container {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    .cookie-notice {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .cookie-notice p {
        max-width: 100%;
    }

    .gallery-card {
        min-width: 260px;
    }

    .gallery-section {
        padding: 3rem 0 2.5rem 5%;
    }
}

@media (min-width: 769px) {
    .menu-toggle {
        display: none !important;
    }

    .nav-overlay {
        display: none !important;
    }

    .mobile-nav-header {
        display: none;
    }
}

/* Hero highlight text dengan brand color */
.highlight-text {
    color: #e38e00;
    font-weight: 700;
}

/* Statistics Grid */
.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.stat-box {
    background: linear-gradient(135deg, rgba(19, 77, 3, 0.05) 0%, rgba(227, 142, 0, 0.05) 100%);
    border: 1px solid rgba(227, 142, 0, 0.2);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #134d03;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #134d03 0%, #e38e00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* About Links */
.about-links {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.about-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.8rem;
    background: white;
    border: 2px solid rgba(227, 142, 0, 0.3);
    border-radius: 30px;
    text-decoration: none;
    color: #134d03;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(227, 142, 0, 0.1), transparent);
    transition: left 0.5s;
}

.about-link:hover::before {
    left: 100%;
}

.about-link:hover {
    border-color: #e38e00;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(227, 142, 0, 0.2);
}

.about-link i {
    font-size: 1rem;
    color: #e38e00;
    transition: transform 0.3s;
}

.about-link:hover i {
    transform: translateX(5px);
}

.link-text {
    position: relative;
    z-index: 1;
}

.sust-arrow-top {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 20px;
    height: 20px;
    color: #e38e00;
    z-index: 2;
    transition: all 0.3s;
    stroke: currentColor;
    stroke-width: 2.2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sust-box:hover .sust-arrow-top {
    color: #134d03;
}

/* Stat icon sizing and color */
.stat-icon {
    display: block;
    font-size: 2.2rem;
    margin-bottom: 0.7rem;
    background: linear-gradient(135deg, #134d03 0%, #e38e00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive for statistics and links */
@media (max-width: 1024px) {
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-links {
        flex-direction: column;
    }
    
    .about-link {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .statistics-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}
.nav-overlay {
    display: none;
}
