/* Search Form Styles */
.search-form-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    z-index: 1;
    transition: margin-top 0.3s ease-out;
}
.form-group {
    margin-bottom: 0px !important;
}
@media (min-width: 768px) {
    .search-form-section.scroll-active {
        margin-top: -200px;
        
    z-index:1000;
    }
}

.search-form-card {
    
    background: #1281d9;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    padding: 25px;
    transition: all 0.3s ease;
        border: 1px solid #c92525;
}

.search-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.search-form-heading {
    font-size: 1.5rem;
    color: #fff !important;
    margin-bottom: 20px;
    font-weight: 600;
}

.form-group label {
    font-weight: 500;
    color: #495057;
    margin-bottom: 8px;
}

.form-control.search-input {
    height: 50px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 10px 15px;
    font-size: 1rem;
    transition: all 0.3s;
    background-color: #f8f9fa;
}

.form-control.search-input:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
    background-color: #fff;
}

.select2-container--default .select2-selection--single {
    height: 50px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 50px;
    padding-left: 15px;
    color: #495057;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px;
}

.search-btn {
    height: 50px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    border: none;
    width: 100%;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: linear-gradient(135deg, #357abd 0%, #2d6da3 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.search-btn i {
    margin-right: 8px;
}

.input-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #6c757d;
}

.input-with-icon {
    padding-left: 40px;
}

/* Flatpickr customization */
.flatpickr-calendar {
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.flatpickr-day.selected {
    background: #4a90e2;
    border-color: #4a90e2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .search-form-card {
        padding: 15px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .search-btn {
        margin-top: 10px;
    }
}