/* ==========================================================================
   MISHTI GROUP LUXURY DESIGN SYSTEM & CORE STYLES
   ========================================================================== */

/* --- Custom Property Configuration (Premium Warm-Neutral & Earthy Gold) --- */
:root {
    --bg-dark: #12110F;         /* Rich charcoal ebony with warm earthy undertones */
    --bg-light: #F6F4F0;        /* Elegant warm cream / champagne alabaster */
    --gold: #C5A880;            /* Muted burnished luxury gold */
    --gold-bright: #D4AF37;     /* Bright gold highlights */
    --gold-dark: #A3855C;       /* Deep warm bronze */
    --terracotta: #8C624E;      /* Earthy terracotta accent */
    --text-dark: #1A1917;       /* Soft ebony black for readable dark text */
    --text-muted-dark: #66625C; /* Medium gray-brown for muted subtext */
    --text-light: #EBE5DB;      /* Luxurious warm light gray-white */
    --text-muted-light: #A8A196;/* Alabaster muted text */
    
    --font-serif-display: 'Playfair Display', serif;
    --font-serif-body: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
    
    --transition-slow: 0.8s cubic-bezier(0.25, 1, 0.3, 1);
    --transition-mid: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.25s ease;
    
    --shadow-lux: 0 20px 40px rgba(0, 0, 0, 0.3);
    --shadow-soft: 0 8px 30px rgba(26, 25, 23, 0.05);
    
    --border-gold-glass: 1px solid rgba(197, 168, 128, 0.15);
    --bg-glass-dark: rgba(18, 17, 15, 0.85);
    --bg-glass-light: rgba(246, 244, 240, 0.85);
}

/* --- Universal Reset & Premium Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif-display);
    font-weight: 400;
    letter-spacing: 0.03em;
}

a {
    color: inherit;
    text-decoration: none;
}

button, select, input {
    font-family: inherit;
    outline: none;
    border: none;
    background: none;
}


/* ==========================================================================
   1. SPLIT-GATEWAY HOMEPAGE
   ========================================================================== */
.gateway-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    z-index: 10;
    overflow: hidden;
    background-color: var(--bg-dark);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-mid);
}

.gateway-container.active {
    opacity: 1;
    pointer-events: auto;
}

/* Gateway Halves */
.gateway-half {
    position: relative;
    width: 50%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width var(--transition-slow);
}

/* Background Image Layer with Parallax / Scale */
.gateway-bg {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-size: cover;
    background-position: center;
    transition: transform var(--transition-slow), filter var(--transition-slow);
    filter: brightness(0.4) saturate(0.8);
}

.gateway-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 30%, rgba(18, 17, 15, 0.7) 100%);
    z-index: 2;
    transition: opacity var(--transition-slow);
}

/* Content Box on top of Image */
.gateway-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 80%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(20px);
    opacity: 0.85;
    transition: transform var(--transition-slow), opacity var(--transition-slow);
}

.gateway-tag {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.gateway-heading {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    color: #FFF;
    margin-bottom: 1rem;
    font-weight: 300;
}

.gateway-sub {
    font-family: var(--font-serif-body);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-muted-light);
    margin-bottom: 2rem;
    max-width: 450px;
}

/* Center Logo Emblem Badge */
.gateway-emblem {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: rgba(18, 17, 15, 0.95);
    border: 1px solid var(--gold);
    border-radius: 50%;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(197, 168, 128, 0.3);
    pointer-events: none;
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.emblem-subtitle {
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    color: var(--text-muted-light);
    font-weight: 500;
}

.emblem-title {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin: 2px 0;
}

.emblem-divider {
    width: 30px;
    height: 1px;
    background-color: var(--gold);
    margin: 4px 0;
}

.emblem-desc {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    color: var(--gold);
}

/* --- Interactive Hover Behaviors --- */
.gateway-half:hover {
    width: 58%;
}

.gateway-half:hover .gateway-bg {
    transform: scale(1.04);
    filter: brightness(0.65) saturate(1);
}

.gateway-half:hover .gateway-content {
    transform: translateY(0);
    opacity: 1;
}

/* Shrink counterpart half when hovering another */
.gateway-container:has(#gateway-culinary:hover) #gateway-resort {
    width: 42%;
}
.gateway-container:has(#gateway-resort:hover) #gateway-culinary {
    width: 42%;
}

/* Center Emblem Pulse when hovering sides */
.gateway-container:has(.gateway-half:hover) .gateway-emblem {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 0 50px rgba(197, 168, 128, 0.5);
}


/* ==========================================================================
   2. GLOBAL LUXURY BUTTONS & COMPONENTS
   ========================================================================== */
/* Premium Outline Button */
.luxury-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0.9rem 2.2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #FFF;
    border-radius: 0;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: border-color var(--transition-fast), color var(--transition-fast);
    z-index: 1;
}

.luxury-btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--gold);
    transition: left var(--transition-mid);
    z-index: -1;
}

.luxury-btn-outline:hover {
    border-color: var(--gold);
    color: var(--bg-dark);
}

.luxury-btn-outline:hover::before {
    left: 0;
}

.luxury-btn-outline i {
    font-size: 0.85rem;
    transition: transform var(--transition-fast);
}

.luxury-btn-outline:hover i {
    transform: translateX(4px);
}

/* Premium Solid Button */
.luxury-btn-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background-color: var(--gold);
    color: var(--bg-dark);
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.luxury-btn-solid:hover {
    background-color: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.luxury-btn-solid.gold-btn {
    background-color: var(--gold-bright);
    border-color: var(--gold-bright);
}

.luxury-btn-solid.gold-btn:hover {
    background-color: transparent;
    color: var(--gold-bright);
    border-color: var(--gold-bright);
}

.luxury-btn-solid.small-btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.7rem;
}


/* ==========================================================================
   3. PORTAL CORE ARCHITECTURE (SPA ROUTING EFFECT)
   ========================================================================== */
.portal-container {
    display: none;
    opacity: 0;
    min-height: 100vh;
    animation: fadeRevealUp 0.7s var(--transition-mid) forwards;
}

.portal-container.active {
    display: block;
    opacity: 1;
}

/* Theme differences */
#culinary-portal {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

#resort-portal {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

#resort-portal .nav-link {
    color: var(--text-muted-light);
}

/* --- Portal Custom Headers --- */
.luxury-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    padding: 0 4%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-glass-dark);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(197, 168, 128, 0.1);
    z-index: 100;
}

.dark-header {
    background: rgba(18, 17, 15, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-logo {
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.logo-sub {
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    font-weight: 500;
}

.logo-main {
    font-family: var(--font-serif-display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
}

.header-nav {
    display: flex;
    gap: 35px;
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted-light);
    position: relative;
    padding: 8px 0;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width var(--transition-fast);
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.back-to-gateway {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    cursor: pointer;
    border: 1px solid rgba(197, 168, 128, 0.25);
    padding: 8px 16px;
    transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.back-to-gateway:hover {
    border-color: var(--gold);
    background-color: rgba(197, 168, 128, 0.05);
}

/* Cart Trigger badge */
.cart-trigger {
    position: relative;
    font-size: 1.25rem;
    color: var(--gold);
    cursor: pointer;
    padding: 8px;
    transition: color var(--transition-fast);
}

.cart-trigger:hover {
    color: var(--gold-bright);
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--terracotta);
    color: #FFF;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   4. PORTAL HERO SECTIONS (PARALLAX EFFECT & BANNER)
   ========================================================================== */
.portal-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 90px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    filter: brightness(0.45);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, var(--bg-dark) 100%);
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.hero-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    color: #FFF;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-desc {
    font-family: var(--font-serif-body);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-style: italic;
    color: var(--text-muted-light);
    margin-bottom: 2.5rem;
}

.hero-anchors {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Resort Specific Hero Adjustments */
.resort-hero .hero-overlay {
    background: linear-gradient(to bottom, transparent 40%, var(--bg-dark) 100%);
}


/* ==========================================================================
   5. CULINARY portal: MENU CATALOG & CARDS
   ========================================================================== */
.catalog-section, .suites-section, .booking-widget-section, .brand-showcase, .amenities-section {
    padding: 6rem 8%;
    border-bottom: 1px solid rgba(197, 168, 128, 0.05);
}

.section-header {
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.text-center {
    text-align: center;
}

.section-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: #FFF;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.section-divider {
    width: 60px;
    height: 1px;
    background-color: var(--gold);
    margin: 1.5rem auto;
}

.section-desc {
    font-family: var(--font-serif-body);
    font-size: 1.25rem;
    color: var(--text-muted-light);
    font-style: italic;
}

/* Category Filters */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 3rem;
}

.tab-btn {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 10px 24px;
    border: 1px solid rgba(197, 168, 128, 0.2);
    color: var(--text-muted-light);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.tab-btn:hover, .tab-btn.active {
    color: var(--bg-dark);
    background-color: var(--gold);
    border-color: var(--gold);
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.menu-card {
    background-color: rgba(18, 17, 15, 0.4);
    border: 1px solid rgba(197, 168, 128, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.menu-card:hover {
    border-color: rgba(197, 168, 128, 0.3);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lux);
}

.menu-card-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.menu-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(18, 17, 15, 0.85);
    border: 1px solid var(--gold);
    padding: 4px 10px;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    z-index: 5;
}

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

.menu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
}

.menu-item-name {
    font-size: 1.3rem;
    font-weight: 400;
    color: #FFF;
}

.menu-item-price {
    font-family: var(--font-serif-body);
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 600;
}

.menu-item-desc {
    font-size: 0.85rem;
    color: var(--text-muted-light);
    margin-bottom: 1.8rem;
    flex-grow: 1;
    font-weight: 300;
}

.menu-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.75rem 0;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid rgba(197, 168, 128, 0.2);
    color: var(--gold);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.menu-card-btn:hover {
    background-color: var(--gold);
    color: var(--bg-dark);
    border-color: var(--gold);
}

/* Category Filter Transition Helper */
.menu-card.hidden {
    display: none;
}


/* ==========================================================================
   6. CULINARY BRAND SHOWCASES (DETAILED VIEWS)
   ========================================================================== */
.brand-showcase {
    background-color: var(--bg-dark);
}

.brand-row {
    display: flex;
    align-items: center;
    gap: 6%;
}

.brand-text {
    width: 45%;
}

.brand-image {
    width: 49%;
    height: 480px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(197, 168, 128, 0.1);
    box-shadow: var(--shadow-lux);
}

.reverse .brand-row {
    flex-direction: row-reverse;
}

.brand-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.brand-title {
    font-size: clamp(2rem, 3vw, 2.6rem);
    color: #FFF;
    margin-bottom: 1.5rem;
}

.brand-desc {
    font-size: 0.95rem;
    color: var(--text-muted-light);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2.2rem;
}


/* ==========================================================================
   7. LUXURY RESORT: VILLA SUITES & PORTAL
   ========================================================================== */
.suites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 2rem;
}

.suite-card {
    background-color: rgba(18, 17, 15, 0.3);
    border: 1px solid rgba(197, 168, 128, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.suite-card:hover {
    border-color: rgba(197, 168, 128, 0.3);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lux);
}

.suite-card-img {
    height: 300px;
    background-size: cover;
    background-position: center;
    filter: brightness(0.8);
    transition: filter var(--transition-fast);
}

.suite-card:hover .suite-card-img {
    filter: brightness(0.95);
}

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

.suite-size {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.suite-title {
    font-size: 1.6rem;
    color: #FFF;
    margin-bottom: 1rem;
    font-weight: 400;
}

.suite-desc {
    font-size: 0.88rem;
    color: var(--text-muted-light);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.suite-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 1.8rem;
}

.suite-price span:first-child {
    font-size: 0.75rem;
    color: var(--text-muted-light);
    text-transform: uppercase;
}

.price-val {
    font-size: 1.8rem;
    font-family: var(--font-serif-display);
    color: #FFF;
    font-weight: 600;
}

.price-per {
    font-family: var(--font-serif-body);
    font-size: 1.1rem;
    color: var(--gold);
    font-style: italic;
}

.suite-card-btn {
    text-align: center;
    padding: 0.9rem 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background-color: transparent;
    border: 1px solid rgba(197, 168, 128, 0.25);
    color: var(--gold);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.suite-card-btn:hover {
    background-color: var(--gold);
    color: var(--bg-dark);
    border-color: var(--gold);
}


/* ==========================================================================
   8. SMART BOOKING CALCULATOR WIDGET
   ========================================================================== */
.booking-widget-section {
    background: radial-gradient(circle at top right, rgba(140, 98, 78, 0.15), transparent 60%), var(--bg-dark);
}

.booking-glass-container {
    background: rgba(18, 17, 15, 0.6);
    border: 1px solid rgba(197, 168, 128, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 4rem;
    box-shadow: var(--shadow-lux);
}

.booking-row {
    display: flex;
    gap: 8%;
    align-items: center;
}

.booking-info {
    width: 45%;
}

.booking-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.booking-title {
    font-size: clamp(2rem, 3vw, 2.6rem);
    color: #FFF;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.booking-desc {
    font-size: 0.95rem;
    color: var(--text-muted-light);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.booking-assurance {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.assurance-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.assurance-item i {
    font-size: 1rem;
    color: var(--gold);
    width: 25px;
}

.assurance-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
}

/* Booking Form Box */
.booking-form-box {
    width: 47%;
    background: rgba(18, 17, 15, 0.5);
    border: 1px solid rgba(197, 168, 128, 0.15);
    padding: 2.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

.form-group select, .form-group input {
    background-color: rgba(18, 17, 15, 0.8);
    border: 1px solid rgba(197, 168, 128, 0.25);
    padding: 0.9rem 1.2rem;
    font-size: 0.85rem;
    color: #FFF;
    border-radius: 0;
    width: 100%;
}

.form-group select option {
    background-color: var(--bg-dark);
    color: #FFF;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

/* Price Breakdown box */
.price-breakdown {
    background: rgba(197, 168, 128, 0.05);
    border: 1px solid rgba(197, 168, 128, 0.15);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.breakdown-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: var(--text-muted-light);
}

.breakdown-divider {
    height: 1px;
    background-color: rgba(197, 168, 128, 0.2);
    margin: 12px 0;
}

.breakdown-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.15rem;
    font-weight: 600;
    color: #FFF;
}

.breakdown-total span:last-child {
    color: var(--gold-bright);
}

.booking-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 1.1rem 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background-color: var(--gold);
    color: var(--bg-dark);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.booking-submit-btn:hover {
    background-color: var(--gold-bright);
}


/* --- Amenities Showcase --- */
.amenities-section {
    background-color: var(--bg-dark);
}

.amenities-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 2rem;
}

.amenity-item {
    flex: 1;
    text-align: center;
    padding: 3rem 2rem;
    border: 1px solid rgba(197, 168, 128, 0.05);
    background: rgba(18, 17, 15, 0.3);
    transition: border-color var(--transition-fast);
}

.amenity-item:hover {
    border-color: rgba(197, 168, 128, 0.2);
}

.amenity-item i {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.amenity-item h4 {
    font-size: 1.25rem;
    color: #FFF;
    margin-bottom: 0.8rem;
}

.amenity-item p {
    font-size: 0.85rem;
    color: var(--text-muted-light);
    line-height: 1.6;
    font-weight: 300;
}


/* ==========================================================================
   9. SHOPPING CART DRAWER
   ========================================================================== */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(18, 17, 15, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-mid);
}

.cart-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: absolute;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100%;
    background-color: var(--bg-dark);
    border-left: 1px solid rgba(197, 168, 128, 0.15);
    box-shadow: var(--shadow-lux);
    display: flex;
    flex-direction: column;
    transition: right var(--transition-mid);
}

.cart-drawer-overlay.active .cart-drawer {
    right: 0;
}

.cart-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.5rem;
    color: #FFF;
}

.close-cart-btn {
    font-size: 1.25rem;
    color: var(--text-muted-light);
    cursor: pointer;
    padding: 4px;
    transition: color var(--transition-fast);
}

.close-cart-btn:hover {
    color: var(--gold);
}

.cart-body {
    padding: 2rem;
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.empty-cart-msg {
    font-family: var(--font-serif-body);
    font-size: 1.25rem;
    color: var(--text-muted-light);
    text-align: center;
    margin-top: 4rem;
    font-style: italic;
}

/* Cart Item card */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.cart-item-info {
    max-width: 70%;
}

.cart-item-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: #FFF;
    margin-bottom: 4px;
}

.cart-item-cat {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 0.1em;
}

.cart-item-qty-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.qty-btn {
    font-size: 0.75rem;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(197, 168, 128, 0.3);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.qty-btn:hover {
    background-color: var(--gold);
    color: var(--bg-dark);
}

.qty-val {
    font-size: 0.85rem;
    color: #FFF;
}

.cart-item-price-side {
    text-align: right;
}

.cart-item-price {
    font-family: var(--font-serif-body);
    font-size: 1.15rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
}

.cart-item-remove {
    font-size: 0.75rem;
    color: var(--terracotta);
    cursor: pointer;
    transition: opacity var(--transition-fast);
}

.cart-item-remove:hover {
    opacity: 0.8;
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid rgba(197, 168, 128, 0.15);
    background-color: rgba(18, 17, 15, 0.5);
}

.cart-subtotal-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.15rem;
    font-weight: 600;
    color: #FFF;
    margin-bottom: 8px;
}

#cart-subtotal-val {
    color: var(--gold-bright);
}

.cart-notice-text {
    font-size: 0.75rem;
    color: var(--text-muted-light);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.cart-checkout-btn {
    width: 100%;
    padding: 1rem 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background-color: var(--gold);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.cart-checkout-btn:hover {
    background-color: var(--gold-bright);
}


/* ==========================================================================
   10. INTERACTIVE VIRTUAL CONCIERGE CHAT SYSTEM
   ========================================================================== */
/* Floating Concierge Bubble */
.concierge-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: var(--gold);
    color: var(--bg-dark);
    border-radius: 50%;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 10px 30px rgba(197, 168, 128, 0.4);
    cursor: pointer;
    transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.concierge-bubble:hover {
    transform: scale(1.06);
    background-color: var(--gold-bright);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    border-radius: 50%;
    animation: bubblePulse 2s infinite ease-out;
}

.bubble-tooltip {
    position: absolute;
    right: 80px;
    background: var(--bg-dark);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 6px 14px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity var(--transition-fast), transform var(--transition-fast);
    pointer-events: none;
}

.concierge-bubble:hover .bubble-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Chat window panel */
.concierge-panel {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 400px;
    height: 600px;
    background-color: var(--bg-glass-dark);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(197, 168, 128, 0.2);
    box-shadow: var(--shadow-lux);
    z-index: 999;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: opacity var(--transition-mid), transform var(--transition-mid);
}

.concierge-panel.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Chat Header */
.concierge-header {
    padding: 1.5rem;
    background-color: rgba(18, 17, 15, 0.5);
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-status {
    position: relative;
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    background-color: rgba(197, 168, 128, 0.05);
}

.status-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background-color: #2ECC71;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
}

.header-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #FFF;
}

.header-info p {
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.header-close-btn {
    font-size: 1rem;
    color: var(--text-muted-light);
    cursor: pointer;
    padding: 4px;
    transition: color var(--transition-fast);
}

.header-close-btn:hover {
    color: var(--gold);
}

/* Chat logs list */
.concierge-body {
    padding: 1.5rem;
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-msg {
    display: flex;
    flex-direction: column;
    max-width: 80%;
}

.chat-msg.bot {
    align-self: flex-start;
}

.chat-msg.user {
    align-self: flex-end;
}

.msg-bubble {
    padding: 12px 16px;
    font-size: 0.85rem;
    line-height: 1.5;
    border-radius: 0;
}

.bot .msg-bubble {
    background-color: rgba(197, 168, 128, 0.08);
    border: 1px solid rgba(197, 168, 128, 0.2);
    color: var(--text-light);
}

.user .msg-bubble {
    background-color: var(--gold);
    color: var(--bg-dark);
    font-weight: 500;
}

.msg-time {
    font-size: 0.65rem;
    color: var(--text-muted-light);
    margin-top: 4px;
    padding: 0 4px;
}

.user .msg-time {
    align-self: flex-end;
}

/* Chat quick action buttons inside logs */
.chat-options-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
    max-width: 90%;
    align-self: flex-start;
}

.chat-opt-btn {
    font-size: 0.75rem;
    font-weight: 600;
    text-align: left;
    padding: 10px 16px;
    border: 1px solid rgba(197, 168, 128, 0.25);
    background-color: rgba(18, 17, 15, 0.6);
    color: var(--gold);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.chat-opt-btn:hover {
    background-color: var(--gold);
    color: var(--bg-dark);
    border-color: var(--gold);
}

/* Ticket/Invoice style in Chat */
.chat-receipt-card {
    background: linear-gradient(135deg, rgba(18, 17, 15, 0.95), rgba(40, 36, 32, 0.95));
    border: 1px solid var(--gold);
    padding: 1.5rem;
    margin: 10px 0;
    max-width: 100%;
}

.receipt-header {
    text-align: center;
    border-bottom: 1px dashed rgba(197, 168, 128, 0.3);
    padding-bottom: 10px;
    margin-bottom: 12px;
}

.receipt-logo {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    font-weight: 600;
}

.receipt-title {
    font-size: 1.1rem;
    color: #FFF;
}

.receipt-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    margin-bottom: 6px;
    color: var(--text-muted-light);
}

.receipt-line.total {
    border-top: 1px solid rgba(197, 168, 128, 0.2);
    padding-top: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold-bright);
}

.receipt-footer-stamp {
    text-align: center;
    font-size: 0.6rem;
    color: #2ECC71;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 12px;
    border: 1px solid #2ECC71;
    padding: 4px;
    display: inline-block;
    width: 100%;
}

/* Chat inputs */
.concierge-input-area {
    padding: 1.2rem;
    border-top: 1px solid rgba(197, 168, 128, 0.15);
    background-color: rgba(18, 17, 15, 0.5);
    display: flex;
    gap: 10px;
}

.concierge-input-area input {
    flex-grow: 1;
    background-color: rgba(18, 17, 15, 0.8);
    border: 1px solid rgba(197, 168, 128, 0.2);
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: #FFF;
}

.send-chat-btn {
    width: 45px;
    background-color: var(--gold);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.send-chat-btn:hover {
    background-color: var(--gold-bright);
}


/* ==========================================================================
   11. FLOATING CTAS: WHATSAPP & PHONE POP-UPS
   ========================================================================== */
.persistent-cta-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 998;
}

.floating-cta {
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #FFF;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition-fast);
}

.floating-cta:hover {
    transform: scale(1.08);
}

.call-cta {
    background-color: var(--gold-dark);
}

.whatsapp-cta {
    background-color: #2ECC71; /* High quality WhatsApp brand color */
}

.cta-ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.whatsapp-cta .cta-ripple {
    border: 1px solid #2ECC71;
    animation: bubblePulse 2.5s infinite ease-out;
}

.call-cta .cta-ripple {
    border: 1px solid var(--gold-dark);
    animation: bubblePulse 2.5s 0.5s infinite ease-out;
}

/* CTA Selector Popup Modal */
.cta-selector-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(18, 17, 15, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-mid);
}

.cta-selector-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.cta-modal-card {
    width: 90%;
    max-width: 500px;
    background-color: var(--bg-dark);
    border: 1px solid rgba(197, 168, 128, 0.25);
    box-shadow: var(--shadow-lux);
    transform: scale(0.92);
    transition: transform var(--transition-mid);
}

.cta-selector-modal.active .cta-modal-card {
    transform: scale(1);
}

.cta-modal-header {
    padding: 2.2rem 2.2rem 1.5rem 2.2rem;
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    position: relative;
}

.cta-badge {
    display: inline-block;
    background: rgba(197, 168, 128, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    padding: 4px 8px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.cta-modal-title {
    font-size: 1.6rem;
    color: #FFF;
    margin-bottom: 4px;
}

.cta-modal-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted-light);
    font-weight: 300;
}

.cta-close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.25rem;
    color: var(--text-muted-light);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.cta-close-btn:hover {
    color: var(--gold);
}

.cta-modal-body {
    padding: 2.2rem;
}

.cta-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-card-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(197, 168, 128, 0.03);
    border: 1px solid rgba(197, 168, 128, 0.1);
    padding: 12px 20px;
    transition: border-color var(--transition-fast);
}

.cta-card-item:hover {
    border-color: rgba(197, 168, 128, 0.3);
}

.cta-card-details {
    display: flex;
    flex-direction: column;
}

.cta-card-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #FFF;
}

.cta-card-status {
    font-size: 0.65rem;
    color: #2ECC71;
    font-weight: 600;
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cta-card-status i {
    font-size: 0.4rem;
    animation: statusPulse 1.5s infinite;
}

.cta-card-actions {
    display: flex;
    gap: 10px;
}

.cta-btn {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: opacity var(--transition-fast);
}

.cta-btn:hover {
    opacity: 0.85;
}

.cta-wa-btn {
    background-color: #2ECC71;
    color: #FFF;
}

.cta-phone-btn {
    background-color: rgba(197, 168, 128, 0.15);
    border: 1px solid rgba(197, 168, 128, 0.3);
    color: var(--gold);
}


/* ==========================================================================
   12. PREMIUM BRAND FOOTER
   ========================================================================== */
.luxury-footer {
    background-color: #0B0A09; /* Deeper black in footer */
    border-top: 1px solid rgba(197, 168, 128, 0.1);
    padding: 5rem 8% 2rem 8%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-size: 1.6rem;
    letter-spacing: 0.12em;
    color: #FFF;
    margin-bottom: 1.2rem;
}

.footer-brand-statement {
    font-family: var(--font-serif-body);
    font-size: 1.15rem;
    color: var(--text-muted-light);
    font-style: italic;
    line-height: 1.6;
}

.footer-links h4, .footer-socials h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul li a {
    font-size: 0.85rem;
    color: var(--text-muted-light);
    transition: color var(--transition-fast);
}

.footer-links ul li a:hover {
    color: var(--gold);
}

.footer-socials p {
    font-size: 0.85rem;
    color: var(--text-muted-light);
    margin-bottom: 1.2rem;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(197, 168, 128, 0.2);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.social-btn:hover {
    border-color: var(--gold);
    background-color: var(--gold);
    color: var(--bg-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted-light);
}


/* ==========================================================================
   13. FOOTER SOCIAL MULTI-LINK SELECTOR MODAL
   ========================================================================== */
.social-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(18, 17, 15, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-mid);
}

.social-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.social-modal-card {
    width: 90%;
    max-width: 460px;
    background-color: var(--bg-dark);
    border: 1px solid rgba(197, 168, 128, 0.25);
    box-shadow: var(--shadow-lux);
    transform: scale(0.92);
    transition: transform var(--transition-mid);
}

.social-modal-overlay.active .social-modal-card {
    transform: scale(1);
}

.social-modal-header {
    padding: 2.2rem 2.2rem 1.5rem 2.2rem;
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    position: relative;
}

.social-modal-badge {
    display: inline-block;
    background: rgba(197, 168, 128, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    padding: 4px 8px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.social-modal-title {
    font-size: 1.6rem;
    color: #FFF;
    margin-bottom: 4px;
}

.social-modal-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted-light);
    font-weight: 300;
}

.social-modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.25rem;
    color: var(--text-muted-light);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.social-modal-close:hover {
    color: var(--gold);
}

.social-modal-body {
    padding: 2.2rem;
}

.social-links-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link-card {
    display: flex;
    align-items: center;
    background-color: rgba(197, 168, 128, 0.03);
    border: 1px solid rgba(197, 168, 128, 0.1);
    padding: 16px 20px;
    transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.social-link-card:hover {
    border-color: rgba(197, 168, 128, 0.4);
    background-color: rgba(197, 168, 128, 0.06);
}

.social-link-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-right: 15px;
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

/* Modifiers for social card types */
.instagram-card .social-link-icon-box {
    background-color: rgba(197, 168, 128, 0.15);
    color: var(--gold);
}
.instagram-card:hover .social-link-icon-box {
    background-color: var(--gold);
    color: var(--bg-dark);
}

.facebook-card .social-link-icon-box {
    background-color: rgba(59, 89, 152, 0.15);
    color: #3b5998;
}
.facebook-card:hover .social-link-icon-box {
    background-color: #3b5998;
    color: #FFF;
}

.youtube-card .social-link-icon-box {
    background-color: rgba(205, 32, 31, 0.15);
    color: #cd201f;
}
.youtube-card:hover .social-link-icon-box {
    background-color: #cd201f;
    color: #FFF;
}

.social-link-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.social-channel-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #FFF;
}

.social-channel-handle {
    font-size: 0.75rem;
    color: var(--text-muted-light);
    margin-top: 2px;
}

.social-arrow {
    font-size: 0.85rem;
    color: var(--text-muted-light);
    transition: transform var(--transition-fast);
}

.social-link-card:hover .social-arrow {
    transform: translateX(4px);
    color: var(--gold);
}


/* ==========================================================================
   14. ANIMATIONS & RESPONSIVE BREAKPOINTS
   ========================================================================== */
/* Smooth Fade-in-up Entry */
@keyframes fadeRevealUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating bubble pulsing glow */
@keyframes bubblePulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Glowing green dot animation */
@keyframes statusPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}


/* --- Mobile Responsive Layout Adjustments --- */
@media (max-width: 1024px) {
    /* Gateway split stack */
    .gateway-container {
        flex-direction: column;
    }
    .gateway-half {
        width: 100% !important;
        height: 50% !important;
    }
    .gateway-emblem {
        width: 130px;
        height: 130px;
    }
    .emblem-title {
        font-size: 1.3rem;
    }
    
    /* Brand showcases */
    .brand-row {
        flex-direction: column !important;
        gap: 30px;
    }
    .brand-text, .brand-image {
        width: 100% !important;
    }
    .brand-image {
        height: 320px;
    }
    
    /* Booking widget layout */
    .booking-row {
        flex-direction: column;
        gap: 40px;
    }
    .booking-info, .booking-form-box {
        width: 100%;
    }
}

@media (max-width: 768px) {
    /* Header nav hide on tiny screens, routing falls entirely to mobile menus or central actions */
    .header-nav {
        display: none;
    }
    
    .luxury-header {
        height: 80px;
    }
    
    .portal-hero {
        height: 60vh;
        margin-top: 80px;
    }
    
    .amenities-container {
        flex-direction: column;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .cart-drawer {
        width: 100%;
        right: -100%;
    }
    
    .concierge-panel {
        width: calc(100% - 40px);
        right: 20px;
        left: 20px;
        bottom: 100px;
        height: 500px;
    }
}
