.logo .light img{
    max-width: 75% !important;
}

/* Fix search form layout on index page */
.advance__search__section .form-area form#search-form {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    gap: 0;
}

.advance__search__section .form-area form#search-form .custom-select {
    width: 22%;
}

.advance__search__section .form-area form#search-form .button-area {
    flex-shrink: 0;
}

/* Responsive for search form */
@media (max-width: 1199px) {
    .advance__search__section .form-area form#search-form .custom-select {
        width: 30%;
    }
}

@media (max-width: 991px) {
    .advance__search__section .form-area form#search-form {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .advance__search__section .form-area form#search-form .custom-select {
        width: 48%;
    }
    
    .advance__search__section .form-area form#search-form .button-area {
        width: 100%;
        margin-top: 10px;
    }
    
    .advance__search__section .form-area form#search-form .button-area .rts-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .advance__search__section .form-area {
        padding: 20px !important;
    }
    
    .advance__search__section .form-area form#search-form {
        flex-direction: column;
    }
    
    .advance__search__section .form-area form#search-form .custom-select {
        width: 100%;
    }
}

/* Tours Page Filter Styling */
.tours-page-filter {
    position: relative;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.95) 0%, rgba(160, 82, 45, 0.9) 50%, rgba(205, 133, 63, 0.85) 100%);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(139, 69, 19, 0.3);
}

/* Custom select dropdown height */
.tours-page-filter .custom-select .custom-options {
    max-height: 140px !important;
    overflow-y: auto;
}

.advance__search__section .custom-select .custom-options {
    max-height: 140px !important;
    overflow-y: auto;
}

.tours-page-filter .form-area {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 25px 30px;
}

.tours-page-filter .form-area form#tours-filter-form {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    gap: 15px;
}

.tours-page-filter .form-area form#tours-filter-form .custom-select {
    flex: 1;
    min-width: 180px;
}

.tours-page-filter .form-area form#tours-filter-form .button-area {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.tours-page-filter .form-area form#tours-filter-form .button-area .reset-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.tours-page-filter .form-area form#tours-filter-form .button-area .reset-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Results info styling */
.results-info {
    text-align: center;
    margin-bottom: 30px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8f4f0 0%, #fff 100%);
    border-radius: 10px;
    border-left: 4px solid #CD853F;
}

.results-info p {
    margin: 0;
    font-size: 16px;
    color: #5a4a3a;
}

.results-info strong {
    color: #8B4513;
    font-weight: 600;
}

/* Responsive for tours filter */
@media (max-width: 1199px) {
    .tours-page-filter .form-area form#tours-filter-form .custom-select {
        min-width: 150px;
    }
}

@media (max-width: 991px) {
    .tours-page-filter .form-area form#tours-filter-form {
        flex-wrap: wrap;
    }
    
    .tours-page-filter .form-area form#tours-filter-form .custom-select {
        width: 48%;
        flex: none;
    }
    
    .tours-page-filter .form-area form#tours-filter-form .button-area {
        width: 100%;
        margin-top: 10px;
        justify-content: center;
    }
    
    .tours-page-filter .form-area form#tours-filter-form .button-area .rts-btn {
        flex: 1;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .tours-page-filter {
        padding: 20px 15px;
    }
    
    .tours-page-filter .form-area {
        padding: 20px 15px;
    }
    
    .tours-page-filter .form-area form#tours-filter-form {
        flex-direction: column;
    }
    
    .tours-page-filter .form-area form#tours-filter-form .custom-select {
        width: 100%;
    }
    
    .tours-page-filter .form-area form#tours-filter-form .button-area {
        flex-direction: column;
    }
    
    .tours-page-filter .form-area form#tours-filter-form .button-area .rts-btn {
        width: 100%;
    }
}
