.hero-section .banner-sec img {
    height: 550px;
    object-fit: cover;
}

.hero-section .banner-sec::after {
    background: none !important;
}

.private-tour-class {
    margin-top: 100px;
}

.category-buttons{
    margin-top: 170px;
}

@media all and (min-width:0px) and (max-width: 1024px) {
    .private-tour-class {
        margin-top: 170px;
    }
    .category-buttons{
        margin-top: 200px;
    }
    .hero-section .banner-sec {
        display: block;
    }

}

.custom-shadow {
    background-color: rgba(0, 0, 0, 0); /* yarı saydam siyah */
    border-radius: 0.5rem; /* isteğe bağlı */
    backdrop-filter: blur(2px); /* opsiyonel: arkaplan bulanıklığı */
}

/* ===============================
   TRANSFER SEARCH FORM STYLES
   =============================== */

/* Location Dropdown Styles */
.location-dropdown {
    min-width: 300px;
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.location-results-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.location-result-item {
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.location-result-item:hover {
    background-color: #f8f9fa;
}

.location-result-item:last-child {
    border-bottom: none;
}

.location-result-item.popular {
    background-color: #fff3cd;
}

.location-result-item.popular:hover {
    background-color: #ffeaa7;
}

.location-result-item.loading {
    text-align: center;
    color: #6c757d;
    font-style: italic;
}

.location-result-item.no-results,
.location-result-item.error {
    text-align: center;
    color: #6c757d;
    font-style: italic;
    padding: 20px;
}

.location-item-content {
    display: flex;
    flex-direction: column;
}

.location-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.location-address {
    font-size: 12px;
    color: #666;
    line-height: 1.3;
}

/* Form Validation Styles */
.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.is-valid {
    border-color: #28a745 !important;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25) !important;
}

/* Transfer Form Styles */
.transfer-form {
    transition: all 0.3s ease;
}

.transfer-search-form {
    position: relative;
}

.transfer-search-form .form-control {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.transfer-search-form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Location Input Styles */
.location-input {
    background-color: #fff;
    cursor: pointer;
}

.location-input:focus {
    cursor: text;
}

.location-search-input {
    border: none;
    outline: none;
    box-shadow: none;
}

.location-search-input:focus {
    border: none;
    outline: none;
    box-shadow: none;
}

/* Passenger Selection Styles */
.guest-container {
    position: relative;
}

.pax-toggle {
    cursor: pointer;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.pax-toggle:hover {
    border-color: #007bff;
}

.total-guests {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.guest-summary {
    margin: 0;
    font-size: 12px;
    color: #666;
}

/* Increment/Decrement Styles */
.custom-increment .input-group {
    width: 120px;
}

.custom-increment .btn {
    border: 1px solid #e0e0e0;
    background-color: #fff;
    color: #333;
    transition: all 0.2s ease;
}

.custom-increment .btn:hover {
    background-color: #f8f9fa;
    border-color: #007bff;
}

.custom-increment .input-number {
    text-align: center;
    border-left: none;
    border-right: none;
    border-radius: 0;
}

/* Search Button Styles */
.search-btn {
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 140px;
}

.search-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.search-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Alert Styles */
.alert {
    border-radius: 8px;
    border: none;
    margin-bottom: 20px;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

/* Location Search Styles */
.location-field {
    position: relative;
}

.location-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}

.location-results.show {
    display: block;
}

.location-result-item {
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.location-result-item:last-child {
    border-bottom: none;
}

.location-result-item:hover {
    background-color: #f8f9fa;
}

.location-result-item.selected {
    background-color: #e3f2fd;
}

.location-item-content {
    display: flex;
    flex-direction: column;
}

.location-name {
    font-weight: 500;
    color: #333;
    margin-bottom: 2px;
}

.location-address {
    font-size: 12px;
    color: #666;
}

.location-results .loading {
    padding: 16px;
    text-align: center;
    color: #666;
    font-style: italic;
}

.location-results .no-results {
    padding: 16px;
    text-align: center;
    color: #666;
    font-style: italic;
}

.location-results .error {
    padding: 16px;
    text-align: center;
    color: #dc3545;
    font-style: italic;
}

/* Focus state for location inputs */
.location-input:focus + .location-results {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .location-results {
        max-height: 150px;
    }

    .location-result-item {
        padding: 10px 12px;
    }
}

/* ===============================
   EXISTING STYLES (if any)
   =============================== */
.destination-info{
    position: fixed !important;
}
