    
        /* ===== WAREHOUSE GALLERY — COMPACT GRID ===== */

        /* Hero */
        .wh-hero {
            position: relative;
            padding: 150px 0 80px;
            background: linear-gradient(160deg, rgba(8, 92, 45, 0.9) 0%, rgba(6, 68, 33, 0.9) 50%, rgba(18, 18, 36, 0.9) 100%), url('assets/images/warehouse_hero.png') center/cover no-repeat;
            overflow: hidden;
            text-align: center;
            color: #fff;
        }

        .wh-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="g" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="1" cy="1" r="0.6" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect fill="url(%23g)" width="100" height="100"/></svg>');
            pointer-events: none;
        }

        .wh-hero-glow {
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.18;
            pointer-events: none;
        }

        .wh-hero-glow.g1 {
            background: #12a854;
            top: -100px;
            right: -50px;
        }

        .wh-hero-glow.g2 {
            background: #e74c3c;
            bottom: -80px;
            left: -60px;
            width: 300px;
            height: 300px;
        }

        .wh-hero .section-badge {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(8px);
        }

        .wh-hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            margin-bottom: 14px;
            line-height: 1.2;
            position: relative;
        }

        .wh-hero h1 span {
            color: #5ef5a0;
        }

        .wh-hero>.container>p {
            font-size: 1.05rem;
            opacity: 0.8;
            max-width: 560px;
            margin: 0 auto 30px;
        }

        .wh-counters {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-top: 30px;
        }

        .wh-counter {
            text-align: center;
            padding: 16px 24px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 14px;
            backdrop-filter: blur(6px);
            min-width: 130px;
        }

        .wh-counter h3 {
            font-size: 1.8rem;
            font-weight: 800;
            color: #5ef5a0;
            margin-bottom: 2px;
        }

        .wh-counter p {
            font-size: 0.78rem;
            opacity: 0.7;
            margin: 0;
            font-weight: 500;
        }

        /* Filter bar */
        .wh-toolbar {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-bottom: 36px;
            flex-wrap: wrap;
        }

        .wh-pill {
            padding: 9px 22px;
            border-radius: 50px;
            font-size: 0.82rem;
            font-weight: 600;
            cursor: pointer;
            border: 2px solid var(--border);
            background: var(--white);
            color: var(--text-body);
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .wh-pill:hover,
        .wh-pill.active {
            background: var(--green);
            color: #fff;
            border-color: var(--green);
            box-shadow: 0 4px 16px rgba(10, 126, 61, 0.2);
        }

        .wh-pill .count {
            background: rgba(0, 0, 0, 0.1);
            padding: 2px 8px;
            border-radius: 20px;
            font-size: 0.72rem;
            font-weight: 700;
        }

        .wh-pill.active .count {
            background: rgba(255, 255, 255, 0.25);
        }

        /* ===== GRID — 3 per row desktop, 2 tablet, 1 mobile ===== */
        .wh-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        @media (max-width: 991px) {
            .wh-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

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

        /* Card */
        .wh-card {
            background: var(--white);
            border: 1px solid var(--border-light);
            border-radius: 14px;
            overflow: hidden;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .wh-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 14px 40px rgba(10, 126, 61, 0.13);
            border-color: rgba(10, 126, 61, 0.25);
        }

        /* Thumbnail */
        .wh-thumb {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16 / 10;
            background: #0d1117;
            cursor: pointer;
        }

        .wh-thumb img,
        .wh-thumb video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        /* Play button overlay */
        .wh-play {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.4) 100%);
            z-index: 2;
            transition: var(--transition);
        }

        .wh-play.is-playing {
            opacity: 0;
            pointer-events: none;
        }

        .wh-play-btn {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.92);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
            transition: var(--transition);
        }

        .wh-play-btn i {
            font-size: 1.2rem;
            color: var(--green);
            margin-left: 3px;
        }

        .wh-card:hover .wh-play-btn {
            transform: scale(1.1);
        }

        /* Tag */
        .wh-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            padding: 4px 11px;
            border-radius: 6px;
            font-size: 0.68rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            z-index: 3;
            backdrop-filter: blur(6px);
        }

        .wh-badge.sea {
            background: rgba(10, 126, 61, 0.88);
            color: #fff;
        }

        .wh-badge.dg {
            background: rgba(192, 57, 43, 0.88);
            color: #fff;
        }

        .wh-badge.load {
            background: rgba(241, 196, 15, 0.92);
            color: #333;
        }

        .wh-badge.vid {
            background: rgba(0, 0, 0, 0.6);
            color: #fff;
        }

        /* Duration badge */
        .wh-dur {
            position: absolute;
            bottom: 8px;
            right: 8px;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 0.68rem;
            font-weight: 600;
            background: rgba(0, 0, 0, 0.7);
            color: #fff;
            z-index: 3;
        }

        /* Card body */
        .wh-info {
            padding: 14px 16px 16px;
        }

        .wh-info h5 {
            font-size: 0.92rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 5px;
            line-height: 1.35;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .wh-info p {
            font-size: 0.8rem;
            color: var(--text-muted);
            line-height: 1.55;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .wh-route-sm {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 0.72rem;
            font-weight: 600;
            color: var(--green-dark);
            background: var(--green-bg-subtle);
            padding: 3px 10px;
            border-radius: 6px;
            margin-bottom: 6px;
        }

        .wh-route-sm i {
            font-size: 0.65rem;
        }

        .wh-footer-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px solid var(--border-light);
            font-size: 0.72rem;
            color: var(--text-light);
            font-weight: 500;
        }

        .wh-footer-meta i {
            margin-right: 4px;
            color: var(--green);
            font-size: 0.7rem;
        }

        /* ===== LIGHTBOX ===== */
        .wh-lb {
            position: fixed;
            inset: 0;
            z-index: 99999;
            background: rgba(0, 0, 0, 0.94);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .wh-lb.open {
            opacity: 1;
            pointer-events: auto;
        }

        .wh-lb-close {
            position: absolute;
            top: 20px;
            right: 24px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            cursor: pointer;
            z-index: 10;
            transition: var(--transition);
        }

        .wh-lb-close:hover {
            background: rgba(255, 255, 255, 0.25);
        }

        .wh-lb-body {
            max-width: 88vw;
            max-height: 78vh;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
        }

        .wh-lb-body img,
        .wh-lb-body video {
            max-width: 88vw;
            max-height: 78vh;
            display: block;
        }

        .wh-lb-cap {
            max-width: 650px;
            text-align: center;
            color: #fff;
            font-size: 0.9rem;
            line-height: 1.55;
            padding: 14px 20px;
            margin-top: 16px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            backdrop-filter: blur(5px);
        }

        /* CTA Band */
        .wh-cta {
            background: linear-gradient(135deg, var(--green) 0%, #0d5f2e 100%);
            padding: 60px 0;
            text-align: center;
            color: #fff;
        }

        .wh-cta h2 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .wh-cta p {
            font-size: 1rem;
            opacity: 0.85;
            max-width: 500px;
            margin: 0 auto 24px;
        }

        .wh-cta-btn {
            background: #fff;
            color: var(--green-dark);
            padding: 13px 34px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.95rem;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
            text-decoration: none;
        }

        .wh-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
            color: var(--green-dark);
        }

        /* Responsive polish */
        @media (max-width: 575px) {
            .wh-hero h1 {
                font-size: 2rem;
            }

            .wh-counters {
                gap: 12px;
            }

            .wh-counter {
                min-width: 100px;
                padding: 12px 16px;
            }

            .wh-counter h3 {
                font-size: 1.4rem;
            }

            .wh-cta h2 {
                font-size: 1.5rem;
            }
        }
    
