:root {
    --primary: #f8934b;
    --primary-rgb: 248, 147, 75;
    --primary-glow: rgba(248, 147, 75, 0.4);
    --dark: #000;
    --dark-rgb: 0, 0, 0;
    --white: #fff;
    --white-rgb: 255, 255, 255;
    
    /* Glassmorphism 2.0 */
    --glass: rgba(0, 0, 0, 0.45);
    --glass-light: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-blur: blur(25px) saturate(180%);
    
    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.3);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    /* Offset for marquee/header breathing room */
    /* Sovereign Stealth Scroll - Global Suppression */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--white);
    background: var(--dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    /* Hide scrollbar for Chrome/Safari/Webkit */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

.container {
    max-width: 1750px;
    /* Ultra-wide for maximum breathing room */
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
}

/* Premium Preloader Styles */
#master-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 1s cubic-bezier(0.86, 0, 0.07, 1);
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.preloader-logo-wrap {
    position: relative;
    width: 200px;
    text-align: center;
}

.preloader-logo {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--primary);
    filter: blur(60px);
    opacity: 0.3;
    animation: glowPulse 2s ease-in-out infinite;
}

.preloader-progress-bar {
    width: 300px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary);
}

.loading-text {
    font-family: var(--font-heading);
    letter-spacing: 4px;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.05);
        filter: brightness(1.2);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.3;
        scale: 1;
    }

    50% {
        opacity: 0.5;
        scale: 1.2;
    }
}

/* Master Hero Layout */
.master-hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -2;
    background: #000;
    /* Fallback for black screen */
}

.atm-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: -1;
}



/* Header Styling */
.main-header {
    padding: 30px 0;
    z-index: 1000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.4s ease;
}

.main-header.sticky {
    position: fixed;
    padding: 12px 0;
    background: rgba(var(--dark-rgb), 0.8);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    animation: slideDown 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: 40px;
    /* Increased separation from Home link */
}

.main-nav-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.main-nav-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.brand-logo span {
    color: var(--primary);
    font-weight: 400;
}

.main-nav-links {
    margin-left: 0;
    margin-right: auto;
}

.elite-hub-item {
    text-decoration: none;
    /* For link items */
}

.elite-hub-item.active .hub-title,
.elite-hub-item:hover .hub-title {
    color: var(--primary);
}

.elite-hub-item.active .hub-icon,
.elite-hub-item:hover .hub-icon {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 10px var(--primary-glow);
}

.nav-utils {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* --- NAV ELITE HUB (MMT STYLE) --- */
.nav-elite-hub {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Balanced gap */
    margin-left: auto;
    margin-right: 20px;
}

.main-nav-links {
    margin-left: 0;
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.elite-hub-item {
    display: flex;
    align-items: center;
    gap: 8px; /* Tighter for Elite density */
    cursor: pointer;
    position: relative;
    padding: 5px 0;
}

.elite-hub-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -4px; /* Tightened */
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: 1px;
    border-right: 1px dashed rgba(255, 255, 255, 0.4);
    /* Brightened for definition */
}

.hub-icon {
    width: 28px; /* Compacted for Elite feeling */
    height: 28px;
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 11px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.hub-icon.biz-icon {
    background: rgba(232, 67, 147, 0.15);
    color: #ff4d94;
    border: 1px solid rgba(232, 67, 147, 0.3);
}

.elite-hub-item:hover .hub-icon {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 0 20px var(--primary-glow);
}

.hub-text {
    display: flex;
    flex-direction: column;
}

.hub-title {
    color: var(--white);
    font-size: 10px; /* Precise density */
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.hub-sub {
    color: rgba(var(--white-rgb), 0.7);
    font-size: 8px; /* Nano-Elite typography */
    font-weight: 500;
    margin-top: 2px;
    letter-spacing: 0.3px;
}

@media (max-width: 1600px) {
    .hub-sub {
        display: none;
    }
}

@media (max-width: 1150px) {
    /* Hide second hub (Utility links) earlier to prevent overcrowding */
    .nav-elite-hub:not(.main-nav-links) {
        display: none !important;
    }
}
    
@media (max-width: 1440px) {
    .nav-elite-hub.main-nav-links {
        margin-right: 0;
        border-right: none;
        padding-right: 0;
    }
}

@media (max-width: 1150px) {
    .nav-elite-hub.main-nav-links {
        display: none;
    }
}

/* --- MOBILE ELITE NAV CRYSTAL --- */
.mobile-elite-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(25px);
    z-index: 2000;
    padding: 60px 20px 20px;
    transition: right 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-elite-nav.active {
    right: 0;
}

.m-section-tag {
    color: var(--primary);
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.m-grid-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.m-elite-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.m-elite-item.active {
    background: rgba(248, 147, 75, 0.15);
    border: 1px solid var(--primary);
}

.m-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

.m-elite-item.active .m-icon {
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.m-elite-item span {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.m-services-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.m-service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ms-icon {
    width: 30px;
    height: 30px;
    color: var(--primary);
    font-size: 18px;
    display: flex;
    align-items: center;
}

.ms-text {
    display: flex;
    flex-direction: column;
}

.ms-title {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.ms-sub {
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
}

.m-auth-footer {
    margin-top: 25px;
}

.w-100 {
    width: 100%;
}

.nav-utils i {
    font-size: 16px;
    /* Scaled down for balance */
    color: #ffffff;
    opacity: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.lang-trigger-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 10px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    pointer-events: auto !important;
    /* Force clickability */
}

.lang-trigger-wrap:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.curr-lang-pill {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary);
}

.flagship-lang-grid {
    min-width: 420px !important;
    max-height: 480px;
    overflow-y: auto;
    padding: 24px !important;
    border-radius: 24px !important;
    /* Hide scrollbar for clean UI */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

/* Hide scrollbar for Chrome/Safari/Webkit */
.flagship-lang-grid::-webkit-scrollbar {
    display: none;
}

.lang-grid-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px !important;
    text-align: left !important;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: var(--transition);
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.lang-option.active {
    background: rgba(255, 111, 0, 0.15) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
}

.lang-flag {
    font-size: 20px;
}

.lang-meta {
    display: flex;
    flex-direction: column;
}

.l-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    display: block;
}

.l-native {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lang-switcher-hub {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1001;
    /* Above header floor */
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.95);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.lang-switcher-hub .lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.btn-login {
    text-decoration: none;
    color: #ffffff;
    /* Brighter pure white */
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-primary-orange {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 12px;
    white-space: nowrap;
}

/* Hero Content */
.hero-main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 30px;
    z-index: 10;
    min-height: 80vh;
    width: 100%;
}

/* Premium Search Container (Luxury Glass Edition) */
.premium-search-container {
    width: 100%;
    max-width: 1050px;
    margin: 30px auto;
    position: relative;
    z-index: 1000; /* Fixed: Ensure search box context is above popular dots */
    opacity: 0;
    transform: translateX(-60px);
    visibility: hidden;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.7));
}

.premium-filter-tabs {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: center;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
    position: relative;
    z-index: 12;
    margin: 0 auto;
    width: fit-content;
    padding: 0 10px;
    max-width: 100%;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.premium-filter-tabs::-webkit-scrollbar {
    display: none;
}

.filter-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    gap: 4px;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    flex-shrink: 0;
    white-space: nowrap;
}

.filter-tab.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.filter-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.tab-icon {
    font-size: 16px;
    color: var(--primary);
}

.tab-label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    white-space: nowrap;
}

/* Search Options Bar (Above Search) */
.search-options-bar {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 13px;
    z-index: 11;
    position: relative;
}

.opt-group {
    display: flex;
    gap: 20px;
}

.radio-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 700;
}

.radio-pill input {
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
}

.badge-new {
    background: #e91e63;
    color: #fff;
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 5px;
    font-weight: 950;
}

.opt-text {
    font-weight: 600;
    opacity: 0.8;
}

/* --- ULTRA-GLASS SEARCH ENGINE (Hotel Mode) --- */
.glass-search-engine {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 40px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    min-height: 140px;
    position: relative;
    z-index: 100;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.5);
    margin: 40px 0;
}

.search-col {
    padding: 30px 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.search-col.clickable:hover {
    background: rgba(255, 255, 255, 0.05);
}

.search-col.large {
    flex: 1.5;
}

.v-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
}

.input-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-stack label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-input {
    background: transparent;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
    width: 100%;
    outline: none;
    padding: 0;
}

.date-val {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: white;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.date-val .month, .date-val .rooms, .date-val .adults {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: none;
}

.sub-val {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}

.mega-search-btn {
    background: linear-gradient(135deg, #ff6f00, #ff9d00);
    color: white;
    border: none;
    padding: 24px 60px;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(255, 111, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-left: 20px;
}

.mega-search-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(255, 111, 0, 0.6);
}

.price-range {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: white;
}

/* Trending Bar */
.trending-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.trend-tags {
    display: flex;
    gap: 10px;
}

.trend-tags a {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.trend-tags a:hover {
    background: var(--primary);
}


.hero-opt-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 10px;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateX(50px);
    visibility: hidden;
    position: relative;
}

.hero-opt-card:hover {
    transform: translateX(-15px);
    /* Gentle slide like nav links */
    background: transparent;
    box-shadow: none;
}

.opt-icon {
    width: auto;
    height: auto;
    background: transparent;
    color: #ffffff;
    /* Brighter pure white */
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    /* Slightly larger for better impact */
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    /* Enhanced visibility */
}

.hero-opt-card:hover .opt-icon {
    color: var(--primary);
    transform: scale(1.2);
}

.opt-label {
    font-size: 11px;
    font-weight: 700;
    /* Bolder for premium clarity */
    text-transform: capitalize;
    letter-spacing: 0.6px;
    text-align: center;
    line-height: 1.2;
    color: #ffffff;
    /* Brighter pure white */
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    /* Enhanced visibility */
}

.hero-opt-card:hover .opt-label {
    color: var(--primary);
}

/* Hero Search Panel Styles - High Fidelity Design */
.glass-search-engine {
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 28px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
    position: relative;
    z-index: 11;
}

.search-col {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    padding: 10px 15px;
    /* Added padding for hover effect */
    transition: background 0.3s ease;
    border-radius: 12px;
    cursor: pointer;
}

.search-col:hover {
    background: rgba(255, 255, 255, 0.05);
}

.search-col .icon-box i {
    font-size: 22px;
    color: var(--primary);
}

.search-col .input-stack label {
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

.search-col .input-stack input {
    background: transparent;
    border: none;
    color: #fff;
    /* Changed to white for glassmorphism */
    font-size: 18px;
    font-weight: 700;
    outline: none;
    width: 100%;
    padding: 0;
}

.search-col .input-stack input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    /* Adjusted placeholder color */
}

.v-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    /* Adjusted for glassmorphism */
    margin: 0 clamp(10px, 3vw, 40px);
}

.mega-search-btn {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f8934b 0%, #ff6b00 100%);
    color: var(--white);
    border: none;
    padding: 16px 80px;
    border-radius: 100px;
    font-weight: 950;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(248, 147, 75, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 15;
    white-space: nowrap;
}

.mega-search-btn:hover {
    background: linear-gradient(135deg, #ff9d5c 0%, #ff7a1a 100%);
    transform: translateX(-50%) translateY(-3px) scale(1.02);
    box-shadow: 0 20px 45px rgba(248, 147, 75, 0.6);
}

/* Pills Section */
.visual-footer {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.pills-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 20px;
    opacity: 0.9;
}

.pills-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 15px;
    scrollbar-width: none;
    padding-left: 0;
}

.pills-row::-webkit-scrollbar {
    display: none;
}

.pills-row a {
    text-decoration: none !important;
    color: inherit !important;
}

.pill-card {
    position: relative;
    flex: 0 0 160px;
    height: 100px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pill-card:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.pill-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) saturate(1.1);
    transition: all 0.4s ease;
}

.pill-card:hover img {
    filter: brightness(0.75) saturate(1.2);
    transform: scale(1.08);
}

.pill-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 8px 6px;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
    z-index: 2;
}

.pill-overlay span {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff !important;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

/* Trust & Action Hub - Hero Area */
.trust-action-hub {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.trust-pill-compact {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 12px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.t-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

.t-item i {
    color: var(--primary);
    font-size: 14px;
}

.t-divider {
    width: 1px;
    height: 15px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-bespoke-btn {
    padding: 15px 35px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.hero-bespoke-btn i {
    font-size: 14px;
    color: var(--primary);
}

.hero-bespoke-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 111, 0, 0.4);
}

.hero-bespoke-btn:hover i {
    color: #fff;
}

.t-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

.t-item i {
    color: var(--primary);
    font-size: 18px;
}

.t-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
}

/* Mobile Navigation Toggle */
.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition);
}

.mobile-only,
.mobile-menu-close {
    display: none;
}

/* Custom Scrollbar for Premium Feel */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
    border: 3px solid #000;
}

/* Elite Discovery Section - Enterprise Sophistication */
.elite-discovery {
    padding: 70px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    color: #000;
}

.alternate-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: stretch;
}

/* Visual Masterpiece Left */
.discovery-visual {
    position: relative;
    display: flex;
}

.visual-stack {
    position: relative;
    width: 100%;
    min-height: 450px;
    height: 100%;
}

.main-visual-frame {
    position: relative;
    width: 90%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    z-index: 1;
}

.main-visual-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.main-visual-frame:hover img {
    transform: scale(1.05);
}

.floating-badge {
    position: absolute;
    top: 20px;
    right: -10px;
    background: #000;
    color: #fff;
    padding: 10px 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 3;
}

.floating-badge i {
    color: var(--primary);
    font-size: 16px;
}

.badge-text strong {
    display: block;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.badge-text span {
    font-size: 7px;
    opacity: 0.6;
    text-transform: uppercase;
}

.experience-card {
    position: absolute;
    bottom: 20px;
    right: -5px;
    background: #fff;
    padding: 15px 18px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-inner .count {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 2px;
}

.card-inner .label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #666;
}

/* Copy Styling Right */
.discovery-copy {
    padding-left: 20px;
}

.elite-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    margin-top: 8px;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.elite-title span {
    color: var(--primary);
    font-style: italic;
}

.modern-underline {
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: 10px;
    margin-bottom: 20px;
}

.elite-description {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 25px;
}

/* Benchmarks */
.benchmark-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.benchmark-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.benchmark-num {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    padding: 5px 8px;
    background: #fff5ed;
    border-radius: 6px;
}

.benchmark-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
}

.benchmark-info p {
    font-size: 12.5px;
    color: #666;
}

/* Trust Footer */
.action-footer {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.client-trust {
    display: flex;
    align-items: center;
    gap: 20px;
}

.avatar-group {
    display: flex;
}

.avatar-group img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -15px;
}

.avatar-group img:first-child {
    margin-left: 0;
}

.client-trust span {
    font-size: 14px;
    font-weight: 600;
    color: #888;
}

/* Mobile Adjustments for Discovery */
@media (max-width: 1024px) {
    .elite-discovery {
        padding: 60px 0;
    }

    .alternate-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        align-items: center;
        /* Back to center for stacked layout */
    }

    .visual-stack {
        height: 350px;
        min-height: auto;
    }

    .main-visual-frame {
        width: 100%;
    }

    .discovery-copy {
        padding-left: 0;
        text-align: center;
    }

    .modern-underline {
        margin: 0 auto 25px;
    }

    .benchmark-item {
        text-align: left;
    }

    .action-footer {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .elite-discovery {
        padding: 50px 0;
    }

    .elite-title {
        font-size: 28px;
    }

    .visual-stack {
        height: 280px;
    }

    .floating-badge {
        right: 10px;
        top: 15px;
        padding: 8px 15px;
    }

    .badge-text strong {
        font-size: 10px;
    }

    .experience-card {
        bottom: -15px;
        right: 10px;
        padding: 12px 15px;
    }

    .card-inner .count {
        font-size: 24px;
    }

    .card-inner .label {
        font-size: 9px;
    }

    .elite-description {
        font-size: 13.5px;
    }

    .benchmark-info h4 {
        font-size: 15px;
    }

    .benchmark-info p {
        font-size: 11.5px;
    }
}

/* ============================
   KERALA BEST PACKAGES SECTION
   ============================ */
.kerala-showcase {
    padding: 100px 0 80px;
    background: #f9f9fb;
    overflow: hidden;
}

.kerala-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    gap: 30px;
}

.kerala-header-left {
    flex: 1;
}

.kerala-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 14px;
    background: rgba(248, 147, 75, 0.1);
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid rgba(248, 147, 75, 0.3);
}

.kerala-title {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 800;
    color: #0a0a0f;
    letter-spacing: -2px;
    line-height: 1.05;
}

.kerala-title span {
    color: var(--primary);
    -webkit-text-fill-color: initial;
    background: none;
}

.kerala-header-right {
    text-align: right;
}

.kerala-header-right p {
    font-size: 15px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
    max-width: 320px;
    margin-left: auto;
}

.kerala-nav-btns {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.kerala-btn-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    color: #333;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.kerala-btn-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 8px 24px rgba(248, 147, 75, 0.35);
}

/* Kerala 3D Coverflow Scene */
.kerala-carousel-scene {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 30px 0 50px;
}

.kerala-carousel-track {
    display: flex;
    align-items: center;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

/* Kerala Cards — Coverflow Style */
.kerala-card {
    flex-shrink: 0;
    width: 340px;
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.55s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.55s ease;
    opacity: 0.45;
    transform: scale(0.82);
    cursor: pointer;
    position: relative;
    will-change: transform, opacity;
}

/* Center active card — bigger & highlighted */
.kerala-card.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.14), 0 0 0 2px rgba(248, 147, 75, 0.2);
    z-index: 5;
    border-color: rgba(248, 147, 75, 0.25);
}

/* Adjacent cards */
.kerala-card.adjacent {
    opacity: 0.75;
    transform: scale(0.88);
}

/* Kerala Dots */
.kerala-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.kerala-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    transition: all 0.3s ease;
    cursor: pointer;
}

.kerala-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 100px;
}

.kerala-card-img {
    position: relative;
    height: 195px;
    overflow: hidden;
}

.kerala-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.kerala-card:hover .kerala-card-img img {
    transform: scale(1.08);
}

.kerala-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
}

.kerala-badge-new {
    background: #3498db !important;
}

.kerala-badge-hot {
    background: linear-gradient(135deg, #e74c3c, #c0392b) !important;
}

/* Card Body */
.kerala-card-body {
    padding: 22px 22px 20px;
}

.kerala-loc {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 7px;
}

.kerala-card-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0a0a0f;
    margin-bottom: 14px;
    line-height: 1.35;
    font-family: var(--font-heading);
}

.kerala-highlights {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.kerala-highlights span {
    font-size: 11px;
    font-weight: 600;
    color: #666;
    background: #f4f4f6;
    border: 1px solid #ebebeb;
    padding: 4px 10px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.kerala-highlights i {
    color: var(--primary);
    font-size: 10px;
}

.kerala-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.kerala-price {
    font-size: 22px;
    font-weight: 800;
    color: #0a0a0f;
    font-family: var(--font-heading);
}

.kerala-per {
    font-size: 11px;
    color: #aaa;
    margin-left: 3px;
    font-weight: 500;
}

.kerala-book-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 9px 19px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 14px rgba(248, 147, 75, 0.35);
}

.kerala-book-btn:hover {
    background: #e07d38;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(248, 147, 75, 0.45);
}

@media (max-width: 768px) {
    .kerala-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .kerala-header-right {
        text-align: left;
    }

    .kerala-header-right p {
        margin-left: 0;
    }

    .kerala-scroll-controls {
        justify-content: flex-start;
    }

    .kerala-card {
        width: 270px;
    }
}

/* ============================
   GOA BEST PACKAGES - COVERFLOW
   ============================ */
.goa-showcase {
    padding: 100px 0 80px;
    background: #fff;
    overflow: hidden;
}

.goa-header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 30px;
}

.goa-header-left {
    flex: 1;
}

.goa-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 14px;
    background: rgba(248, 147, 75, 0.1);
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid rgba(248, 147, 75, 0.3);
}

.goa-title {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 800;
    color: #0a0a0f;
    letter-spacing: -2px;
    line-height: 1.05;
}

.goa-title span {
    color: var(--primary);
}

.goa-header-right {
    text-align: right;
}

.goa-header-right p {
    font-size: 15px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
    max-width: 320px;
    margin-left: auto;
}

.goa-nav-btns {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.goa-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    color: #333;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.goa-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 8px 24px rgba(248, 147, 75, 0.35);
}

/* ---- GOA 3D COVERFLOW SCENE ---- */
.goa-carousel-scene {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 30px 0 50px;
}

.goa-carousel-track {
    display: flex;
    align-items: center;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

/* Goa Cards — Coverflow Style */
.goa-card {
    flex-shrink: 0;
    width: 340px;
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.55s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.55s ease;
    opacity: 0.45;
    transform: scale(0.82);
    cursor: pointer;
    position: relative;
    will-change: transform, opacity;
}

/* Center active card — bigger & highlighted */
.goa-card.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.14), 0 0 0 2px rgba(248, 147, 75, 0.2);
    z-index: 5;
    border-color: rgba(248, 147, 75, 0.25);
}

/* Adjacent cards */
.goa-card.adjacent {
    opacity: 0.75;
    transform: scale(0.88);
}

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

.goa-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.goa-card.active .goa-card-img img {
    transform: scale(1.03);
}

.goa-card-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
}

.goa-tag-hot {
    background: linear-gradient(135deg, #e74c3c, #c0392b) !important;
}

.goa-tag-new {
    background: #3498db !important;
}

/* Card Body */
.goa-card-body {
    padding: 22px;
}

.goa-loc {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 7px;
}

.goa-card-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0a0a0f;
    margin-bottom: 14px;
    line-height: 1.35;
    font-family: var(--font-heading);
}

.goa-chips {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.goa-chips span {
    font-size: 11px;
    font-weight: 600;
    color: #666;
    background: #f4f4f6;
    border: 1px solid #ebebeb;
    padding: 4px 10px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.goa-chips i {
    color: var(--primary);
    font-size: 10px;
}

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

.goa-price {
    font-size: 22px;
    font-weight: 800;
    color: #0a0a0f;
    font-family: var(--font-heading);
}

.goa-per {
    font-size: 11px;
    color: #aaa;
    margin-left: 3px;
    font-weight: 500;
}

.goa-book-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 9px 18px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(248, 147, 75, 0.35);
}

.goa-book-btn:hover {
    background: #e07d38;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(248, 147, 75, 0.45);
}

/* Dots */
.goa-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.goa-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    transition: all 0.3s ease;
    cursor: pointer;
}

.goa-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 100px;
}

@media (max-width: 768px) {
    .goa-header-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .goa-header-right {
        text-align: left;
    }

    .goa-header-right p {
        margin-left: 0;
    }

    .goa-nav-btns {
        justify-content: flex-start;
    }

    .goa-card {
        width: 280px;
    }
}

/* ============================
   SOVEREIGN ABOUT US SECTION
   ============================ */
.about-sovereign {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.about-bg-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.7);
}

.about-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.75) 50%,
            rgba(10, 5, 0, 0.88) 100%);
}

.about-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* LEFT COLUMN */
.about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
    background: rgba(248, 147, 75, 0.1);
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid rgba(248, 147, 75, 0.25);
}

.about-headline {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.about-headline-accent {
    background: linear-gradient(135deg, var(--primary), #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 10px;
    margin-bottom: 18px;
}

.about-story {
    font-size: 13.5px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 14px;
}

.about-story strong {
    color: #fff;
    font-weight: 600;
}

/* Stats Row */
.about-stats-row {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    padding: 22px 26px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.stat-val {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* CTA Button */
.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: 100px;
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(248, 147, 75, 0.3);
}

.about-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(248, 147, 75, 0.5);
    background: #ff6830;
}

.about-cta-btn i {
    transition: transform 0.3s ease;
}

.about-cta-btn:hover i {
    transform: translateX(5px);
}

/* RIGHT COLUMN */
.about-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-collage {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 16px;
    border-radius: 24px;
    overflow: hidden;
}

.collage-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.collage-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 360px;
    display: block;
    transition: transform 0.8s ease;
}

.collage-main:hover img {
    transform: scale(1.06);
}

.collage-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 10px 18px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.collage-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.collage-side img {
    width: 100%;
    height: 172px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    transition: transform 0.6s ease;
}

.collage-side img:hover {
    transform: scale(1.04);
}

/* Value Pills */
.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.value-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    cursor: default;
}

.value-pill i {
    color: var(--primary);
    font-size: 11px;
}

.value-pill:hover {
    background: rgba(248, 147, 75, 0.12);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-collage {
        max-height: 350px;
    }

    .collage-main img {
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .about-sovereign {
        padding: 80px 0;
    }

    .about-stats-row {
        flex-direction: column;
        gap: 24px;
        padding: 24px;
    }

    .about-collage {
        grid-template-columns: 1fr;
    }

    .collage-side {
        flex-direction: row;
    }

    .collage-side img {
        height: 120px;
    }
}

/* Flagship Voyager Collections - Cinematic Reveal Design */
.flagship-collections {
    padding: 70px 0;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.flagship-cinematic-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.flagship-cinematic-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transform: scale(1.1);
    will-change: transform;
}

.bg-overlay-deep {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

.container-wide {
    max-width: 1400px;
    position: relative;
    z-index: 10;
}

.flagship-symmetric-container {
    max-width: 1400px;
}

.flagship-header-symmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    color: #fff;
}

.header-left {
    max-width: 500px;
}

.flagship-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 111, 0, 0.2);
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-right {
    max-width: 450px;
    text-align: right;
}

.flagship-main-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    margin-top: 10px;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.flagship-main-title span {
    color: var(--primary);
}

.flagship-sub {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.reel-nav {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.reel-nav button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    cursor: pointer;
    transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.reel-nav button:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.05);
}

/* The Symmetric Reel */
.flagship-reel-container {
    width: 100%;
    overflow: hidden;
    padding: 15px 0 25px;
}

.flagship-reel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    scrollbar-width: none;
    /* Firefox */
}

.flagship-reel::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.flagship-card {
    flex: 0 0 270px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 15px;
    display: flex;
    will-change: transform, opacity;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), background 0.6s ease, border-color 0.6s ease;
    position: relative;
    overflow: hidden;
}

.flagship-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary);
    transform: translateY(-10px);
}

.card-image-portal {
    width: 100%;
    height: 170px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background: #111;
    /* Fallback */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.card-image-portal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.flagship-card:hover .card-image-portal img {
    transform: scale(1.15);
}

.card-meta-top {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 5;
}

.pkg-count {
    padding: 8px 18px;
    background: var(--primary);
    color: #fff;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 20px rgba(255, 111, 0, 0.4);
}

.card-info-hub {
    flex: 1;
    padding: 5px 5px 0 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.area-tag-hub {
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    display: block;
}

.card-info-hub h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

.hub-bottom {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-console .lab {
    font-size: 10px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}

.price-console .amt {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
}

.hub-enter-btn {
    padding: 14px 25px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 100px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hub-enter-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 111, 0, 0.5);
}

/* Hard reset for unused components to ensure zero overlap */
.card-overlay,
.overlay-details,
.area-tag,
.card-image,
.static-title,
.price-bar,
.store-link-btn,
.store-badge,
.store-badge-hub {
    display: none !important;
}

/* Footer Stats Symmetric */
.flagship-footer-symmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
}

.footer-stats-reel {
    display: flex;
    gap: 60px;
}

.stat-reel-item {
    display: flex;
    flex-direction: column;
}

.stat-reel-item .v {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-reel-item .l {
    font-size: 11px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
    margin-top: 8px;
    letter-spacing: 1px;
}

.explore-flagship-btn {
    padding: 15px 35px;
    border: 2px solid var(--primary);
    color: #fff;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.explore-flagship-btn:hover {
    background: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 111, 0, 0.3);
    transform: translateY(-5px);
}

.explore-flagship:hover {
    gap: 20px;
    color: var(--primary);
}

.flagship-grid {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.flagship-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.flagship-card:hover {
    transform: translateY(-10px);
}

.card-image {
    position: relative;
    height: 480px;
    /* Taller for more content */
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.flagship-card:hover .card-image img {
    transform: scale(1.1);
    opacity: 1;
}

.store-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 5;
    padding: 6px;
}

.card-meta-top {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 5;
}

.pkg-count {
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    color: #fff;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-overlay {
    position: absolute;
    inset: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.area-tag {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.card-overlay h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
}

.price-bar {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.from {
    font-size: 11px;
    color: #ccc;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 2px;
}

.amt {
    font-size: 22px;
    color: #fff;
    font-weight: 800;
}

.store-link-btn {
    width: 100%;
    padding: 15px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    transform: translateY(20px);
    opacity: 0;
}

.flagship-card:hover .store-link-btn {
    transform: translateY(0);
    opacity: 1;
}

.store-link-btn:hover {
    background: var(--primary);
    color: #fff;
}

/* Mobile Adjustments */
@media (max-width: 1100px) {
    .flagship-wrapper {
        flex-direction: column;
        padding: 40px;
        text-align: center;
    }

    .flagship-info {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .flagship-main-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .flagship-grid {
        grid-template-columns: 1fr;
    }

    .card-image {
        height: 220px;
    }
}

/* Elite Testimonials - Bento Style */
.voice-of-elite {
    padding: 120px 0;
    background: #fdfdfd;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    overflow-x: hidden;
    width: 100%;
}

.discovery-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 30px;
}

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

/* Global Trust Score Console */
.trust-score-console {
    display: flex;
    align-items: center;
    gap: 30px;
}

.score-main {
    font-size: 52px;
    font-weight: 900;
    color: #000;
    line-height: 1;
    font-family: var(--font-heading);
}

.score-main span {
    font-size: 24px;
    color: #999;
}

.stars-gold {
    display: flex;
    gap: 5px;
    margin-bottom: 5px;
}

.stars-gold i {
    color: #ffb400;
    font-size: 18px;
}

.score-meta p {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

@media (max-width: 768px) {
    .trust-score-console {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }
}

.community-split {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
}

.community-intro {
    flex: 0 0 400px;
    text-align: left;
}

.community-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    color: #000;
    margin: 15px 0 25px;
    font-family: var(--font-heading);
}

.community-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 35px;
}

.live-trust-stats {
    display: flex;
    gap: 30px;
}

.stat-p {
    display: flex;
    flex-direction: column;
}

.stat-p .val {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
}

.stat-p .lab {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
}

.community-reel-wrap {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.review-reel {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    overflow-x: auto;
    scroll-behavior: auto !important;
    /* Critical: 'smooth' breaks JS ticking */
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    scroll-snap-type: none;
    /* Critical: 'mandatory' fights JS scrollLeft increments */
}

.review-reel::-webkit-scrollbar {
    display: none;
}

.reel-card {
    flex: 0 0 380px;
    scroll-snap-align: start;
    background: #fff;
    /* ... rest of the card styles ... */
    border-radius: 25px;
    padding: 35px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.reel-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.rc-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.rc-tag {
    font-size: 9px;
    font-weight: 800;
    color: var(--primary);
    background: rgba(248, 147, 75, 0.1);
    padding: 5px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rc-stars {
    color: #ffb400;
    font-size: 11px;
    display: flex;
    gap: 3px;
}

.rc-text {
    font-size: 17px;
    line-height: 1.6;
    color: #222;
    font-weight: 500;
    margin-bottom: 30px;
    font-style: italic;
}

.rc-member {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.rc-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
}

.rc-meta {
    display: flex;
    flex-direction: column;
}

.rc-name {
    font-size: 14px;
    font-weight: 800;
    color: #000;
}

.rc-status {
    font-size: 10px;
    font-weight: 700;
    color: #27ae60;
    text-transform: uppercase;
}

/* Reel Navigation Controls */
.reel-nav {
    display: flex;
    gap: 15px;
    margin-top: -17px;
    justify-content: flex-start;
}

.nav-ctrl {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.nav-ctrl:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: scale(1.1);
}

.nav-ctrl i {
    font-size: 18px;
}

@media (max-width: 1200px) {
    .community-split {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .community-intro {
        flex: 1;
        text-align: center;
        max-width: 600px;
    }

    .live-trust-stats {
        justify-content: center;
    }

    .reel-nav {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .reel-card {
        flex: 0 0 300px;
        padding: 25px;
    }
}

/* Cleaned up duplicate blocks */

/* --- AURA SIGNATURE FOOTER (SEXY & NON-BLACK) --- */
.masterpiece-footer {
    background: linear-gradient(135deg, #0a0a0f 0%, #151520 100%);
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 111, 0, 0.15);
}

.masterpiece-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 111, 0, 0.05), transparent 40%);
    pointer-events: none;
}

.masterpiece-footer::before {
    content: 'THRIVETHRUST';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 200px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    letter-spacing: 20px;
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
}

.footer-brand-vault-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 5;
}

.footer-brand-vault-centered .footer-brand-logo {
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.footer-brand-vault-centered p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
    max-width: 500px;
}

.footer-brand-vault-centered .social-luxury-hub {
    justify-content: center;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    position: relative;
    z-index: 5;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}



.social-luxury-hub {
    display: flex;
    gap: 15px;
}

.social-luxury-hub a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.social-luxury-hub a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-8px) rotate(8deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(255, 111, 0, 0.4);
}

.footer-nav-hub h4 {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 30px;
}

.footer-nav-hub ul {
    list-style: none;
    padding: 0;
}

.footer-nav-hub li {
    margin-bottom: 15px;
}

.footer-nav-hub a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-block;
    position: relative;
}

.footer-nav-hub a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.4s ease;
}

.footer-nav-hub a:hover {
    color: #fff;
    padding-left: 8px;
}

.footer-nav-hub a:hover::after {
    width: 100%;
}

.newsletter-oracle-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.newsletter-oracle-card h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 15px;
}

.newsletter-oracle-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.oracle-input-group {
    display: flex;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 5px;
    transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.oracle-input-group:focus-within {
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.5);
}

.oracle-input-group input {
    background: none;
    border: none;
    padding: 12px 20px;
    color: #fff;
    font-size: 14px;
    width: 100%;
}

.oracle-input-group button {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.4s ease;
}

.oracle-input-group button:hover {
    transform: rotate(-15deg) scale(1.1);
    background: #fff;
    color: #000;
}

.footer-legal-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding-top: 40px;
    text-align: center;
    position: relative;
    z-index: 5;
}

.footer-legal-bar p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 500;
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 30px;
}

.legal-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

@media (max-width: 1024px) {
    .footer-main-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand-vault-centered p {
        margin: 0 auto 30px;
    }

    .social-luxury-hub {
        justify-content: center;
    }

    .footer-legal-bar {
        flex-direction: column;
        gap: 20px;
    }

    .masterpiece-footer::before {
        font-size: 100px;
    }
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .title-reveal {
        font-size: 55px;
    }

    .main-title {
        font-size: 65px;
    }

    .glass-search-engine {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .main-header {
        padding: 12px 0;
    }

    .nav-container.container {
        padding: 0 15px;
    }

    .mobile-toggle {
        display: block;
    }

    .main-nav-logo {
        height: 32px;
        /* Surgical shrink for space */
    }

    .hero-header-options {
        display: none !important;
        /* Hide floating options on mobile */
    }

    .mobile-menu-options {
        width: 90%;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .m-option-row {
        display: flex;
        gap: 15px;
        width: 100%;
    }

    .m-opt-item {
        flex: 1;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 15px 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        transition: var(--transition);
    }

    .m-opt-item i {
        font-size: 20px;
        color: var(--primary);
    }

    .m-opt-item span {
        font-size: 11px;
        color: #fff;
        font-weight: 500;
        letter-spacing: 0.5px;
    }

    .mobile-menu-options {
        padding-top: 20px;
    }

    .m-opt-item:active {
        background: var(--primary);
        transform: scale(0.95);
    }

    .m-opt-item:active i,
    .m-opt-item:active span {
        color: #fff;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 2000;
        display: flex;
        gap: 30px;
    }

    .mobile-menu-close {
        display: block;
        position: absolute;
        top: 30px;
        right: 30px;
        font-size: 28px;
        color: var(--primary);
        cursor: pointer;
        transition: var(--transition);
        z-index: 2001;
    }

    .mobile-menu-close:hover {
        transform: rotate(90deg) scale(1.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .mobile-only {
        display: block;
    }

    .nav-utils {
        display: flex;
        align-items: center;
        gap: 12px;
        position: relative;
    }

    /* Hide desktop-only utils to prevent overlap */
    .nav-utils .fas.fa-globe,
    .nav-utils .btn-login,
    .nav-utils .btn-primary-orange {
        display: none !important;
    }

    .hero-main-content {
        padding-top: 90px !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        /* GLOBAL CENTER FOR MOBILE */
        display: flex;
        flex-direction: column;
    }

    .hero-flex-layout {
        flex-direction: column;
        align-items: center !important;
        justify-content: center !important;
        gap: 25px;
        margin-bottom: 30px;
        width: 100%;
    }

    .hero-header-options {
        width: 100%;
        margin-left: 0;
        padding: 0 0 10px;
        overflow-x: auto;
        display: flex;
        justify-content: center;
        /* Center options if they fit */
        flex-wrap: wrap;
        /* Allow wrapping if too many */
        gap: 12px;
        scrollbar-width: none;
    }

    .hero-header-options::-webkit-scrollbar {
        display: none;
    }

    .hero-opt-card {
        flex: 0 0 75px;
        height: 75px;
        padding: 8px;
        border-radius: 12px;
    }

    .opt-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
        border-radius: 8px;
    }

    .opt-label {
        font-size: 7.5px;
        font-weight: 900;
        letter-spacing: 0.2px;
    }

    .curr-lang-pill {
        font-size: 10px;
    }

    .lang-trigger-wrap {
        padding: 4px 8px;
    }

    .title-reveal {
        font-size: clamp(28px, 6vw, 36px) !important;
    }

    .main-title {
        font-size: clamp(36px, 8vw, 48px) !important;
    }

    .subtitle-reveal {
        font-size: 14px;
        max-width: 100%;
    }

    .glass-search-engine {
        flex-direction: column;
        border-radius: 20px;
        padding: 12px;
        margin-top: 10px;
        gap: 8px;
        width: 100%;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .v-divider {
        display: none;
    }

    .search-col {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* PERFECT CENTER FORCE */
        justify-content: center;
        text-align: center;
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .input-stack {
        align-items: center !important;
        text-align: center !important;
        width: 100%;
    }

    .input-stack label {
        justify-content: center;
        text-align: center;
        margin-bottom: 2px;
        font-size: 10px;
    }

    .search-col:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
    }

    .mega-search-btn {
        width: calc(100% - 20px);
        margin: 8px auto 0;
        padding: 12px;
        font-size: 14px;
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
    }

    .date-val {
        font-size: 20px !important;
    }

    .input-stack input {
        font-size: 16px !important;
        text-align: center !important;
    }

    .sub-val {
        font-size: 9px !important;
    }

    .input-stack label {
        font-size: 8px !important;
        letter-spacing: 0.3px !important;
    }

    .visual-footer {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .pills-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .pills-label {
        text-align: center;
        width: 100%;
        margin-bottom: 12px;
    }

    .pills-row {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        width: 100%;
        max-width: 500px;
        /* Constrain for stable centering on wider mobiles */
        margin: 0 auto;
        padding: 0;
        box-sizing: border-box;
    }

    .pill-card {
        flex: 0 0 calc(50% - 10px);
        /* Precision split for equal side margins */
        height: 75px;
        min-width: 140px;
        max-width: 180px;
    }

    .trust-action-hub {
        width: 100%;
    }

    .trust-pill-compact {
        flex-direction: column;
        width: 100%;
        padding: 20px;
        border-radius: 20px;
        gap: 15px;
    }

    .t-divider {
        display: none;
    }

    .hero-bespoke-btn {
        width: 100%;
        justify-content: center;
    }

    .community-split {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        width: 100%;
        overflow-x: hidden;
    }

    .community-intro {
        flex: 1;
        text-align: center;
        width: 100%;
        padding: 0 20px;
    }

    .community-title {
        font-size: 32px;
    }

    .live-trust-stats {
        justify-content: center;
    }

    .community-reel-wrap {
        width: 100vw;
        margin-left: -20px;
        /* Offset the container padding */
        padding: 0 0 40px 0;
    }

    .review-reel {
        display: flex;
        gap: 20px;
        padding: 0 20px !important;
        scroll-snap-type: x mandatory;
        overflow-x: auto;
        width: 100%;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .reel-card {
        flex: 0 0 85vw;
        scroll-snap-align: center;
        min-height: 350px;
        margin-bottom: 20px;
    }

    /* Flagship Mobile Fixes */
    .flagship-header-symmetric {
        flex-direction: column;
        align-items: center;
        text-align: center !important;
        gap: 25px;
        margin-bottom: 35px;
    }

    .flagship-tag {
        margin: 0 auto !important;
    }

    .flagship-title-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .header-left,
    .header-right {
        max-width: 100%;
        text-align: center;
        width: 100%;
    }

    .flagship-main-title {
        font-size: 36px;
        line-height: 1.1;
        margin-top: 15px;
    }

    .flagship-tag {
        margin: 0 auto;
    }

    .flagship-sub {
        font-size: 15px;
        line-height: 1.6;
        max-width: 100%;
        margin-bottom: 25px;
    }

    .flagship-header-symmetric .reel-nav {
        justify-content: center;
        width: 100%;
        margin-top: 10px;
    }

    .flagship-header-symmetric .reel-nav button {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .flagship-reel {
        padding: 0 20px !important;
    }

    .flagship-card {
        flex: 0 0 85vw;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-brand,
    .footer-links,
    .footer-newsletter {
        align-items: center;
    }

    .newsletter-box {
        width: 100%;
    }
}

/* --- ELITE VISTA GALLERY (ULTRA-COMPACT MASONRY) --- */
.luxury-gallery {
    padding: 60px 0;
    background: url('assets/img/gallerly section .png') center/cover fixed no-repeat;
    position: relative;
    overflow: hidden;
}

.luxury-gallery::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent 20%, rgba(0, 0, 0, 0.9) 100%);
    pointer-events: none;
}

.luxury-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
}

.gallery-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.gallery-header .eyebrow {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
}

.gallery-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-heading);
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 140px;
    grid-auto-flow: dense;
    gap: 15px;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.mosaic-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mosaic-item.col-6 {
    grid-column: span 6;
}

.mosaic-item.col-4 {
    grid-column: span 4;
}

.mosaic-item.col-8 {
    grid-column: span 8;
}

.mosaic-item.row-2 {
    grid-row: span 2;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.mosaic-item:hover img {
    transform: scale(1.08);
}

.mosaic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: all 0.5s ease;
}

.mosaic-item:hover .mosaic-overlay {
    opacity: 1;
}

.mosaic-overlay .loc-tag {
    background: var(--primary);
    color: #000;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
    margin-bottom: 10px;
}

.mosaic-overlay h3 {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.gallery-trust-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 40px 0;
    padding: 15px 35px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.gallery-stat-item .label {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
}

.gallery-stat-item .value {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-heading);
}

.gallery-trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.08);
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.gallery-trust-badge i {
    color: var(--primary);
    font-size: 16px;
}

.gallery-trust-badge span {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
}

.gallery-footer {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    position: relative;
    z-index: 2;
}

.gallery-view-btn {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 10px 25px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.gallery-view-btn:hover {
    color: #000;
}

.gallery-view-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.gallery-view-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.gallery-view-btn:hover i {
    transform: translateX(3px);
}

.gallery-view-btn span,
.gallery-view-btn i {
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .gallery-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }

    .mosaic-item.col-6,
    .mosaic-item.col-4,
    .mosaic-item.col-8 {
        grid-column: span 2;
    }

    .gallery-trust-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .gallery-mosaic {
        grid-template-columns: repeat(2, 1fr);
        /* Back to 2 columns for better density */
        grid-auto-rows: 180px;
        padding: 0 15px;
        gap: 10px;
    }

    .mosaic-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        height: auto;
        min-height: 180px;
        border-radius: 12px;
    }

    /* Surgical Variety for Mobile - Alternating spans for interest */
    .mosaic-item:nth-child(3n+1) {
        grid-column: span 2 !important;
        height: 220px;
    }

    .mosaic-overlay {
        opacity: 0.9;
        /* Persistent visibility on mobile since no hover */
        padding: 15px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    }

    .mosaic-overlay h3 {
        font-size: 14px;
    }

    .gallery-trust-bar {
        margin: 15px 15px 0;
        padding: 20px;
    }
}

/* --- EXCLUSIVE OFFERS HUB (LIMITED EDITION PASSES) --- */
.luxury-offers-hub {
    padding: 100px 0;
    background: #0a0a0f;
    /* Deep cinematic navy */
    position: relative;
    overflow: hidden;
}

.offers-header {
    text-align: center;
    margin-bottom: 60px;
}

.offers-header .offer-tag {
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    display: block;
    margin-bottom: 15px;
}

.offers-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-heading);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.offer-pass-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.offer-pass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 111, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.offer-pass-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(255, 111, 0, 0.15);
}

.offer-pass-card:hover::before {
    opacity: 1;
}

.offer-badge {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(255, 111, 0, 0.15);
    color: var(--primary);
    border-radius: 100px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.offer-pass-card h3 {
    font-size: 26px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.offer-pass-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 30px;
}

.offer-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 30px;
}

.offer-price .val {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
}

.offer-price .disc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: line-through;
}

.claim-pass-btn {
    width: 100%;
    padding: 15px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.offer-pass-card:hover .claim-pass-btn {
    background: var(--primary);
    color: #fff;
}

@media (max-width: 1024px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .offers-grid {
        grid-template-columns: 1fr;
    }

    .offers-header h2 {
        font-size: 34px;
    }
}

/* --- ELITE ANNOUNCEMENT MARQUEE --- */
.offer-marquee {
    background: var(--primary);
    color: #000;
    padding: 8px 0;
    overflow: hidden;
    position: relative;
    z-index: 2000;
    cursor: pointer;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    display: flex;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee-glide 20s linear infinite;
    padding-left: 100%;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    padding-right: 50px;
}

.marquee-item span {
    background: #000;
    color: #fff;
    padding: 2px 10px;
    border-radius: 4px;
    margin-right: 10px;
}

@keyframes marquee-glide {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

.offer-marquee:hover .marquee-content {
    animation-play-state: paused;
}

/* --- NAV NOTIFICATION BELL --- */
.nav-notif-hub {
    position: relative;
    cursor: pointer;
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.nav-notif-hub i {
    font-size: 20px;
    color: #fff;
    transition: all 0.3s ease;
}

.nav-notif-hub:hover i {
    color: var(--primary);
    transform: rotate(15deg);
}

.notif-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4d4d;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    min-width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #000;
}

/* --- ELYSIUM CRYSTAL MODAL (BRIGHT & ETHEREAL) --- */
.offers-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
}

.offers-modal-overlay.active {
    display: flex;
}

.offers-modal-container {
    width: 100%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #fff;
    border-radius: 40px;
    position: relative;
    padding: 80px 60px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateX(10deg) scale(0.95);
    opacity: 0;
    overflow-y: auto;
    max-height: 90vh;
}

/* Scrollbar hidden for modal - Sovereign Stealth */
.offers-modal-container {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.offers-modal-container::-webkit-scrollbar {
    display: none;
}

.modal-close-btn {
    position: absolute;
    top: 40px;
    right: 50px;
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 100;
}

.modal-close-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: rotate(180deg) scale(1.1);
    box-shadow: 0 0 30px rgba(248, 147, 75, 0.4);
}

.modal-header-hub {
    text-align: center;
    margin-bottom: 70px;
}

.modal-header-hub .offer-tag {
    font-size: 11px;
    font-weight: 900;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 20px;
    display: block;
}

.modal-header-hub h2 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #111;
}

.modal-header-hub p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.modal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.modal-grid .offer-pass-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 35px;
    padding: 50px 40px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.modal-grid .offer-pass-card:hover {
    background: #fff;
    border-color: var(--primary);
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.modal-grid .offer-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(248, 147, 75, 0.1);
    color: var(--primary);
    border-radius: 100px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 30px;
    border: 1px solid rgba(248, 147, 75, 0.2);
}

.modal-grid h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
}

.modal-grid p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.modal-grid .offer-price {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 40px;
}

.modal-grid .offer-price .val {
    font-size: 42px;
    font-weight: 800;
    color: #000;
    letter-spacing: -1px;
}

.modal-grid .offer-price .disc {
    font-size: 18px;
    color: #aaa;
    text-decoration: line-through;
}

.modal-grid .claim-pass-btn {
    width: 100%;
    padding: 22px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.modal-grid .offer-pass-card:hover .claim-pass-btn {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 15px 30px rgba(248, 147, 75, 0.3);
}

@media (max-width: 1200px) {
    .modal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .offers-modal-container {
        padding: 80px 30px;
    }

    .modal-header-hub h2 {
        font-size: 36px;
    }

    .modal-grid {
        grid-template-columns: 1fr;
    }

    .modal-close-btn {
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    /* Mobile Responsive For Filters */
    .premium-filter-tabs {
        min-width: 100% !important;
        padding: 0 !important;
        overflow-x: auto;
        scrollbar-width: none;
        border-radius: 12px 12px 0 0 !important;
        display: flex !important;
        justify-content: center !important;
        /* Proper Centering */
    }

    .premium-filter-tabs::-webkit-scrollbar {
        display: none;
    }

    .filter-tab {
        padding: 8px 10px !important;
        min-width: 75px !important;
    }

    .tab-icon {
        font-size: 14px !important;
        margin-bottom: 4px !important;
    }

    .tab-label {
        font-size: 8px !important;
        font-weight: 800 !important;
        line-height: 1 !important;
    }
}

/* --- SOVEREIGN TRANSLATOR SANITIZATION --- */
#google_translate_element {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    opacity: 0.01;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

/* --- SOVEREIGN STEALTH SANITIZATION (EXTREME) --- */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-te-gadget-simple,
iframe.skiptranslate,
iframe[id=":1.container"],
iframe[id=":2.container"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
}

body {
    top: 0px !important;
    position: static !important;
}

.goog-tooltip {
    display: none !important;
}

.goog-tooltip:hover {
    display: none !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.goog-te-gadget {
    color: transparent !important;
    font-size: 0 !important;
}

.goog-te-gadget .google-logo-link,
.goog-te-gadget .goog-logo-link,
.goog-te-gadget span,
#goog-gt-tt,
.goog-te-balloon-frame {
    display: none !important;
}

/* --- PREMIUM AUTH MODAL (MMT STYLE) --- */
.auth-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-modal.active {
    display: flex;
}

.auth-modal-content {
    background: #fff;
    width: 100%;
    max-width: 800px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.4);
    animation: modalScaleUp 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes modalScaleUp {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.auth-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: #fff;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    z-index: 10;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.auth-modal-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.auth-split {
    display: flex;
    min-height: 350px;
}

.auth-left {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.auth-promo-overlay {
    position: relative;
    z-index: 2;
    color: #fff;
}

.auth-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.promo-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.auth-left h3 {
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.promo-discount {
    font-size: 36px;
    font-weight: 900;
    color: #ffeb3b;
    margin-bottom: 8px;
}

.auth-left p {
    font-size: 13px;
    opacity: 0.9;
    max-width: 250px;
    line-height: 1.4;
}

.auth-right {
    flex: 1.2;
    background: #fff;
    padding: 12px 20px;
    display: flex;
    flex-direction: column;
}

.auth-tabs-wrapper {
    background: #f2f2f2;
    padding: 5px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.auth-tabs {
    display: flex;
}

.auth-tab {
    flex: 1;
    border: none;
    background: transparent;
    padding: 6px 10px;
    font-size: 10px;
    font-weight: 800;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.auth-tab.active {
    background: #0070f3;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 112, 243, 0.3);
}

.auth-form-body label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #444;
    margin-bottom: 3px;
}

.phone-input-wrap {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.phone-input-wrap:focus-within {
    border-color: #0070f3;
    box-shadow: 0 0 0 4px rgba(0, 112, 243, 0.1);
}

.country-select {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 15px;
    border-right: 1px solid #eee;
    margin-right: 15px;
    cursor: pointer;
}

.country-select img {
    width: 20px;
    border-radius: 2px;
}

.country-select span {
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

.country-select i {
    font-size: 10px;
    color: #999;
}

.phone-input-wrap input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.btn-auth-continue {
    width: 100%;
    margin-top: 30px;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background: #e8e8e8;
    color: #999;
    font-size: 16px;
    font-weight: 800;
    cursor: not-allowed;
    transition: all 0.3s ease;
}

.btn-auth-continue.active {
    background: #0070f3;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 112, 243, 0.2);
}

.auth-divider {
    margin: 15px 0;
    position: relative;
    text-align: center;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #eee;
    z-index: 1;
}

.auth-divider span {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 0 15px;
    font-size: 12px;
    color: #999;
    font-weight: 600;
}

.social-login-grid {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-btn:hover {
    border-color: #0070f3;
    background: #f0f7ff;
    transform: translateY(-2px);
}

.social-btn img {
    width: 20px;
}

.social-btn i {
    font-size: 18px;
    color: #666;
}

.auth-footer-legal {
    text-align: center;
    font-size: 11px;
    color: #888;
    line-height: 1.6;
    margin-top: auto;
}

.auth-footer-legal a {
    color: #0070f3;
    text-decoration: none;
    font-weight: 700;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .auth-split {
        flex-direction: column;
    }

    .auth-left {
        display: none;
    }

    .auth-modal-content {
        max-width: 400px;
    }

    .auth-right {
        padding: 40px 30px;
    }
}

/* --- PREMIUM FLOATING QUOTE HUB --- */
.floating-quote-hub {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    /* Better than visibility for transitions */
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-quote-hub.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.quote-trigger {
    background: var(--primary);
    color: #fff;
    padding: 10px 22px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 15px 35px rgba(248, 147, 75, 0.4);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: visible;
}

.quote-trigger i {
    font-size: 16px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.quote-trigger span {
    font-size: 11.5px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.quote-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 100px;
    background: var(--primary);
    z-index: -1;
    animation: quotePulse 2s infinite;
    opacity: 0.6;
}

@keyframes quotePulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.quote-trigger:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 45px rgba(248, 147, 75, 0.6);
    background: #ff8e3c;
}

.quote-trigger:hover .quote-pulse {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .floating-quote-hub {
        bottom: 25px;
        right: 20px;
        /* Shifted to Right for Mobile */
    }

    .quote-trigger {
        padding: 8px 16px;
        gap: 6px;
    }

    .quote-trigger i {
        font-size: 12px;
    }

    .quote-trigger span {
        font-size: 9px;
        letter-spacing: 0.8px;
    }
}

/* ========================
   OFFERS SECTION DESIGN
   ======================== */
.offers-section {
    padding: 80px 0;
    background: #ffffff;
    color: #1a1a1a;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.offers-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 45px;
    text-align: left;
    /* Ensure left alignment */
}

.offers-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #1a1a1a !important;
    letter-spacing: -1px;
    text-align: left;
    /* Explicitly align left */
}

.offers-tabs {
    display: flex;
    gap: 30px;
    border-bottom: 1.5px solid #eee;
    padding-bottom: 8px;
}

.offer-tab {
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 700;
    color: #888;
    cursor: pointer;
    padding-bottom: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.offer-tab.active {
    color: #f8934b;
    /* Orange brand accent */
}

.offer-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1.5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #f8934b;
    border-radius: 10px;
}

.offers-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.view-all-offers {
    font-size: 14px;
    font-weight: 800;
    color: #f8934b;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offers-nav {
    display: flex;
    gap: 12px;
}

.offer-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #eee;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.offer-nav-btn:hover {
    background: #f8934b;
    color: #fff;
    border-color: #f8934b;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.offer-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #f5f5f5;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.offer-card-img {
    height: 190px;
    width: 100%;
}

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

.offer-card-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.offer-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.offer-category {
    font-size: 11px;
    font-weight: 900;
    color: #f8934b;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.offer-tc {
    font-size: 10px;
    color: #aaa;
    font-weight: 500;
}

.offer-headline {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.offer-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.book-now-link {
    margin-top: auto;
    font-size: 13px;
    font-weight: 800;
    color: #f8934b;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.book-now-link::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s ease;
}

.book-now-link:hover::after {
    transform: translateX(5px);
}

/* --- MOBILE RESPONSIVE HUB --- */
@media (max-width: 768px) {

    body,
    html {
        width: 100% !important;
        overflow-x: hidden !important;
    }

    .offers-section {
        padding: 50px 0;
        background: #ffffff !important;
    }

    .offers-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 30px;
        gap: 20px;
    }

    .offers-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .offers-tabs {
        width: calc(100% + 40px);
        margin-left: -20px;
        padding: 0 20px 10px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .offers-tabs::-webkit-scrollbar {
        display: none;
    }

    .offer-tab {
        flex: 0 0 auto;
        font-size: 14px;
        padding-bottom: 10px;
    }

    .offers-header-right {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 10px;
    }

    .view-all-offers {
        font-size: 12px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .offer-card {
        border-radius: 16px;
    }

    .offer-card-img {
        height: 170px;
    }

    .offer-card-content {
        padding: 20px;
    }

    /* Fix for Ghost Background Text */
    .offers-title::before,
    .offers-title::after {
        display: none !important;
    }


    /* --- ELITE MOBILE DESTINATIONS GRID (ULTRA-ROBUST) --- */
    @media (max-width: 768px) {
        .pills-container {
            padding: 0 10px !important;
            margin-top: 30px !important;
            width: 100% !important;
            box-sizing: border-box !important;
        }

        .pills-label {
            display: block !important;
            text-align: center !important;
            margin-bottom: 20px !important;
            font-size: 14px !important;
            letter-spacing: 2px !important;
            color: rgba(255, 255, 255, 0.8) !important;
        }

        .pills-row {
            display: grid !important;
            grid-template-columns: repeat(2, 1fr) !important;
            /* HARD FORCED 2 COLS */
            gap: 12px !important;
            width: 100% !important;
            max-width: 500px !important;
            margin: 0 auto !important;
        }

        .pill-card {
            display: block !important;
            width: 100% !important;
            height: 95px !important;
            border-radius: 16px !important;
            overflow: hidden !important;
            position: relative !important;
            margin: 0 !important;
            opacity: 1 !important;
            /* Ensure visibility */
            visibility: visible !important;
            transform: none !important;
            /* Kill any stray GSAP x-shifts */
        }

        /* Smart center the 5th card */
        .pill-card:last-child:nth-child(odd) {
            grid-column: span 2 !important;
            width: calc(50% - 6px) !important;
            justify-self: center !important;
        }

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

    /* Performance Optimizations for Mobile */
    @media (max-width: 768px) {

        .premium-search-container,
        .pill-card,
        .hero-bg-video,
        .master-preloader,
        .flagship-cinematic-bg img {
            will-change: transform, opacity;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            perspective: 1000;
            -webkit-perspective: 1000;
        }

        /* Reduced motion if user prefers */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }
    }

}
/* --- AUTO-SUGGESTION SYSTEM --- */
.search-col.large {
    position: relative;
}

.suggestion-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    margin-top: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: none;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.suggestion-item {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover, .suggestion-item.active {
    background: rgba(255, 111, 0, 0.1);
}

.suggestion-icon {
    width: 32px;
    height: 32px;
    background: var(--gray-100);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 14px;
}

.suggestion-info {
    display: flex;
    flex-direction: column;
}

.suggestion-main {
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}

.suggestion-sub {
    font-size: 12px;
    color: var(--gray-500);
}

.suggestion-type {
    margin-left: auto;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gray-500);
    background: var(--gray-100);
    padding: 2px 8px;
    border-radius: 4px;
}

/* Dark mode compatibility */
.glass-search-engine .suggestion-dropdown {
    background: rgba(15, 23, 42, 0.95);
    border-color: rgba(255, 255, 255, 0.1);
}

.glass-search-engine .suggestion-main {
    color: white;
}

.glass-search-engine .suggestion-item:hover, 
.glass-search-engine .suggestion-item.active {
    background: rgba(255, 111, 0, 0.2);
}

/* --- Holiday Packages Categories --- */
.package-cat-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 0px;
    padding: 0;
    background: rgba(var(--white-rgb), 0.12);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    width: fit-content;
    max-width: 100%;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.package-cat-tabs::-webkit-scrollbar {
    display: none;
}

.pkg-cat-tab {
    padding: 12px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    color: rgba(var(--white-rgb), 0.7);
    font-size: 13px;
    font-weight: 600;
    border-right: 1px solid var(--glass-border);
    flex-shrink: 0;
    white-space: nowrap;
}

.pkg-cat-tab:last-child {
    border-right: none;
}

.pkg-cat-tab i {
    font-size: 14px;
    color: var(--primary);
}

.pkg-cat-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
}

.pkg-cat-tab:hover,
.pkg-cat-tab.active {
    color: var(--white);
    background: rgba(var(--white-rgb), 0.1);
}

.pkg-cat-tab.active i {
    transform: scale(1.1);
}

.pkg-cat-tab.active::after {
    width: 100%;
}

.package-search-container .glass-search-engine {
    border-radius: 0 24px 24px 24px;
}

/* Specific adjustments for Package Search Engine */
#package-form .search-col.large {
    flex: 2;
}

#package-form .filter-val {
    font-size: 18px;
    color: var(--white);
    font-weight: 700;
}


/* Holiday Packages Top Filters */
.top-filters-wrapper {
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out;
}

.category-pills-bar {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 5px;
    padding-bottom: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-pills-bar::-webkit-scrollbar {
    display: none;
}

.cat-pill {
    white-space: nowrap;
    padding: 14px 28px;
    background: var(--white);
    border-radius: 100px;
    color: #475569;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef2f6;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.cat-pill i {
    color: var(--primary);
    font-size: 18px;
    transition: transform 0.4s ease;
}

.cat-pill:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
    color: var(--dark);
}

.cat-pill:hover i {
    transform: rotate(15deg) scale(1.2);
}

.cat-pill.active {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.cat-pill.active i {
    color: var(--primary);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   UNIVERSAL SEARCH ENGINE INTERACTIVITY
   ========================================= */

.search-col.interactive-col {
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.search-col.interactive-col:hover {
    background: rgba(255, 255, 255, 0.05);
}

.search-dropdown-card {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 280px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    z-index: 100;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.search-dropdown-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.dropdown-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.item-meta {
    display: flex;
    flex-direction: column;
}

.item-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.item-sub {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.counter-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cnt-btn {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cnt-btn:hover {
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

.cnt-val {
    font-size: 14px;
    font-weight: 800;
    min-width: 15px;
    text-align: center;
}

/* Price Options */
.price-opt {
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    color: rgba(255, 255, 255, 0.7);
}

.price-opt:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.price-opt.active {
    background: rgba(248, 147, 75, 0.15);
    color: var(--primary);
    border: 1px solid rgba(248, 147, 75, 0.3);
}

/* Flatpickr Customization */
.flatpickr-calendar {
    background: rgba(15, 23, 42, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5) !important;
    border-radius: 20px !important;
    z-index: 100000 !important; /* Fixed: Master layer dominance */
}

.flatpickr-day.selected {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.flatpickr-day:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

.flatpickr-months .flatpickr-month,
.flatpickr-weekday {
    color: #fff !important;
    fill: #fff !important;
}


/* --- EXPANDED AUTH MODAL SYSTEM --- */
.auth-mode-wrapper {
    display: flex;
    justify-content: center;
    margin: 0 auto 30px;
    padding: 5px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    max-width: 280px;
}

.auth-mode-btn {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    border-radius: 10px;
}

.auth-mode-btn.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(248, 147, 75, 0.3);
}

.auth-form-container {
    position: relative;
    min-height: 280px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 5px;
}

.auth-form-pane {
    display: none;
    animation: authFadeIn 0.5s ease-out forwards;
}

.auth-form-pane.active {
    display: block;
}

/* Compact Grid Layout for Multi-Field Forms */
.auth-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    margin-bottom: 10px;
}

/* Fallback visibility if JS is delayed */
.auth-form-pane:first-child:not(.active) {
    display: none; 
}

@keyframes authFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.auth-input-group {
    margin-bottom: 10px; /* Further tightened */
}

/* Specific adjustment for full-width items in grid */
.auth-form-grid .auth-input-group.full-width {
    grid-column: 1 / -1;
}

/* --- SOVEREIGN AJAX STATUS MESSAGING --- */
.auth-status-msg {
    display: none;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
    animation: authMsgSlide 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
}

.auth-status-msg.active {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.auth-status-msg.error {
    background: rgba(255, 71, 87, 0.1);
    color: #ff4757;
    border-color: rgba(255, 71, 87, 0.2);
}

.auth-status-msg.success {
    background: rgba(46, 213, 115, 0.1);
    color: #2ed573;
    border-color: rgba(46, 213, 115, 0.2);
}

@keyframes authMsgSlide {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.auth-input-group label {
    display: block;
    font-size: 9px; /* Slightly smaller */
    font-weight: 800;
    color: #334155;
    margin-bottom: 3px; /* Reduced from 6px */
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.auth-input-wrap {
    position: relative;
    background: #fff;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    transition: 0.3s;
}

.auth-input-wrap:focus-within {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(248, 147, 75, 0.1);
}

.auth-input-wrap i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 16px;
}

.auth-input-wrap input {
    width: 100%;
    background: transparent;
    border: none;
    padding: 8px 10px 8px 35px;
    color: #1e293b;
    font-size: 12px;
    outline: none;
    font-weight: 500;
}

.auth-input-wrap input::placeholder {
    color: #94a3b8;
}

.btn-auth-master {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), #fbbf24);
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
    box-shadow: 0 8px 25px rgba(248, 147, 75, 0.2);
}

.btn-auth-master:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(248, 147, 75, 0.4);
}

.btn-auth-master i {
    font-size: 16px;
    transition: transform 0.3s;
}

.btn-auth-master:hover i {
    transform: translateX(5px);
}

.auth-sub-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 800;
}

.auth-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
    border: 1px solid #e2e8f0;
}

.auth-close:hover {
    background: #e2e8f0;
    color: #1e293b;
    transform: rotate(90deg);
}

/* --- Auth Modal Features List --- */
.auth-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px; /* Final compaction */
    padding: 6px 10px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px dashed #e2e8f0;
}

.auth-feat-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 9px;
    font-weight: 700;
    color: #475569;
    background: white;
    padding: 3px 8px;
    border-radius: 100px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.auth-feat-item i {
    color: var(--primary);
    font-size: 10px;
}

.auth-sub-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
}

/* ELITE PORTAL SIDEBAR - Glassmorphism 2.0 */
.elite-portal-sidebar {
    position: fixed;
    top: 0;
    left: -420px;
    width: 380px;
    height: 100vh;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    z-index: 10000;
    padding: 80px 40px;
    transition: left 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 20px 0 80px rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    color: #fff;
}

.elite-portal-sidebar.active {
    left: 0;
}

.portal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.6s;
}

.portal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.portal-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff !important;
    font-size: 20px;
    transition: 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.portal-close-btn:hover {
    background: #ff6f00;
    transform: rotate(90deg);
    border-color: #ff6f00;
}

.portal-header {
    text-align: center;
    margin-bottom: 60px;
}

.portal-logo-img {
    max-width: 180px;
    height: auto;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(255, 111, 0, 0.3));
}

.portal-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff !important;
}

.portal-header p {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5) !important;
    text-transform: uppercase;
    margin-top: 8px;
    letter-spacing: 3px;
    font-weight: 700;
}

.portal-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.portal-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 25px;
    text-decoration: none !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: #fff !important;
}

.portal-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(12px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.portal-item .p-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff !important;
    transition: 0.4s;
    flex-shrink: 0;
}

.portal-item:hover .p-icon {
    background: #ff6f00;
    box-shadow: 0 0 25px rgba(255, 111, 0, 0.4);
}

.portal-item .p-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.portal-item .p-title {
    font-size: 15px;
    font-weight: 800;
    color: #fff !important;
    letter-spacing: 0.5px;
}

.portal-item .p-sub {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5) !important;
    font-weight: 500;
}

.portal-footer {
    margin-top: auto;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.portal-footer p {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.4) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* BLOG ECOSYSTEM STYLES */
.blogs-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-grid-section { padding: 80px 0; background: #fafafa; }
.blog-card { background: white; border-radius: 30px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.05); transition: 0.4s; }
.blog-card:hover { transform: translateY(-10px); box-shadow: 0 25px 60px rgba(0,0,0,0.1); }
.blog-card-img { height: 250px; width: 100%; object-fit: cover; }
.blog-card-content { padding: 30px; }
.b-cat { color: var(--primary); font-size: 11px; font-weight: 800; text-transform: uppercase; margin-bottom: 15px; display: block; }
.b-title { font-family: var(--font-heading); font-size: 20px; font-weight: 800; color: #1a202c; margin-bottom: 15px; line-height: 1.4; }
.b-excerpt { font-size: 14px; color: #718096; line-height: 1.6; margin-bottom: 20px; }
.b-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #f0f0f0; padding-top: 20px; }
.b-author { display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; color: #2d3748; }
.b-read-more { font-size: 12px; font-weight: 800; color: var(--primary); text-decoration: none; display: flex; align-items: center; gap: 8px; }

/* --- NO RESULTS PREMIUM --- */
.no-results-premium {
    text-align: center;
    padding: 100px 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 40px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    margin: 40px 0;
}

.no-results-icon {
    font-size: 64px;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.no-results-premium h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.no-results-premium p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.btn-clear-large {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary);
    color: white;
    border-radius: 100px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.3);
}

.btn-clear-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.5);
}
