/* Specific overrides for landing page */
.navbar {
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar.scrolled {
    background: rgba(15, 15, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    padding: 10px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

body.light-mode .navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.1);
}

.navbar-brand {
    font-weight: 700;
    color: var(--text-primary) !important;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 15px !important;
}

.nav-link:hover {
    color: var(--accent-primary) !important;
    transform: translateY(-2px);
}

.hero-section {
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(0,0,0,0) 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse-glow 8s infinite alternate ease-in-out;
}

@keyframes pulse-glow {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-img-container {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-img {
    max-width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.25);
    border: 1px solid var(--border-glass);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

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

.platform-icon {
    font-size: 3rem;
    color: var(--hover-color, var(--text-muted));
    margin: 0 20px;
    transition: transform 0.3s, filter 0.3s;
}

.platform-icon:hover {
    filter: brightness(1.2);
    transform: scale(1.2) translateY(-5px);
}

.live-orders-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    background: rgba(255, 255, 255, 0.01);
}

.order-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    margin-bottom: 0;
}

.order-user {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.order-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

.order-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    text-align: right;
}

footer {
    background: var(--bg-surface);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-glass);
    margin-top: 100px;
    position: relative;
}

body.light-mode footer {
    background: #f8fafc;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

/* Bg Mesh Styles */
.bg-mesh-container {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.25; /* Reduced further to ensure text pops */
    transition: transform 0.1s ease-out;
}

.mesh-layer {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: move-mesh 20s infinite alternate ease-in-out;
}

.layer-1 {
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    top: -200px; left: -200px;
}

.layer-2 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    bottom: -100px; right: -100px;
    animation-duration: 25s;
}

.layer-3 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(192, 132, 252, 0.08) 0%, transparent 70%);
    top: 40%; left: 50%;
    animation-duration: 30s;
}

@keyframes move-mesh {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 50px) scale(1.1); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 60px;
        text-align: center;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-desc {
        font-size: 1rem;
        margin: 0 auto 30px auto;
        max-width: 100%;
    }
    .d-flex.flex-wrap.gap-4.mt-2 {
        justify-content: center;
    }
    .hero-img-container {
        margin-top: 40px;
    }
    .platform-icon {
        font-size: 1.8rem;
        margin: 10px;
    }
    .feature-icon {
        font-size: 2rem;
    }
    .live-orders-section {
        padding: 30px 0;
    }
    footer {
        padding: 40px 0 20px;
        margin-top: 50px;
    }
    /* Navbar Mobile Fix */
    .navbar-collapse {
        background: rgba(15, 15, 20, 0.98);
        backdrop-filter: blur(20px);
        padding: 1.5rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-glass);
        margin-top: 15px;
        text-align: center;
    }
    body.light-mode .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
    }
    .navbar-nav .nav-item {
        margin-bottom: 10px;
    }
    .navbar-nav .ms-3, .navbar-nav .ms-2 {
        margin-left: 0 !important;
    }
    .magnetic-wrap {
        margin-top: 10px;
    }
    .theme-toggle-btn {
        margin: 0 auto;
    }
    .glass-panel.p-5 {
        padding: 2rem !important;
    }
}

/* Business Offers Tilt Card */
.tilt-card {
    transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
    will-change: transform;
}

.tilt-card:hover {
    z-index: 10;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
}

