/* Hero Section - Clean Layout */
.hero-section {
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-content {
    margin-bottom: 40px;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.hero-search-box {
    max-width: 700px;
    margin: 0 auto;
}

.hero-search-form {
    background: white;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0;
}

.search-input-wrapper {
    flex: 1;
    position: relative;
}

.search-icon {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    z-index: 2;
}

.hero-search-input {
    width: 100%;
    border: none;
    padding: 18px 25px 18px 55px;
    font-size: 16px;
    background: transparent;
    outline: none;
    border-radius: 50px;
}

.hero-search-input::placeholder {
    color: #999;
}

.hero-search-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-left: -5px;
}

.hero-search-btn:hover {
    background: #e55a2b;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 300px;
        padding: 40px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-content {
        margin-bottom: 30px;
    }
    
    .hero-search-form {
        flex-direction: column;
        border-radius: 20px;
        padding: 15px;
        gap: 15px;
    }
    
    .search-input-wrapper {
        width: 100%;
    }
    
    .hero-search-input {
        padding: 15px 20px 15px 50px;
        border-radius: 25px;
        font-size: 16px;
    }
    
    .search-icon {
        left: 20px;
    }
    
    .hero-search-btn {
        width: 100%;
        padding: 15px 25px;
        border-radius: 25px;
        margin-left: 0;
    }
}