        /* ==========================================
           TGH RESORT SALES DESIGN PATTERN 
           ========================================== */
        :root {
            --tgh-gold: #D4AF37;
            --tgh-gold-dark: #AA8B2C;
            --tgh-black: #0A0A0A;
            --tgh-dark: #1A1A1A;
            --tgh-light: #F8F9FA;
            --tgh-surface: #FFFFFF;
            --tgh-danger: #D93025;
            --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            --transition-fast: all 0.3s ease;
        }

    
        html, body {
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
            margin: 0;
            padding: 0;
        }

        body { 
            font-family: 'Outfit', sans-serif; color: var(--tgh-dark); 
            background-color: var(--tgh-light); 
            -webkit-font-smoothing: antialiased; padding-bottom: 70px;
        }

        h1, h2, h3, h4, h5, .luxury-font { font-family: 'Cinzel', serif; letter-spacing: 1px; }
        .text-gold { color: var(--tgh-gold) !important; }
        .bg-gold { background-color: var(--tgh-gold) !important; }
        
        .section-title { font-size: 2.8rem; color: var(--tgh-black); margin-bottom: 1rem; }
        .title-divider { height: 3px; width: 60px; background: linear-gradient(90deg, var(--tgh-gold), transparent); margin: 0 auto 2rem auto; }
        .title-divider-left { margin: 0 0 2rem 0; }

        /* Floating CTA */
        .floating-cta { 
            position: fixed; bottom: 30px; right: 30px; 
            background: linear-gradient(135deg, var(--tgh-gold), var(--tgh-gold-dark)); 
            color: white; width: 65px; height: 65px; 
            border-radius: 50%; display: flex; align-items: center; justify-content: center; 
            font-size: 24px; box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5); 
            z-index: 990; transition: var(--transition-slow); cursor: pointer;
        }
        .floating-cta:hover { transform: scale(1.1); color: white; box-shadow: 0 15px 35px rgba(212, 175, 55, 0.7); }
        
        /* Sticky Mobile Booking Bar */
        .mobile-booking-bar {
            position: fixed; bottom: 0; left: 0; right: 0;
            background: var(--tgh-black); padding: 12px 20px;
            display: flex; justify-content: space-between; align-items: center;
            z-index: 995; box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
        }
        @media (min-width: 992px) { .mobile-booking-bar { display: none !important; } body { padding-bottom: 0; } }

        /* Nav */
        .resort-nav { background: rgba(10, 10, 10, 0.95); padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
        .resort-nav .nav-link { color: rgba(255,255,255,0.8); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; margin: 0 10px; transition: 0.3s; }
        .resort-nav .nav-link:hover { color: var(--tgh-gold); }
        
   
.btn-gold.text-white {
    color: #FFFFFF !important;
    transition: var(--transition-fast);
}

.btn-gold.text-white:hover, 
.btn-gold.text-white:active, 
.btn-gold.text-white:focus {
    color: var(--tgh-gold) !important;
    background-color: white !important; 
    border: 1px solid var(--tgh-gold);
}


.nav-link.text-gold {
    color: var(--tgh-gold) !important;
    font-weight: 600;
}
        
        /* CORRECTED HERO CSS */
        .resort-hero {
            position: relative; 
            min-height: 100vh; /* Changed to min-height 100vh for a perfect full-screen layout that won't cut off text */
            display: flex; align-items: center; justify-content: center; 
            padding: 120px 20px 80px; /* Accounts for fixed navbar */
            text-align: center; color: white; overflow: hidden;
        }
        .hero-video {
            position: absolute; top: 0; left: 0; 
            width: 100%; height: 100%; 
            object-fit: cover; /* Modern, flawless video scaling */
            z-index: -2; 
        }
        .hero-overlay {
            position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.9) 100%); z-index: -1;
        }

        /* Room Cards */
        .room-card {
            background: white; border-radius: 12px; overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.06); transition: var(--transition-slow);
            height: 100%; border: 1px solid rgba(0,0,0,0.05); display: flex; flex-direction: column; position: relative;
        }
        .room-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.15); border-color: var(--tgh-gold); }
        .video-trigger { position: relative; overflow: hidden; cursor: pointer; display: block; }
        .room-img { height: 280px; width: 100%; object-fit: cover; transition: transform 0.8s ease; }
        .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease, filter 0.6s ease; }
        .video-trigger:hover .room-img, .video-trigger:hover img { transform: scale(1.05); filter: brightness(0.7); }
        
        .video-overlay {
            position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
            background: rgba(0,0,0,0.3); opacity: 0; transition: var(--transition-fast); z-index: 2;
        }
        .video-trigger:hover .video-overlay { opacity: 1; }
        .play-btn {
            background: rgba(255,255,255,0.95); color: var(--tgh-black); width: 60px; height: 60px;
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            font-size: 1.5rem; box-shadow: 0 5px 20px rgba(0,0,0,0.4); padding-left: 5px; transition: 0.3s;
        }
        .video-trigger:hover .play-btn { transform: scale(1.1); color: var(--tgh-gold); }
        .play-text { position: absolute; bottom: 20px; color: white; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; font-size: 0.8rem; text-shadow: 0 2px 4px rgba(0,0,0,0.8); }

        .room-amenities { display: flex; gap: 15px; margin-bottom: 15px; border-bottom: 1px solid #eee; padding-bottom: 15px; }
        .room-amenities i { color: var(--tgh-gold); font-size: 1.1rem; }
        .price-tag { font-family: 'Cinzel', serif; font-size: 1.5rem; color: var(--tgh-dark); font-weight: 800; }
        
        /* Galleries Pattern */
        .gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
        .gallery-item { position: relative; overflow: hidden; border-radius: 12px; height: 260px; box-shadow: 0 5px 15px rgba(0,0,0,0.08); cursor: pointer;}
        .gallery-caption {
            position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            padding: 40px 20px 15px; color: white; transform: translateY(100%); transition: transform 0.4s ease; z-index: 3; pointer-events: none;
        }
        .gallery-item:hover .gallery-caption { transform: translateY(0); }
        .gallery-caption h5 { font-size: 1.1rem; margin-bottom: 0; letter-spacing: 1px; }

        /* Booking Drawer */
        .booking-drawer { width: 400px; max-width: 100vw; background: var(--tgh-surface); border-left: 2px solid var(--tgh-gold); }
        .booking-header { background: var(--tgh-black); color: white; padding: 25px; }
        .guest-counter { display: flex; align-items: center; justify-content: space-between; background: var(--tgh-light); padding: 10px 15px; border-radius: 8px; border: 1px solid #eee;}
        .guest-btn { background: white; border: 1px solid #ccc; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer;}
        .price-summary { background: rgba(212, 175, 55, 0.05); border-radius: 8px; padding: 20px; border: 1px dashed var(--tgh-gold); }

        /* UI Elements */
        .activity-badge {
            background: var(--tgh-surface); border: 1px solid rgba(0,0,0,0.1); color: var(--tgh-dark);
            padding: 8px 20px; border-radius: 30px; font-size: 0.85rem; margin: 5px; display: inline-block; transition: 0.3s;
        }
        .activity-badge.group { background: var(--tgh-gold); color: white; border-color: var(--tgh-gold); }
        
        /* Modal Video */
        .modal-video .modal-content { background: transparent; border: none; }
        .modal-video .btn-close { position: absolute; top: -30px; right: 0; filter: invert(1); z-index: 1050; }
        .video-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 12px; box-shadow: 0 15px 40px rgba(0,0,0,0.5); }
        .video-container iframe, .video-container video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

        @media (max-width: 768px) { .section-title { font-size: 2.2rem; } }
        
/* Staff & Contact Cards */
.contact-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 15px;
    transition: var(--transition-slow);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--tgh-gold);
}

.contact-card.featured {
    border-bottom: 4px solid var(--tgh-gold);
}

.card-icon-header {
    background: var(--tgh-black);
    color: var(--tgh-gold);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.contact-link {
    display: inline-block;
    padding: 10px 25px;
    background: var(--tgh-black);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    border: 1px solid var(--tgh-black);
}

.contact-link:hover {
    background: transparent;
    color: var(--tgh-black);
    border-color: var(--tgh-gold);
}

.featured .contact-link {
    background: var(--tgh-gold);
    border-color: var(--tgh-gold);
    color: #fff;
}

.featured .contact-link:hover {
    background: var(--tgh-black);
    border-color: var(--tgh-black);
}