:root {
            --primary-color: #e67e22;
            --secondary-color: #1a252f;
            --accent-color: #27ae60;
            --bg-light: #f4f6f8;
            --card-bg: #ffffff;
            --text-dark: #2c3e50;
            --border-radius: 12px;
            --box-shadow: 0 8px 25px rgba(0,0,0,0.06);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: var(--bg-light);
            color: var(--text-dark);
            padding-bottom: 60px;
        }

        header {
            background: linear-gradient(135deg, #060000 0%, #8e5204 100%);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            color: white;
        }

        .logoKiram {
            margin-left: -10px;
            height: 60px;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            text-decoration: none;
            background: linear-gradient(180deg, #FFE600 0%, #FF5500 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
        }

        .logoText { color: white; }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: white;
            font-weight: 600;
            transition: color 0.3s;
        }

        .nav-links a:hover { color: var(--primary-color); }

        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
        }

        .hero {
            position: relative;
            height: 85vh;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-slides {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out, transform 6s linear;
            transform: scale(1);
        }

        .hero-slide.active {
            opacity: 1;
            transform: scale(1.05);
        }

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

        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: #ffffff;
            padding: 0 1rem;
            max-width: 800px;
        }

        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 0.8rem;
            font-weight: 700;
            text-shadow: 0 2px 8px rgba(0,0,0,0.4);
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 1.8rem;
            opacity: 0.95;
            text-shadow: 0 2px 4px rgba(0,0,0,0.4);
        }

        .btn-hero {
            background: var(--primary-color);
            color: #ffffff;
            padding: 0.8rem 2.2rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
        }

        .btn-hero:hover {
            background: #d35400;
            transform: translateY(-2px);
        }

        .hero-dots {
            position: absolute;
            bottom: 25px;
            z-index: 3;
            display: flex;
            gap: 10px;
        }

        .hero-dot {
            width: 12px;
            height: 12px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .hero-dot.active {
            background: var(--primary-color);
            width: 28px;
            border-radius: 10px;
        }

        .container {
            max-width: 1200px;
            margin: 3.5rem auto;
            padding: 0 1.5rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .section-title {
            font-size: 2.1rem;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
        }

        .section-subtitle {
            color: #666;
            font-size: 0.95rem;
        }

        .divider {
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
            margin: 0.8rem auto 0 auto;
            border: none;
            border-radius: 2px;
        }

        .filter-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-bottom: 2.5rem;
        }

        .filter-btn {
            background: #ffffff;
            border: 2px solid #e2e8f0;
            padding: 0.6rem 1.4rem;
            border-radius: 25px;
            font-weight: 600;
            color: var(--secondary-color);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn:hover, .filter-btn.active {
            background: var(--primary-color);
            color: #ffffff;
            border-color: var(--primary-color);
            box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
        }

        .about-section {
            background: #ffffff;
            border-radius: var(--border-radius);
            padding: 3rem 2rem;
            box-shadow: var(--box-shadow);
            margin-bottom: 4rem;
        }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            align-items: center;
            margin-top: 1.5rem;
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            background: #000;
        }

        .video-wrapper video {
            width: 100%;
            display: block;
            max-height: 400px;
            object-fit: contain;
        }

        .about-content h3 {
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }

        .about-content p {
            font-size: 1rem;
            line-height: 1.8;
            color: #555;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .card {
            background: var(--card-bg);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .card.hidden { display: none; }

        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.12);
        }

        .card-img {
            position: relative;
            height: 210px;
        }

        .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary-color);
            color: #ffffff;
            padding: 0.3rem 0.8rem;
            font-size: 0.78rem;
            border-radius: 20px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .card-body {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .card-title {
            font-size: 1.25rem;
            margin-bottom: 0.4rem;
            color: var(--secondary-color);
        }

        .card-meta {
            font-size: 0.85rem;
            color: #777;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .card-desc {
            font-size: 0.9rem;
            color: #555;
            margin-bottom: 1.2rem;
            line-height: 1.5;
        }

        .inclusions-box {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 0.8rem 1rem;
            margin-bottom: 1.5rem;
            margin-top: auto;
        }

        .inclusions-title {
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            color: #888;
            margin-bottom: 0.4rem;
        }

        .inclusions-list {
            list-style: none;
        }

        .inclusions-list li {
            font-size: 0.82rem;
            color: #444;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            margin-bottom: 0.2rem;
        }

        .inclusions-list li i {
            color: var(--accent-color);
            font-size: 0.75rem;
        }

        .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid #eee;
            padding-top: 1rem;
        }

        .price-container {
            display: flex;
            flex-direction: column;
        }

        .price {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1;
        }

        .price-unit {
            font-size: 0.75rem;
            color: #777;
            margin-top: 2px;
        }

        .btn-card {
            background: var(--secondary-color);
            color: #fff;
            padding: 0.55rem 1.2rem;
            border-radius: 6px;
            text-decoration: none;
            font-size: 0.88rem;
            font-weight: 600;
            transition: background 0.3s;
        }

        .btn-card:hover { background: var(--primary-color); }

        .reviews-section {
            margin-top: 4rem;
            margin-bottom: 4rem;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .review-card {
            background: #ffffff;
            border-radius: var(--border-radius);
            padding: 1.8rem;
            box-shadow: var(--box-shadow);
        }

        .review-stars {
            color: #f1c40f;
            margin-bottom: 0.8rem;
        }

        .review-text {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.6;
            margin-bottom: 1rem;
            font-style: italic;
        }

        .review-author {
            font-weight: 700;
            color: var(--secondary-color);
            font-size: 0.9rem;
        }

        .review-location {
            font-size: 0.8rem;
            color: #888;
        }

        .map-section {
            background: #ffffff;
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: var(--box-shadow);
            margin-bottom: 4rem;
        }

        .maps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
            align-items: stretch;
        }

        .map-card {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 1.2rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .map-card-header {
            margin-bottom: 1rem;
            min-height: 95px;
        }

        .map-card-header h3 {
            font-size: 1.05rem;
            color: #1e293b;
            margin-bottom: 0.5rem;
        }

        .map-card-header p {
            font-size: 0.85rem;
            color: #64748b;
            margin-bottom: 0.3rem;
            line-height: 1.4;
        }

        .map-frame {
            width: 100%;
            height: 220px;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 1rem;
            background: #f1f5f9;
        }

        .map-frame iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        .map-btn {
            display: block;
            text-align: center;
            background: #0284c7;
            color: #ffffff;
            padding: 0.6rem 1rem;
            border-radius: 6px;
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
            transition: background 0.2s ease;
        }

        .map-btn:hover { background: #0369a1; }

        footer {
            background: var(--secondary-color);
            color: #ffffff;
            padding: 3rem 1.5rem 1.5rem 1.5rem;
            margin-top: 4rem;
        }

        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
        }

        .footer-box h4 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .footer-box p {
            font-size: 0.9rem;
            color: #ccc;
            line-height: 1.7;
        }

        .footer-box a {
            color: #fff;
            text-decoration: none;
        }

        .copyright {
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 1.5rem;
            margin-top: 2.5rem;
            font-size: 0.8rem;
            color: #888;
        }

        .sticky-mobile-bar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: #ffffff;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            padding: 0.6rem 1rem;
        }

        .mobile-bar-buttons {
            display: flex;
            gap: 10px;
        }

        .mobile-btn {
            flex: 1;
            text-align: center;
            padding: 0.7rem;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .mobile-btn-call {
            background: var(--secondary-color);
            color: #fff;
        }

        .mobile-btn-wa {
            background: #25d366;
            color: #fff;
        }

        .whatsapp-btn {
            position: fixed;
            bottom: 25px;
            right: 25px;
            background-color: #25d366;
            color: white;
            border-radius: 50px;
            padding: 12px 22px;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.25);
            text-decoration: none;
            font-weight: 600;
            z-index: 999;
            transition: transform 0.2s;
        }

        .whatsapp-btn:hover { transform: scale(1.04); }

        @keyframes promoBlink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.2; }
        }

        .promo-link {
            color: #ddf506 !important;
            font-weight: 700;
            animation: promoBlink 1.2s infinite ease-in-out;
        }

        .promo-link i { margin-right: 4px; }

        .nav-links li.dropdown { position: relative; }

        .dropdown-toggle i {
            font-size: 0.75rem;
            margin-left: 4px;
            transition: transform 0.2s ease;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #ffffff;
            min-width: 200px;
            max-height: 350px;
            overflow-y: auto;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
            border-radius: 8px;
            padding: 8px 0;
            list-style: none;
            display: none;
            z-index: 1000;
            border: 1px solid #e2e8f0;
        }

        .dropdown-menu li a {
            color: #334155;
            padding: 10px 16px;
            display: block;
            text-decoration: none;
            font-size: 0.9rem;
            transition: background-color 0.2s ease, color 0.2s ease;
        }

        .dropdown-menu li a:hover {
            background-color: #f8fafc;
            color: #ff5500;
        }

        @media (min-width: 1026px) {
            .nav-links li.dropdown:hover .dropdown-menu { display: block; }
            .nav-links li.dropdown:hover .dropdown-toggle i { transform: rotate(180deg); }
        }

        /* TABLET / IPAD RESPONSIVE FIXES (769px to 1024px) */
        @media (min-width: 769px) and (max-width: 1024px) {
            .menu-toggle { display: block; }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #ffffff;
                padding: 1.5rem;
                box-shadow: 0 4px 10px rgba(0,0,0,0.1);
                align-items: flex-start;
                gap: 1rem;
            }
            .nav-links.active { display: flex; }
            .nav-links a { color: #334155; width: 100%; }
            .dropdown-menu {
                position: static;
                box-shadow: none;
                border: none;
                background-color: #f8fafc;
                max-height: 250px;
                width: 100%;
            }
            .navbar { padding: 1rem 1.5rem; }
            .hero { height: 75vh; }
        }

        .booking-popup {
            position: fixed;
            bottom: 25px;
            left: 25px;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            z-index: 99999;
            max-width: 320px;
            width: 90%;
            transform: translateX(-150%);
            transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            border-left: 5px solid var(--primary-color, #e67e22);
            box-sizing: border-box;
        }

        .booking-popup.show { transform: translateX(0) !important; }

        .booking-popup-img {
            width: 50px;
            height: 50px;
            border-radius: 8px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .booking-popup-content {
            font-size: 0.82rem;
            color: #333;
            line-height: 1.35;
        }

        .booking-popup-title {
            font-weight: 700;
            color: var(--secondary-color, #1a252f);
            display: block;
            margin-bottom: 2px;
        }

        .booking-popup-time {
            font-size: 0.72rem;
            color: #888;
            display: block;
            margin-top: 3px;
        }

        .booking-popup-close {
            position: absolute;
            top: 4px;
            right: 8px;
            font-size: 1rem;
            color: #aaa;
            cursor: pointer;
            line-height: 1;
        }
        .booking-popup-close:hover { color: #000; }

        .promo-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.75);
            backdrop-filter: blur(4px);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 999999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease;
            padding: 1rem;
        }

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

        .promo-modal-card {
            background: #ffffff;
            border-radius: 20px;
            max-width: 650px;
            width: 95%;
            position: relative;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            transform: scale(0.85);
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .promo-modal-overlay.show .promo-modal-card {
            transform: scale(1);
        }

        .promo-modal-close {
            position: absolute;
            top: 12px;
            right: 12px;
            font-size: 1.25rem;
            color: #ffffff;
            background: rgba(0, 0, 0, 0.6);
            width: 34px;
            height: 34px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 20;
            transition: background 0.2s ease, transform 0.2s ease;
        }

        .promo-modal-close:hover {
            background: rgba(0, 0, 0, 0.9);
            transform: scale(1.05);
        }

        .promo-modal-image-container {
            position: relative;
            width: 100%;
            display: flex;
            flex-direction: column;
        }

        .promo-modal-img {
            width: 100%;
            height: auto;
            max-height: 80vh;
            object-fit: contain;
            display: block;
        }

        .promo-modal-btn {
            position: absolute;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            max-width: 320px;
            background: #25d366;
            color: #ffffff;
            text-decoration: none;
            padding: 1rem 1.4rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-align: center;
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .promo-modal-btn:hover {
            background: #20ba5a;
            transform: translateX(-50%) translateY(-2px);
            box-shadow: 0 12px 24px rgba(37, 211, 102, 0.5);
        }

        .promo-timer-bar {
            height: 4px;
            background: #25d366;
            width: 100%;
            transform-origin: left;
            transition: transform 10s linear;
        }

        /* MOBILE RESPONSIVE FIXES (Up to 768px) */
        @media (max-width: 768px) {
            .menu-toggle { display: block; }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #ffffff;
                padding: 1.5rem;
                box-shadow: 0 4px 10px rgba(0,0,0,0.1);
                align-items: flex-start;
                gap: 0.8rem;
            }
            .nav-links.active { display: flex; }
            .nav-links a { color: #334155; width: 100%; }
            .hero { height: 70vh; }
            .hero-content h1 { font-size: 2rem; }
            .hero-content p { font-size: 1rem; }
            .whatsapp-btn { display: none; }
            .sticky-mobile-bar { display: block; }
        }

        /* GALLERY SECTION */
        .gallery-section {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 1.5rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            color: #1a252f;
            margin-bottom: 0.5rem;
        }

        .divider {
            width: 60px;
            height: 4px;
            background: #e67e22;
            border: none;
            margin: 0 auto;
            border-radius: 2px;
        }

        /* HORIZONTAL SCROLL WRAPPER & TRACK */
        .gallery-slider-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .gallery-track {
            display: flex;
            gap: 1.2rem;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 0.5rem 0.2rem;
            scrollbar-width: none;
        }

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

        .gallery-card {
            flex: 0 0 280px;
            height: 380px;
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .gallery-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
        }

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

        .card-overlay {
            position: absolute;
            inset: 0;
            background: rgba(15, 23, 42, 0.35);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .card-overlay i {
            color: #ffffff;
            font-size: 1.8rem;
            transform: scale(0.8);
            transition: transform 0.3s ease;
        }

        .gallery-card:hover .card-overlay { opacity: 1; }
        .gallery-card:hover .card-overlay i { transform: scale(1); }

        .scroll-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: #ffffff;
            border: 1px solid #e2e8f0;
            color: #1a252f;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: all 0.2s ease;
        }

        .scroll-btn:hover {
            background: #e67e22;
            color: #ffffff;
            border-color: #e67e22;
        }

        .scroll-left { left: -20px; }
        .scroll-right { right: -20px; }

        .lightbox-modal {
            display: none;
            position: fixed;
            z-index: 99999;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(5px);
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .lightbox-modal.show {
            display: flex;
            opacity: 1;
        }

        .lightbox-content {
            max-width: 85vw;
            max-height: 85vh;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            object-fit: contain;
            user-select: none;
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 35px;
            color: #ffffff;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.2s ease;
            z-index: 100000;
        }

        .lightbox-close:hover { color: #e67e22; }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.15);
            border: none;
            color: #ffffff;
            font-size: 1.5rem;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
            z-index: 100000;
        }

        .lightbox-nav:hover {
            background: #e67e22;
            transform: translateY(-50%) scale(1.1);
        }

        .lightbox-prev { left: 25px; }
        .lightbox-next { right: 25px; }

        @media (max-width: 1024px) {
            .gallery-card { flex: 0 0 240px; height: 320px; }
            .scroll-left { left: -10px; }
            .scroll-right { right: -10px; }
            .lightbox-prev { left: 15px; }
            .lightbox-next { right: 15px; }
        }