﻿    /* --- MOBIL ALT MENU (ABSOLUTE FLUSH FIX) --- */
    @media (max-width: 991px) {
        .mobile-bottom-nav {
            position: fixed !important;
            bottom: 0 !important;
            left: 0 !important;
            width: 100% !important;
            display: flex !important;
            height: 55px !important;
            padding: 0 !important;
            margin: 0 !important;
            background: #ffffff !important;
            z-index: 999999 !important;
            transform: none !important;
        }
    }

    .mobile-bottom-nav .nav-item.active,
    .mobile-bottom-nav .nav-item.active i {
        color: #ef4444 !important;
        /* Mavi yerine Kırmızı */
        filter: drop-shadow(0 4px 6px rgba(239, 68, 68, 0.3)) !important;
    }

    /* --- SMART SELECTOR DROPDOWNS (UNIFIED & FIXED) --- */
    .custom-city-selector,
    .custom-smart-selector {
        position: relative;
        flex: 1;
    }

    .city-dropdown-menu,
    .suggestions-dropdown {
        position: absolute !important;
        top: calc(100% + 8px) !important;
        left: 0 !important;
        width: 100% !important;
        background: #ffffff !important;
        border-radius: 12px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
        border: 1px solid #e2e8f0 !important;
        max-height: 220px !important;
        overflow-y: auto !important;
        z-index: 999999 !important;
        display: none !important;
        padding: 6px !important;
        animation: dropdownFadeIn 0.2s ease-out;
    }

    .city-dropdown-menu.active,
    .suggestions-dropdown.active {
        display: block !important;
    }

    @media (max-width: 991px) {

        .city-dropdown-menu,
        .suggestions-dropdown {
            position: absolute !important;
            top: calc(100% + 5px) !important;
            max-height: 200px !important;
        }

        .premium-search-container {
            flex-direction: column !important;
            padding: 12px !important;
            gap: 10px !important;
            z-index: 1001 !important;
        }

        .search-input-group,
        .search-select-group,
        .search-actions,
        .custom-city-selector,
        .custom-smart-selector {
            width: 100% !important;
            flex: none !important;
        }
    }

    .city-option {
        padding: 8px 12px;
        border-radius: 8px;
        cursor: pointer;
        font-size: 13px;
        color: #334155;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .city-option:hover {
        background: #f1f5f9;
        color: #1e293b;
    }

    .city-option i {
        color: #94a3b8;
        font-size: 13px;
        width: 16px;
        text-align: center;
    }

    .city-option.no-results {
        cursor: default;
        color: #94a3b8;
        font-style: italic;
    }

    /* Customize Scrollbar for Dropdown */
    .city-dropdown-menu::-webkit-scrollbar {
        width: 6px;
    }

    .city-dropdown-menu::-webkit-scrollbar-track {
        background: transparent;
    }

    .city-dropdown-menu::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 10px;
    }

    /* --- FLAWLESS HEADER STYLES (IMPORTED) --- */
    .corporate-header {
        background: #ffffff !important;
        position: relative !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
        z-index: 1000;
    }

    /* FIX BOOTSTRAP INTERFERENCE */
    ul.nav-menu {
        padding: 0 !important;
        margin: 0 !important;
    }

    .main-navigation .nav-link {
        padding: 10px 0 !important;
        display: inline-block !important;
        /* Override Bootstrap block */
        position: relative;
    }

    /* NAV HOVER EFFECT (Underline Animation) */
    .main-navigation .nav-link {
        color: #1e293b !important;
        /* Dark Text */
        font-weight: 600;
        text-shadow: none;
    }

    .main-navigation .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0%;
        height: 2px;
        background: #D90429;
        /* Red Underline */
        transition: width 0.3s ease;
    }

    .main-navigation .nav-link:hover::after {
        width: 100%;
    }

    .main-navigation .nav-link:hover {
        color: #D90429 !important;
        opacity: 1;
    }

    /* CTA BUTTON (Outline Red) */
    header .cta-button {
        background: #ffffff !important;
        color: #D90429 !important;
        border: 1px solid #D90429 !important;
        box-shadow: none !important;
        border-radius: 50px !important;
        /* Pill shape */
        padding: 8px 20px !important;
        transition: all 0.3s ease !important;
    }

    header .cta-button i {
        color: #D90429 !important;
        transition: color 0.3s ease !important;
    }

    header .cta-button:hover {
        background: linear-gradient(135deg, #D90429 0%, #a30320 100%) !important;
        color: #ffffff !important;
        border-color: transparent !important;
        box-shadow: 0 4px 12px rgba(217, 4, 41, 0.3) !important;
    }

    header .cta-button:hover i {
        color: #ffffff !important;
    }

    /* HEADER ALIGNMENT (DESKTOP) */
    @media (min-width: 992px) {
        header .header-container {
            max-width: 1400px !important;
            padding: 0 25px !important;
            margin: 0 auto !important;
        }

        .header-logo-img {
            height: 50px !important;
            max-height: none !important;
            width: auto !important;
            filter: none;
            /* Restore Colors */
            opacity: 1;
        }

        header .header-wrapper {
            display: grid !important;
            grid-template-columns: 1fr auto 1fr !important;
            gap: 40px !important;
            height: 90px !important;
        }

        header .logo-section {
            display: flex !important;
            justify-content: flex-start !important;
            padding-left: 0 !important;
        }

        header .main-navigation {
            display: flex !important;
            justify-content: center !important;
            width: 100% !important;
        }

        header .header-right-group {
            display: flex !important;
            justify-content: flex-end !important;
            padding-right: 0 !important;
        }

        /* Hide mobile elements on desktop */
        .mobile-actions,
        .mobile-menu-dropdown,
        .mobile-lang-dropdown {
            display: none !important;
        }
    }

    /* --- LANGUAGE SWITCHER OVERRIDE (Circular Thin - CLEAN) --- */
    .lang-toggle-v2 {
        border: 1px solid #e2e8f0 !important;
        /* Thin Light Border */
        background: transparent !important;
        color: #334155 !important;
        /* Standard Slate Text */
        font-weight: 700 !important;
        border-radius: 50% !important;
        width: 32px !important;
        height: 32px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        transition: all 0.3s ease !important;
        cursor: pointer;
        position: relative;
        z-index: 1;
    }

    .lang-toggle-v2:hover {
        background: rgba(241, 245, 249, 0.5) !important;
        border-color: #cbd5e1 !important;
        color: #0f172a !important;
    }

    .lang-toggle-v2 span {
        color: inherit !important;
        position: relative;
        top: 1px;
        font-size: 13px !important;
    }

    /* MOBILE HEADER RESET */
    @media (max-width: 991px) {
        header .header-wrapper {
            display: flex !important;
            justify-content: space-between !important;
            align-items: center !important;
            height: 50px !important;
            gap: 10px !important;
        }

        .header-logo-img {
            height: 25px !important;
        }
    }

    /* --- END FLAWLESS HEADER STYLES --- */




    /* --- MOBILE MENU STYLES (INLINE FIX) --- */
    .mobile-actions {
        display: none;
        align-items: center;
        gap: 15px;
        margin-left: auto;
    }

    /* --- MOBILE CAPSULE: Default Hidden (Desktop) --- */
    .mobile-header-capsule {
        display: none;
    }

    /* --- MOBILE CAPSULE DESIGN (V2 - ULTRA PREMIUM) --- */
    @media (max-width: 991px) {
        .lang-dropdown-v2 {
            display: none !important;
        }

        .mobile-header-capsule {
            display: flex;
            /* Only show on mobile */
            align-items: center;
            background: rgba(255, 255, 255, 0.95);
            /* Glass-like */
            backdrop-filter: blur(8px);
            border: 1px solid rgba(226, 232, 240, 0.8);
            border-radius: 40px;
            padding: 3px;
            /* Balanced Padding */
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
            margin-left: auto;
            height: 32px;
            margin-right: -5px;
            transition: transform 0.2s ease;
        }

        .mobile-lang-pill {
            background: transparent;
            border: none;
            font-family: 'Outfit', sans-serif;
            /* Lüks font */
            font-weight: 700;
            font-size: 11px;
            color: #334155;
            padding: 0 6px 0 0;
            cursor: pointer;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
        }

        .mobile-lang-pill:active {
            transform: scale(0.95);
            color: #D90429;
        }

        .capsule-divider {
            width: 1px;
            height: 12px;
            background: linear-gradient(to bottom, #cbd5e1 0%, rgba(203, 213, 225, 0.3) 100%);
        }

        .mobile-menu-pill {
            background: linear-gradient(135deg, #D90429 0%, #a30320 100%);
            /* BRAND RED */
            color: #ffffff;
            border: none;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            margin-left: 6px;
            cursor: pointer;
            box-shadow: 0 3px 8px rgba(217, 4, 41, 0.3);
            /* Red Glow */
            transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .mobile-menu-pill:active {
            transform: scale(0.90);
        }

        .mobile-header-cta {
            display: none !important;
        }
    }




    .mobile-menu-btn {
        background: none;
        border: none;
        font-size: 24px;
        color: #1e293b;
        cursor: pointer;
        padding: 8px;
        display: block;
    }

    /* --- MOBILE MENU DROPDOWN (COMPACT PREMIUM) --- */
    .mobile-menu-dropdown {
        position: absolute;
        top: 70px;
        /* Slightly higher */
        right: 15px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(226, 232, 240, 0.8);
        border-radius: 20px;
        /* Slightly smaller radius */
        box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.02);
        width: 190px;
        /* Much smaller width */
        display: none;
        flex-direction: column;
        padding: 5px;
        /* Tighter container padding */
        z-index: 99999;
        transform-origin: top right;
        animation: menuSlideIn 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    @keyframes menuSlideIn {
        from {
            opacity: 0;
            transform: scale(0.92) translateY(-8px);
        }

        to {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
    }

    .mobile-menu-dropdown.active {
        display: flex;
    }

    .mobile-menu-item {
        padding: 10px 12px;
        /* Compact item padding */
        text-decoration: none;
        color: #334155;
        font-weight: 600;
        font-family: 'Outfit', sans-serif;
        font-size: 13.5px;
        /* Smaller font */
        border-radius: 14px;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 2px;
        transition: all 0.2s ease;
        position: relative;
        overflow: hidden;
    }

    .mobile-menu-item i {
        font-size: 15px;
        /* Smaller icons */
        color: #94a3b8;
        transition: color 0.2s;
        width: 20px;
        text-align: center;
    }

    .mobile-menu-item:hover {
        background: #f8fafc;
        color: #0f172a;
        transform: translateX(2px);
    }

    .mobile-menu-item:hover i {
        color: #475569;
    }

    /* --- REKLAM VER BUTTON (HIGHLIGHT) --- */
    .mobile-menu-item.highlight {
        background: #fff1f2;
        color: #D90429;
        margin-top: 4px;
        /* Less spacing */
    }

    .mobile-menu-item.highlight i {
        color: #D90429;
    }

    .mobile-menu-item.highlight:hover {
        background: linear-gradient(135deg, #D90429 0%, #a30320 100%);
        color: white;
        box-shadow: 0 4px 12px rgba(217, 4, 41, 0.25);
        transform: translateY(-1px);
    }

    .mobile-menu-item.highlight:hover i {
        color: white;
    }

    /* ========================================
           BUTON STİLLERİ - TÜM EKRANLAR
           ======================================== */

    /* 4 Buton Container */
    .card-all-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
        margin-top: auto;
    }

    /* Ortak Buton Stili */
    .card-btn {
        padding: 8px 10px;
        border-radius: 6px;
        font-size: 11px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border: none;
        text-decoration: none;
        position: relative;
        z-index: 20;
        pointer-events: auto;
        flex: 1;
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .card-btn:hover {
        transform: translateY(-2px);
    }

    /* Profil Butonu - Kırmızı */
    .btn-profile {
        background: linear-gradient(135deg, #D90429 0%, #a30320 100%);
        color: #ffffff;
    }

    .btn-profile:hover {
        box-shadow: 0 4px 12px rgba(217, 4, 41, 0.4);
    }

    /* Konum Butonu - Mor */
    .btn-location {
        background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
        color: #ffffff;
    }

    .btn-location:hover {
        box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    }

    /* Ara Butonu - Mavi */
    .btn-phone {
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
        color: #ffffff;
    }

    .btn-phone:hover {
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    }

    /* WhatsApp Butonu - Yeşil */
    .btn-wp {
        background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
        color: #ffffff;
    }

    .btn-wp:hover {
        box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
    }

    /* İşletmeyi Keşfet Butonu - Altın/Turuncu */
    .btn-explore {
        background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
        color: #ffffff;
        grid-column: span 2;
    }

    .btn-explore:hover {
        box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    }

    /* ========================================
    DESKTOP BUSINESS CARDS - MODERN GRID
    ======================================== */
    @media (min-width: 769px) {
        .businesses-section {
            padding: 60px 0;
            background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
        }

        .businesses-section .section-title h2 {
            font-size: 32px;
            text-align: center;
            margin-bottom: 40px;
        }

        .business-content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        .business-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            max-height: 640px;
            overflow-y: auto;
            padding-right: 10px;
            scroll-behavior: smooth;
        }

        /* Custom Scrollbar for Desktop */
        .business-list::-webkit-scrollbar {
            width: 8px;
        }

        .business-list::-webkit-scrollbar-track {
            background: #f1f5f9;
            border-radius: 10px;
        }

        .business-list::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #D90429 0%, #a30320 100%);
            border-radius: 10px;
        }

        .business-list::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, #a30320 0%, #7a0218 100%);
        }

        .business-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;
            cursor: pointer;
            transition: all 0.3s ease;
            overflow: hidden;
            height: 100%;
        }

        .business-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .card-img-wrapper,
        .business-image {
            width: 100%;
            height: 120px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .card-img-wrapper img,
        .business-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .business-card:hover .card-img-wrapper img,
        .business-card:hover .business-image img {
            transform: scale(1.08);
        }

        .card-info,
        .business-info {
            padding: 12px 15px;
            display: flex;
            flex-direction: column;
            gap: 5px;
            flex: 1;
            position: relative;
            z-index: 10;
        }

        .card-info h3,
        .business-info h3 {
            font-size: 15px;
            font-weight: 700;
            color: #1e293b;
            margin: 0;
            line-height: 1.2;
        }

        .card-meta,
        .business-location {
            font-size: 11px;
            color: #64748b;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .card-meta::before {
            content: "📍";
            font-size: 10px;
        }

        .card-desc {
            display: none;
        }

        .map-container {
            border-radius: 16px;
            overflow: hidden;
            height: 100%;
            min-height: 500px;
            position: sticky;
            top: 100px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: box-shadow 0.3s ease;
        }

        .map-actions {
            display: none;
            justify-content: center;
            padding: 15px;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            border-top: 1px solid #e2e8f0;
        }

        .btn-get-directions {
            padding: 12px 30px;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
        }

        .btn-get-directions:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
        }

        .btn-get-directions i {
            font-size: 16px;
        }

        .no-results-msg,
        #no-results {
            grid-column: 1 / -1;
            text-align: center;
            padding: 40px;
            color: #64748b;
        }
    }

    @media (max-width: 991px) {
        .stars-pane {
            display: flex !important;
            flex-wrap: wrap !important;
            gap: 10px !important;
            padding: 0 8px !important;
            justify-content: center !important;
        }

        .star-card.gold-featured {
            width: 100% !important;
            flex: 0 0 100% !important;
            max-width: 100% !important;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important;
            border-radius: 18px !important;
            overflow: hidden !important;
            margin-bottom: 5px !important;
        }

        .star-card.silver,
        .star-card.bronze {
            width: 45% !important;
            flex: 0 0 45% !important;
            max-width: 45% !important;
            min-width: 0 !important;
        }

        .star-card.silver {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        }

        .star-card.bronze {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%) !important;
        }

        .star-card {
            border-radius: 16px !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
            overflow: hidden !important;
            transform: none !important;
            position: relative !important;
        }

        .featured-card-inner,
        .star-card>div:not(.card-badge):not(.star-img-wrapper) {
            background: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(10px) !important;
            border-radius: 12px !important;
            margin: 5px !important;
            padding: 10px 8px !important;
        }

        .star-card.gold-featured .star-img-featured {
            width: 120px !important;
            height: 120px !important;
            border-radius: 50% !important;
            margin: 10px auto !important;
            border: 3px solid #fff !important;
            overflow: hidden !important;
        }

        .star-card.silver .star-img-wrapper,
        .star-card.bronze .star-img-wrapper {
            width: 70px !important;
            height: 70px !important;
            border-radius: 50% !important;
            margin: 8px auto !important;
            border: 2px solid #fff !important;
            overflow: hidden !important;
        }

        .star-img-wrapper img,
        .star-img-featured img {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
        }

        .star-card h3 {
            font-weight: 700 !important;
            color: #212529 !important;
            margin-bottom: 3px !important;
        }

        .star-card.gold-featured h3 {
            font-size: 17px !important;
        }

        .star-card.silver h3,
        .star-card.bronze h3 {
            font-size: 12px !important;
        }

        .star-card .cat {
            font-size: 9px !important;
            padding: 3px 6px !important;
            margin: 4px 0 !important;
        }

        .star-score {
            font-size: 10px !important;
            margin: 4px 0 !important;
        }

        .view-stats {
            font-size: 9px !important;
        }


        /* Badges Removed */
        .card-badge {
            display: none !important;
        }

        /* PREMIUM #1 SPOTLIGHT (Royal Night Theme) */
        .star-card.gold-featured {
            background: linear-gradient(135deg, #0f172a 0%, #000000 100%) !important;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
            border: 1px solid rgba(212, 175, 55, 0.3) !important;
            padding-top: 15px !important;
        }

        .star-card.gold-featured .featured-card-inner {
            background: rgba(255, 255, 255, 0.03) !important;
            /* Koyu temaya uygun şeffaflık */
            backdrop-filter: blur(15px) !important;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
        }

        .star-card.gold-featured h3 {
            color: #f8fafc !important;
            font-size: 22px !important;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        /* Ekstra Özellikler Alanı */
        .featured-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            justify-content: center;
            margin: 10px 0;
        }

        .f-tag {
            background: rgba(212, 175, 55, 0.15);
            color: #d4af37;
            font-size: 10px;
            padding: 4px 10px;
            border-radius: 50px;
            border: 1px solid rgba(212, 175, 55, 0.3);
            font-weight: 600;
        }

        /* MOBILE HEADER: PREMIUM SLIM DESIGN */
        .corporate-header {
            background: linear-gradient(180deg, #ffffff 0%, #e2e8f0 100%) !important;
            position: relative !important;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
        }

        /* Enhanced Noise Texture */
        .corporate-header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.05;
            /* Görünürlük artırıldı */
            pointer-events: none;
            z-index: 1;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");

        }

        .hero-footer-slider {
            bottom: 120px !important;
            /* Çizgi hissini bitiren şık yükseklik */
            padding: 0 15px !important;
            display: flex !important;
            align-items: center !important;
            position: relative;
        }

        .header-wrapper {
            height: 55px !important;
            /* Çizgi hissini bitiren şık yükseklik */
            padding: 0 15px !important;
            display: flex !important;
            align-items: center !important;
            position: relative;
            z-index: 2;
        }

        .header-logo-img {
            height: 35px !important;
            /* Logo yüksekliği optimize edildi */
            width: auto !important;
        }

        /* BUSINESSES SECTION: MODERN MOBILE CAROUSEL */
        .businesses-section {
            padding: 40px 0 !important;
            overflow: hidden !important;
        }

        .business-content-grid {
            display: block !important;
            /* Stack elements vertically */
        }

        .business-list {
            display: flex !important;
            flex-direction: row !important;
            /* Side by side */
            overflow-x: auto !important;
            /* Enable scroll */
            scroll-snap-type: x mandatory !important;
            gap: 15px !important;
            padding: 10px 15px 25px 5px !important;
            /* Bottom padding for scrollbar space */
            margin: 0 -15px !important;
            /* Bleed to edges */
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            /* Hide scrollbar for clean look */
        }

        .business-list::-webkit-scrollbar {
            display: none;
        }

        .business-card {
            flex: 0 0 240px !important;
            height: 320px !important;
            position: relative !important;
            border-radius: 20px !important;
            overflow: hidden !important;
            background: #000 !important;
            margin-bottom: 0 !important;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
            border: none !important;
        }

        .card-img-wrapper,
        .business-image {
            position: absolute !important;
            top: 0 !important;
            left: 0 !important;
            width: 100% !important;
            height: 100% !important;
            z-index: 1 !important;
            margin: 0 !important;
            padding: 0 !important;
        }

        .card-img-wrapper img,
        .business-image img {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
            filter: brightness(0.65) !important;
        }

        .card-info,
        .business-info {
            position: absolute !important;
            bottom: 0 !important;
            left: 0 !important;
            width: 100% !important;
            z-index: 2 !important;
            padding: 15px !important;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%) !important;
            display: flex !important;
            flex-direction: column !important;
            justify-content: flex-end !important;
            box-sizing: border-box !important;
        }

        .card-info h3,
        .business-info h3 {
            color: #ffffff !important;
            font-size: 18px !important;
            margin: 0 0 5px 0 !important;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
        }

        .card-meta,
        .business-location {
            color: #e2e8f0 !important;
            font-size: 11px !important;
            margin-bottom: 10px !important;
        }

        .card-desc {
            display: none !important;
        }

        .btn-view-profile {
            width: 100% !important;
            background: rgba(255, 255, 255, 0.15) !important;
            backdrop-filter: blur(10px) !important;
            -webkit-backdrop-filter: blur(10px) !important;
            border: 1px solid rgba(255, 255, 255, 0.25) !important;
            color: #fff !important;
            padding: 9px !important;
            border-radius: 12px !important;
            font-size: 12px !important;
            font-weight: 700 !important;
            margin-bottom: 10px !important;
        }

        .business-actions,
        .card-actions {
            display: grid !important;
            grid-template-columns: 1fr 1fr !important;
            gap: 8px !important;
        }

        .btn-call,
        .btn-whatsapp,
        .phone,
        .whatsapp {
            padding: 8px !important;
            font-size: 11px !important;
            border-radius: 10px !important;
            justify-content: center !important;
        }

        .btn-call,
        .phone {
            background: #3b82f6 !important;
            color: #fff !important;
        }

        .btn-whatsapp,
        .whatsapp {
            background: #22c55e !important;
            color: #fff !important;
        }

        .map-container {
            display: none !important;
        }

        /* Carousel Indicator hint (shadow on right) */
        .business-list::after {
            content: "";
            flex: 0 0 15px;
            /* Extra space at the end */
        }
    }

    /* --- MOBILE CITY STARS FIX (CREATIVE CLASSES) --- */
    @media (max-width: 991px) {

        /* Seamless Wave Transition */
        .hero-wave .shape-fill {
            fill: #f8f9fa !important;
            /* Match section background */
        }

        .stars-section {
            background: #f8f9fa !important;
            /* Ensure solid matching color */
            padding-top: 20px !important;
        }

        /* Container Layout */
        .stars-pane-creative {
            display: flex !important;
            flex-wrap: wrap !important;
            gap: 15px !important;
            justify-content: center !important;
            padding: 0 10px !important;
            opacity: 1 !important;
            /* Prevent flickering invisibility */
            visibility: visible !important;
        }

        /* General Card Style */
        .star-card-creative {
            border-radius: 20px !important;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
            overflow: hidden !important;
            position: relative !important;
            min-height: 280px !important;
            transition: transform 0.2s;
        }

        /* GOLD CARD (Featured - Top) */
        .star-card-creative.gold {
            width: 100% !important;
            flex: 0 0 100% !important;
            max-width: 400px !important;
            order: -1 !important;
            /* Force to top */
            background: linear-gradient(135deg, #0f172a 0%, #000000 100%) !important;
            border: 1px solid rgba(212, 175, 55, 0.3) !important;
            margin-bottom: 10px !important;
        }

        /* SILVER & BRONZE (Side by Side) */
        .star-card-creative.silver,
        .star-card-creative.bronze {
            width: calc(50% - 10px) !important;
            flex: 0 0 calc(50% - 10px) !important;
            max-width: 200px !important;
        }

        /* Image Sizes */
        .star-card-creative.gold .royal-img-bg {
            height: 180px !important;
        }

        .star-card-creative.silver .royal-img-bg,
        .star-card-creative.bronze .royal-img-bg {
            height: 140px !important;
        }

        /* Content Padding */
        .star-card-creative .royal-content {
            padding: 15px !important;
        }

        .star-card-creative h3.royal-title {
            font-size: 18px !important;
            margin: 5px 0 !important;
        }

        .star-card-creative.silver h3.royal-title,
        .star-card-creative.bronze h3.royal-title {
            font-size: 14px !important;
        }
    }


    /* STORIES CSS (Inline to bypass style.css issues) */

    /* STORIES SECTION V7 */
    .stories-section-wrapper {
        background: #ffffff;
        padding: 30px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .stories-app-card {
        background: #ffffff;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        border: 1px solid #f1f1f1;
        padding: 20px 30px;
        position: relative;
    }

    .stories-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
        border-bottom: 1px solid #f9f9f9;
        padding-bottom: 15px;
    }

    .stories-header-title {
        font-size: 20px;
        font-weight: 700;
        color: #222;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .stories-icon-box {
        color: #FF0057;
        font-size: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .stories-scroll-wrapper {
        position: relative;
        display: flex;
        align-items: center;
    }

    .stories-track {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding: 10px 5px;
        scrollbar-width: none;
        width: 100%;
    }

    .stories-track::-webkit-scrollbar {
        display: none;
    }

    .story-nav-btn {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #fff;
        border: 1px solid #eee;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #333;
        font-size: 14px;
        flex-shrink: 0;
        z-index: 10;
        transition: all 0.2s;
    }

    .story-nav-btn:hover {
        background: #FF0057;
        color: #fff;
        border-color: #FF0057;
    }

    .story-nav-btn.hidden {
        opacity: 0;
        pointer-events: none;
    }

    .prev-btn {
        margin-right: 10px;
    }

    .next-btn {
        margin-left: 10px;
    }

    .story-node {
        display: flex;
        flex-direction: column;
        align-items: center;
        cursor: pointer;
        width: 80px;
        flex-shrink: 0;
        transition: transform 0.2s;
    }

    .story-node:hover {
        transform: translateY(-3px);
    }

    @keyframes storyPulse {
        0% {
            box-shadow: 0 0 0 0 rgba(255, 0, 87, 0.4);
        }

        70% {
            box-shadow: 0 0 0 6px rgba(255, 0, 87, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(255, 0, 87, 0);
        }
    }

    .story-avatar-wrap {
        width: 78px;
        height: 78px;
        border-radius: 50%;
        padding: 2px;
        background: linear-gradient(45deg, #f09433, #bc1888);
        position: relative;
        animation: storyPulse 2s infinite;
        transition: all 0.3s;
        overflow: hidden;
        /* FIX: Added overflow hidden */
    }

    .story-avatar-wrap.seen {
        background: #d1d5db;
        animation: none;
    }

    .story-avatar-wrap.seen .story-play-icon {
        display: none;
    }

    .story-avatar-wrap::after {
        content: '';
        position: absolute;
        top: 2px;
        left: 2px;
        right: 2px;
        bottom: 2px;
        background: #fff;
        border-radius: 50%;
        z-index: 1;
    }

    .story-avatar-img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
        position: relative;
        /* CRITICAL: Must be relative to support z-index */
        z-index: 2;
        /* Must be higher than ::after's z-index: 1 */
        border: 2px solid #fff;
        background: transparent !important;
        /* Remove background white */
    }

    .story-play-icon {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 24px;
        height: 24px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 5;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        font-size: 10px;
        color: #FF0057;
        border: 2px solid #fff;
    }

    .story-label {
        margin-top: 8px;
        font-size: 12px;
        font-weight: 600;
        color: #444;
        text-align: center;
        width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .story-node.seen-node .story-label {
        color: #888;
        font-weight: 400;
    }

    .story-viewer-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.95);
        z-index: 10000;
        display: none;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

    .story-viewer-card {
        width: 100%;
        max-width: 400px;
        height: 85vh;
        background: #000;
        border-radius: 12px;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        cursor: default;
    }

    .story-progress-container {
        position: absolute;
        top: 12px;
        left: 12px;
        right: 12px;
        display: flex;
        gap: 4px;
        z-index: 20;
    }

    .progress-bar-segment {
        height: 2px;
        background: rgba(255, 255, 255, 0.3);
        flex: 1;
        border-radius: 2px;
    }

    .progress-fill {
        width: 0%;
        height: 100%;
        background: #fff;
    }

    .viewer-header {
        position: absolute;
        top: 25px;
        left: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
        z-index: 20;
    }

    .viewer-avatar {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 1px solid #fff;
    }

    .viewer-name {
        color: #fff;
        font-weight: 600;
        font-size: 14px;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    }

    .viewer-close {
        position: absolute;
        top: 20px;
        right: 15px;
        color: white;
        font-size: 24px;
        cursor: pointer;
        z-index: 30;
    }

    .story-content-display {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .story-text-overlay {
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(5px);
        padding: 20px;
        border-radius: 12px;
        text-align: center;
        width: 80%;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .content-title {
        color: #fff;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .content-desc {
        color: #eee;
        font-size: 16px;
    }

    .cta-btn-story {
        margin-top: 20px;
        background: #fff;
        color: #000;
        padding: 10px 25px;
        border-radius: 20px;
        text-decoration: none;
        font-weight: 600;
        display: inline-block;
    }

    /* ===== MOBILE OPTIMIZATIONS (Instagram-style) ===== */
    @media screen and (max-width: 991px) {

        /* Remove boxed card design - make it full-width */
        .stories-section-wrapper {
            padding: 20px 0 15px;
            border-bottom: 1px solid #efefef;
            background: #fafafa;
        }

        .stories-app-card {
            background: transparent;
            box-shadow: none;
            border: none;
            border-radius: 0;
            padding: 0;
        }

        /* Tighter header */
        .stories-header {
            padding: 0 15px 12px;
            margin-bottom: 12px;
            border-bottom: 1px solid #efefef;
        }

        .stories-header-title {
            font-size: 16px;
            font-weight: 600;
            gap: 8px;
        }

        .stories-icon-box {
            font-size: 18px;
        }

        /* Hide desktop navigation arrows on mobile */
        .story-nav-btn {
            display: none !important;
        }

        /* Adjust track for touch scrolling */
        .stories-scroll-wrapper {
            padding: 0;
        }

        .stories-track {
            display: flex !important;
            flex-direction: row !important;
            flex-wrap: nowrap !important;
            padding: 10px 15px !important;
            gap: 16px !important;
            overflow-x: auto !important;
            -webkit-overflow-scrolling: touch !important;
        }

        /* Slightly smaller story nodes for mobile */
        .story-node {
            width: 72px;
        }

        .story-avatar-wrap {
            width: 72px;
            height: 72px;
        }

        .story-avatar-img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            padding: 0;
            /* Remove padding to fill the container */
        }

        .story-play-icon {
            width: 20px;
            height: 20px;
            font-size: 8px;
        }

        .story-label {
            font-size: 11px;
            margin-top: 6px;
        }

        /* FULL-SCREEN STORY VIEWER (Instagram-style) */
        .story-viewer-overlay {
            background: rgba(0, 0, 0, 1);
            padding: 0;
        }

        .story-viewer-card {
            max-width: 100%;
            width: 100%;
            height: 100vh;
            border-radius: 0;
        }

        .story-progress-container {
            top: 20px;
            left: 10px;
            right: 10px;
        }

        .viewer-header {
            top: 35px;
            left: 12px;
        }

        .viewer-close {
            top: 30px;
            right: 12px;
            font-size: 28px;
        }

        .story-text-overlay {
            width: 90%;
            padding: 16px;
        }

        .content-title {
            font-size: 20px;
        }

        .content-desc {
            font-size: 14px;
        }

        .cta-btn-story {
            padding: 8px 20px;
            font-size: 14px;
        }

        /* Viewer Nav Buttons (Desktop - Ekranın kenarlarında - BELİRGİN STİL) */
        .viewer-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 56px;
            height: 56px;
            background: #ffffff;
            /* Tam Beyaz */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #222;
            /* Koyu Gri/Siyah İkon */
            font-size: 24px;
            cursor: pointer;
            z-index: 20000;
            transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
            /* Güçlü Gölge */
            opacity: 0.9;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .viewer-nav-btn:hover {
            background: #ffffff;
            color: #000;
            opacity: 1;
            transform: translateY(-50%) scale(1.15);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
        }

        /* Masaüstünde kartın dışında, ekran kenarlarında */
        .viewer-prev {
            left: 40px;
        }

        .viewer-next {
            right: 40px;
        }

        /* Mobilde Okları Gizliyoruz (Swipe Kullanılıyor) */
        @media (max-width: 991px) {
            .viewer-nav-btn {
                display: none !important;
                /* !important ile inline stili eziyoruz */
            }
        }
    }

    /* --- NEW PREMIUM STARS DESIGN --- */
    .star-explore-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        padding: 12px 15px;
        /* Daha dolgun tık alanı */
        border-radius: 12px;
        font-size: 13px;
        font-weight: 700;
        text-decoration: none !important;
        transition: all 0.3s ease;
        margin-top: 15px;
        position: relative;
        z-index: 20;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .gold-btn {
        background: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
        color: #000 !important;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.4);
    }

    .silver-btn {
        background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 100%);
        color: #334155 !important;
        box-shadow: 0 4px 15px rgba(148, 163, 184, 0.4);
        border: 1px solid #fff;
    }

    .bronze-btn {
        background: linear-gradient(135deg, #ffedd5 0%, #fdba74 100%);
        color: #7c2d12 !important;
        box-shadow: 0 4px 15px rgba(251, 146, 60, 0.4);
        border: 1px solid #fff;
    }

    .star-explore-btn:hover {
        transform: translateY(-3px);
        filter: brightness(1.1);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    /* Yıldız Puanlama */
    .star-rating {
        color: #FFD700;
        font-size: 14px;
        margin-bottom: 5px;
    }

    .star-score {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 3px;
        color: #fbbf24;
        font-size: 12px;
        margin: 5px 0 10px;
    }

    /* Glassmorphism for Featured Card Inner */
    .featured-card-inner {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 20px;
    }

    /* Mobilde Kartların Daha İyi Görünmesi İçin */
    @media (max-width: 991px) {
        .star-explore-btn {
            padding: 10px;
            font-size: 12px;
        }

        .stars-pane {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .star-card {
            width: 100% !important;
        }
    }

    /* --- "ROYAL PRESTIGE SUITE - ELITE EDITION" --- */
    .stars-pane-creative {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        /* Masaüstünde kesinlikle 3 sütun */
        gap: 30px;
        justify-content: center;
        padding: 90px 20px 70px;
        max-width: 1250px;
        /* İdeal genişlik */
        margin: 0 auto;
    }

    .star-card-creative {
        position: relative;
        width: 100%;
        /* Grid hücresini doldurur */
        height: 540px;
        z-index: 1;
        /* cursor: pointer; -- KALDIRILDI: Tıklama çakışmasını önlemek için */
        border-radius: 16px;
        /* Daha keskin köşeler */
        background: #fff;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
        transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        overflow: hidden;
        border: 1px solid rgba(0, 0, 0, 0.04);
    }

    .star-card-creative:hover {
        transform: translateY(-20px);
        box-shadow: 0 50px 100px rgba(0, 0, 0, 0.2);
    }

    /* --- 1. Arka Plan & Efektler --- */
    .royal-img-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        pointer-events: none;
        /* Tıklamayı engelleme */
    }

    .royal-img-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1.5s ease;
    }

    .star-card-creative:hover .royal-img-bg img {
        transform: scale(1.1);
    }

    /* Sinematik Gölge (Vignette) */
    .royal-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 40%, rgba(255, 255, 255, 0.95) 75%, #fff 100%);
        z-index: 1;
        opacity: 1;
        pointer-events: none;
    }

    /* --- 2. "ELITE" Köşe Şeridi (Ribbon) --- */
    .royal-ribbon {
        position: absolute;
        top: 32px;
        right: -35px;
        background: var(--accent-color);
        color: #fff;
        transform: rotate(45deg);
        padding: 8px 40px;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 1px;
        z-index: 20;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        text-transform: uppercase;
        pointer-events: none;
    }

    .star-card-creative.gold .royal-ribbon {
        color: #000;
    }

    /* Gold'da siyah yazı */

    /* --- 3. Altın Tozu Efekti (Sadece Gold Kart) --- */
    .gold-dust {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(circle, #FFD700 1px, transparent 1px);
        background-size: 20px 20px;
        z-index: 2;
        opacity: 0;
        animation: floatDust 10s linear infinite;
        pointer-events: none;
    }

    .star-card-creative.gold:hover .gold-dust {
        opacity: 0.4;
    }

    @keyframes floatDust {
        0% {
            transform: translateY(0);
        }

        100% {
            transform: translateY(-50px);
        }
    }

    /* --- 4. İçerik Tasarımı (Dergi Kapağı) --- */
    .royal-content {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 40px 20px;
        /* Yan padding'i biraz kıstım */
        z-index: 10;
        text-align: center;
        /* pointer-events: none; -- KALDIRILDI: İçerik tıklanabilir olmalı */
    }

    .royal-icon-box {
        width: 50px;
        height: 50px;
        margin: 0 auto 15px;
        /* Biraz küçüldü */
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: var(--accent-color);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        position: relative;
        border: 2px solid rgba(0, 0, 0, 0.05);
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .star-card-creative:hover .royal-icon-box {
        transform: scale(1.1) translateY(-10px);
    }

    .royal-title {
        font-family: 'Playfair Display', 'Times New Roman', serif;
        /* Serifli Font! */
        font-size: 28px;
        /* Font boyutu sığması için ayarlandı */
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 5px;
        line-height: 1.1;
    }

    .royal-subtitle {
        font-size: 12px;
        font-weight: 600;
        color: #64748b;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 20px;
        display: block;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
        /* Mobilde okunurluk için */
    }

    /* İnce Ayırıcı Çizgi */
    .royal-divider {
        width: 40px;
        height: 1px;
        background: var(--accent-color);
        margin: 0 auto 20px;
        opacity: 0.5;
    }

    .royal-tags {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-bottom: 25px;
        flex-wrap: wrap;
    }

    .r-tag {
        font-size: 11px;
        font-weight: 600;
        color: #475569;
        background: #f1f5f9;
        padding: 5px 10px;
        border-radius: 4px;
        border: 1px solid #e2e8f0;
    }

    /* Buton */
    .royal-btn {
        display: block;
        width: 100%;
        padding: 14px;
        background: #0f172a;
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1px;
        text-decoration: none !important;
        border-radius: 8px;
        text-transform: uppercase;
        transition: all 0.3s;
        opacity: 0;
        transform: translateY(20px);
        cursor: pointer;
        /* Kesinlikle tıklanabilir */
        pointer-events: auto;
        /* Tıklamayı yakala */
        position: relative;
        z-index: 50;
        /* En üstte olsun */
    }

    .star-card-creative:hover .royal-btn {
        opacity: 1;
        transform: translateY(0);
    }

    .star-card-creative.gold .royal-btn {
        background: #FFD700;
        color: #000;
    }

    .star-card-creative.gold .royal-btn:hover {
        background: #e6c200;
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    }

    .star-card-creative.silver .royal-btn {
        background: #3b82f6;
    }

    .star-card-creative.bronze .royal-btn {
        background: #ea580c;
    }

    .star-card-creative.gold {
        --accent-color: #FFD700;
    }

    .star-card-creative.silver {
        --accent-color: #3b82f6;
    }

    .star-card-creative.bronze {
        --accent-color: #ea580c;
    }

    /* --- MOBİL İYİLEŞTİRMELERİ (Piramit Düzeni: 1 Üstte, 2 Altta) --- */
    @media (max-width: 768px) {
        .stars-pane-creative {
            display: grid;
            grid-template-columns: 1fr 1fr;
            /* Net iki sütun */
            gap: 12px;
            padding: 20px 15px;
            width: 100%;
            /* Konteyner genişliğini garantiye al */
            box-sizing: border-box;
            /* Padding dahil hesaplama */
        }

        /* 1. Kart (Gold): En üstte, tüm genişliği kaplar */
        .star-card-creative:nth-child(1) {
            grid-column: 1 / -1;
            /* Tam genişlik */
            height: 480px;
            margin-bottom: 10px;
            width: 100% !important;
        }

        /* 2. ve 3. Kartlar (Silver & Bronze): Yan yana */
        .star-card-creative {
            width: 100% !important;
            /* Grid hücresini doldur */
            height: 380px;
            min-width: 0;
            /* Grid içinde içeriğin taşmasını önle */
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            margin-bottom: 0;
        }

        /* --- Alt Kartlar İçin Ölçeklendirme --- */
        .star-card-creative:not(:nth-child(1)) .royal-content {
            padding: 15px 5px;
            /* Yan boşlukları minimuma indir */
        }

        .star-card-creative:not(:nth-child(1)) .royal-title {
            font-size: 16px;
            /* Başlığı daha da küçült (taşmasın) */
            white-space: nowrap;
            /* Tek satırda tut */
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .star-card-creative:not(:nth-child(1)) .royal-subtitle {
            font-size: 9px;
            margin-bottom: 5px;
        }

        .star-card-creative:not(:nth-child(1)) .royal-icon-box {
            width: 32px;
            height: 32px;
            font-size: 14px;
            margin-bottom: 5px;
        }

        /* Alt kartlarda gereksiz detayları gizle */
        .star-card-creative:not(:nth-child(1)) .royal-tags,
        .star-card-creative:not(:nth-child(1)) .royal-divider {
            display: none;
        }

        .star-card-creative:not(:nth-child(1)) .royal-btn {
            padding: 8px 0;
            font-size: 9px;
            margin-top: 5px;
        }

        /* --- Ortak Ayarlar --- */
        .royal-btn {
            opacity: 1;
            transform: translateY(0);
            margin-top: 10px;
            position: relative;
        }

        .star-card-creative:nth-child(1) .royal-tags {
            display: flex;
        }

        .royal-content {
            background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 70%, rgba(255, 255, 255, 0) 100%);
        }

        .gold-dust {
            display: none;
        }

        .royal-ribbon {
            transform: scale(0.7) rotate(45deg);
            right: -45px;
            top: 15px;
        }
    }

    /* Mobilde hep açık */
    .star-info-panel {
        transform: none !important;
        padding: 20px;
    }

    .star-base {
        transform: none !important;
    }


    /* EXTRA SMALL SCREENS (iPhone SE, etc.) */
    @media (max-width: 480px) {
        .stars-pane-creative {
            grid-template-columns: 1fr !important;
        }

        .star-card-creative {
            height: auto !important;
            min-height: 400px;
        }

        .star-card-creative:nth-child(1) {
            height: 450px;
        }

        /* Restore visibility for full width cards */
        .star-card-creative:not(:nth-child(1)) .royal-tags,
        .star-card-creative:not(:nth-child(1)) .royal-divider {
            display: flex !important;
        }

        .star-card-creative:not(:nth-child(1)) .royal-divider {
            display: block !important;
            width: 30px;
            margin: 0 auto 15px;
        }

        .star-card-creative:not(:nth-child(1)) .royal-title {
            font-size: 20px !important;
            white-space: normal !important;
        }
    }

    /* --- STORY TRANSITION ANIMATIONS (Instagram Style 3D) --- */
    .story-viewer-card {
        transition: transform 0.3s ease-out;
        /* Default transition */
        backface-visibility: hidden;
        /* Arkasını gizle */
        transform-style: preserve-3d;
    }

    /* Giden (Sola Doğru) */
    .story-slide-out-left {
        animation: slideOutLeft 0.35s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }

    .story-slide-in-right {
        animation: slideInRight 0.35s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }

    /* Giden (Sağa Doğru) -> Geri basınca */
    .story-slide-out-right {
        animation: slideOutRight 0.35s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }

    .story-slide-in-left {
        animation: slideInLeft 0.35s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }

    @keyframes slideOutLeft {
        0% {
            transform: perspective(1000px) rotateY(0deg);
            opacity: 1;
        }

        100% {
            transform: perspective(1000px) rotateY(-30deg) translateX(-50%) scale(0.9);
            opacity: 0;
        }
    }

    @keyframes slideInRight {
        0% {
            transform: perspective(1000px) rotateY(30deg) translateX(50%) scale(0.9);
            opacity: 0;
        }

        100% {
            transform: perspective(1000px) rotateY(0deg) translateX(0) scale(1);
            opacity: 1;
        }
    }

    @keyframes slideOutRight {
        0% {
            transform: perspective(1000px) rotateY(0deg);
            opacity: 1;
        }

        100% {
            transform: perspective(1000px) rotateY(0deg) translateX(0) scale(1);
            opacity: 1;
        }
    }

    /* Aşağı Kaydırarak Kapatma Efekti */
    .story-slide-out-down {
        animation: slideOutDown 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards !important;
    }

    @keyframes slideOutDown {
        0% {
            transform: translateY(0) scale(1);
            opacity: 1;
        }

        100% {
            transform: translateY(100vh) scale(0.8);
            opacity: 0;
        }
    }


    @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800&display=swap');

    /* --- HERO V2 (TRAVEL THEME - INLINE FIX) --- */
    .hero-section {
        display: none !important;
    }

    .hero-travel-theme {
        position: relative;
        min-height: 850px;
        background: url('https://images.unsplash.com/photo-1540541338287-41700207dee6?q=80&w=2000&auto=format&fit=crop') no-repeat center center/cover !important;
        background-attachment: fixed !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 150px;
        text-align: center;
        overflow: hidden;
        color: #fff;
    }

    .hero-travel-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg,
                rgba(15, 23, 42, 0.4) 0%,
                rgba(59, 130, 246, 0.1) 40%,
                rgba(255, 255, 255, 0.9) 85%,
                rgba(255, 255, 255, 1) 100%);
        z-index: 1;
    }

    .hero-travel-content {
        position: relative;
        z-index: 10;
        width: 100%;
        max-width: 1200px;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-travel-title {
        font-size: 56px;
        font-weight: 800;
        color: #fff;
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        margin-bottom: 10px;
        line-height: 1.1;
        letter-spacing: -1px;
        font-family: 'Outfit', sans-serif;
    }

    .hero-travel-subtitle {
        font-size: 24px;
        font-weight: 600;
        color: #f8fafc;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
        margin-bottom: 50px;
        letter-spacing: 0.5px;
        opacity: 0.95;
        font-family: 'Outfit', sans-serif;
    }

    /* Premium Search Bar V2 */
    .hero-travel-search-box {
        width: 100%;
        max-width: 850px;
        margin-bottom: 50px;
        position: relative;
        z-index: 20;
    }

    .hero-travel-search-box .premium-search-container {
        background: rgba(255, 255, 255, 0.98);
        padding: 8px 8px 8px 15px;
        border-radius: 100px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.5);
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .hero-travel-search-box .search-input-group,
    .hero-travel-search-box .search-select-group {
        background: transparent;
        border: none;
        border-right: 1px solid #e2e8f0;
        border-radius: 0;
        padding: 5px;
        box-shadow: none !important;
        flex: 1;
        display: flex;
        align-items: center;
    }

    .hero-travel-search-box .search-input-group:last-of-type {
        border-right: none;
    }

    .hero-travel-search-box .search-input,
    .hero-travel-search-box .search-select {
        font-size: 16px;
        color: #334155;
        font-weight: 500;
        border: none;
        outline: none;
        width: 100%;
        background: transparent;
    }

    .hero-travel-search-box .search-btn-primary {
        background: linear-gradient(135deg, #D90429 0%, #a30320 100%);
        padding: 14px 45px;
        font-size: 18px;
        color: white;
        border: none;
        border-radius: 50px;
        box-shadow: 0 8px 20px rgba(217, 4, 41, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .hero-travel-search-box .search-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 25px rgba(217, 4, 41, 0.4);
    }

    /* Polaroid Cards */
    .travel-cards-container {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        gap: 25px;
        margin-top: 10px;
        margin-bottom: -60px;
        position: relative;
        z-index: 15;
        padding-bottom: 80px;
    }

    .polaroid-card {
        background: #fff;
        padding: 12px 12px 50px 12px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
        /* Force shadow */
        border-radius: 4px;
        width: 260px;
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        cursor: pointer;
        position: relative;
    }

    .polaroid-card:nth-child(1) {
        transform: rotate(-6deg) translateY(30px);
        z-index: 2;
    }

    .polaroid-card:nth-child(2) {
        transform: rotate(0deg) scale(1.1);
        z-index: 3;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
    }

    .polaroid-card:nth-child(3) {
        transform: rotate(6deg) translateY(30px);
        z-index: 2;
    }

    .polaroid-card:hover {
        transform: rotate(0) scale(1.15) translateY(-20px);
        z-index: 20;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35) !important;
    }

    .polaroid-img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 2px;
        filter: brightness(0.95);
    }

    .polaroid-caption {
        position: absolute;
        bottom: 10px;
        left: 0;
        width: 100%;
        text-align: center;
        font-family: 'Outfit', sans-serif;
        font-size: 28px;
        color: #1e293b;
        font-weight: 700;
    }

    /* Features */
    .travel-features-bar {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-top: 0;
        position: relative;
        z-index: 20;
        width: 100%;
        padding: 0 20px 60px;
    }

    .feature-card-pill {
        background: #fff;
        border-radius: 24px;
        padding: 20px 30px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        min-width: 220px;
        text-align: center;
        transition: transform 0.3s ease;
    }

    .f-icon-circle {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        color: #fff;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    }

    .icon-store {
        background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    }

    .icon-offer {
        background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    }

    .icon-discover {
        background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    }

    .f-title {
        font-weight: 800;
        color: #1e293b;
        font-size: 18px;
        font-family: 'Outfit', sans-serif;
    }

    @media (max-width: 900px) {
        .hero-travel-theme {
            padding-top: 100px;
            min-height: auto;
            background-attachment: scroll !important;
        }

        .hero-travel-title {
            font-size: 36px;
        }

        .travel-cards-container {
            flex-direction: column;
        }

        .travel-features-bar {
            flex-direction: column;
        }

        .polaroid-card {
            transform: none !important;
            width: 100%;
            max-width: 300px;
        }

        .hero-travel-search-box .premium-search-container {
            flex-direction: column;
            border-radius: 20px;
        }
    }


    /* Animation overrides - 7 Card Carousel */
    .travel-cards-container {
        height: 480px;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        position: relative;
        padding-bottom: 0;
        margin-bottom: -60px;
        perspective: 1200px;
    }

    .polaroid-card {
        position: absolute;
        left: 50%;
        bottom: 60px;
        margin-left: -130px;
        transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
        opacity: 0;
        transform-origin: center bottom;
        width: 260px;
    }

    .polaroid-card img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    /* Reset nth-child from previous versions */
    .polaroid-card:nth-child(n) {
        transform: none;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
    }

    /* Active (Center) */
    .polaroid-card.active {
        opacity: 1;
        z-index: 20;
        transform: translateX(0) scale(1.1);
        box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4) !important;
        filter: brightness(1.05);
    }

    /* Next 1 */
    .polaroid-card.next-1 {
        opacity: 0.9;
        z-index: 10;
        transform: translateX(200px) scale(0.85) rotate(5deg);
        filter: brightness(0.9);
    }

    /* Prev 1 */
    .polaroid-card.prev-1 {
        opacity: 0.9;
        z-index: 10;
        transform: translateX(-200px) scale(0.85) rotate(-5deg);
        filter: brightness(0.9);
    }

    /* Next 2 */
    .polaroid-card.next-2 {
        opacity: 0.6;
        z-index: 5;
        transform: translateX(350px) scale(0.7) rotate(10deg);
        filter: blur(1px) brightness(0.8);
    }

    /* Prev 2 */
    .polaroid-card.prev-2 {
        opacity: 0.6;
        z-index: 5;
        transform: translateX(-350px) scale(0.7) rotate(-10deg);
        filter: blur(1px) brightness(0.8);
    }

    .polaroid-card.hidden {
        display: none;
        opacity: 0;
    }

    @media(max-width:900px) {
        .travel-cards-container {
            height: auto;
            display: flex;
            position: relative;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 20px;
            margin-top: 20px;
            perspective: none;
        }

        .polaroid-card {
            position: relative;
            left: auto;
            bottom: auto;
            margin-left: 0;
            transform: none !important;
            opacity: 1 !important;
            visibility: visible !important;
            filter: none !important;
            margin-bottom: 20px;
            display: block !important;
        }
    }


    /* Fantasy Hero Theme - User Requested (Final Override) */
    .hero-travel-theme {
        background: url('images/hero_bg_fantasy.png') no-repeat center bottom / cover !important;
        min-height: 850px;
    }

    .hero-travel-overlay {
        background: linear-gradient(180deg,
                rgba(15, 23, 42, 0.3) 0%,
                rgba(59, 130, 246, 0.05) 40%,
                rgba(255, 255, 255, 0) 80%,
                rgba(255, 255, 255, 0.9) 95%,
                rgba(255, 255, 255, 1) 100%) !important;
    }

    .travel-cards-container {
        height: 520px;
        margin-bottom: -40px;
        perspective: 1200px;
    }

    .polaroid-card {
        width: 280px;
        height: 380px;
        background: transparent !important;
        padding: 0 !important;
        box-shadow: none !important;
        border-radius: 20px;
        bottom: 60px;
    }

    .polaroid-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border: 2px solid rgba(255, 255, 255, 0.8);
    }

    .polaroid-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 20px 10px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
        color: #fff;
        font-size: 32px;
        font-weight: 800;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
        text-align: center;
        border-radius: 0 0 20px 20px;
    }

    .polaroid-card.active {
        transform: translateX(0) scale(1.15) !important;
        filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6)) !important;
        z-index: 50 !important;
    }

    .polaroid-card.next-1 {
        transform: translateX(240px) translateY(20px) scale(0.9) rotate(5deg) !important;
        z-index: 40 !important;
        opacity: 1 !important;
        filter: none !important;
    }

    .polaroid-card.prev-1 {
        transform: translateX(-240px) translateY(20px) scale(0.9) rotate(-5deg) !important;
        z-index: 40 !important;
        opacity: 1 !important;
        filter: none !important;
    }

    .polaroid-card.next-2 {
        transform: translateX(440px) translateY(60px) scale(0.75) rotate(10deg) !important;
        z-index: 30 !important;
        opacity: 0.9 !important;
    }

    .polaroid-card.prev-2 {
        transform: translateX(-440px) translateY(60px) scale(0.75) rotate(-10deg) !important;
        z-index: 30 !important;
        opacity: 0.9 !important;
    }

    .feature-card-pill {
        background: rgba(255, 255, 255, 0.85) !important;
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.9) !important;
        border-radius: 20px !important;
        padding: 20px 40px !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
        min-width: 250px;
    }

    .f-icon-circle {
        width: 70px !important;
        height: 70px !important;
        font-size: 32px !important;
    }

    .f-title {
        font-size: 20px !important;
        margin-top: 5px;
    }

    @media(max-width:900px) {
        .travel-cards-container {
            height: auto;
        }

        .polaroid-card {
            width: 100%;
            height: 300px;
            transform: none !important;
            display: block !important;
            margin-bottom: 20px;
            bottom: 0;
        }
    }

    /* VIBRANT MODERN HERO THEME */
    .hero-vibrant-modern {
        position: relative;
        min-height: 550px;
        /* Reduced further from 650px */
        height: 100vh;
        background: url('images/hero_galata_tower.jpg') no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
        image-rendering: -webkit-optimize-contrast;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        /* Changed from center to lift content */
        padding-top: 80px;
        /* Force content up */
        align-items: center;
        color: #fff;
        overflow: hidden;
        padding-bottom: 40px;
    }

    /* SMOOTH GRADIENT TRANSITION FROM HEADER */
    .hero-vibrant-modern::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 150px;
        /* Fade distance */
        background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
        z-index: 5;
        pointer-events: none;
    }

    .hero-vibrant-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* Warm, sunny overlay instead of dark */
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.6));
        z-index: 1;
    }



    .modern-hero-content {
        position: relative;
        z-index: 10;
        text-align: center;
        max-width: 700px;
        /* Reduced from 800px */
        padding: 20px;
        animation: fadeInDown 1s ease;
        margin-top: 0;
        /* Centered naturally */
    }

    .modern-hero-title {
        font-family: 'Outfit', sans-serif;
        font-size: clamp(24px, 4vw, 32px);
        /* Even more conservative scaling */
        font-weight: 700;
        margin-bottom: 12px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        letter-spacing: -0.5px;
        line-height: 1.1;
    }

    .modern-hero-subtitle {
        font-family: 'Outfit', sans-serif;
        font-size: 20px;
        font-weight: 400;
        margin-bottom: 40px;
        opacity: 0.95;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    }

    /* Modern Search Bar (Reference Image Style) */
    .modern-search-box {
        background: #ffffff;
        border-radius: 100px;
        padding: 5px;
        /* Reduced from 6px */
        display: flex;
        align-items: center;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
        max-width: 650px;
        /* Reduced from 720px */
        width: 100%;
        margin: 0 auto;
        position: relative;
        transition: transform 0.3s;
    }

    .modern-search-box:hover {
        transform: translateY(-2px);
    }

    .ms-group {
        flex: 1;
        display: flex;
        align-items: center;
        padding: 0 20px;
        position: relative;
    }

    .ms-group i {
        color: #64748b;
        font-size: 18px;
        margin-right: 12px;
    }

    .ms-input {
        width: 100%;
        border: none;
        outline: none;
        font-family: 'Outfit', sans-serif;
        font-size: 16px;
        color: #1e293b;
        padding: 12px 0;
        background: transparent;
    }

    .ms-input::placeholder {
        color: #94a3b8;
    }

    .ms-divider {
        width: 1px;
        height: 30px;
        background: #e2e8f0;
    }

    .ms-btn {
        background: #D90429;
        color: white;
        border: none;
        padding: 14px 40px;
        border-radius: 50px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        box-shadow: 0 5px 15px rgba(217, 4, 41, 0.4);
        font-family: 'Outfit', sans-serif;
    }

    .ms-btn:hover {
        background: #ef233c;
        transform: translateY(-1px);
        box-shadow: 0 8px 20px rgba(217, 4, 41, 0.5);
    }

    /* Hero Footer Slider (Reference Image Style) */
    .hero-footer-slider {
        position: absolute;
        bottom: 0;
        /* Aligned to bottom */
        left: 0;
        width: 100%;
        z-index: 10;
        padding: 20px 0 30px;
        /* Extra bottom padding */
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    }

    .slider-header-text {
        text-align: center;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 15px;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 600;
    }

    .venue-cards-track {
        display: flex;
        gap: 20px;
        padding: 0 5%;
        animation: scroll-track 60s linear infinite;
        width: max-content;
    }

    .venue-cards-track:hover {
        animation-play-state: paused;
    }

    @keyframes scroll-track {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .venue-card-hero {
        min-width: 260px;
        /* Wider like reference */
        height: 180px;
        /* Shorter landscape aspect */
        border-radius: 16px;
        /* More rounded */
        position: relative;
        overflow: hidden;
        cursor: pointer;
        transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        border: 1px solid rgba(255, 255, 255, 0.25);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .venue-card-hero:hover {
        transform: scale(1.02);
        border-color: rgba(255, 255, 255, 0.6);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    }

    .vch-bg {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease;
    }

    .venue-card-hero:hover .vch-bg {
        transform: scale(1.1);
    }

    .vch-content {
        position: absolute;
        bottom: 10px;
        left: 10px;
        right: 10px;
        width: auto;
        padding: 10px 12px;
        /* FLOATING GLASS CAPSULE */
        background: rgba(15, 23, 42, 0.6);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        color: #fff;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        transition: all 0.3s;
    }

    .venue-card-hero:hover .vch-content {
        background: rgba(15, 23, 42, 0.8);
        transform: translateY(-2px);
    }

    .vch-title {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 4px;
        text-shadow: none;
        font-family: 'Outfit', sans-serif;
        letter-spacing: 0.3px;
    }

    .vch-meta {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.85);
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 500;
    }

    /* Floating Star Badge */
    .vch-star-badge {
        position: absolute;
        top: 10px;
        right: 10px;
        background: rgba(255, 255, 255, 0.9);
        color: #b45309;
        padding: 4px 10px;
        border-radius: 20px;
        font-weight: 700;
        font-size: 13px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        z-index: 5;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media(max-width: 768px) {
        .modern-hero-title {
            font-size: 22px;
            line-height: 1.1;
            padding: 0 10px;
        }

        .modern-search-box {
            flex-direction: column;
            padding: 12px;
            border-radius: 20px;
        }

        .ms-divider {
            display: none;
        }

        .ms-group {
            width: 100%;
            padding: 8px 0;
            border-bottom: 1px solid #eee;
        }

        .ms-btn {
            width: 100%;
            margin-top: 10px;
        }

        .hero-vibrant-modern {
            min-height: 480px !important;
            padding-bottom: 80px !important;
        }

        .modern-hero-content {
            margin-top: 0 !important;
        }

        .hero-footer-slider {
            bottom: 20px !important;
            background: none;
        }
    }

    /* STORIES SECTION FLOATING OVERLAY */
    .stories-section-wrapper {
        position: relative;
        z-index: 50;
        /* Ensure it floats above hero */
        margin-top: -60px;
        /* Pull up to overlap */
        padding-bottom: 40px;
    }

    .stories-app-card {
        background: #ffffff;
        border-radius: 24px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(0, 0, 0, 0.05);
        position: relative;
        z-index: 51;
        overflow: hidden;
    }

    @media (max-width: 768px) {
        .stories-section-wrapper {
            margin-top: -40px;
        }
    }

    /* --- MOBILE SEARCH OVERLAY (Global Hidden) --- */
    .mobile-search-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        z-index: 100000;
        flex-direction: column;
        padding: 25px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-search-overlay.active {
        display: flex;
        opacity: 1;
        visibility: visible;
    }

    .mso-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
    }

    .mso-title {
        font-family: 'Outfit', sans-serif;
        font-size: 20px;
        font-weight: 800;
        color: #0f172a;
    }

    .mso-close-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #f1f5f9;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: #475569;
    }

    .mso-body {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .mso-field {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .mso-label {
        font-family: 'Outfit', sans-serif;
        font-size: 12px;
        font-weight: 700;
        color: #94a3b8;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .mso-input-box {
        background: #f8fafc;
        border: 1.5px solid #e2e8f0;
        border-radius: 16px;
        padding: 12px 18px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .mso-input-box i {
        color: #64748b;
        font-size: 16px;
    }

    .mso-input-box input {
        background: transparent;
        border: none;
        outline: none;
        width: 100%;
        font-size: 15px;
        color: #1e293b;
        font-weight: 500;
    }

    .mso-submit-btn {
        background: linear-gradient(135deg, #D90429 0%, #a30320 100%);
        color: white;
        border: none;
        border-radius: 16px;
        padding: 16px;
        font-weight: 700;
        font-size: 16px;
        margin-top: 20px;
        box-shadow: 0 10px 25px rgba(217, 4, 41, 0.3);
    }

    /* --- PREMIUM V2 STYLES (Scoped) --- */
    /* Overlay */
    .biz-modal-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(8px);
        z-index: 99999;
        padding: 0;
        justify-content: center;
        align-items: center;
        overflow-y: auto;
    }

    .biz-modal-overlay.active {
        display: flex;
    }

    /* Container */
    .pv2-container {
        width: 100%;
        max-width: 1000px;
        background: #ffffff;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5);
        display: flex;
        flex-direction: column;
        max-height: 95vh;
        /* Fit in screen */
        position: relative;
        margin: 20px;
        animation: pv2SlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    @keyframes pv2SlideUp {
        from {
            transform: translateY(40px) scale(0.98);
            opacity: 0;
        }

        to {
            transform: translateY(0) scale(1);
            opacity: 1;
        }
    }

    /* Close Button */
    .biz-close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 1000;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        cursor: pointer;
        transition: 0.2s;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .biz-close-btn:hover {
        background: white;
        color: black;
    }

    /* Hero Section */
    .pv2-hero {
        height: 280px;
        width: 100%;
        background-size: cover;
        background-position: center;
        position: relative;
        flex-shrink: 0;
    }

    .pv2-hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.1) 100%);
    }

    .pv2-hero-content {
        position: absolute;
        bottom: 30px;
        left: 40px;
        right: 40px;
        display: flex;
        align-items: flex-end;
        gap: 25px;
        z-index: 2;
    }

    .pv2-logo {
        width: 100px;
        height: 100px;
        border-radius: 20px;
        border: 4px solid #ffffff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        background: white;
        object-fit: cover;
    }

    .pv2-header-text h1 {
        color: white;
        margin: 5px 0;
        font-size: 32px;
        font-weight: 800;
        letter-spacing: -0.5px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .pv2-hero-subtitle {
        color: rgba(255, 255, 255, 0.8);
        margin: 0;
        font-size: 15px;
    }

    .pv2-badges {
        display: flex;
        gap: 10px;
    }

    .pv2-badge-verified {
        background: #2563eb;
        color: white;
        padding: 4px 10px;
        border-radius: 6px;
        font-size: 12px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .pv2-badge-rating {
        background: #fbbf24;
        color: #1e293b;
        padding: 4px 10px;
        border-radius: 6px;
        font-size: 12px;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    /* Body Layout */
    .pv2-body {
        display: flex;
        flex: 1;
        padding: 0;
        overflow: hidden;
        /* For inner scroll */
        background: #f8fafc;
    }

    .pv2-main-col {
        flex: 2;
        padding: 40px;
        overflow-y: auto;
        max-height: 500px;
        /* Custom internal scroll */
    }

    .pv2-sidebar-col {
        flex: 1;
        background: #ffffff;
        border-left: 1px solid #e2e8f0;
        padding: 30px;
        display: flex;
        flex-direction: column;
        gap: 25px;
        overflow-y: auto;
        max-height: 500px;
    }

    /* Sections */
    .pv2-section {
        margin-bottom: 40px;
    }

    .pv2-section-title {
        font-size: 18px;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
        padding-bottom: 10px;
        border-bottom: 2px solid #e2e8f0;
    }

    .pv2-section-title i {
        color: #3b82f6;
    }

    .pv2-desc {
        line-height: 1.8;
        color: #475569;
        font-size: 15px;
    }

    /* Tags */
    .pv2-tags-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .pv2-tag {
        background: white;
        border: 1px solid #e2e8f0;
        padding: 10px 16px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        color: #334155;
        display: flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    }

    .pv2-tag i {
        color: #10b981;
    }

    /* List */
    .pv2-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .pv2-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #475569;
        font-size: 14px;
        background: white;
        padding: 10px;
        border-radius: 8px;
        border: 1px solid #f1f5f9;
    }

    .pv2-list li i {
        color: #3b82f6;
        width: 20px;
        text-align: center;
    }

    /* Sidebar Cards */

    .pv2-card-title {
        font-size: 15px;
        font-weight: 700;
        color: #94a3b8;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 15px;
    }

    .pv2-contact-item {
        display: flex;
        gap: 15px;
        margin-bottom: 15px;
        align-items: flex-start;
    }

    .pv2-contact-item i {
        width: 36px;
        height: 36px;
        background: #eff6ff;
        color: #3b82f6;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        flex-shrink: 0;
    }

    .pv2-contact-item span {
        font-size: 15px;
        color: #1e293b;
        font-weight: 500;
        padding-top: 8px;
        line-height: 1.4;
    }

    .pv2-hours-row {
        display: flex;
        justify-content: space-between;
        padding: 12px 0;
        border-bottom: 1px solid #f1f5f9;
        color: #475569;
        font-size: 14px;
    }

    .pv2-hours-row strong {
        color: #1e293b;
    }

    /* Map */
    .pv2-map-wrapper {
        height: 180px;
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid #e2e8f0;
    }

    /* Footer */
    .pv2-footer {
        background: white;
        border-top: 1px solid #e2e8f0;
        padding: 20px 40px;
        display: flex;
        gap: 15px;
    }

    .pv2-btn {
        flex: 1;
        padding: 18px;
        border-radius: 14px;
        font-size: 16px;
        font-weight: 700;
        text-align: center;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: all 0.2s;
    }

    .pv2-btn.call {
        background: #1e293b;
        color: white;
        box-shadow: 0 5px 15px rgba(30, 41, 59, 0.3);
    }

    .pv2-btn.call:hover {
        background: #0f172a;
        transform: translateY(-2px);
    }

    .pv2-btn.whatsapp {
        background: #25D366;
        color: white;
        box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    }

    .pv2-btn.whatsapp:hover {
        background: #20bd5a;
        transform: translateY(-2px);
    }

    /* Responsive */
    @media (max-width: 900px) {
        .pv2-container {
            margin: 0;
            border-radius: 0;
            height: 100vh;
            max-height: 100vh;
        }

        .pv2-body {
            flex-direction: column;
            overflow-y: auto;
        }

        .pv2-main-col,
        .pv2-sidebar-col {
            overflow: visible;
            max-height: none;
        }

        .pv2-hero {
            height: 220px;
        }

        .pv2-hero-content {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }

        .pv2-logo {
            width: 80px;
            height: 80px;
        }

        .pv2-header-text h1 {
            font-size: 24px;
        }

        .pv2-list {
            grid-template-columns: 1fr;
        }

        .pv2-footer {
            padding: 15px 20px;
            position: sticky;
            bottom: 0;
            z-index: 100;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
        }
    }