/* Search Page Styles */

/* Detaylı Arama Formu */
.advanced-search-form {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 30px;
    margin-bottom: 30px;
}

.advanced-search-form h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    border-bottom: 3px solid #ffd700;
    padding-bottom: 10px;
}

.form-row {
    margin-bottom: 20px;
}

.form-group label {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    font-size: 0.95rem;
}

.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.form-control:focus, .form-select:focus {
    border-color: #ffd700;
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
    background-color: white;
}

.search-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.btn-search {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
    color: white;
}

.btn-reset {
    background: #6c757d;
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-reset:hover {
    background: #5a6268;
    transform: translateY(-2px);
    color: white;
}

/* Popüler Kategoriler - İyileştirilmiş Tasarım */
.popular-categories {
    margin-top: 50px;
}

.popular-categories h3 {
    text-align: center;
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
}

.popular-categories h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 2px;
}

.category-card {
    background: white;
    border: none;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.category-icon {
    font-size: 3.5rem;
    color: #e74c3c;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    color: #c0392b;
}

.category-card h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.category-card p {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.category-card .btn {
    border: 2px solid #e74c3c;
    color: #e74c3c;
    background: transparent;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.category-card .btn:hover {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-color: #e74c3c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* Arama İpuçları */
.search-tips {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #ffd700;
    margin-top: 30px;
}

.search-tips h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.search-tips ul {
    margin: 0;
    padding-left: 20px;
}

.search-tips li {
    color: #495057;
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.search-tips li strong {
    color: #2c3e50;
}

/* Responsive */
@media (max-width: 768px) {
    .advanced-search-form {
        padding: 20px;
    }
    
    .search-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .category-card {
        padding: 25px 20px;
    }
    
    .category-icon {
        font-size: 3rem;
    }
    
    .popular-categories h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .advanced-search-form {
        padding: 15px;
    }
    
    .category-card {
        padding: 20px 15px;
    }
    
    .category-icon {
        font-size: 2.5rem;
    }
}
