        /* ===== GALLERY PAGE – CLEAN 2-COLOR THEME ===== */
        :root {
            --orange: #fcbf14;
            --dark: #1a1a2e;
            --white: #ffffff;
            --off-white: #f9f7f4;
            --border: #ebebeb;
            --text: #444444;
            --muted: #888888;
            --shadow: 0 4px 24px rgba(0,0,0,0.08);
        }

        .trv-gallery-page {
            padding: 80px 0 100px;
            background: var(--off-white);
        }

        .trv-gallery-intro {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 56px;
        }

        .trv-gallery-intro p {
            color: var(--text);
            font-size: 15.5px;
            line-height: 1.8;
            margin: 0;
        }

        .trv-gallery-tabs-wrap {
            margin-bottom: 48px;
        }

        .trv-type-tabs {
            display: flex;
            justify-content: center;
            gap: 0;
            margin-bottom: 28px;
            border-bottom: 2px solid var(--border);
        }

        .trv-type-tab {
            padding: 12px 32px;
            font-size: 15px;
            font-weight: 700;
            color: var(--muted);
            background: none;
            border: none;
            cursor: pointer;
            position: relative;
            transition: color 0.25s;
            letter-spacing: 0.3px;
        }

        .trv-type-tab::after {
            content: '';
            position: absolute;
            bottom: -2px; left: 50%; right: 50%;
            height: 2px;
            background: var(--orange);
            transition: all 0.3s ease;
        }

        .trv-type-tab.active {
            color: var(--dark);
        }

        .trv-type-tab.active::after {
            left: 0; right: 0;
        }

        .trv-cat-tabs {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .trv-cat-tab {
            padding: 9px 22px;
            font-size: 13.5px;
            font-weight: 600;
            color: var(--text);
            background: var(--white);
            border: 2px solid var(--border);
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .trv-cat-tab:hover {
            border-color: var(--orange);
            color: var(--orange);
        }

        .trv-cat-tab.active {
            background: var(--dark);
            color: var(--white);
            border-color: var(--dark);
        }

        .trv-gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        @media (max-width: 991px) { 
            .trv-gallery-grid { grid-template-columns: repeat(2, 1fr); } 
        }
        @media (max-width: 576px) { 
            .trv-gallery-grid { grid-template-columns: 1fr; } 
        }

        .trv-gallery-item {
            position: relative;
            border-radius: 14px;
            overflow: hidden;
            cursor: pointer;
            display: block;
            background: var(--dark);
            aspect-ratio: 4 / 3;
        }

        .trv-gallery-item.hidden {
            display: none !important;
        }

        .trv-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.45s ease;
            pointer-events: none;
        }

        .trv-gallery-item:hover img {
            transform: scale(1.08);
        }

        .trv-gallery-overlay {
            position: absolute;
            inset: 0;
            background: rgba(26,26,46,0.0);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 14px;
            transition: background 0.35s ease;
            pointer-events: none;
        }

        .trv-gallery-item:hover .trv-gallery-overlay {
            background: rgba(26,26,46,0.65);
        }

        .trv-gallery-overlay .ov-icon {
            width: 52px; height: 52px;
            border-radius: 50%;
            background: var(--orange);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            opacity: 0;
            transform: scale(0.7);
            transition: all 0.3s ease;
        }

        .trv-gallery-item:hover .ov-icon {
            opacity: 1;
            transform: scale(1);
        }

        .trv-video-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        @media (max-width: 991px) { 
            .trv-video-grid { grid-template-columns: repeat(2, 1fr); } 
        }
        @media (max-width: 576px) { 
            .trv-video-grid { grid-template-columns: 1fr; } 
        }

        .trv-video-item {
            border-radius: 14px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            background: var(--dark);
            display: block;
            aspect-ratio: 4 / 3;
        }

        .trv-video-item.hidden {
            display: none !important;
        }

        .trv-video-thumb {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease, opacity 0.3s;
            opacity: 0.85;
            pointer-events: none;
        }

        .trv-video-item:hover .trv-video-thumb {
            transform: scale(1.08);
            opacity: 0.7;
        }

        .trv-video-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: rgba(0,0,0,0.2);
            transition: background 0.3s ease;
            pointer-events: none;
        }

        .trv-video-item:hover .trv-video-overlay {
            background: rgba(0,0,0,0.4);
        }

        .trv-video-play {
            width: 60px; height: 60px;
            border-radius: 50%;
            background: var(--orange);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            transition: transform 0.25s ease, box-shadow 0.25s;
            box-shadow: 0 4px 20px rgba(247,147,30,0.4);
        }

        .trv-video-item:hover .trv-video-play {
            transform: scale(1.12);
            box-shadow: 0 8px 32px rgba(247,147,30,0.6);
        }

        .trv-popup-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(10,10,20,0.95);
            z-index: 99999;
            align-items: center;
            justify-content: center;
            padding: 20px;
            backdrop-filter: blur(6px);
        }

        .trv-popup-overlay.open {
            display: flex;
        }

        .trv-popup-box {
            position: relative;
            max-width: 900px;
            width: 100%;
            animation: popIn 0.35s cubic-bezier(0.34,1.56,0.64,1);
        }

        @keyframes popIn {
            from { transform: scale(0.85); opacity: 0; }
            to   { transform: scale(1); opacity: 1; }
        }

        .trv-popup-box img {
            width: 100%;
            border-radius: 16px;
            display: block;
            max-height: 85vh;
            object-fit: contain;
            background: var(--dark);
        }

        .trv-popup-close {
            position: absolute;
            top: -16px; right: -16px;
            width: 40px; height: 40px;
            background: var(--orange);
            color: var(--white);
            border-radius: 50%;
            border: none;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: background 0.2s, transform 0.2s;
        }

        .trv-popup-close:hover {
            background: var(--dark);
            transform: rotate(90deg);
        }

        .trv-video-popup-box {
            position: relative;
            max-width: 800px;
            width: 100%;
            animation: popIn 0.35s cubic-bezier(0.34,1.56,0.64,1);
        }

        .trv-video-popup-box iframe {
            width: 100%;
            aspect-ratio: 16 / 9;
            border-radius: 16px;
            border: none;
            display: block;
            background: var(--dark);
        }

        .trv-popup-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 42px; height: 42px;
            background: var(--white);
            color: var(--dark);
            border: none;
            border-radius: 50%;
            font-size: 16px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            z-index: 10;
        }

        .trv-popup-nav:hover { background: var(--orange); color: var(--white); }
        .trv-popup-prev { left: -56px; }
        .trv-popup-next { right: -56px; }

        @media (max-width: 768px) {
            .trv-popup-prev { left: -10px; }
            .trv-popup-next { right: -10px; }
        }

        .trv-gallery-empty {
            text-align: center;
            padding: 60px 20px;
            color: var(--muted);
            display: none;
        }

        .trv-gallery-empty i { font-size: 48px; margin-bottom: 12px; display: block; }
        
        /* Video error message */
        .trv-video-error {
            position: absolute;
            bottom: 10px;
            left: 10px;
            background: rgba(0,0,0,0.7);
            color: #ff6b6b;
            font-size: 10px;
            padding: 4px 8px;
            border-radius: 4px;
            display: none;
            z-index: 5;
        }
