   :root {
            --tgh-gold: #D4AF37;
            --tgh-gold-dark: #AA8B2C;
            --tgh-black: #0A0A0A;
            --tgh-dark: #1A1A1A;
            --tgh-light: #F8F9FA;
            --tgh-surface: #FFFFFF;
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
            --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            --transition-fast: all 0.3s ease;
        }

        body { 
            font-family: 'Outfit', sans-serif; 
            color: var(--tgh-dark); 
            background-color: var(--tgh-light); 
            overflow-x: hidden; 
            -webkit-font-smoothing: antialiased;
        }
        
        h1, h2, h3, h4, h5, .luxury-font { 
            font-family: 'Cinzel', serif; 
            letter-spacing: 1px;
        }

        /* Shared Global Utilities */
        .section-title { font-size: 3rem; margin-bottom: 1rem; color: var(--tgh-black); }
        .title-divider { height: 3px; width: 80px; background: linear-gradient(90deg, var(--tgh-gold), transparent); margin: 0 auto 3rem auto; }
        
        .btn-gold { 
            background: linear-gradient(135deg, var(--tgh-gold) 0%, var(--tgh-gold-dark) 100%);
            color: white; 
            border-radius: 30px; 
            padding: 12px 30px; 
            font-size: 0.8rem; 
            letter-spacing: 1.5px; 
            text-transform: uppercase; 
            transition: var(--transition-fast); 
            border: none;
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }
        .btn-gold:hover { 
            transform: translateY(-3px); 
            box-shadow: 0 15px 25px rgba(212, 175, 55, 0.5); 
            color: white; 
        }

        @media (max-width: 768px) {
            .section-title { font-size: 2.2rem; }
        }
        
         .floating-cta { 
            position: fixed; bottom: 40px; right: 40px; 
            background: linear-gradient(135deg, #25D366, #128C7E); 
            color: white; width: 65px; height: 65px; 
            border-radius: 50%; display: flex; align-items: center; justify-content: center; 
            font-size: 32px; box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4); 
            z-index: 999; transition: var(--transition-slow); 
        }
        .floating-cta:hover { transform: scale(1.1) rotate(10deg); box-shadow: 0 20px 40px rgba(37, 211, 102, 0.6); color: white;}

        @media (max-width: 768px) {
            .floating-cta { bottom: 20px; right: 20px; width: 55px; height: 55px; font-size: 28px; }
        }
           .navbar { 
            background: transparent; 
            backdrop-filter: blur(20px); 
            -webkit-backdrop-filter: blur(20px); 
            border-bottom: 1px solid var(--glass-border); 
            padding: 20px 0; 
            transition: var(--transition-slow); 
        }
        .navbar.scrolled { 
            background: rgba(10, 10, 10, 0.85); 
            padding: 12px 0; 
            box-shadow: 0 10px 30px rgba(0,0,0,0.5); 
        }
        .nav-link { 
            font-size: 0.75rem; 
            letter-spacing: 2px; 
            text-transform: uppercase; 
            color: rgba(255,255,255,0.8) !important; 
            margin: 0 15px; 
            transition: var(--transition-fast); 
            font-weight: 500;
        }
        .nav-link:hover { color: var(--tgh-gold) !important; transform: translateY(-2px); }
        
        .custom-dropdown {
            background: rgba(10, 10, 10, 0.9) !important;
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            padding: 10px 0;
            box-shadow: 0 15px 35px rgba(0,0,0,0.5);
            margin-top: 15px;
        }
        .dropdown-item {
            font-size: 0.75rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.7) !important;
            padding: 12px 25px;
            transition: var(--transition-fast);
            font-weight: 500;
        }
        .dropdown-item:hover, .dropdown-item:focus {
            background: rgba(212, 175, 55, 0.1) !important; 
            color: var(--tgh-gold) !important;
            transform: translateX(5px); 
        }


/* --- HERO SECTION CONTAINER --- */
.hero { 
    position: relative;
    height: 100vh; 
    width: 100%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    text-align: center;
    color: white; 
    padding-top: 100px;
    overflow: hidden; 
}

/* --- YOUTUBE VIDEO BACKGROUND --- */
.video-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none; 
}

#hero-video-iframe {
    width: 100vw;
    height: 56.25vw; 
    min-height: 100vh;
    min-width: 177.77vh; 
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* --- VISUAL OVERLAY --- */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.9) 100%);
    z-index: 2;
}

/* --- TEXT & CONTENT --- */
.hero-content {
    position: relative;
    z-index: 3;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out; 
}

/*.hide-content {*/
/*    opacity: 0 !important; */
/*    visibility: hidden;*/
/*    pointer-events: none; */
/*}*/

.hero-subtitle { 
    letter-spacing: 4px; 
    text-transform: uppercase; 
    font-size: 0.85rem; 
    color: var(--tgh-gold); 
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.6); 
}

.hero h1 { 
    font-size: 4.5rem; 
    font-weight: 700; 
    line-height: 1.1; 
    margin-bottom: 30px; 
    text-shadow: 0 10px 30px rgba(0,0,0,0.5); 
}

@media (max-width: 768px) {
    .hero h1 { 
        font-size: 2.8rem; 
    }
}
           .ui-card { 
            border: none; 
            border-radius: 16px; 
            overflow: hidden; 
            background: var(--tgh-surface); 
            height: 100%; 
            transition: var(--transition-slow);
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            position: relative;
        }
        .ui-card:hover { 
            transform: translateY(-15px); 
            box-shadow: 0 25px 50px rgba(0,0,0,0.1); 
        }
        .img-wrapper { overflow: hidden; position: relative; border-radius: 16px 16px 0 0; }
        .dynamic-img { height: 320px; width: 100%; object-fit: cover; transition: var(--transition-slow); }
        .ui-card:hover .dynamic-img { transform: scale(1.1); filter: brightness(1.05); }
        
        .badge-neo { 
            position: absolute; 
            top: 20px; left: 20px; 
            background: rgba(255,255,255,0.9); 
            color: var(--tgh-black); 
            font-weight: 700; 
            letter-spacing: 1px; 
            padding: 8px 16px; 
            font-size: 0.7rem; 
            z-index: 2; 
            border-radius: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .badge-alert { left: auto; right: 20px; background: var(--tgh-gold); color: white; }
        .stars { color: var(--tgh-gold); font-size: 0.8rem; margin-bottom: 8px; }
          .testimonial-card {
            background: var(--tgh-light);
            padding: 40px 30px;
            border-radius: 16px;
            height: 100%;
            position: relative;
            transition: var(--transition-slow);
            border: 1px solid rgba(0,0,0,0.03);
            text-align: center;
        }
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            background: white;
        }
        .quote-icon {
            font-size: 2.5rem;
            color: var(--tgh-gold);
            opacity: 0.2;
            position: absolute;
            top: 25px;
            left: 30px;
        }
        .testimonial-text {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--tgh-dark);
            font-style: italic;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }
        .testimonial-divider {
            width: 40px;
            margin: 0 auto 15px auto;
            border-color: var(--tgh-gold);
            border-width: 2px;
            opacity: 1;
        }
         .gallery-section {
            padding: 60px 0; 
            background-color: #F8F9FA;
            overflow-x: hidden;
            font-family: 'Outfit', sans-serif;
        }
        .section-header { text-align: center; margin-bottom: 2.5rem; padding: 0 15px; }
        .section-header h3 {
            font-family: 'Cinzel', serif;
            color: #D4AF37;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 0.85rem;
            margin-bottom: 8px;
        }
        .section-header h2 { font-family: 'Cinzel', serif; font-size: 2.2rem; color: #0A0A0A; margin: 0; line-height: 1.2; }
        .aqua-highlight { color: #D4AF37; }
        .divider { width: 60px; height: 3px; background: #D4AF37; margin: 15px auto; }
        
        .gallery-title {
            font-family: 'Cinzel', serif; text-align: center; font-size: 1.2rem;
            margin-bottom: 1.5rem; letter-spacing: 2px; color: #1A1A1A; text-transform: uppercase;
        }

        .marquee-wrapper {
            width: 100%; overflow: hidden; display: flex; position: relative; padding: 10px 0;
            mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        }
        .marquee-content { display: flex; gap: 15px; flex-shrink: 0; will-change: transform; }

        .scroll-left { animation: scroll-left 40s linear infinite; }
        .scroll-right { animation: scroll-right 40s linear infinite; }

        .marquee-wrapper:active .marquee-content,
        .marquee-wrapper:hover .marquee-content { animation-play-state: paused; }

        @keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-50% - 7.5px)); } }
        @keyframes scroll-right { 0% { transform: translateX(calc(-50% - 7.5px)); } 100% { transform: translateX(0); } }

        .gallery-img-box {
            position: relative; min-width: 320px; height: 220px;
            border-radius: 12px; overflow: hidden; cursor: pointer; box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        }
        .gallery-img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
        .gallery-overlay {
            position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, transparent 50%);
            display: flex; align-items: flex-end; padding: 20px; transition: background 0.4s ease;
        }
        .gallery-overlay h4 { color: white; font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 500; margin: 0; letter-spacing: 0.5px; }

        @media (min-width: 992px) {
            .gallery-section { padding: 100px 0; }
            .section-header h2 { font-size: 3rem; }
            .gallery-img-box { min-width: 400px; height: 280px; }
            .gallery-title { font-size: 1.5rem; }
            .marquee-content { gap: 25px; }
        }
        @media (max-width: 768px) {
            .gallery-img-box { min-width: 260px; height: 180px; }
            .scroll-left, .scroll-right { animation-duration: 25s; }
            .section-header h2 { font-size: 1.75rem; }
            .gallery-title { font-size: 1rem; margin-top: 2rem; }
        }
         .contact-wrapper {
            background: var(--tgh-surface);
            border: 1px solid rgba(0,0,0,0.05);
        }
        .contact-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 70%);
        }
        .luxury-form .form-control,
        .luxury-form .form-select {
            border: none;
            border-bottom: 1px solid #ddd;
            border-radius: 0;
            padding: 10px 0;
            background: transparent;
            font-size: 1rem;
            color: var(--tgh-dark);
            box-shadow: none;
            transition: border-color 0.3s ease;
        }
        .luxury-form .form-control:focus,
        .luxury-form .form-select:focus {
            border-bottom-color: var(--tgh-gold);
            outline: none;
        }
        .luxury-form .form-control::placeholder {
            color: #ccc;
            font-weight: 300;
        }
        .luxury-form .form-label {
            font-size: 0.7rem;
            letter-spacing: 1.5px;
            margin-bottom: 0;
        }
        
        .dark-section { background-color: var(--tgh-black); color: white; }
        .dark-section .section-title { color: white; }