body{
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    background-color:#f2f2f2;
}

body.preloader-active {
    overflow: hidden;
}

.page-preloader {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 10, 26, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 4000;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-preloader__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.page-preloader__logo {
    width: 180px;
    max-width: 70vw;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.45));
    animation: preloaderFloat 2.6s ease-in-out infinite;
}

@keyframes preloaderFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

/* Site Header & Logo */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: transparent;
}

.header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
}

.site-logo {
    height: 100px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.05);
}

.policy-links {
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    left: 50%; /* Yatayda tam ortalanacak */
    transform: translateX(-50%); /* Tam ortalama */
}

.policy-link {
    font-size: 0.85rem;
    font-weight: 600;
    border-radius:5px;
    color: #ffffff;
    padding: 0.35rem 0.85rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.policy-link:hover {
    color: #000;
    background: #ffffff;
    border-color: #ffffff;
}

@media (max-width: 768px) {
    .site-header {
        padding: 1rem 0;
    }
    .site-logo {
        height: 70px;
        max-width: 150px;
    }
    .header-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    .policy-links {
        width: 100%;
        display: flex;
        justify-content: center; /* yatay ortalama */
    }
}

.cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 420px;
    width: calc(100% - 40px);
    background: rgba(5, 10, 26, 0.95);
    color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    padding: 1.5rem;
    z-index: 3000;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-consent.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-consent__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-consent__text h6 {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.cookie-consent__text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.cookie-consent__actions {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .cookie-consent {
        right: 10px;
        left: 10px;
        width: auto;
    }
    .cookie-consent__actions {
        flex-direction: column;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.6) 100%), url('img/bg.jpg') center/cover no-repeat fixed;
    color: #fff;
    display: flex;
    align-items: center;
}

/* Hero Content */
.hero-content {
   /* margin-bottom: 3rem; */
}

.hero-subtitle {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffc107;
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 193, 7, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .hero {
        padding: 6rem 0 4rem;
    }
}

/* Booking Card */
.booking-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Navigation Pills */
.nav-pills {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 0;
    margin-bottom: 2rem;
}

.nav-pills .nav-link {
    font-weight: 600;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 1rem 2rem;
    border-radius: 0;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    background: transparent;
    margin-right: 1rem;
}

.nav-pills .nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-bottom-color: rgba(255, 255, 255, 0.4);
}

.nav-pills .nav-link.active {
    background: transparent;
    color: #ffffff;
    border-bottom-color: #ffffff;
    font-weight: 700;
}

.nav-pills .nav-link i {
    font-size: 1.1rem;
}

/* Form Labels */
label.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #000;
    margin-bottom: 0.75rem;
    display: block;
}

label.form-label i {
    color: #ffc107;
    font-size: 1rem;
}

/* Modern Input Wrapper */
.input-wrapper {
    position: relative;
}

.modern-input {
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    height: 55px;
    color: #2c3e50;
}

.modern-input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    outline: none;
    background: rgba(255, 255, 255, 1);
}

.modern-input::placeholder {
    color: #adb5bd;
    font-weight: 400;
}

.form-select.modern-input {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
}

/* Search Button */
.btn-search {
    padding: 0.875rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
    transition: all 0.3s ease;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.5);
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
}

.btn-search:active {
    transform: translateY(0);
}

.btn-search i {
    font-size: 1.1rem;
}


.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #dee2e6;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 0.2rem;
}

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.form-check-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    cursor: pointer;
    margin-left: 0.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Invalid Feedback */
.invalid-feedback {
    font-size: 0.875rem;
    margin-top: 0.5rem;
    color: #dc3545;
    display: none;
    width: 100%;
}

.was-validated .input-wrapper .form-control:invalid ~ .invalid-feedback,
.was-validated .input-wrapper .form-select:invalid ~ .invalid-feedback,
.input-wrapper .form-control.is-invalid ~ .invalid-feedback,
.input-wrapper .form-select.is-invalid ~ .invalid-feedback {
    display: block;
}

.modern-input.is-invalid {
    border-color: #dc3545;
}

.modern-input.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
}


/* range */
.wrapper {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    border-radius: 10px;
}
.range-container {
    position: relative;
    width: 100%;
    height: 100px;
}
input[type="range"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    outline: none;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    background-color: transparent;
    pointer-events: none;
}
.slider-track {
    width: 100%;
    height: 5px;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    border-radius: 5px;
}
input[type="range"]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    height: 5px;
}
input[type="range"]::-moz-range-track {
    -moz-appearance: none;
    height: 5px;
}
input[type="range"]::-ms-track {
    appearance: none;
    height: 5px;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 1.7em;
    width: 1.7em;
    background-color: #3264fe;
    cursor: pointer;
    margin-top: -9px;
    pointer-events: auto;
    border-radius: 50%;
}
input[type="range"]::-moz-range-thumb {
    height: 1.7em;
    width: 1.7em;
    cursor: pointer;
    border-radius: 50%;
    background-color: #3264fe;
    pointer-events: auto;
    border: none;
}
input[type="range"]::-ms-thumb {
    appearance: none;
    height: 1.7em;
    width: 1.7em;
    cursor: pointer;
    border-radius: 50%;
    background-color: #3264fe;
    pointer-events: auto;
}
input[type="range"]:active::-webkit-slider-thumb {
    background-color: #ffffff;
    border: 1px solid #3264fe;
}
.values {
    width: 100%;
    position: relative;
    margin: auto;
    padding: 10px 0;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    font-size: 25px;
    color: #000;
}
/* filtre kartı içinde kompakt range görünümü */
.filter-range .values {
    padding: 4px 0;
    font-size: 14px;
    color: #212529;
    position: relative;
    z-index: 2;
}
.filter-range .range-container {
    height: 40px;
    position: relative;
    z-index: 1;
}
.filter-range input[type="range"]::-webkit-slider-thumb {
    height: 1.2em;
    width: 1.2em;
    margin-top: -7px;
}
.filter-range input[type="range"]::-moz-range-thumb {
    height: 1.2em;
    width: 1.2em;
}
.filter-range input[type="range"]::-ms-thumb {
    height: 1.2em;
    width: 1.2em;
}
.filter-range .slider-track {
    background: linear-gradient(to right, #e9ecef 0%, #0d6efd 0%, #0d6efd 0%, #e9ecef 0%);
    height: 6px;
}
.filter-range .wrapper {
    background-color: transparent;
    overflow: visible;
}

/* Vendor Badge Styling */
.vendor-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.icon-color{
    color:#ffc107;
}

/* ============================================
   LISTING PAGE STYLES
   ============================================ */

/* Listing Page Header */
.listing-page-header {
    color: #2c3e50;
    padding: 3rem 0 2rem;
    margin-top: 50px;
}

.listing-page-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.listing-page-subtitle {
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 0;
}

/* Location Info Container */
.location-info-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.location-info-box {
    flex: 1;
    min-width: 250px;
    padding: 1rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
}

.location-info-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

.location-info-label i {
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

.location-info-content {
    display: flex;
    flex-direction: column;
}

.location-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.4;
}

.location-date {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 500;
}

/* Listing Container */
.listing-container {
    padding: 3rem 0;
}

.listing-container .row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-right: -15px !important;
    margin-left: -15px !important;
}

.listing-container .row > [class*="col-"] {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 992px) {
    .listing-container .row > .col-lg-3 {
        flex: 0 0 auto;
        width: 25% !important;
        max-width: 25% !important;
    }

    .listing-container .row > .col-lg-9 {
        flex: 0 0 auto;
        width: 75% !important;
        max-width: 75% !important;
    }
}

/* Filter Sidebar */
.filter-sidebar {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: sticky;
    top: 100px;
    margin-bottom: 2rem;
}

@media (min-width: 992px) {
    .filter-sidebar {
        display: flex;
        flex-direction: column;
        max-height: calc(100vh - 140px);
    }

    .filter-header {
        flex-shrink: 0;
    }

    .filter-body {
        flex: 1;
        overflow-y: auto;
        padding-right: 1.5rem;
        margin-left: 0;
        scrollbar-width: thin;
    }

    .filter-body::-webkit-scrollbar {
        width: 6px;
    }

    .filter-body::-webkit-scrollbar-thumb {
        background-color: rgba(13, 110, 253, 0.4);
        border-radius: 999px;
    }

    .filter-body::-webkit-scrollbar-track {
        background-color: rgba(0, 0, 0, 0.05);
        border-radius: 999px;
    }
}

.filter-header {
    background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
    padding: 1.25rem 1.5rem;
    color: white;
}

.filter-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: white;
    display: flex;
    align-items: center;
}

.filter-body {
    padding: 1rem;
    margin-left: 20px;
}

.filter-toggle-btn {
    border-radius: 0;
    padding: 0.75rem 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.filter-toggle-btn .chevron {
    transition: transform 0.2s ease;
}

.filter-toggle-btn.is-open .chevron {
    transform: rotate(180deg);
}

@media (max-width: 991.98px) {
    .filter-sidebar {
        position: static;
        top: auto;
    }

    .filter-body {
        margin-left: 0;
        padding: 1rem 1.25rem;
    }

    .filter-body.collapsible {
        display: none;
    }

    .filter-body.collapsible.is-open {
        display: block;
    }
}

.filter-sidebar .form-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    display: block;
}


.filter-sidebar .form-check-label {
    color: #495057;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.2s;
}

.filter-sidebar .form-check-label:hover {
    color: #0d6efd;
}

.filter-sidebar .form-check-input {
    margin-top: 0.25rem;
    cursor: pointer;
}

.filter-sidebar .form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Listing Toolbar */
.listing-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
    gap: 1rem;
}

.listing-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.result-count-badge {
    font-size: 1.1rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
}

.result-count-badge i {
    color: #0d6efd;
    font-size: 1.2rem;
}

.location-brief {
    font-size: 0.9rem;
    color: #6c757d;
}

.listing-sort {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sort-label {
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.sort-select {
    min-width: 200px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.sort-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

/* Loading Spinner */
.loading-spinner-wrapper {
    display: flex;
    justify-content: center;
}

/* Vehicle Grid */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.vehicle-grid-item {
    width: 100%;
}

/* Vehicle Card */
.vehicle-card {
    margin:15px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.vehicle-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #f8f9fa;
}

.vehicle-card-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.vehicle-card:hover .vehicle-card-image {
    transform: scale(1.05);
}

.vehicle-vendor-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    max-width: 90px;
    max-height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.vehicle-vendor-badge.has-logo {
    background: rgba(255, 255, 255, 0.95);
    padding: 0.35rem 0.6rem;
    border-radius: 2px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-vendor-logo {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.vehicle-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.vehicle-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.vehicle-class {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0 0 1rem 0;
    font-weight: 500;
}

.vehicle-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.vehicle-feature {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: #495057;
    background: #f8f9fa;
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    font-weight: 500;
}

.vehicle-feature i {
    color: #0d6efd;
    font-size: 0.9rem;
}

.vehicle-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.vehicle-price {
    display: flex;
    flex-direction: column;
}

.vehicle-price-label {
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vehicle-price-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0d6efd;
    line-height: 1.2;
}

.vehicle-rent-btn {
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.vehicle-rent-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
}

.vehicle-rent-btn:active {
    transform: translateY(0);
}

/* Driver Info Page */
.form-section {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #fff;
}

.form-section h5 {
    color: #0d6efd;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0d6efd;
}

.id-type-toggle {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.id-type-btn {
    flex: 1;
    padding: 10px;
    border: 2px solid #dee2e6;
    background: white;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
    text-align: center;
}

.id-type-btn.active {
    border-color: #0d6efd;
    background: #e7f1ff;
    font-weight: bold;
}

.summary-box {
    position: sticky;
    top: 20px;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.summary-box h5 {
    color: #0d6efd;
    margin-bottom: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.summary-total {
    font-size: 1.3rem;
    font-weight: bold;
    color: #198754;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #198754;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.no-results-icon {
    font-size: 4rem;
    color: #dee2e6;
    margin-bottom: 1.5rem;
}

.no-results h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.no-results p {
    color: #6c757d;
    font-size: 1rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .vehicle-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.25rem;
    }

    .filter-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }

    .listing-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .listing-sort {
        width: 100%;
    }

    .sort-select {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .listing-page-header {
        padding: 2rem 0 1.5rem;
        margin-top: 30px;
    }

    .listing-page-title {
        font-size: 2rem;
    }

    .listing-page-subtitle {
        font-size: 1rem;
    }

    .location-info-container {
        flex-direction: column;
        gap: 1rem;
    }

    .location-info-box {
        min-width: 100%;
    }

    .location-name {
        font-size: 1.1rem;
    }

    .location-date {
        font-size: 0.9rem;
    }

    .vehicle-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }


    .listing-container {
        padding: 2rem 0;
    }
}

@media (max-width: 576px) {
    .vehicle-card-body {
        padding: 1.25rem;
    }

    .vehicle-name {
        font-size: 1.2rem;
    }

    .vehicle-features {
        gap: 0.5rem;
    }

    .vehicle-feature {
        font-size: 0.8rem;
        padding: 0.35rem 0.6rem;
    }

    .vehicle-card-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .vehicle-rent-btn {
        width: 100%;
        justify-content: center;
    }
}