        :root {
            --navbar: #1d3322;
            --primary: #568259;
            --dark: #464E47;
            --accent: #96E6B3;
            --soft-bg: #CCFCCB;
            --main-bg: #F1FFFA;
            --white: #FFFFFF;
            --shadow: 0 4px 24px rgba(70, 78, 71, 0.12);
            --shadow-lg: 0 12px 48px rgba(70, 78, 71, 0.18);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; overflow-x: hidden; }
        body { font-family: 'Poppins', sans-serif; color: var(--dark); background: var(--main-bg); overflow-x: hidden; }

        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--main-bg); }
        ::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

        /* NAVBAR */
        .navbar {
            position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
            padding: 16px 0; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .navbar.scrolled {
            background: var(--navbar); backdrop-filter: blur(20px);
            padding: 10px 0; box-shadow: 0 2px 20px rgba(70,78,71,0.1);
        }
        .navbar .container {
            display: flex; align-items: center; justify-content: space-between;
            max-width: 1280px; margin: 0 auto; padding: 0 24px;
        }
        .nav-brand {
            display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--white); transition: color 0.3s;
        }
        .navbar.scrolled .nav-brand { color: var(--accent); }
        .nav-brand-icon {
            width: 44px; height: 44px; background: none ; border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 20px; color: white; font-weight: 800; overflow: hidden;
        }
        .nav-brand-icon img { width: 100%; height: 100%; object-fit: ; }
        .nav-brand-text h1 { font-size: 16px; font-weight: 700; line-height: 1.2; }
        .nav-brand-text span { font-size: 11px; font-weight: 400; opacity: 0.8; }
        .nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
        .nav-links a {
            text-decoration: none; color: var(--white); font-size: 14px; font-weight: 500;
            padding: 8px 16px; border-radius: 8px; transition: all 0.3s;
        }
        .navbar.scrolled .nav-links a { color: var(--accent); }
        .nav-links a:hover, .nav-links a.active { background: rgba(86,130,89,0.15); color: var(--primary); }
        .mobile-toggle {
            display: none; background: none; border: none; font-size: 24px;
            color: var(--white); cursor: pointer;
        }
        .navbar.scrolled .mobile-toggle { color: var(--accent); }

        /* PAGE HERO */
        .page-hero {
            min-height: 55vh; display: flex; align-items: center;
            position: relative; overflow: hidden;
            background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
        }
        .page-hero::before {
            content: ''; position: absolute; inset: 0;
            background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.04) 1px, transparent 1px),
                              radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 1px, transparent 1px);
            background-size: 60px 60px, 80px 80px;
        }
        .page-hero .container {
            max-width: 1280px; margin: 0 auto; padding: 140px 24px 80px;
            text-align: center; position: relative; z-index: 2;
        }
        .breadcrumb {
            display: flex; align-items: center; justify-content: center; gap: 8px;
            margin-bottom: 24px;
        }
        .breadcrumb a, .breadcrumb span {
            font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none;
        }
        .breadcrumb a:hover { color: var(--accent); }
        .breadcrumb .sep { color: rgba(255,255,255,0.3); }
        .breadcrumb .current { color: var(--accent); font-weight: 600; }
        .page-hero h1 {
            font-size: clamp(32px, 5vw, 48px); font-weight: 900;
            color: var(--white); line-height: 1.1; margin-bottom: 16px;
        }
        .page-hero h1 .hl { color: var(--accent); }
        .page-hero p {
            font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.8; max-width: 500px; margin: 0 auto;
        }

        /* SECTION COMMON */
        .section { padding: 100px 0; position: relative; }
        .section .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        .section-header { text-align: center; margin-bottom: 60px; }
        .badge {
            display: inline-block; background: rgba(86,130,89,0.1); color: var(--primary);
            font-size: 12px; font-weight: 600; padding: 6px 16px; border-radius: 20px;
            text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px;
        }
        .sec-title {
            font-size: clamp(28px, 4vw, 40px); font-weight: 800;
            color: var(--dark); margin-bottom: 16px; line-height: 1.2;
        }
        .sec-desc {
            font-size: 16px; color: var(--dark); opacity: 0.6;
            max-width: 600px; margin: 0 auto; line-height: 1.7;
        }

        /* FILTER BUTTONS */
        .filter-bar {
            display: flex; justify-content: center; gap: 8px; margin-bottom: 48px; flex-wrap: wrap;
        }
        .filter-btn {
            padding: 8px 20px; border-radius: 10px; border: 2px solid var(--primary);
            background: transparent; color: var(--primary); font-size: 13px;
            font-weight: 600; cursor: pointer; transition: all 0.3s; font-family: inherit;
        }
        .filter-btn:hover, .filter-btn.active {
            background: var(--primary); color: var(--white);
        }

        /* ACCORDION GALLERY */
        .gallery-accordion { max-width: 900px; margin: 0 auto; }
        .acc-item {
            background: var(--white); border-radius: 20px; margin-bottom: 16px;
            box-shadow: var(--shadow); overflow: hidden;
            transition: all 0.4s; border: 2px solid transparent;
        }
        .acc-item:hover { box-shadow: var(--shadow-lg); }
        .acc-item.open { border-color: var(--accent); }

        .acc-trigger {
            padding: 0; cursor: pointer; width: 100%;
            display: grid; grid-template-columns: 220px 1fr auto;
            align-items: center; border: none; background: none;
            text-align: left; font-family: inherit; gap: 0;
            transition: all 0.3s;
        }
        .acc-trigger:hover .acc-thumb-inner { transform: scale(1.05); }

        .acc-thumb {
            width: 100%; aspect-ratio: 16/10; overflow: hidden; position: relative;
        }
        .acc-thumb-inner {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.5s;
        }
        .acc-category-tag {
            position: absolute; top: 12px; left: 12px;
            background: rgba(86,130,89,0.9); color: white;
            font-size: 10px; font-weight: 700; padding: 4px 10px;
            border-radius: 6px; text-transform: uppercase; letter-spacing: 1px;
        }
        .acc-info { padding: 24px 28px; }
        .acc-date {
            font-size: 12px; color: var(--primary); font-weight: 600;
            margin-bottom: 6px; display: flex; align-items: center; gap: 6px;
        }
        .acc-info h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
        .acc-info p.acc-short { font-size: 13px; color: var(--dark); opacity: 0.55; line-height: 1.6; }

        .acc-chevron {
            width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
            font-size: 16px; color: var(--primary); transition: all 0.3s; flex-shrink: 0;
        }
        .acc-item.open .acc-chevron { transform: rotate(180deg); color: var(--accent); }

        .acc-body {
            max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .acc-item.open .acc-body { max-height: none; }
        .acc-body-inner {
            padding: 28px 28px; border-top: 1px solid rgba(70,78,71,0.08);
            margin-top: 0;
        }
        .acc-detail-grid {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 20px;
        }
        .acc-detail-thumb {
            aspect-ratio: 4/3; border-radius: 12px; overflow: hidden;
        }
        .acc-detail-thumb div {
            width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
            font-size: 28px; color: white; opacity: 0.6;
        }
        .acc-description {
            font-size: 14px; color: var(--dark); opacity: 0.7; line-height: 1.9; margin-bottom: 16px;
        }
        .acc-meta {
            display: flex; gap: 24px; flex-wrap: wrap;
        }
        .acc-meta-item {
            display: flex; align-items: center; gap: 8px;
            font-size: 13px; color: var(--dark); opacity: 0.6;
        }
        .acc-meta-item i { color: var(--primary); }

        /* IMAGE LIGHTBOX */
        .lightbox-overlay {
            position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 5000;
            display: none; align-items: center; justify-content: center; padding: 40px;
        }
        .lightbox-overlay.active { display: flex; }
        .lightbox-content {
            max-width: 80vw; max-height: 80vh; border-radius: 16px; overflow: hidden;
            animation: lightboxIn 0.3s ease;
        }
        @keyframes lightboxIn {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }
        .lightbox-close {
            position: absolute; top: 24px; right: 24px; width: 44px; height: 44px;
            border-radius: 12px; background: rgba(255,255,255,0.1); border: none;
            color: white; font-size: 20px; cursor: pointer; display: flex;
            align-items: center; justify-content: center; transition: all 0.3s;
        }
        .lightbox-close:hover { background: rgba(255,255,255,0.2); }
        .lightbox-nav {
            position: absolute; top: 50%; transform: translateY(-50%);
            width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.1);
            border: none; color: white; font-size: 18px; cursor: pointer;
            display: flex; align-items: center; justify-content: center; transition: all 0.3s;
        }
        .lightbox-nav:hover { background: rgba(255,255,255,0.2); }
        .lightbox-prev { left: 24px; }
        .lightbox-next { right: 24px; }

        /* BACK TO TOP */
        .back-to-top {
            position: fixed; bottom: 30px; right: 30px; width: 48px; height: 48px;
            border-radius: 14px; background: var(--primary); color: white; border: none;
            font-size: 18px; cursor: pointer; display: flex; align-items: center;
            justify-content: center; opacity: 0; visibility: hidden;
            transform: translateY(20px); transition: all 0.4s; z-index: 999; box-shadow: var(--shadow);
        }
        .back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
        .back-to-top:hover { background: var(--dark); transform: translateY(-4px); }

        /* FOOTER */
        .footer { background: var(--dark); color: var(--white); padding: 60px 0 0; }
        .footer .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
        .footer-brand h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
        .footer-brand p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 20px; }
        .fsoc { display: flex; gap: 12px; }
        .fsoc a {
            width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.1);
            display: flex; align-items: center; justify-content: center; color: var(--white);
            text-decoration: none; transition: all 0.3s;
        }
        .fsoc a:hover { background: var(--primary); transform: translateY(-2px); }
        .fcol h4 { font-size: 16px; font-weight: 700; margin-bottom: 20px; color: var(--accent); }
        .fcol ul { list-style: none; padding: 0; }
        .fcol li { margin-bottom: 10px; }
        .fcol a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color 0.3s; }
        .fcol a:hover { color: var(--accent); }
        .footer-bottom { padding: 24px 0; text-align: center; font-size: 13px; color: rgba(255,255,255,0.4); }

        /* MODAL */
        .modal-overlay {
            position: fixed; inset: 0; background: rgba(0,0,0,0.7);
            backdrop-filter: blur(4px); z-index: 2000; display: none;
            align-items: center; justify-content: center; padding: 24px;
        }
        .modal-overlay.active { display: flex; }
        .modal {
            background: var(--white); border-radius: 24px; max-width: 500px; width: 100%;
            padding: 40px; position: relative; animation: modalIn 0.4s ease;
        }
        @keyframes modalIn {
            from { opacity: 0; transform: scale(0.9) translateY(20px); }
            to { opacity: 1; transform: scale(1) translateY(0); }
        }
        .modal-close {
            position: absolute; top: 16px; right: 16px; width: 36px; height: 36px;
            border-radius: 10px; border: none; background: var(--main-bg);
            font-size: 16px; cursor: pointer; display: flex; align-items: center;
            justify-content: center; transition: all 0.3s;
        }
        .modal-close:hover { background: var(--soft-bg); }
        .modal h2 { font-size: 24px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
        .modal > p { font-size: 14px; color: var(--dark); opacity: 0.6; margin-bottom: 24px; }
        .fg { margin-bottom: 16px; }
        .fg label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--dark); }
        .fg input {
            width: 100%; padding: 12px 16px; border-radius: 10px;
            border: 1px solid rgba(70,78,71,0.15); background: var(--main-bg);
            color: var(--dark); font-size: 14px; font-family: inherit; transition: all 0.3s;
        }
        .fg input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(86,130,89,0.1); }
        .fg input::placeholder { color: rgba(70,78,71,0.4); }
        .btn-submit {
            width: 100%; padding: 14px; background: var(--primary); color: white;
            border: none; border-radius: 12px; font-size: 15px; font-weight: 700;
            cursor: pointer; transition: all 0.3s; font-family: inherit;
        }
        .btn-submit:hover { background: var(--dark); }

        /* TOAST */
        #toast {
            position: fixed; top: 24px; right: 24px; background: var(--primary); color: white;
            padding: 16px 24px; border-radius: 12px; font-size: 14px; font-weight: 600;
            z-index: 3000; transform: translateX(120%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
            box-shadow: 0 8px 32px rgba(0,0,0,0.2); display: flex; align-items: center; gap: 10px;
        }

        /* LOADER */
        .page-loader {
            position: fixed; inset: 0; background: var(--primary); display: flex;
            align-items: center; justify-content: center; z-index: 9999;
            transition: opacity 0.5s, visibility 0.5s;
        }
        .page-loader.hidden { opacity: 0; visibility: hidden; }
        .loader-spinner {
            width: 48px; height: 48px; border: 4px solid rgba(255,255,255,0.3);
            border-top-color: var(--accent); border-radius: 50%; animation: spin 0.8s linear infinite;
        }
        @keyframes spin { to { transform: rotate(360deg); } }

        /* SCROLL ANIMATIONS */
        .animate-on-scroll {
            opacity: 0; transform: translateY(40px);
            transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .animate-on-scroll.anl { transform: translateX(-60px); }
        .animate-on-scroll.anr { transform: translateX(60px); }
        .animate-on-scroll.vis { opacity: 1; transform: translateY(0) translateX(0); }
        .stagger-1 { transition-delay: 0.1s; }
        .stagger-2 { transition-delay: 0.2s; }
        .stagger-3 { transition-delay: 0.3s; }
        .stagger-4 { transition-delay: 0.4s; }
        .stagger-5 { transition-delay: 0.5s; }
        .stagger-6 { transition-delay: 0.6s; }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .acc-trigger { grid-template-columns: 160px 1fr auto; }
            .acc-detail-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none; position: fixed; top: 0; left: 0; width: 100%;
                height: 100vh; background: var(--white); flex-direction: column;
                justify-content: center; align-items: center; gap: 16px;
            }
            .nav-links.open { display: flex; }
            .nav-links a { color: var(--dark) !important; font-size: 18px; }
            .mobile-toggle { display: block; z-index: 1001; }
            .page-hero { min-height: 45vh; }
            .acc-trigger {
                grid-template-columns: 1fr;
            }
            .acc-thumb { aspect-ratio: 16/9; }
            .acc-chevron { display: none; }
            .acc-body-inner { padding: 0 20px 24px; }
            .acc-info { padding: 20px; }
            .acc-detail-grid { grid-template-columns: 1fr 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
        }