/**
 * Texas Tower - Luxury Lounge & Editorial Design System
 * Inspired by ultra-premium rooftop lounges & craft breweries
 * Obsidian Slate, Champagne Gold, Glassmorphism, Editorial Typography
 */

/* ==========================================================================
   1. DESIGN TOKENS & CSS VARIABLES
   ========================================================================== */
:root {
    /* Color Palette: Deep Obsidian & Ambient Slate */
    --tt-obsidian-deep: #07080b;
    --tt-obsidian-base: #0b0c10;
    --tt-obsidian-surface: #12141c;
    --tt-obsidian-elevated: #181b26;
    --tt-obsidian-card: rgba(18, 20, 28, 0.78);
    --tt-obsidian-card-hover: rgba(24, 27, 38, 0.92);

    /* Color Palette: Champagne Gold & Amber Radiance */
    --tt-gold-light: #f5d680;
    --tt-gold-base: #d4af37;
    --tt-gold-dark: #aa7c11;
    --tt-gold-deep: #855e09;
    --tt-gold-gradient: linear-gradient(135deg, #fce49c 0%, #d4af37 45%, #b58314 100%);
    --tt-gold-gradient-hover: linear-gradient(135deg, #fff0ba 0%, #e2be4b 45%, #c7951e 100%);
    --tt-gold-glow: 0 0 25px rgba(212, 175, 55, 0.28);
    --tt-gold-glow-subtle: 0 0 15px rgba(212, 175, 55, 0.15);

    /* Borders & Accents */
    --tt-border-subtle: rgba(212, 175, 55, 0.15);
    --tt-border-medium: rgba(212, 175, 55, 0.3);
    --tt-border-highlight: rgba(245, 214, 128, 0.6);
    --tt-glass-border: 1px solid rgba(212, 175, 55, 0.16);

    /* Typography */
    --tt-font-display: 'Playfair Display', Georgia, serif;
    --tt-font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --tt-text-bright: #ffffff;
    --tt-text-base: #e6e8ec;
    --tt-text-muted: #9ba1b0;
    --tt-text-dim: #717786;

    /* Shadows & Glassmorphism */
    --tt-shadow-card: 0 12px 36px -4px rgba(0, 0, 0, 0.65), 0 4px 12px rgba(0, 0, 0, 0.4);
    --tt-shadow-card-hover: 0 20px 48px -4px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.18);
    --tt-blur-card: blur(16px);
}

/* ==========================================================================
   2. GLOBAL TYPOGRAPHY & BASE STYLES
   ========================================================================== */
body {
    background-color: var(--tt-obsidian-base) !important;
    color: var(--tt-text-base) !important;
    font-family: var(--tt-font-sans) !important;
    background-image: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(212, 175, 55, 0.08), transparent),
        radial-gradient(ellipse 60% 40% at 10% 40%, rgba(24, 28, 42, 0.4), transparent),
        radial-gradient(ellipse 60% 40% at 90% 70%, rgba(212, 175, 55, 0.04), transparent);
    background-attachment: fixed;
    letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6,
.section-title, .hero-title {
    font-family: var(--tt-font-display) !important;
    letter-spacing: -0.02em;
    font-weight: 700;
}

/* Editorial Gold Accents */
.text-gold-serif-italic,
.hero-title span,
.section-title span,
h2 span,
h3 span {
    font-family: var(--tt-font-display) !important;
    font-style: italic !important;
    background: var(--tt-gold-gradient) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: none !important;
    font-weight: 600 !important;
}

/* Bespoke Section Label Badge */
.section-label {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 6px 18px !important;
    border-radius: 9999px !important;
    background: rgba(212, 175, 55, 0.08) !important;
    border: 1px solid rgba(212, 175, 55, 0.28) !important;
    color: var(--tt-gold-light) !important;
    font-family: var(--tt-font-sans) !important;
    font-size: 0.8125rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    margin-bottom: 1.25rem !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.section-label::before {
    content: '✦';
    font-size: 0.75rem;
    color: var(--tt-gold-base);
}

.section-label::after {
    content: '✦';
    font-size: 0.75rem;
    color: var(--tt-gold-base);
}

.section-desc {
    color: var(--tt-text-muted) !important;
    font-size: 1.0625rem !important;
    line-height: 1.75 !important;
    max-width: 720px !important;
    margin: 0 auto 3rem !important;
}

/* ==========================================================================
   3. HEADER & NAVIGATION ENHANCEMENTS
   ========================================================================== */
.site-header {
    background: rgba(11, 12, 16, 0.88) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.14) !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4) !important;
    transition: all 0.3s ease;
}

.site-header .header-inner {
    padding: 0.875rem 2rem !important;
}

.nav-link {
    font-family: var(--tt-font-sans) !important;
    font-size: 0.9375rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.02em !important;
    color: var(--tt-text-base) !important;
    transition: all 0.25s ease !important;
    position: relative;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover {
    color: var(--tt-gold-light) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--tt-gold-gradient);
    border-radius: 2px;
    transition: transform 0.25s ease;
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* Header CTA Button */
.nav-link.cta-btn,
.nav-list .cta-btn {
    background: var(--tt-gold-gradient) !important;
    color: #0b0c10 !important;
    font-weight: 700 !important;
    font-size: 0.875rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    padding: 0.625rem 1.375rem !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    border: none !important;
}

.nav-link.cta-btn:hover,
.nav-list .cta-btn:hover {
    background: var(--tt-gold-gradient-hover) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45) !important;
}

.nav-link.cta-btn::after {
    display: none !important;
}

/* ==========================================================================
   4. HERO SECTION LUXURY TREATMENT
   ========================================================================== */
.hero {
    min-height: 92vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    padding-top: 80px;
}

.hero-overlay {
    background: linear-gradient(
        180deg,
        rgba(7, 8, 11, 0.5) 0%,
        rgba(11, 12, 16, 0.7) 60%,
        rgba(11, 12, 16, 0.98) 100%
    ) !important;
}

.hero-content {
    max-width: 960px !important;
    padding: 3rem 1.5rem !important;
    text-align: center !important;
    z-index: 2;
}

.hero-subtitle {
    display: inline-block;
    font-family: var(--tt-font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--tt-gold-light);
    margin-bottom: 1rem;
    position: relative;
    padding: 0 2rem;
}

.hero-subtitle::before,
.hero-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 24px;
    height: 1px;
    background: var(--tt-gold-base);
    opacity: 0.6;
}

.hero-subtitle::before { left: 0; }
.hero-subtitle::after { right: 0; }

.hero-title {
    font-size: clamp(2.75rem, 5.5vw, 4.75rem) !important;
    line-height: 1.12 !important;
    color: #ffffff !important;
    margin-bottom: 1.25rem !important;
    font-weight: 700 !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8) !important;
}

.hero-title span {
    display: block;
    font-size: clamp(1.5rem, 3.2vw, 2.5rem) !important;
    margin-top: 0.35rem;
    letter-spacing: normal;
}

.hero-tagline {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem) !important;
    color: var(--tt-text-muted) !important;
    max-width: 680px !important;
    margin: 0 auto 2.25rem !important;
    line-height: 1.7 !important;
    font-weight: 400;
}

.hero-buttons {
    display: flex !important;
    gap: 1.25rem !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
}

/* Metallic Gold Buttons */
.btn-primary,
.btn.btn-primary {
    background: var(--tt-gold-gradient) !important;
    color: #0b0c10 !important;
    font-family: var(--tt-font-sans) !important;
    font-weight: 700 !important;
    font-size: 0.9375rem !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    padding: 0.875rem 2.25rem !important;
    border-radius: 9999px !important;
    border: none !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary:hover,
.btn.btn-primary:hover {
    background: var(--tt-gold-gradient-hover) !important;
    color: #07080b !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 28px rgba(212, 175, 55, 0.5) !important;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    transition: left 0.75s ease;
}

.btn-primary:hover::after {
    left: 150%;
}

/* Secondary Frosted Luxury Button */
.btn-secondary,
.btn.btn-secondary {
    background: rgba(24, 27, 38, 0.6) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    color: #ffffff !important;
    font-family: var(--tt-font-sans) !important;
    font-weight: 600 !important;
    font-size: 0.9375rem !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    padding: 0.875rem 2.25rem !important;
    border-radius: 9999px !important;
    border: 1px solid rgba(212, 175, 55, 0.35) !important;
    transition: all 0.3s ease !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-secondary:hover,
.btn.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.12) !important;
    border-color: var(--tt-gold-light) !important;
    color: var(--tt-gold-light) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
}

/* ==========================================================================
   5. SOCIAL PROOF STRIP
   ========================================================================== */
.cro-proof-strip-wrapper {
    background: linear-gradient(180deg, rgba(14, 16, 23, 0.95), rgba(9, 10, 14, 0.98));
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 5;
}

.cro-proof-strip {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
    padding: 1.25rem 1rem !important;
    align-items: center !important;
}

.cro-proof-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.5rem 1rem;
    border-right: 1px solid rgba(212, 175, 55, 0.12);
    text-align: left;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
}

.cro-proof-item:last-child {
    border-right: none;
}

.cro-proof-item:hover {
    transform: translateY(-2px);
}

.cro-proof-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tt-gold-light);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.cro-proof-text strong {
    display: block;
    font-family: var(--tt-font-sans);
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.cro-proof-text strong span {
    color: var(--tt-gold-base);
}

.cro-proof-text small {
    display: block;
    font-size: 0.8125rem;
    color: var(--tt-text-muted);
    line-height: 1.3;
    margin-top: 2px;
}

@media (max-width: 991px) {
    .cro-proof-strip {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    .cro-proof-item:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 575px) {
    .cro-proof-strip {
        grid-template-columns: 1fr !important;
    }
    .cro-proof-item {
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        padding-bottom: 0.75rem;
    }
    .cro-proof-item:last-child {
        border-bottom: none;
    }
}

/* ==========================================================================
   6. LUXURY OBSIDIAN FEATURE CARDS (NO HARSH YELLOW WIREFRAMES!)
   ========================================================================== */
.feature-card,
.events-grid .feature-card,
article.feature-card {
    background: linear-gradient(
        145deg,
        rgba(20, 23, 33, 0.85) 0%,
        rgba(11, 13, 18, 0.95) 100%
    ) !important;
    backdrop-filter: var(--tt-blur-card) !important;
    -webkit-backdrop-filter: var(--tt-blur-card) !important;
    border: var(--tt-glass-border) !important;
    border-radius: 16px !important;
    box-shadow: var(--tt-shadow-card) !important;
    padding: 2.25rem 1.75rem !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    text-align: left !important;
}

.feature-card::before,
.events-grid .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 214, 128, 0.4), transparent);
    opacity: 0.7;
}

.feature-card:hover,
.events-grid .feature-card:hover {
    transform: translateY(-6px) !important;
    border-color: rgba(212, 175, 55, 0.4) !important;
    box-shadow: var(--tt-shadow-card-hover) !important;
    background: linear-gradient(
        145deg,
        rgba(26, 30, 44, 0.9) 0%,
        rgba(14, 16, 24, 0.98) 100%
    ) !important;
}

/* FIXED: Critical Wireframe Icon Bug Fix! */
.feature-icon,
.events-grid .feature-icon,
.about-feature-icon {
    width: 56px !important;
    height: 56px !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.04) 100%) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 0 1.25rem 0 !important;
    color: var(--tt-gold-light) !important;
    font-size: 1.5rem !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.feature-card:hover .feature-icon,
.events-grid .feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.28) 0%, rgba(212, 175, 55, 0.1) 100%) !important;
    border-color: var(--tt-gold-light) !important;
    transform: scale(1.08) rotate(2deg) !important;
    color: #ffffff !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3) !important;
}

.feature-icon svg,
.about-feature-icon svg {
    width: 26px !important;
    height: 26px !important;
    fill: currentColor !important;
}

.feature-card h3,
.events-grid .feature-card h3 {
    font-family: var(--tt-font-display) !important;
    font-size: 1.375rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 0.75rem !important;
    letter-spacing: -0.01em;
}

.feature-card p,
.events-grid .feature-card p {
    font-size: 0.9375rem !important;
    line-height: 1.65 !important;
    color: var(--tt-text-muted) !important;
    margin-bottom: 1.5rem !important;
    flex-grow: 1 !important;
}

/* Card Micro-Tags */
.card-micro-tag {
    display: inline-block;
    font-family: var(--tt-font-sans);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--tt-gold-light);
    background: rgba(212, 175, 55, 0.1);
    padding: 3px 10px;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 0.875rem;
    align-self: flex-start;
}

/* Card Micro-Button */
.btn-card-gold {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--tt-font-sans);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--tt-gold-light);
    text-decoration: none;
    transition: all 0.25s ease;
    align-self: flex-start;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
}

.btn-card-gold:hover {
    color: #ffffff;
    border-color: #ffffff;
    gap: 10px;
}

/* ==========================================================================
   7. WHY CHOOSE US - WATERMARK NUMBERED GRID
   ========================================================================== */
.why-card {
    position: relative !important;
    padding: 2.25rem 1.75rem !important;
}

.why-card-index {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-family: var(--tt-font-display);
    font-size: 2.25rem;
    font-weight: 700;
    font-style: italic;
    color: rgba(212, 175, 55, 0.14);
    line-height: 1;
    pointer-events: none;
    transition: color 0.3s ease;
}

.why-card:hover .why-card-index {
    color: rgba(212, 175, 55, 0.35);
}

/* ==========================================================================
   8. STATS SECTION ELEVATION (FIX MISSING NUMBERS BUG)
   ========================================================================== */
.stats-section {
    background: linear-gradient(
        180deg,
        rgba(15, 17, 24, 0.95) 0%,
        rgba(10, 11, 16, 0.98) 100%
    ) !important;
    border-top: 1px solid rgba(212, 175, 55, 0.18) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.18) !important;
    padding: 3.5rem 0 !important;
    position: relative;
}

.stats-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
    text-align: center !important;
}

.stat-item {
    /* Critical fix: ensure visible by default even before scroll scripts */
    opacity: 1 !important;
    transform: none !important;
    padding: 1.5rem 1rem !important;
    position: relative;
    border-right: 1px solid rgba(212, 175, 55, 0.12);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    display: block !important;
    font-family: var(--tt-font-display) !important;
    font-size: clamp(2.5rem, 4vw, 3.5rem) !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    margin-bottom: 0.5rem !important;
    background: var(--tt-gold-gradient) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.stat-label {
    font-family: var(--tt-font-sans) !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    color: var(--tt-text-muted) !important;
}

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .stat-item:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 575px) {
    .stats-grid {
        grid-template-columns: 1fr !important;
    }
    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    .stat-item:last-child {
        border-bottom: none;
    }
}

/* ==========================================================================
   9. CUISINE & EVENTS OVERVIEW PAGES FIX
   ========================================================================== */
.events-grid {
    display: grid !important;
    gap: 1.75rem !important;
}

.events-grid .card-footer {
    border-top: 1px solid rgba(212, 175, 55, 0.12) !important;
    padding-top: 1rem !important;
    margin-top: auto !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
}

.events-grid .card-footer .capacity {
    font-size: 0.8125rem !important;
    color: var(--tt-text-dim) !important;
    font-weight: 500 !important;
}

.events-grid .card-footer .learn-more,
.events-grid .learn-more {
    font-family: var(--tt-font-sans) !important;
    font-size: 0.8125rem !important;
    font-weight: 700 !important;
    color: var(--tt-gold-light) !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    transition: all 0.2s ease !important;
}

.events-grid .card-footer .learn-more:hover {
    color: #ffffff !important;
    gap: 8px !important;
}

/* ==========================================================================
   10. LOCATION & VISIT SECTION
   ========================================================================== */
.location-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 2.5rem !important;
    align-items: stretch !important;
}

.location-info {
    background: var(--tt-obsidian-card) !important;
    backdrop-filter: var(--tt-blur-card) !important;
    border: var(--tt-glass-border) !important;
    border-radius: 16px !important;
    padding: 2.5rem !important;
    box-shadow: var(--tt-shadow-card) !important;
}

.location-info h3 {
    font-family: var(--tt-font-display) !important;
    font-size: 1.125rem !important;
    color: var(--tt-gold-light) !important;
    margin-bottom: 0.5rem !important;
}

.location-info p,
.location-info ul {
    color: var(--tt-text-muted) !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.6 !important;
}

.location-image {
    border-radius: 16px !important;
    overflow: hidden !important;
    border: var(--tt-glass-border) !important;
    box-shadow: var(--tt-shadow-card) !important;
}

@media (max-width: 991px) {
    .location-content {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================================================
   11. FAQ ACCORDION ELEVATION
   ========================================================================== */
.faq-section {
    background: var(--tt-obsidian-deep) !important;
    padding: 5rem 0 !important;
}

.faq-list {
    max-width: 840px !important;
    margin: 0 auto !important;
}

.faq-item {
    background: rgba(18, 20, 28, 0.6) !important;
    border: 1px solid rgba(212, 175, 55, 0.14) !important;
    border-radius: 12px !important;
    margin-bottom: 1rem !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3) !important;
}

.faq-question {
    width: 100% !important;
    padding: 1.25rem 1.75rem !important;
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    font-family: var(--tt-font-sans) !important;
    font-size: 1.0625rem !important;
    font-weight: 600 !important;
    text-align: left !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    cursor: pointer !important;
}

.faq-question svg {
    color: var(--tt-gold-base) !important;
    transition: transform 0.3s ease !important;
    flex-shrink: 0 !important;
}

.faq-answer-inner {
    padding: 0 1.75rem 1.5rem !important;
    color: var(--tt-text-muted) !important;
    line-height: 1.7 !important;
    font-size: 0.9375rem !important;
}

/* ==========================================================================
   12. SITE FOOTER REFINEMENT
   ========================================================================== */
.site-footer {
    background: #06070a !important;
    border-top: 1px solid rgba(212, 175, 55, 0.16) !important;
    color: var(--tt-text-muted) !important;
    position: relative;
}

.footer-heading {
    font-family: var(--tt-font-display) !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 1.5rem !important;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--tt-gold-gradient);
    border-radius: 2px;
}

.footer-links li a {
    color: var(--tt-text-muted) !important;
    transition: all 0.2s ease !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links li a:hover {
    color: var(--tt-gold-light) !important;
    transform: translateX(4px);
}

.footer-map iframe {
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5) !important;
}

/* ==========================================================================
   13. STICKY MOBILE CONCIERGE BAR (HIGH CRO CONVERSIONS)
   ========================================================================== */
.mobile-concierge-bar {
    display: none;
}

@media (max-width: 991px) {
    .mobile-concierge-bar {
        display: grid;
        grid-template-columns: 1fr 1fr 1.3fr;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9998;
        background: rgba(9, 10, 14, 0.94);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(212, 175, 55, 0.25);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
        padding: 8px 12px;
        gap: 8px;
    }

    /* Padding compensation for body so sticky footer does not block content */
    body {
        padding-bottom: 64px !important;
    }

    /* Hide standard floating circular buttons on mobile to prevent clutter */
    .floating-cta {
        display: none !important;
    }

    .concierge-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        padding: 8px 4px;
        border-radius: 8px;
        text-decoration: none;
        color: var(--tt-text-base);
        font-family: var(--tt-font-sans);
        font-size: 0.6875rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        transition: all 0.2s ease;
    }

    .concierge-item i {
        font-size: 1.05rem;
    }

    .concierge-item.concierge-call {
        color: #fce49c;
    }

    .concierge-item.concierge-whatsapp {
        color: #25d366;
    }

    .concierge-item.concierge-book {
        background: var(--tt-gold-gradient);
        color: #07080b;
        font-weight: 700;
        border: none;
        box-shadow: 0 2px 12px rgba(212, 175, 55, 0.4);
    }
}

/* ==========================================================================
   14. EVENT CARDS LUXURY GLASSMORPHISM
   ========================================================================== */
.event-card,
.events-grid .event-card {
    background: linear-gradient(145deg, rgba(20, 23, 33, 0.85) 0%, rgba(11, 13, 18, 0.95) 100%) !important;
    backdrop-filter: var(--tt-blur-card) !important;
    -webkit-backdrop-filter: var(--tt-blur-card) !important;
    border: var(--tt-glass-border) !important;
    border-radius: 16px !important;
    box-shadow: var(--tt-shadow-card) !important;
    padding: 2.25rem 1.75rem !important;
    transition: all 0.3s ease !important;
}

.event-card:hover,
.events-grid .event-card:hover {
    border-color: rgba(212, 175, 55, 0.4) !important;
    box-shadow: var(--tt-shadow-card-hover) !important;
    transform: translateY(-4px) !important;
}

.event-card .event-icon {
    width: 56px !important;
    height: 56px !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.04) 100%) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 0 1.25rem 0 !important;
    color: var(--tt-gold-light) !important;
    font-size: 1.5rem !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.event-card:hover .event-icon {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.28) 0%, rgba(212, 175, 55, 0.1) 100%) !important;
    border-color: var(--tt-gold-light) !important;
    transform: scale(1.08) !important;
}

.event-card h3 {
    font-family: var(--tt-font-display) !important;
    font-size: 1.375rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 0.75rem !important;
}

.event-card p {
    font-size: 0.9375rem !important;
    line-height: 1.65 !important;
    color: var(--tt-text-muted) !important;
    margin-bottom: 1.25rem !important;
}

.event-card .event-capacity {
    font-size: 0.8125rem !important;
    color: var(--tt-gold-light) !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    margin-bottom: 1.25rem !important;
    display: block !important;
}

.event-card .btn-outline {
    border: 1px solid rgba(212, 175, 55, 0.35) !important;
    color: var(--tt-gold-light) !important;
    background: transparent !important;
    border-radius: 9999px !important;
    font-size: 0.8125rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    padding: 0.5rem 1.25rem !important;
    transition: all 0.25s ease !important;
    display: inline-block !important;
    align-self: flex-start !important;
    text-decoration: none !important;
}

.event-card:hover .btn-outline {
    background: var(--tt-gold-gradient) !important;
    color: #07080b !important;
    border-color: transparent !important;
}
