/* Hero Search Box PakWheels Style */
.paktrees-hero-search-container {
    background: linear-gradient(135deg, rgba(24, 84, 42, 0.92), rgba(15, 48, 25, 0.95)), url('https://images.unsplash.com/photo-1585320806297-9794b3e4eeae?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    padding: 50px 20px 40px 20px;
    border-radius: 16px;
    margin: 20px 0 35px 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    color: #ffffff;
    font-family: inherit;
}

.paktrees-hero-search-box {
    max-width: 1050px;
    margin: 0 auto;
    text-align: center;
}

.hero-search-title {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-search-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
    color: #d4edda !important;
    opacity: 0.95;
}

.paktrees-search-form {
    background: #ffffff;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.search-fields-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.2fr;
    gap: 12px;
    align-items: end;
}

.search-field {
    text-align: left;
}

.pm-rtl .search-field {
    text-align: right;
}

.search-field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 6px;
}

.search-field input, .search-field select {
    width: 100%;
    height: 48px;
    padding: 10px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    background: #f8f9fa;
    color: #333;
    transition: border-color 0.2s;
}

.search-field input:focus, .search-field select:focus {
    border-color: #28a745;
    outline: none;
    background: #fff;
}

.paktrees-btn-search {
    width: 100%;
    height: 48px;
    background: linear-gradient(135deg, #28a745, #218838);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.paktrees-btn-search:hover {
    background: linear-gradient(135deg, #218838, #1e7e34);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(40, 167, 69, 0.4);
}

/* Quick Pills */
.paktrees-quick-pills {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
}

.pill-label {
    font-weight: bold;
    color: #e2f0d9;
}

.quick-pill {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none !important;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.2s ease;
}

.quick-pill:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* Responsive Media Queries */
@media (max-width: 991px) {
    .search-fields-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .paktrees-hero-search-container {
        padding: 30px 15px 25px 15px;
        border-radius: 12px;
    }
    .hero-search-title {
        font-size: 22px;
    }
    .hero-search-subtitle {
        font-size: 14px;
    }
    .search-fields-grid {
        grid-template-columns: 1fr;
    }
}
