.hero-section {
    background: linear-gradient(90deg, rgba(58, 134, 255, 0.8) 0%, rgba(131, 56, 236, 0.8) 100%), 
                url('https://images.unsplash.com/photo-1496181133206-80ce9b88a853?ixlib=rb-4.0.3&auto=format&fit=crop&w=1771&q=80') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    padding: 80px 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.popular-searches {
    margin-top: 2rem;
}

.popular-searches .badge {
    margin: 0.3rem;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.popular-searches .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-color: rgba(255,255,255,0.3);
}