/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

:root {
    --bg-dark: #050505;
    --bg-card: rgba(20, 20, 20, 0.7);
    --primary-gold: #D4AF37;
    --primary-gold-bright: #FFD700;
    --accent-neon: #39FF14;
    --text-white: #FFFFFF;
    --text-muted: #A0A0A0;
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

h1, h2, h3, .logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Typography Helpers */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-gold-bright), #FFF, var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gold {
    color: var(--primary-gold);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.2s ease, background 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    will-change: transform;
}
.btn:active {
    transform: scale(0.96) !important;
}

/* Filter Chips (Discovery) */
.filter-chips-container {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 5px 2px 15px 2px;
    margin-bottom: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.filter-chips-container::-webkit-scrollbar {
    display: none;
}
.filter-chip {
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    will-change: transform;
}
.filter-chip:active {
    transform: scale(0.95);
}
.filter-chip:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
}
.filter-chip.active {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), #8B732A);
    color: black;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, var(--primary-gold-bright), var(--primary-gold));
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-white);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-gold);
}

.btn-gold {
    background: var(--primary-gold);
    color: black;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* Glassmorphism */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
    will-change: transform;
}
.glass:active {
    transform: scale(0.98);
}

.ai-card {
    position: relative;
    border: 1px solid var(--primary-gold);
    background: linear-gradient(135deg, rgba(20,20,20,0.9), rgba(212, 175, 55, 0.05));
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}
.ai-card::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    background: linear-gradient(45deg, transparent, var(--primary-gold), transparent);
    z-index: -1;
    border-radius: inherit;
    animation: borderGlow 3s linear infinite;
}
@keyframes borderGlow {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

.map-view-btn {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-dark);
    color: var(--text-white);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.8);
    z-index: 99;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.map-view-btn:hover {
    background: var(--primary-gold);
    color: #000;
    border-color: var(--primary-gold);
}
.map-view-btn:active {
    transform: translateX(-50%) scale(0.95);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
}

.logo-icon {
    color: var(--primary-gold);
    font-size: 1.8rem;
}

.logo-text {
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--primary-gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-white);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 140px 0 80px; /* Reduced from 180px to move content up */
    min-height: 90vh; /* Reduced to ensure it doesn't push down too much */
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 100px;
    color: var(--primary-gold);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.badge span {
    background: var(--primary-gold);
    color: black;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 800;
    margin-right: 8px;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem); /* Scalable premium typography */
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem); /* Scalable for low-end Android */
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 580px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap; /* Ensure safe-area breaking on mobile */
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary-gold);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
}

.stat-plus {
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: 800;
}

.stat-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

/* Hero Visual & Animation */
.phone-mockup {
    width: 320px;
    height: 640px;
    background: #111;
    border-radius: 40px;
    border: 8px solid #222;
    padding: 20px;
    position: relative;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5), 0 0 30px rgba(212, 175, 55, 0.1);
    margin: 0 auto;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ai-visualizer {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 60px;
    margin-bottom: 40px;
}

.bar {
    width: 6px;
    background: var(--primary-gold);
    border-radius: 10px;
    animation: wave 1.2s ease-in-out infinite;
}

.bar:nth-child(1) { height: 20px; animation-delay: 0.1s; }
.bar:nth-child(2) { height: 45px; animation-delay: 0.2s; }
.bar:nth-child(3) { height: 30px; animation-delay: 0.3s; }
.bar:nth-child(4) { height: 50px; animation-delay: 0.4s; }
.bar:nth-child(5) { height: 25px; animation-delay: 0.5s; }

@keyframes wave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.5); }
}

.ticket-preview {
    width: 90%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 15px;
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.category { color: var(--primary-gold); }

.qr-code {
    margin-top: 15px;
    font-size: 4rem;
    color: var(--text-white);
    text-align: center;
    opacity: 0.8;
}

/* Features */
.features {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 40px;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* Voice AI Section */
.voice-ai {
    padding: 100px 0;
    background: radial-gradient(circle at left, rgba(57, 255, 20, 0.05) 0%, transparent 50%);
}

.voice-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.voice-list {
    list-style: none;
    margin: 30px 0;
}

.voice-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-white);
}

.voice-list i {
    color: var(--primary-gold);
}

.glass-orb {
    width: 400px;
    height: 400px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: inset 0 0 50px rgba(212, 175, 55, 0.1);
}

.inner-glow {
    width: 200px;
    height: 200px;
    background: var(--primary-gold);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: pulse-glow 3s infinite alternate;
}

@keyframes pulse-glow {
    0% { opacity: 0.2; transform: scale(1); }
    100% { opacity: 0.5; transform: scale(1.2); }
}

.waves span {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: ripple 3s linear infinite;
}

.waves span:nth-child(2) { animation-delay: 1s; }
.waves span:nth-child(3) { animation-delay: 2s; }

@keyframes ripple {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Payments Section */
.payment-single {
    max-width: 420px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.payment-single .payment-card {
    width: 100%;
    padding: 36px 28px;
}

.momo-note {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.payment-card {
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

.payment-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1);
}

.active-payment {
    border: 1px solid var(--primary-gold);
    background: rgba(212, 175, 55, 0.05);
}

.payment-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    background: var(--primary-gold);
    color: black;
}

.payment-badge.grey {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-gold);
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.supported-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    font-size: 1.2rem;
    color: var(--text-muted);
}

.coming-soon {
    filter: grayscale(1) opacity(0.7);
}

.coming-soon:hover {
    filter: grayscale(0.5) opacity(0.9);
}

/* Mobile Money Icons Simulation */
.orange-money { background: url('https://upload.wikimedia.org/wikipedia/commons/c/c8/Orange_logo.svg') center/contain no-repeat; width: 50px; margin: 0 auto 20px; }
.mtn-momo { background: url('https://upload.wikimedia.org/wikipedia/commons/9/93/MTN_Logo.svg') center/contain no-repeat; width: 50px; margin: 0 auto 20px; }
.wave-money { background: url('https://upload.wikimedia.org/wikipedia/en/thumb/0/07/Wave_logo.svg/1200px-Wave_logo.svg.png') center/contain no-repeat; width: 50px; margin: 0 auto 20px; }
.moov-money { background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Logo_Moov_Africa.png/1200px-Logo_Moov_Africa.png') center/contain no-repeat; width: 80px; margin: 0 auto 20px; }

.payment-footer {
    margin-top: 40px;
}

.secure-checkout {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    font-size: 0.9rem;
}

.gold { color: var(--primary-gold); }

.btn-icon-gold {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-icon-gold:hover {
    background: var(--primary-gold);
    color: black;
}

.share-btn {
    border: none;
    padding: 15px 10px;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.share-btn i {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.share-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

/* --- Social Discovery Features --- */
.discovery-section { margin-bottom: 60px; }
.discovery-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; }
.scroll-x { display: flex; gap: 20px; overflow-x: auto; padding-bottom: 20px; scrollbar-width: none; }
.scroll-x::-webkit-scrollbar { display: none; }

.organizer-profile { margin-top: 100px; }
.organizer-banner { height: 300px; border-radius: 24px; position: relative; overflow: hidden; background: linear-gradient(45deg, #111, #222); }
.organizer-banner img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.organizer-avatar-container { position: relative; margin-top: -60px; padding: 0 40px; display: flex; align-items: flex-end; gap: 25px; }
.org-avatar-big { width: 150px; height: 150px; border-radius: 50%; border: 5px solid var(--bg-dark); background: var(--primary-gold); position: relative; }
.org-avatar-big img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.verified-badge { position: absolute; bottom: 5px; right: 5px; background: var(--primary-gold); color: black; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 3px solid var(--bg-dark); font-size: 0.8rem; }

.stats-row { display: flex; gap: 30px; margin: 20px 0; }
.stat-item { text-align: center; }
.stat-val { display: block; font-size: 1.5rem; font-weight: 800; color: var(--primary-gold); }
.stat-lbl { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; }

.rating-stars { color: #555; display: flex; gap: 3px; font-size: 0.9rem; }
.rating-stars .fas.active { color: var(--primary-gold); }

.heart-btn { position: absolute; top: 15px; right: 15px; width: 35px; height: 35px; border-radius: 50%; background: rgba(0,0,0,0.5); border: none; color: white; cursor: pointer; transition: 0.3s; z-index: 10; display: flex; align-items: center; justify-content: center; }
.heart-btn.active { color: #ff4757; transform: scale(1.2); }
.heart-btn:hover { background: rgba(0,0,0,0.8); }

.notification-badge { position: absolute; top: -5px; right: -5px; background: #ff4757; color: white; font-size: 0.6rem; padding: 2px 5px; border-radius: 10px; border: 2px solid var(--bg-dark); }

/* --- Media Upload System --- */
.upload-area { border: 2px dashed var(--glass-border); border-radius: 20px; padding: 40px; text-align: center; cursor: pointer; transition: 0.3s; background: rgba(255,255,255,0.02); }
.upload-area:hover, .upload-area.dragover { border-color: var(--primary-gold); background: rgba(212, 175, 55, 0.05); }
.upload-area i { font-size: 3rem; color: var(--primary-gold); margin-bottom: 15px; }

.media-preview-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 15px; margin-top: 20px; }
.media-preview-item { position: relative; border-radius: 12px; overflow: hidden; height: 120px; border: 1px solid var(--glass-border); }
.media-preview-item img, .media-preview-item video { width: 100%; height: 100%; object-fit: cover; }
.remove-media { position: absolute; top: 5px; right: 5px; background: rgba(255, 71, 87, 0.8); color: white; border: none; width: 24px; height: 24px; border-radius: 50%; cursor: pointer; font-size: 0.7rem; }

.progress-container { width: 100%; height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; margin-top: 10px; display: none; }
.progress-bar { height: 100%; background: var(--primary-gold); border-radius: 3px; width: 0%; transition: 0.3s; box-shadow: 0 0 10px var(--primary-gold); }

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    padding: 2px 4px;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.2s ease;
    will-change: transform;
}

.lang-btn:active {
    transform: scale(0.9);
}

.lang-btn:hover {
    color: var(--text-white);
}

.lang-btn.active {
    color: var(--primary-gold);
}

.divider {
    color: var(--glass-border);
    font-size: 0.8rem;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--primary-gold);
}

.trust-badge i { font-size: 3rem; margin-bottom: 10px; }

/* Categories */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.cat-card {
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.cat-card.soccer { background: url('https://images.unsplash.com/photo-1574629810360-7efbbe195018?auto=format&fit=crop&q=80&w=1000') center/cover; }
.cat-card.music { background: url('https://images.unsplash.com/photo-1470225620780-dba8ba36b745?auto=format&fit=crop&q=80&w=1000') center/cover; }
.cat-card.nightlife { background: url('https://images.unsplash.com/photo-1514525253361-bee8718a74a2?auto=format&fit=crop&q=80&w=1000') center/cover; }

.cat-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    transition: var(--transition-smooth);
}

.cat-card:hover .cat-overlay {
    padding-bottom: 40px;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.price-card {
    padding: 50px 40px;
    text-align: center;
    position: relative;
}

.price-card.featured {
    border-color: var(--primary-gold);
    transform: scale(1.05);
    z-index: 10;
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-gold);
    color: black;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin: 20px 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
}

.price-card ul {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.price-card li {
    margin-bottom: 12px;
    color: var(--text-muted);
}

.price-card li i { color: var(--primary-gold); margin-right: 10px; }

/* FAQ */
.faq { padding: 100px 0; }

.accordion {
    max-width: 800px;
    margin: 50px auto 0;
}

.accordion-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-header {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.accordion-header:hover { background: rgba(255,255,255,0.05); }

.accordion-content {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
}

.accordion-item.active .accordion-content {
    padding: 0 30px 20px;
    max-height: 200px;
}

.accordion-item.active i { transform: rotate(180deg); color: var(--primary-gold); }

/* Footer */
.footer {
    padding: 80px 0 30px;
    background: #000;
    border-top: 1px solid var(--glass-border);
}

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

.footer-brand p {
    margin: 20px 0;
    color: var(--text-muted);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-white);
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--primary-gold);
    color: black;
}

.footer-links h4, .footer-newsletter h4 {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-links ul { list-style: none; }

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

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

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

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    padding: 12px 20px;
    border-radius: 50px;
    color: white;
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-up.appear {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in {
    opacity: 0;
    transition: opacity 1.2s ease-out;
}

.animate-fade-in.appear {
    opacity: 1;
}

/* Voice Modal & AI Assistant */
.voice-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.voice-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.voice-modal-content {
    width: 100%;
    max-width: 500px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    border-color: var(--primary-gold);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.ai-wave-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    height: 80px;
    margin-bottom: 30px;
}

.wave {
    width: 8px;
    height: 20px;
    background: var(--primary-gold);
    border-radius: 10px;
    animation: wavePulse 1s ease-in-out infinite;
}

.wave:nth-child(2) { animation-delay: 0.1s; }
.wave:nth-child(3) { animation-delay: 0.2s; }
.wave:nth-child(4) { animation-delay: 0.3s; }

@keyframes wavePulse {
    0%, 100% { height: 20px; background: var(--primary-gold); }
    50% { height: 60px; background: var(--accent-neon); }
}

.mic-glow-container {
    margin: 40px 0;
}

.mic-btn.active {
    width: 80px;
    height: 80px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    font-size: 2rem;
    color: black;
    box-shadow: 0 0 30px var(--primary-gold), 0 0 60px rgba(212, 175, 55, 0.5);
    animation: pulseMic 2s infinite;
}

@keyframes pulseMic {
    0% { transform: scale(1); box-shadow: 0 0 30px var(--primary-gold); }
    50% { transform: scale(1.1); box-shadow: 0 0 50px var(--primary-gold), 0 0 80px var(--primary-gold); }
    100% { transform: scale(1); box-shadow: 0 0 30px var(--primary-gold); }
}

.transcript-preview {
    font-size: 1.2rem;
    color: var(--text-muted);
    min-height: 1.5em;
    margin-bottom: 10px;
}

.ai-response-text {
    font-size: 1.5rem;
    font-weight: 700;
    min-height: 1.5em;
}

.suggested-commands {
    margin-top: 40px;
}

.cmd-chips {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
}

.chip {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.chip:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary-gold);
    color: white;
}

/* Voice modal — small screens (iPhone / Android) */
@media (max-width: 600px) {
    .voice-modal { padding: 12px; align-items: flex-start; }
    .voice-modal-content {
        padding: 48px 20px 32px;
        max-width: 100%;
        margin-top: 24px;
    }
    .close-modal { top: 12px; right: 16px; font-size: 1.75rem; }
    .ai-wave-container { height: 56px; margin-bottom: 20px; }
    .mic-glow-container { margin: 24px 0; }
    .mic-btn.active { width: 64px; height: 64px; font-size: 1.5rem; }
    .voice-feedback h3 { font-size: 1.1rem; }
    .transcript-preview { font-size: 1rem; }
    .ai-response-text { font-size: 1.2rem; line-height: 1.4; }
    .suggested-commands { margin-top: 28px; }
    .cmd-chips { gap: 8px; }
    .chip { padding: 7px 12px; font-size: 0.75rem; }
}

.ai-avatar-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: rotateGlow 10s linear infinite;
    top: 0;
    left: 0;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* MVP Specific Styles */
.glass-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 12px 18px;
    border-radius: 12px;
    color: var(--text-white);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.glass-input:focus {
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.08);
    outline: none;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

/* Auth feedback messages (signup / login) */
.auth-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.88rem;
    line-height: 1.45;
    text-align: center;
}
.auth-message.error {
    background: rgba(255, 71, 87, 0.12);
    border: 1px solid rgba(255, 71, 87, 0.4);
    color: #ff7a87;
}
.auth-message.success {
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid rgba(57, 255, 20, 0.35);
    color: var(--accent-neon);
}

/* Phone field with country-code selector */
.phone-row {
    display: flex;
    gap: 10px;
}
.phone-row select {
    flex: 0 0 120px;
}
.phone-row input {
    flex: 1;
    min-width: 0;
}
.btn[disabled] {
    opacity: 0.65;
    cursor: not-allowed;
}
@media (max-width: 400px) {
    .phone-row {
        flex-direction: column;
    }
    .phone-row select {
        flex: 1 1 auto;
    }
}

.event-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.event-table tr {
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition-smooth);
}

.event-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.event-table td, .event-table th {
    padding: 20px;
}

.event-table th {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--primary-gold);
}

.event-table td:first-child { border-radius: 15px 0 0 15px; }
.event-table td:last-child { border-radius: 0 15px 15px 0; }

.badge-status {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.status-live { background: rgba(57, 255, 20, 0.1); color: var(--accent-neon); }
.status-draft { background: rgba(160, 160, 160, 0.1); color: var(--text-muted); }

.pulse-gold {
    animation: pulseMicGold 1.5s infinite;
}

@keyframes pulseMicGold {
    0% { transform: scale(1); color: var(--primary-gold); }
    50% { transform: scale(1.2); color: white; text-shadow: 0 0 10px var(--primary-gold); }
    100% { transform: scale(1); color: var(--primary-gold); }
}

/* --- Mobile App Experience --- */
.bottom-nav { position: fixed; bottom: calc(20px + env(safe-area-inset-bottom)); left: 50%; transform: translateX(-50%); width: calc(100% - 40px); max-width: 450px; height: 75px; background: rgba(15,15,15,0.85); backdrop-filter: blur(24px); border: 1px solid rgba(212,175,55,0.25); border-radius: 40px; display: none; justify-content: space-around; align-items: center; z-index: 1000; box-shadow: 0 10px 40px rgba(0,0,0,0.9), 0 0 20px rgba(212,175,55,0.1); padding: 0 10px; }
.bottom-nav-item { position: relative; color: var(--text-muted); text-decoration: none; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; font-size: 0.65rem; font-weight: 500; transition: var(--transition-smooth); will-change: transform; width: 20%; height: 100%; }
.bottom-nav-item i { font-size: 1.4rem; transition: var(--transition-smooth); }
.bottom-nav-item:active { transform: scale(0.85); }
.bottom-nav-item.active { color: var(--primary-gold); }
.bottom-nav-item.active i { transform: translateY(-4px); text-shadow: 0 0 15px rgba(212, 175, 55, 0.8); }
.bottom-nav-item.active::after { content: ''; position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; background: var(--primary-gold); border-radius: 50%; box-shadow: 0 0 8px var(--primary-gold); }

@media (max-width: 768px) {
    .bottom-nav { display: flex; }
    .nav-links { display: none !important; }
    .nav-links.active { display: flex !important; }
    body { padding-bottom: calc(110px + env(safe-area-inset-bottom)); }
}

/* Skeleton Loading */
.skeleton { background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%); background-size: 200% 100%; animation: skeleton-loading 1.5s infinite; border-radius: 12px; }
@keyframes skeleton-loading { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* Transitions */
.page-transition { animation: fade-in 0.5s ease; }
@keyframes fade-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Sticky Tabs for Discovery */
.sticky-tabs { position: sticky; top: 80px; background: rgba(10,10,10,0.8); backdrop-filter: blur(10px); z-index: 100; padding: 10px 0; margin-bottom: 20px; border-bottom: 1px solid var(--glass-border); }

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3.5rem; }
    .hero .container { grid-template-columns: 1fr; text-align: left; }
    .hero p, .hero-btns, .hero-stats { justify-content: flex-start; margin-left: 0; margin-right: 0; }
    .hero-visual { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile menu backdrop overlay — closes menu on tap */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1199;
    -webkit-tap-highlight-color: transparent;
}
.mobile-menu-overlay.active {
    display: block;
}

@media (max-width: 768px) {
    .nav-links { display: none !important; }
    .nav-links.active {
        position: fixed;
        top: 72px;
        left: 16px;
        right: 16px;
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 18px;
        background: rgba(10, 10, 10, 0.96);
        border: 1px solid var(--glass-border);
        border-radius: 18px;
        z-index: 1200;
        max-height: calc(100vh - 140px);
        overflow-y: auto;
        overflow-x: hidden;
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }
    .nav-links.active li {
        width: 100%;
    }
    .nav-links.active a,
    .nav-links.active button {
        width: 100%;
        justify-content: center;
    }
    .nav-links.active .lang-switcher {
        justify-content: center;
        margin: 0;
    }
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        min-height: 44px;
        -webkit-tap-highlight-color: transparent;
        z-index: 1201;
    }

    /* Hero — mobile-first layout */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    .hero .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero h1 {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
        letter-spacing: -0.5px;
    }
    .hero p {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
        margin-bottom: 25px;
    }
    .hero-visual {
        display: none;
    }
    .hero-btns {
        max-width: 100% !important;
    }
    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    .stat-number {
        font-size: 2rem;
    }

    /* Search bar — fit mobile width */
    .search-container {
        padding: 6px 14px !important;
    }
    .search-container input {
        font-size: 0.9rem !important;
        min-width: 0 !important;
    }

    /* Discovery scroll cards — prevent overflow */
    .scroll-x {
        padding-left: 24px;
        padding-right: 24px;
        scroll-snap-type: x mandatory;
    }
    .scroll-x > * {
        scroll-snap-align: start;
    }
    .event-card.glass,
    .skeleton-card {
        min-width: 260px !important;
    }

    /* Discovery header — stack on small screens */
    .discovery-header {
        flex-wrap: wrap;
        gap: 8px;
    }
    .discovery-header h2 {
        font-size: 1.2rem;
    }

    /* Sections spacing */
    .discovery-feed {
        padding: 40px 0 !important;
    }
    .features {
        padding: 60px 0;
    }
    .section-header h2 {
        font-size: 1.6rem;
    }

    /* CTA section */
    .cta-section h2 {
        font-size: clamp(1.5rem, 6vw, 2.5rem) !important;
    }
    .cta-section p {
        font-size: 1rem !important;
    }

    .voice-layout { grid-template-columns: 1fr; }
    .category-grid, .pricing-grid { grid-template-columns: 1fr; }
    .payments-wrapper { grid-template-columns: 1fr; text-align: center; }
    .payment-logos { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .form-grid { grid-template-columns: 1fr; }

    /* Footer newsletter */
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form input {
        width: 100%;
    }

    /* Navbar spacing */
    .navbar { padding: 12px 0; }
    .navbar.scrolled { padding: 10px 0; }
    .navbar .container { padding: 0 16px; }
    .logo { font-size: 1.2rem; }
    .logo-icon { font-size: 1.4rem; }
}

/* Translation & Layout Fixes for Bilingual Support */
body {
    line-height: 1.5;
    word-break: break-word;
}
* {
    word-break: break-word;
}
.glass, .stat-card, .feature-card, .cat-card, .event-card, .pricing-card, .accordion-item {
    min-height: min-content;
    height: auto !important;
}
.cat-card, .event-card {
    min-height: 350px;
}
.dashboard-grid, .features-grid, .pricing-grid, .category-grid, .event-meta {
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    h1, h2, h3, h4, p, span, div {
        word-wrap: break-word;
    }
    .hero h1, .event-title, .section-title {
        font-size: clamp(2rem, 8vw, 3.5rem) !important;
        line-height: 1.2;
    }
    .stat-card, .feature-card, .pricing-card {
        padding: 20px !important;
    }
    .btn {
        white-space: normal;
        height: auto;
    }
}

/* Mobile-first polish: FAQ + Payments vertical rhythm and spacing */
@media (max-width: 768px) {
    .faq { padding: 60px 0; }
    .accordion { margin-top: 28px; }
    .accordion-item { margin-bottom: 10px; border-radius: 12px; }
    .accordion-header { padding: 16px 18px; gap: 14px; }
    .accordion-header h3 { font-size: 1rem; line-height: 1.35; }
    .accordion-content { padding: 0 18px; }
    .accordion-item.active .accordion-content {
        padding: 0 18px 16px;
        max-height: 360px;
    }
    .payments { padding: 60px 0; }
    .payment-single { margin-top: 28px; gap: 16px; }
    .payment-single .payment-card { padding: 28px 22px; }
    .section-header h2 { font-size: 1.75rem; line-height: 1.25; }
    .section-header p { font-size: 0.95rem; }
}

/* =====================================================================
   Venue & Review components — reusable across venues / profile / events
   ===================================================================== */

/* Inline star rating + score */
.stars-inline { display: inline-flex; gap: 2px; color: #4a4a4a; font-size: 0.85rem; }
.stars-inline .fa-star.filled,
.stars-inline .fa-star-half-alt { color: var(--primary-gold); }
.rating-meta { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-muted); flex-wrap: wrap; }
.rating-score { font-weight: 800; color: var(--text-white); }

/* Trust badges */
.trust-badge {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 0.7rem; font-weight: 700;
    padding: 4px 10px; border-radius: 50px;
    white-space: nowrap;
}
.trust-badge.popular { background: rgba(255, 71, 87, 0.15); color: #ff7a87; border: 1px solid rgba(255, 71, 87, 0.35); }
.trust-badge.verified { background: rgba(212, 175, 55, 0.12); color: var(--primary-gold); border: 1px solid rgba(212, 175, 55, 0.35); }

/* Event-type chips */
.venue-types { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 15px; }
.venue-type-chip {
    font-size: 0.7rem; padding: 3px 9px; border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
}

/* Compact venue card — homepage "Top Venues" + reuse anywhere */
.venue-mini-card {
    min-width: 260px; max-width: 260px;
    border-radius: 16px; overflow: hidden;
    text-decoration: none; color: inherit;
    display: flex; flex-direction: column;
    transition: var(--transition-smooth);
}
.venue-mini-card:hover { transform: translateY(-5px); border-color: var(--primary-gold); }
.vm-img { height: 150px; position: relative; }
.vm-img img { width: 100%; height: 100%; object-fit: cover; }
.vm-badge-row { position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; flex-wrap: wrap; }
.vm-body { padding: 14px 16px; flex-grow: 1; display: flex; flex-direction: column; gap: 6px; }
.vm-title { font-size: 1rem; font-weight: 700; }
.vm-loc { font-size: 0.8rem; color: var(--text-muted); }

/* Horizontal venue card — event-details venue mini-card */
.venue-inline-card {
    display: flex; gap: 14px; padding: 14px;
    border-radius: 14px; border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.02);
    text-decoration: none; color: inherit;
    transition: var(--transition-smooth);
}
.venue-inline-card:hover { border-color: var(--primary-gold); }
.venue-inline-card img { width: 90px; height: 90px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.venue-inline-body { display: flex; flex-direction: column; gap: 4px; justify-content: center; }

/* Reviews — rating summary */
.rating-summary {
    display: flex; align-items: center; gap: 24px;
    padding: 24px; border-radius: 16px;
    margin-bottom: 24px; flex-wrap: wrap;
}
.rating-summary .big-score { font-size: 3rem; font-weight: 800; color: var(--primary-gold); line-height: 1; }
.rating-summary .summary-meta { display: flex; flex-direction: column; gap: 6px; }

/* Reviews — list */
.review-list { display: flex; flex-direction: column; gap: 18px; }
.review-item {
    padding: 20px; border-radius: 16px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.02);
}
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.review-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--primary-gold); color: #000;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; flex-shrink: 0;
}
.review-author { font-weight: 600; }
.review-date { font-size: 0.78rem; color: var(--text-muted); }
.review-text { color: var(--text-muted); line-height: 1.6; font-size: 0.92rem; margin-bottom: 12px; }
.review-photos { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.review-photo { width: 72px; height: 72px; border-radius: 10px; object-fit: cover; border: 1px solid var(--glass-border); }
.organizer-response {
    margin-top: 12px; padding: 14px 16px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.06);
    border-left: 3px solid var(--primary-gold);
}
.organizer-response .resp-label {
    font-size: 0.78rem; font-weight: 700; color: var(--primary-gold);
    margin-bottom: 4px; display: flex; align-items: center; gap: 6px;
}
.organizer-response p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; }
.review-reactions { display: flex; gap: 10px; margin-top: 14px; }
.reaction-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    padding: 6px 12px; border-radius: 50px;
    font-size: 0.8rem; cursor: pointer; font-family: inherit;
    transition: var(--transition-smooth);
}
.reaction-btn:hover { border-color: var(--primary-gold); color: var(--primary-gold); }
.reaction-btn.active { background: rgba(212, 175, 55, 0.12); border-color: var(--primary-gold); color: var(--primary-gold); }

/* Reviews — submit form */
.review-form { padding: 24px; border-radius: 16px; margin-bottom: 30px; }
.star-input { display: inline-flex; gap: 6px; font-size: 1.5rem; color: #4a4a4a; cursor: pointer; margin-bottom: 14px; }
.star-input i.filled { color: var(--primary-gold); }

@media (max-width: 600px) {
    .rating-summary { gap: 16px; padding: 18px; }
    .rating-summary .big-score { font-size: 2.4rem; }
    .review-item { padding: 16px; }
    .venue-mini-card { min-width: 78vw; max-width: 78vw; }
    .venue-inline-card img { width: 70px; height: 70px; }
    .review-reactions { flex-wrap: wrap; }
}

/* Premium Empty State */
.empty-state-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(20,20,20,0.6), rgba(5,5,5,0.8));
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    grid-column: 1 / -1;
    width: 100%;
}
.empty-state-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    opacity: 0.8;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}
.empty-state-title {
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 10px;
    font-weight: 700;
}
.empty-state-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 400px;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Skeleton Loaders */
.skeleton-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--bg-card);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    overflow: hidden;
    height: 100%;
}
.skeleton-img {
    width: 100%;
    height: 180px;
    background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 75%);
    background-size: 200% 100%;
    animation: skeletonLoading 1.5s infinite;
}
.skeleton-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.skeleton-text {
    height: 14px;
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 75%);
    background-size: 200% 100%;
    animation: skeletonLoading 1.5s infinite;
}
.skeleton-text.title { width: 80%; height: 20px; margin-bottom: 5px; }
.skeleton-text.meta { width: 60%; }
.skeleton-text.btn { width: 100%; height: 40px; border-radius: 50px; margin-top: 10px; }

@keyframes skeletonLoading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 90px; /* Above bottom nav */
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: #FFF;
}

@media (min-width: 900px) {
    .whatsapp-float {
        bottom: 40px;
        right: 40px;
        width: 70px;
        height: 70px;
        font-size: 35px;
    }
}

/* ============================================================
   WakaStay — Premium WhatsApp-first reservation card system
   Owner: Antigravity (per docs/ai/antigravity-master-ui.md)
   - 0 KB of new JS — CSS animations only
   - Reuses existing .glass / .venue-card / .heart-btn / .trust-badge
   - Mobile-first; degrades cleanly on low-end Android
   ============================================================ */

/* Response-time trust chip (WhatsApp green tint) */
.response-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.35);
    color: #4dd388;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    white-space: nowrap;
}
.response-chip i { font-size: 0.85rem; }

/* Live activity pulse — "X viewing now" */
.activity-pulse {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
}
.activity-pulse::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-neon);
    box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.55);
    animation: stay-pulse 2s infinite ease-out;
}
@keyframes stay-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.55); }
    70%  { box-shadow: 0 0 0 8px rgba(57, 255, 20, 0); }
    100% { box-shadow: 0 0 0 0 rgba(57, 255, 20, 0); }
}

/* Urgency banner — render only when actually scarce */
.urgency-banner {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 71, 87, 0.08);
    border-left: 3px solid #ff4757;
    color: #ff7a87;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
    margin-bottom: 10px;
}
.urgency-banner i { font-size: 0.85rem; }

/* WhatsApp CTA — brand green, mobile-tap-friendly */
.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #1ea655);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    font-weight: 700;
    transition: var(--transition-smooth);
    min-height: 44px;
}
.btn-whatsapp:hover {
    background: linear-gradient(135deg, #2eea75, #20bb60);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    color: white;
}
.btn-whatsapp:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp i { font-size: 1.15rem; }

/* Price block — "from 8,000 CFA / night" cleanly */
.price-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
    line-height: 1.1;
}
.price-block .price-from {
    font-size: 0.7rem;
    color: var(--text-muted);
}
.price-block .price-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-gold);
}
.price-block .price-period {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Footer row inside .venue-card: price on left, CTAs on right */
.stay-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--glass-border);
}
.stay-footer .stay-ctas {
    display: flex;
    gap: 8px;
}
.stay-footer .btn { padding: 8px 14px; font-size: 0.82rem; }

/* Meta row above the card body for badge + activity clusters */
.stay-meta-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 10px;
    align-items: center;
    justify-content: space-between;
}

/* Mobile floating action bar — listing-page contextual nav */
.floating-action-bar {
    position: fixed;
    bottom: calc(80px + env(safe-area-inset-bottom));
    left: 50%;
    transform: translateX(-50%);
    z-index: 998;
    display: none;
    gap: 4px;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 6px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(212, 175, 55, 0.08);
    max-width: calc(100% - 110px); /* leaves room for the .whatsapp-float on the right */
}
.fab-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: inherit;
    min-height: 36px;
}
.fab-btn i { font-size: 0.9rem; }
.fab-btn:active,
.fab-btn.active {
    background: var(--primary-gold);
    color: black;
}

@media (max-width: 768px) {
    .floating-action-bar { display: inline-flex; }
}
