.search-page {
    display: flex;
    height: calc(100vh - 150px);
    background: #000;
}

@media (max-width: 991px) {
    .search-page {
        flex-direction: column;
        height: auto;
    }

    .results-sidebar-v2 {
        width: 100% !important;
        height: auto;
        overflow-y: visible;
    }

    .map-container-v2 {
        height: 400px;
        order: -1;
        /* Show map at top on mobile */
    }
}

.search-header-v2 {
    background: #000;
    padding: 15px 0;
    border-bottom: 1px solid #111;
    overflow: visible;
    position: relative;
    z-index: 100;
}

.search-bar-v2 {
    display: flex;
    background: #111;
    border-radius: 100px;
    padding: 8px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid #222;
}

@media (max-width: 768px) {
    .search-bar-v2 {
        flex-direction: column;
        border-radius: 20px;
        align-items: stretch;
        padding: 15px;
    }

    .search-field-v2 {
        border-right: none;
        border-bottom: 1px solid #222;
        padding: 12px 0;
    }

    .search-icon-btn {
        width: 100%;
        margin-top: 15px;
        border-radius: 12px;
    }
}

.search-field-v2 {
    flex: 1;
    padding: 0 24px;
    border-right: 1px solid #222;
    display: flex;
    flex-direction: column;
}

.search-field-v2:last-child {
    border-right: none;
}

.search-field-v2 label {
    font-size: 11px;
    font-weight: 700;
    color: #888;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-field-v2 input {
    background: transparent;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    outline: none;
    width: 100%;
}

.search-field-v2 input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.search-icon-btn {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
}

.search-icon-btn:hover {
    transform: scale(1.05);
    background: #c5ea5d;
}

.filter-bar-v2 {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    padding: 15px 0;
    max-width: 1000px;
    margin: 0 auto;
    overflow: visible;
    scrollbar-width: none;
}

.filter-bar-v2::-webkit-scrollbar {
    display: none;
}

.filter-btn-v2 {
    padding: 10px 24px;
    border: 1px solid #222;
    background: #111;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.filter-btn-v2:hover {
    background: #181818;
    border-color: #333;
}

/* Help Banner */
.help-banner {
    background: #e1f7e1;
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
    border: 1px solid #d0ebd0;
}

.help-banner img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.help-banner-text {
    flex: 1;
}

.help-banner h4 {
    font-size: 16px;
    color: #1a5a1a;
    margin-bottom: 4px;
}

.help-banner p {
    font-size: 13px;
    color: #1a5a1a;
}

.help-banner-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 18px;
    color: #1a5a1a;
    cursor: pointer;
}

/* Nav Dropdown Styling - Image 2 Style */
.nav-item-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 3000;
    margin-top: 10px;
}

.nav-item-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: #1a1a1a !important;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    transition: 0.2s;
    text-align: left;
}

.nav-dropdown-menu a:hover {
    background: #f5f5f7;
    color: #000 !important;
}

.results-sidebar-v2 {
    width: 45%;
    overflow-y: auto;
    padding: 30px;
    background: #000;
}

.map-container-v2 {
    flex: 1;
    position: relative;
    background: #1a1a1a;
}

.venue-card-v2-horizontal {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 15px;
    display: flex;
    gap: 20px;
    transition: 0.3s;
    border: 1px solid #222;
    margin-bottom: 20px;
}

@media (max-width: 576px) {
    .venue-card-v2-horizontal {
        flex-direction: column;
    }

    .venue-card-v2-horizontal img {
        width: 100% !important;
        height: 200px !important;
    }
}

.venue-card-v2-horizontal:hover {
    border-color: #333;
    background: #222;
}

.venue-card-v2-horizontal h3 {
    color: #fff;
    font-size: 18px;
}

.venue-card-v2-horizontal .price {
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    margin-top: 10px;
}

:root {
    --primary: #e1ff00;
    --primary-hover: #d9ff66;
    --secondary: #121212;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --text-dark: #1a1a1a;
    --bg-dark: #0a0a0a;
    --bg-surface: #1a1a1a;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(20px);
    --glass-solid: rgba(255, 255, 255, 0.9);
    /* New for header */
    --container-width: 1240px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    opacity: 0;
    animation: fadeInPage 0.6s ease-out forwards;
}

html,
body {
    overflow-x: hidden;
    width: 100vw;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

body.fade-out {
    animation: fadeOutPage 0.4s ease-in forwards;
}

@keyframes fadeInPage {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOutPage {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
}

.glass-solid {
    background: var(--glass-solid);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

h1,
h2,
h3,
h4 {
    color: inherit;
    /* Use parent's color */
    line-height: 1.1;
    font-weight: 800;
}

.hero-inner h1 {
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.btn-primary {
    background: #1a1a1a;
    color: white;
}

.btn-primary:hover {
    background: #000;
    transform: translateY(-1px);
}

/* Navbar - Letswork Style */
.navbar {
    height: 70px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 20px;
    z-index: 2000;
    margin: 20px auto;
    max-width: var(--container-width);
    border-radius: 20px;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.85);
    /* Slightly more opaque for readability */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .navbar {
        top: 10px;
        margin: 10px;
        width: calc(100% - 20px);
        border-radius: 12px;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(255, 255, 255, 0.95) !important;
    }
}


.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-radius: 20px;
}

.logo-text {
    font-size: 24px;
    font-weight: 900;
    color: var(--white);
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Navbar Light Variant (for light backgrounds) */
.navbar-light .logo-text,
.navbar-light .nav-links a,
.navbar-light .nav-right .link {
    color: var(--text-dark) !important;
}

.navbar-light .nav-links a.active {
    color: #000 !important;
}

.nav-links a.active {
    color: var(--white);
}

.nav-links i {
    font-size: 10px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-right .link {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.profile-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 2001;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 10px;
    transition: 0.3s;
}

@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex;
        background: rgba(255, 255, 255, 0.1);
        width: 45px;
        height: 45px;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        padding: 0;
    }

    .mobile-menu-toggle span {
        background: var(--text-dark);
        height: 2px;
        width: 24px;
        margin: 0;
        position: absolute;
        transition: 0.3s;
    }

    .mobile-menu-toggle span:first-child {
        transform: translateY(-8px);
    }

    .mobile-menu-toggle span:last-child {
        transform: translateY(8px);
    }

    .mobile-menu-toggle.active span:first-child {
        transform: translateY(0) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(10px);
    }

    .mobile-menu-toggle.active span:last-child {
        transform: translateY(0) rotate(-45deg);
    }

    /* GLOBAL DARK PREMIUM GLASS DRAWER */
    .nav-links {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.4);
        /* Backdrop overlay */
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        z-index: 2500;
        padding: 30px;
        opacity: 0;
        visibility: hidden;
        transition: 0.4s ease;
        pointer-events: none;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    .no-scroll {
        overflow: hidden !important;
    }

    /* Support for consistent dark theme even in light-navbar pages */
    .navbar-light .nav-links {
        background: rgba(0, 0, 0, 0.4);
    }

    .navbar-light .nav-links a {
        color: #fff !important;
        /* Force white text for dark glass drawer */
    }

    /* Centered Dark Glass Modals - Consistent Theme */
    .nav-links::after {
        content: '';
        position: absolute;
        width: 90%;
        max-width: 380px;
        height: auto;
        min-height: 480px;
        background: rgba(15, 15, 15, 0.85);
        /* Dark Frosted Glass */
        backdrop-filter: blur(40px) saturate(150%);
        -webkit-backdrop-filter: blur(40px) saturate(150%);
        border-radius: 40px;
        z-index: -1;
        box-shadow:
            0 30px 60px rgba(0, 0, 0, 0.5),
            inset 0 1px 1px rgba(255, 255, 255, 0.1);
        /* Subtle premium highlight */
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    /* Modal Logo - Lightened for Dark Theme */
    .nav-links::before {
        content: 'ZINKO';
        position: absolute;
        top: 100px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 24px;
        font-weight: 900;
        letter-spacing: -1px;
        color: rgba(255, 255, 255, 0.05);
        /* Very subtle on dark */
        z-index: 0;
    }

    /* Fixed Toggle Positioning */
    .mobile-menu-toggle {
        z-index: 2600 !important;
        position: relative;
    }

    .mobile-menu-toggle.active {
        position: fixed;
        top: 45px;
        right: 45px;
        /* Offset to sit inside the card corner */
    }

    .mobile-menu-toggle.active span {
        background: #fff !important;
        /* White "X" on dark card */
    }

    .nav-links a {
        font-size: 28px;
        color: #fff !important;
        /* White text for dark theme */
        font-weight: 900;
        /* Extra bold like the ref image */
        width: auto;
        padding: 8px 0;
        text-align: center;
        opacity: 0;
        transform: translateY(10px) scale(0.95);
        transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .nav-links.active a {
        opacity: 1;
        transform: scale(1);
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.active a:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active a:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-links.active a:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-links.active a:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-links a span {
        display: none;
        /* Hide arrows on mobile menu */
    }

    .nav-links a:active {
        color: var(--primary) !important;
        transform: scale(0.95);
    }

    .nav-right {
        position: fixed;
        bottom: 80px;
        left: 0;
        width: 100%;
        display: none;
        z-index: 2001;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        opacity: 0;
        transform: translateY(20px);
        transition: 0.4s;
    }

    .nav-right.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.3s;
    }

    .nav-right .btn {
        width: 280px;
        justify-content: center;
        background: var(--primary);
        color: #000;
        padding: 18px 32px;
        font-size: 16px;
        box-shadow: 0 10px 30px rgba(225, 255, 0, 0.2);
    }
}

/* Hero Section */
.hero-fullscreen {
    position: relative;
    height: auto;
    min-height: 100vh;
    display: flex;
    padding: 140px 0 80px;
    /* Leave space for sticky navbar */
    align-items: center;
    background-image: url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
}

@media (max-width: 991px) {
    .hero-fullscreen {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
        align-items: flex-start;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.9));
}

.hero-inner {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-inner h1 {
    font-size: 72px;
    margin-bottom: 24px;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 30px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 480px) {
    .hero-badge {
        padding: 8px 16px;
        font-size: 12px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .hero-inner h1 {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-fullscreen {
        padding-top: 140px;
        padding-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .hero-inner h1 {
        font-size: 24px;
        max-width: 100%;
    }
}

/* Search Box (Solid White) */
.search-wrap {
    display: flex;
    background: white;
    border-radius: 100px;
    padding: 8px;
    gap: 5px;
    align-items: center;
    max-width: 900px;
    margin-bottom: 30px;
    position: relative;
    z-index: 100;
}

@media (max-width: 991px) {
    .search-wrap {
        flex-direction: column;
        border-radius: 24px;
        padding: 12px;
        gap: 8px;
        max-width: 100%;
    }

    .search-dropdown,
    .search-input-group {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 8px 12px;
        /* Reduced from 12px 15px */
        height: auto;
        min-width: 0;
    }

    .search-input-group {
        border-bottom: none;
    }

    .search-submit {
        width: 100%;
        padding: 12px;
        font-size: 15px;
        border-radius: 12px;
    }
}

.search-dropdown {
    position: relative;
    padding: 0 25px;
    height: 55px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    border-right: 1px solid #eee;
    color: #333;
    font-weight: 600;
    min-width: 200px;
}

.dropdown-menu {
    position: absolute;
    top: 65px;
    left: 0;
    width: 250px;
    background: #ffffff !important;
    border-radius: 20px;
    padding: 10px 0;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 9999;
    list-style: none;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 14px 25px;
    color: #1a1a1a;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s;
}

.dropdown-menu li:hover {
    background: #f8f8f8;
}

.search-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 20px;
}

.search-input-group input {
    border: none;
    outline: none;
    font-size: 16px;
    width: 100%;
    color: #333;
}

.search-submit {
    border-radius: 100px;
    padding: 15px 45px;
}

/* Popular Tags (Image 2) */
.popular-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .popular-tags span {
        width: 100%;
        margin-bottom: 5px;
    }
}

.popular-tags span {
    color: var(--text-muted);
    font-size: 14px;
}

.popular-tags a {
    color: var(--white);
    font-size: 14px;
    padding: 6px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: var(--transition);
}

.popular-tags a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Horizontal Stats (Image 2) */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    height: 30px;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 991px) {
    .hero-stats {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        margin-top: 40px;
        width: 100%;
        padding-bottom: 20px;
    }

    .stat-item {
        flex-direction: row;
        gap: 20px;
        width: 100%;
        padding: 20px;
        background: rgba(255, 255, 255, 0.08);
        /* Sophisticated glass look */
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        text-align: left;
    }

    .stat-item .stat-icon {
        margin-bottom: 0;
        width: 50px;
        height: 50px;
        font-size: 24px;
        background: rgba(225, 255, 0, 0.1);
        /* Subtle brand glow */
        border: 1px solid rgba(225, 255, 0, 0.2);
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }
}

.stat-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.stat-info h3 {
    font-size: 24px;
    color: var(--white);
}

.stat-info p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
}

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

.section-header h2 {
    font-size: 48px;
    margin-bottom: 16px;
}

/* Explore Solutions Bento Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
}

.solution-card {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

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

.solution-img-box {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.solution-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-icon {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 10;
}

.solution-info {
    padding: 30px;
    background: var(--bg-surface);
}

.solution-info .label {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
}

.solution-info h3 {
    font-size: 28px;
    margin: 10px 0;
}

/* Bento Grid - Image 2 Style */
.bento-section {
    padding: 60px 0;
    background: #ffffff !important;
    text-align: center;
    color: var(--text-dark) !important;
}

.bento-section {
    padding: 60px 0;
    text-align: center;
}

.bento-section h2 {
    font-size: 54px !important;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a !important;
}

.bento-section h3,
.bento-section p,
.bento-section li {
    color: #1a1a1a !important;
}

.bento-section .subheading {
    color: #666 !important;
    margin-bottom: 40px;
    font-size: 18px;
    font-weight: 500;
}

.bento-grid-v2 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 20px;
    width: 100%;
}

.bento-card-v2 {
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.bento-card-v2:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border-color: #e1ff00;
}

.bento-card-v2.large {
    grid-column: span 4;
    grid-row: span 2;
}

.bento-card-v2.medium {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-card-v2.wide {
    grid-column: span 6;
    grid-row: span 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.bento-card-v2.wide .bento-card-img {
    height: 100%;
    min-height: 250px;
}

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

    .bento-card-v2.large {
        grid-column: span 4;
    }

    .bento-card-v2.medium {
        grid-column: span 2;
    }

    .bento-card-v2.wide {
        grid-column: span 4;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .bento-grid-v2 {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .bento-card-v2.large,
    .bento-card-v2.medium,
    .bento-card-v2.wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-main-heading {
        font-size: 28px !important;
        margin-bottom: 16px;
    }

    .bento-content-v2 {
        padding: 24px;
    }

    .bento-content-v2 h3 {
        font-size: 22px;
    }
}

.bento-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    z-index: 20;
}

@media (max-width: 768px) {
    .bento-section {
        padding: 60px 0;
    }
}

.bento-card-img {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

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

.bento-card-v2:hover .bento-card-img img {
    transform: scale(1.1);
}

.card-icon-overlay {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
    font-size: 24px;
}

.bento-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #e1ff00;
    color: #000;
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 11px;
    z-index: 10;
    letter-spacing: 0.5px;
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(225, 255, 0, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(225, 255, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(225, 255, 0, 0);
    }
}

.bento-content-v2 {
    padding: 30px;
    color: var(--text-dark) !important;
}

.bento-content-v2 h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #1a1a1a !important;
    font-weight: 800;
}

.bento-content-v2 p {
    color: #555 !important;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 24px;
}

.bento-list {
    list-style: none;
    margin-top: 20px;
}

.bento-list li {
    font-size: 14px;
    color: #444;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bento-list li::before {
    content: '→';
    color: #e1ff00;
    font-weight: 800;
}

.btn-bento {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    border: none;
}


.btn-bento-black {
    background: #1a1a1a;
    color: #fff;
    padding: 14px 32px;
}

.btn-bento-black:hover {
    background: #000;
}

.btn-bento-white {
    background: #fff;
    color: #1a1a1a;
    border: 1px solid #e0e0e0 !important;
    padding: 14px 28px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.btn-bento-link {
    background: transparent;
    color: #1a1a1a;
    padding: 10px 0;
    font-size: 16px;
}

.btn-icon-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

.btn-bento-white .btn-icon-dot {
    background: #000;
}

.btn-icon-arrow-circle {
    width: 28px;
    height: 28px;
    background: #fff;
    color: #b9b5b5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Home Pricing Section - Image 5 Style */
.home-pricing {
    padding: 60px 0;
    background: #0a0a0a;
    text-align: center;
}

.home-pricing h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 40px;
}

.bento-main-heading {
    font-size: 54px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 800;
}

@media (max-width: 768px) {
    .bento-main-heading {
        font-size: 32px;
        line-height: 1.2;
    }
}

.plan-toggle-v2 {
    display: inline-flex;
    background: #1a1a1a;
    padding: 6px;
    border-radius: 100px;
    margin-bottom: 60px;
}

.plan-toggle-v2 button {
    padding: 10px 30px;
    border-radius: 100px;
    border: none;
    background: transparent;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.plan-toggle-v2 button.active {
    background: #d9ff66;
    color: #000;
}

.billing-toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.billing-toggle {
    background: #f5f5f5;
    padding: 4px;
    border-radius: 100px;
    display: inline-flex;
    gap: 0;
    border: 1px solid #eee;
}

.home-pricing .billing-toggle {
    background: #1a1a1a;
    border-color: #333;
}

.billing-toggle button {
    padding: 8px 24px;
    border-radius: 100px;
    border: none;
    background: transparent;
    color: #666;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
}

.billing-toggle button.active {
    background: white;
    color: #000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.home-pricing .billing-toggle button.active {
    background: #333;
    color: #fff;
}

.yearly-badge {
    background: #d9ff66;
    color: #000;
    padding: 2px 8px;
    border-radius: 40px;
    font-size: 10px;
    margin-left: 8px;
    font-weight: 800;
}

.pricing-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

@media (max-width: 600px) {
    .pricing-grid-v2 {
        grid-template-columns: 1fr;
    }
}

.plan-card-v2 {
    background: #151515;
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid #222;
    text-align: left;
    transition: 0.3s;
    position: relative;
}

.plan-card-v2.highlighted {
    border-color: var(--primary);
    background: #181818;
}

.plan-card-v2 h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: 600;
}

.plan-card-v2 .price-v2 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 30px;
    display: block;
}

.plan-card-v2 .price-v2 span {
    color: #666;
    font-weight: 400;
}

.plan-card-v2 ul {
    list-style: none;
    margin-bottom: 40px;
}

.plan-card-v2 ul li {
    color: #fff;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-card-v2 ul li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}

.btn-subscribe {
    background: transparent;
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    padding: 0;
}

.solution-info p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.solution-info ul {
    list-style: none;
}

.solution-info ul li {
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    gap: 10px;
}

.solution-info ul li::before {
    content: '•';
    color: var(--primary);
}

.right-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Pricing Section (Image 4) */
.pricing {
    padding: 80px 0;
    text-align: center;
}

.plan-toggle {
    background: #1a1a1a;
    display: inline-flex;
    padding: 6px;
    border-radius: 100px;
    margin-bottom: 40px;
}

.plan-toggle button {
    padding: 12px 30px;
    border-radius: 100px;
    background: transparent;
    border: none;
    color: var(--white);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.plan-toggle button.active {
    background: #d9ff66;
    color: #000;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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

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

.pricing-card {
    padding: 40px;
    border-radius: 30px;
    text-align: left;
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
}

.pricing-card .price {
    font-size: 42px;
    font-weight: 800;
    margin: 20px 0;
    display: block;
}

.pricing-card .price span {
    font-size: 16px;
    color: var(--text-muted);
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-card ul li {
    margin-bottom: 12px;
    color: var(--text-muted);
    display: flex;
    gap: 10px;
    font-size: 14px;
}

.pricing-card ul li::before {
    content: '✓';
    color: var(--primary);
}

/* Wall of Love (Image 5) */
.reviews-section {
    padding: 80px 0;
    background: #fcfbf7;
    border-radius: 100px 100px 0 0;
    color: #1a1a1a;
}

.reviews-section h2 {
    color: #1a1a1a !important;
}

.reviews-grid {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.review-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (max-width: 992px) {
    .reviews-grid {
        flex-direction: column;
    }

    .review-col {
        width: 100%;
    }

    /* Removed redundant h1 override to prevent conflicts */

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

@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
        border-radius: 50px 50px 0 0;
    }

    .contact-cta {
        padding: 60px 0;
    }

    .contact-cta h2 {
        font-size: 28px;
    }

    .gallery-item {
        width: 280px;
        height: 180px;
    }
}

/* Map & Details */
.search-page {
    display: flex;
    height: calc(100vh - 90px);
    background: #000;
}

.results-sidebar {
    flex: 1;
    max-width: 580px;
    overflow-y: auto;
    padding: 40px;
    border-right: 1px solid var(--glass-border);
}

.map-wrapper {
    flex: 1.5;
    position: relative;
    background: #111;
    overflow: hidden;
}

.map-pin {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border: 3px solid white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.8);
}

.pin-popover {
    position: absolute;
    bottom: 30px;
    left: -100px;
    width: 200px;
    padding: 15px;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: none;
    color: white;
    z-index: 1000;
}

.map-pin:hover .pin-popover {
    display: block;
}

.detail-hero {
    height: 500px;
    position: relative;
}

.detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-content {
    margin-top: -100px;
    position: relative;
    z-index: 10;
    padding-bottom: 60px;
}

.detail-card {
    background: var(--bg-surface);
    padding: 50px;
    border-radius: 40px;
    border: 1px solid var(--glass-border);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

@media (max-width: 991px) {
    .detail-card {
        grid-template-columns: 1fr;
        padding: 30px;
        margin-top: -50px;
    }

    .detail-hero {
        height: 350px;
    }
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

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

/* Infinite Scrolling Gallery Section */
.workspace-gallery-section {
    padding: 0 0 60px;
    background: #fcfbf7;
    overflow: hidden;
    text-align: center;
}

.workspace-gallery-section h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.workspace-gallery-section .gallery-subheading {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .workspace-gallery-section h2 {
        font-size: 32px;
    }

    .gallery-actions {
        flex-direction: column;
        padding: 0 20px;
    }

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

.gallery-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.gallery-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin: 40px 0;
}

.scroll-track {
    display: flex;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 40px;
    width: max-content;
    animation: scroll-gallery 60s linear infinite;
    padding: 0 12px;
}

.scroll-track.reverse {
    animation-direction: reverse;
}

.scroll-track:hover {
    animation-play-state: paused;
}

.gallery-item {
    width: 380px;
    height: 250px;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@keyframes scroll-gallery {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 20px));
    }
}

.gallery-container {
    overflow: hidden;
}

/* --- Common Footer & Contact Styles --- */
.contact-cta {
    padding: 100px 0;
    background: #f8f9fa;
    text-align: center;
    color: #1a1a1a;
}

.contact-cta h2 {
    color: #000;
    font-size: 42px;
    margin-bottom: 15px;
}

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

.contact-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.contact-cta-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.contact-cta-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.contact-cta-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #000;
}

.contact-cta-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
}

.contact-cta-card i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
}

.footer {
    padding: 100px 0 40px;
    background: #000;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand .logo {
    text-decoration: none;
    display: inline-block;
    margin-bottom: 25px;
}

.footer-brand .logo-text {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: #fff;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.social-icon:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-5px);
    border-color: var(--primary);
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

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

/* Booking Card Expanded Styles */
.amenity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.booking-card-expanded {
    display: none;
    flex-direction: column;
    gap: 20px;
}

.booking-card-expanded.active {
    display: flex;
}

.booking-card-expanded h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.booking-card-expanded .subtitle {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    padding: 12px 15px;
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    outline: none;
    width: 100%;
    cursor: pointer;
    transition: 0.3s;
}

.form-group select:focus {
    border-color: var(--primary);
}

.form-group select option {
    background: #111;
    color: #fff;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.label-row .value {
    color: var(--primary);
    font-weight: 800;
}

.duration-slider {
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    outline: none;
    margin: 10px 0;
}

.duration-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(225, 255, 0, 0.3);
}

.slots-container {
    padding: 10px 0;
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.slot-chip {
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: #fff;
    font-size: 13px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.slot-chip:hover {
    border-color: var(--primary);
    background: rgba(225, 255, 0, 0.1);
}

.slot-chip.active {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    font-weight: 700;
}

.error-text {
    color: #ff4d4d;
    font-size: 14px;
    font-style: italic;
}

.cost-breakdown {
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-muted);
}

.cost-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-top: 5px;
}

.cost-total .amount {
    color: var(--primary);
    font-size: 24px;
}

.membership-banner {
    background: rgba(225, 255, 0, 0.1);
    border: 1px solid rgba(225, 255, 0, 0.2);
    padding: 15px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.membership-banner p {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
}

.btn-outline:hover {
    background: var(--primary);
    color: #000;
}

.btn-confirm {
    background: var(--primary) !important;
    color: #000 !important;
    margin-top: 10px;
    width: 100%;
}

.footer-note {
    text-align: center;
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* Filter Dropdowns */
.filter-item-v2 {
    position: relative;
    z-index: 9999;
}

.filter-dropdown-v2 {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05);
    z-index: 99999;
    min-width: 220px;
    display: none;
    animation: none;
}

.filter-dropdown-v2.show {
    display: block;
    animation: dropDownFade 0.18s ease;
}

@keyframes dropDownFade {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-option {
    padding: 10px 16px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}

.dropdown-option:hover {
    background: #1a1a1a;
    color: var(--primary);
}

.dropdown-option.selected {
    background: rgba(225, 255, 0, 0.1);
    color: var(--primary);
}

.filter-btn-v2.active {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}

/* Custom Modal Styles */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

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

.modal-content {
    background: #111;
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 50px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    animation: modalPop 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes modalPop {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(40px);
    }

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

.modal-success-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 30px;
    color: #000;
    box-shadow: 0 0 40px rgba(225, 255, 0, 0.3);
}

.modal-content h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #fff;
    font-weight: 900;
}

.modal-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.booking-summary-ticket {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 30px;
    text-align: left;
}

.ticket-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.ticket-row:last-child {
    margin-bottom: 0;
    padding-top: 12px;
    border-top: 1px solid var(--glass-border);
}

.ticket-row span:first-child {
    color: var(--text-muted);
}

.ticket-row span:last-child {
    color: #fff;
    font-weight: 700;
}

.ticket-row.total span:last-child {
    color: var(--primary);
    font-size: 18px;
}

/* --- RESPONSIVE OPTIMIZATIONS --- */

@media (max-width: 1200px) {
    :root {
        --container-width: 100%;
    }
}

@media (max-width: 991px) {
    .hero-stats {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        height: auto !important;
    }

    .bento-grid-v2 {
        grid-template-columns: 1fr !important;
    }

    .bento-card-v2.wide,
    .bento-card-v2.large,
    .bento-card-v2.medium {
        grid-column: span 1 !important;
        width: 100% !important;
    }

    .pricing-grid-v2,
    .membership-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px !important;
    }

    .hero-flex {
        flex-direction: column !important;
        text-align: center !important;
    }

    .hero-text {
        max-width: 100% !important;
        margin-bottom: 40px !important;
    }

    .hero-text h1 {
        font-size: 48px !important;
    }

    .hero-cta-group {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }

    .hero-visual {
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .hero-inner h1 {
        font-size: 42px !important;
    }

    .search-wrap {
        flex-direction: column !important;
        border-radius: 20px !important;
        padding: 10px !important;
        background: rgba(255, 255, 255, 0.95) !important;
        height: auto !important;
    }

    .search-dropdown,
    .search-input-group {
        width: 100% !important;
        border-right: none !important;
        border-bottom: 1px solid #eee !important;
        padding: 15px !important;
    }

    .search-submit {
        width: 100% !important;
        margin-top: 10px !important;
        border-radius: 12px !important;
        height: 50px !important;
    }

    .hero-stats {
        grid-template-columns: 1fr !important;
    }

    .pricing-grid-v2,
    .membership-grid {
        grid-template-columns: 1fr !important;
    }

    .comparison-table table {
        display: block !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
    }

    .contact-cta-grid {
        grid-template-columns: 1fr !important;
    }

    .category-grid {
        grid-template-columns: 1fr !important;
    }

    .cat-card {
        height: 300px !important;
    }

    .steps-grid,
    .usage-grid {
        grid-template-columns: 1fr !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
    }

    .section-title {
        font-size: 32px !important;
    }

    .logo-grid {
        flex-wrap: wrap !important;
        gap: 20px !important;
        justify-content: center !important;
    }

    .hero-fullscreen {
        padding: 100px 0 60px !important;
    }
}

@media (max-width: 480px) {
    .hero-inner h1 {
        font-size: 32px !important;
    }

    .hero-text h1 {
        font-size: 36px !important;
    }

    .pricing-hero h1,
    .comparison-table h2 {
        font-size: 28px !important;
    }

    .bento-card-img {
        height: 220px !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
    }


    .hero-badge {
        font-size: 11px !important;
    }
}

/* Base Utility for Grids and Sections */
.pricing-grid-v2,
.membership-grid,
.spaces-grid,
.contact-cta-grid,
.reviews-grid {
    display: grid;
    gap: 24px;
}

.pricing-grid-v2,
.membership-grid {
    grid-template-columns: repeat(4, 1fr);
}

.spaces-grid,
.contact-cta-grid,
.reviews-grid {
    grid-template-columns: repeat(3, 1fr);
}

.reviews-grid {
    grid-template-columns: repeat(3, 1fr);
}

.logos-section,
.featured {
    overflow-x: hidden;
}

.logo-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Generic Hero Heading Reset for Mobile */
@media (max-width: 768px) {

    h1,
    .hero-premium h1,
    .hero-inner h1,
    .business-hero-h1 {
        font-size: 36px !important;
    }

    h2,
    .section-title,
    .bento-main-heading {
        font-size: 28px !important;
    }

    .hero-stats {
        margin-top: 30px !important;
    }

    .pricing-hero,
    .hero-fullscreen,
    .hero-premium {
        padding: 100px 0 50px !important;
    }
}

@media (max-width: 480px) {

    h1,
    .hero-premium h1,
    .hero-inner h1,
    .business-hero-h1 {
        font-size: 32px !important;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-cta-group {
        flex-direction: column !important;
        width: 100%;
    }
}