/* Hero Search Section CSS */

/* Hero Search Section */
.hero-search-section {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFFFF 50%, #FFFAE6 100%);
    padding: 60px 15px 80px 15px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.hero-search-section .container {
    max-width: 1425px;
    margin: 0 auto;
}

.hero-search-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 199, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-search-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 48px;
    line-height: 1.3;
    font-weight: 700;
    color: #000000;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.hero-title .highlight-yellow {
    color: var(--pr-yellow);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 18px;
    color: #666666;
    margin: 0 0 40px 0;
    line-height: 1.6;
}

.hero-subtitle strong {
    color: #000000;
    font-weight: 600;
}

/* Hero Search Form */
.hero-search-form {
    margin: 0 0 15px 0;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border-radius: 60px;
    padding: 8px 8px 8px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    max-width: 700px;
    margin: 0 auto;
    transition: box-shadow 0.3s;
    width: 100%;
}

.search-input-wrapper:focus-within {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.18);
}

.search-icon {
    color: #999999;
    font-size: 18px;
    margin-right: 15px;
    flex-shrink: 0;
}

.hero-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    color: #333333;
    padding: 12px 0;
    background: transparent;
    margin-left: 10px;
}

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

.hero-search-button {
    background: #82B92E;
    color: #FFFFFF;
    border: none;
    padding: 16px 40px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    text-transform: none;
}

.hero-search-button:hover {
    background: #6B9B23;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(130, 185, 46, 0.4);
}

.search-hint {
    font-size: 14px;
    color: #888888;
    margin: 15px 0 50px 0;
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #333333;
    font-weight: 500;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 199, 0, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 20px;
    color: #000000;
}

/* Hero Responsive */
@media (max-width: 768px) {
    .hero-search-section {
        padding: 40px 15px 50px 15px;
    }
    
    .hero-title {
        font-size: 28px;
        margin: 0 0 15px 0;
    }
    
    .hero-subtitle {
        font-size: 15px;
        margin: 0 0 25px 0;
    }
    
    .search-input-wrapper {
        flex-direction: row;
        padding: 12px;
        border-radius: 16px;
        max-width: 100%;
        gap: 10px;
    }
    
    .hero-search-input {
        width: 100%;
        text-align: center;
        padding: 12px 0;
        font-size: 15px;
    }
    
    .hero-search-button {
        width: auto;
        padding: 14px 30px;
        font-size: 15px;
        flex-shrink: 0;
    }
    
    .search-icon {
        color: #999999;
        font-size: 16px;
        margin-right: 10px;
        flex-shrink: 0;
    }
    
    .search-hint {
        font-size: 13px;
        margin: 12px 0 30px 0;
    }
    
    .hero-features {
        gap: 20px;
        margin-top: 30px;
    }
    
    .hero-feature-item {
        font-size: 13px;
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
    }
    
    .feature-icon i {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .header-search .keyword {
        flex-direction: row !important;
        gap: 10px;
    }
}
