
        body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            background-color: #f5f5f5;
        }

        /* ===== HERO BANNER ===== */
        .gallery-hero {
            background: url('../images/gallery/35.webp') center center / cover no-repeat;
            padding: 80px 0 70px;
            position: relative;
            overflow: hidden;
        }

        .gallery-hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0, 77, 64, 0.55);
        }

        .gallery-hero .breadcrumb-item a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
        }

        .gallery-hero .breadcrumb-item.active {
            color: #FFD700;
        }

        /* ===== GALLERY GRID ===== */
        .gallery-item {
            overflow: hidden;
            border-radius: 10px;
            position: relative;
            cursor: pointer;
            box-shadow: 0 2px 12px rgba(0,0,0,0.10);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background: #ddd;
        }

        .gallery-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 28px rgba(0,0,0,0.18);
        }

        .gallery-item img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.06);
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 77, 64, 0.55);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 10px;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay i {
            color: #FFD700;
            font-size: 2rem;
            background: rgba(0,0,0,0.3);
            width: 54px;
            height: 54px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-item::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: #FFD700;
            z-index: 2;
        }

        /* ===== LIGHTBOX ===== */
        .lightbox-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.93);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .lightbox-overlay.active {
            display: flex;
        }

        .lightbox-img-wrap {
            max-width: 90vw;
            max-height: 82vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-img-wrap img {
            max-width: 90vw;
            max-height: 82vh;
            border-radius: 8px;
            box-shadow: 0 8px 40px rgba(0,0,0,0.6);
            object-fit: contain;
            display: block;
        }

        .lightbox-close {
            position: fixed;
            top: 18px;
            right: 22px;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 10000;
            background: rgba(255,255,255,0.12);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
            border: none;
        }

        .lightbox-close:hover { background: rgba(255,215,0,0.3); color: #FFD700; }

        .lightbox-nav {
            position: fixed;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.12);
            color: #fff;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
            z-index: 10000;
        }

        .lightbox-nav:hover { background: rgba(255,215,0,0.35); color: #FFD700; }
        .lightbox-prev { left: 16px; }
        .lightbox-next { right: 16px; }

        .lightbox-counter {
            color: rgba(255,255,255,0.65);
            font-size: 0.83rem;
            margin-top: 14px;
            letter-spacing: 1px;
        }

        @media (max-width: 575px) {
            .gallery-item img { height: 170px; }
            .lightbox-prev { left: 6px; }
            .lightbox-next { right: 6px; }
            .lightbox-nav { width: 36px; height: 36px; font-size: 0.95rem; }
        }