:root {
    --primary-color: #1C1C1C;        /* Jet Black */
    --accent-color: #D4AF37;         /* Metallic Gold */
    --secondary-color: #2E2E2E;      /* Graphite Gray */
    --background-color: #FFFFFF;     /* White */
    --text-color: #0F0F0F;
    --light-gray: #F8F9FA;

    /* Auto-generated RGB Equivalents */
    --primary-rgb: 28, 28, 28;
    --accent-rgb: 212, 175, 55;
    --secondary-rgb: 46, 46, 46;
    --background-rgb: 255, 255, 255;
    --text-rgb: 15, 15, 15;
    --light-gray-rgb: 248, 249, 250;

    /* Bootstrap compatibility */
    --bs-primary-rgb: var(--primary-rgb);
    --bs-secondary-rgb: var(--secondary-rgb);
}

body {
    color: var(--text-color);
    background-color: var(--background-color);
}

/* Hero Section */
.car-rentals-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--background-color);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.car-rentals-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1550355291-bbee04a92027?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.2;
    z-index: 0;
}

.hero-body {
    position: relative;
    z-index: 1;
}

.hero-content {
    padding: 20px 0;
    z-index: unset;
}

.hero-content .title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--background-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.hero-feature i {
    color: var(--accent-color);
}

.hero-form-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

/* Form Styles - Fixed for datepicker */
.car-rentals-form-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    margin: 0;
}

.car-rentals-form-section form {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 15px;
}

.car-rentals-form-section .input-group {
    flex: 0 0 auto;
    min-width: 200px;
    margin-bottom: 0;
}

.car-rentals-form-section .input-group .datepicker{
    display: block;
    width: 100%;
}

.car-rentals-form-section .input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.9rem;
}

.car-rentals-form-section .input-group input,
.car-rentals-form-section .input-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 8px !important;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--background-color);
}

.car-rentals-form-section .input-group input:focus,
.car-rentals-form-section .input-group select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    outline: none;
}

/* Datepicker wrapper fix */
.datepicker-wrapper {
    position: relative;
    width: 100%;
}

.datepicker-wrapper input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--background-color);
}

.datepicker-wrapper input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    outline: none;
}

.trip-type {
    flex: 1;
    display: flex;
    min-width: 200px;
    gap: 10px;
}

.trip-button {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--secondary-color);
    border-radius: 8px;
    background-color: transparent;
    color: var(--text-color);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.trip-button.active,
.trip-button:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
}

.search_location_wrapper {
    position: relative;
}

.loading-results {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(15%);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in;
}

.loading-results.loading {
    opacity: 1;
    visibility: visible;
}

span#location_suggestion_err {
    position: absolute;
    display: block;
    width: 100%;
    font-size: 14px;
    font-weight: 800;
    color: #e24;
    z-index: 1;
    margin-bottom: 5px;
    top: 100%;
}

ul#suggestionsList {
    margin: 0;
    list-style: none;
    position: absolute;
    background: var(--background-color);
    padding: 5px 0px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    top: 99%;
    max-height: 200px;
    overflow: auto;
    width: 100%;
    z-index: 4;
    border-radius: 8px;
}

ul#suggestionsList:empty {
    display: none;
}

ul#suggestionsList.hide {
    display: none;
}

ul#suggestionsList li {
    cursor: pointer;
    padding: 10px 15px;
    transition: background-color 0.2s ease;
    color: var(--primary-color);
}

ul#suggestionsList li:not(:last-child) {
    border-bottom: 1px solid #eee;
}

ul#suggestionsList li:hover {
    background: var(--light-gray);
}

.explore-button-wrapper {
    display: flex;
    align-items: flex-end;
    min-width: 200px;
}

.explore-button {
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.explore-button:hover {
    background: var(--primary-color);
    color: var(--background-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent-color) 0%, #F5E7A9 100%);
    padding: 60px 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background: var(--primary-color);
    color: var(--background-color);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-cta:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: var(--accent-color);
}

/* Section Styles */
.section-padding {
    padding: 80px 0;
}

.bg-section {
    background-color: var(--light-gray);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    color: var(--primary-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--secondary-color);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Destination Cards - Fixed */
.destination-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    background: var(--background-color);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.destination-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.destination-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .destination-img {
    transform: scale(1.05);
}

.destination-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.destination-info {
    padding: 1.5rem;
}

.destination-info h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.location-text {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.destination-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.destination-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.btn-destination {
    background: var(--primary-color);
    color: var(--background-color);
    border: none;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-destination:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.btn-view-all {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

/* Category Tabs */
.category-tabs {
    margin-bottom: 3rem;
}

.nav-pills .nav-link {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    padding: 10px 25px;
    margin: 0 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-pills .nav-link.active {
    background: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
}

.nav-pills .nav-link:hover {
    background: var(--secondary-color);
    color: var(--background-color);
}

/* Car Cards */
.car-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    background: var(--background-color);
    position: relative;
}

.car-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.car-img {
    height: 220px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s ease;
}

.car-card:hover .car-img {
    transform: scale(1.05);
}

.car-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.car-details {
    padding: 1.5rem;
}

.car-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.car-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.car-spec {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.car-spec i {
    color: var(--accent-color);
}

.car-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.car-price span {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 400;
}

.btn-rental {
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-rental:hover {
    background: var(--primary-color);
    color: var(--background-color);
}

/* Process Cards - Replacing Offer Cards */
.process-card {
    background: var(--background-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--accent-color);
}

.process-card h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.process-card p {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.btn-process {
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-process:hover {
    background: var(--primary-color);
    color: var(--background-color);
}

/* Service Addons */
.service-addon {
    background: var(--background-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.service-addon:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.addon-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.service-addon h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.addon-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.addon-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    text-align: left;
}

.addon-features li {
    padding: 5px 0;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.btn-addon {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-addon:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

/* Features Section */
.feature-box {
    background: var(--background-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.feature-box h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-box p {
    color: var(--secondary-color);
}

/* Services Section */
.service-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--background-color);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.service-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.service-item h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-item p {
    color: var(--secondary-color);
    margin-bottom: 0;
}

/* Travel Benefits Section - Replacing Membership */
.benefit-card {
    background: var(--background-color);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-card.featured {
    border: 2px solid var(--accent-color);
}

.benefit-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 5px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.benefit-header h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
    font-size: 1.5rem;
}

.benefit-content p {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.benefit-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.benefit-features i {
    color: var(--accent-color);
    font-size: 1rem;
}

/* Testimonials Section */
.testimonial-card {
    background: var(--background-color);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-content {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--secondary-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h6 {
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.rating {
    color: var(--accent-color);
}

/* FAQ Section */
.accordion-item {
    background: var(--background-color);
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background: var(--background-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
    background: var(--background-color);
    color: var(--accent-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231C1C1C'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23D4AF37'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    color: var(--secondary-color);
}

/* Final Call to Action Section */
.final-cta-container {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    padding: 4rem 3rem;
    color: var(--background-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--background-color);
}

.final-cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.final-cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.final-cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.final-cta-feature i {
    color: var(--accent-color);
}

.btn-final-cta {
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    margin-bottom: 1rem;
}

.btn-final-cta:hover {
    background: var(--background-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    color: var(--accent-color);
}

.final-cta-contact {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

.final-cta-contact a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.final-cta-contact a:hover {
    color: var(--background-color);
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .hero-content .title {
        font-size: 2rem;
    }
    
    .hero-form-container {
        margin-top: 2rem;
    }
    
    .car-rentals-form-section form {
        flex-direction: column;
    }
    
    .car-rentals-form-section .input-group,
    .trip-type,
    .explore-button-wrapper {
        width: 100%;
        margin: 0 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .final-cta-container {
        padding: 2rem 1.5rem;
    }
    
    .final-cta-title {
        font-size: 1.8rem;
    }
    
    .final-cta-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .benefit-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media screen and (max-width: 520px) {
    .car-rentals-hero{
        padding: 10px 0;
    }
    
    .hero-content{
        padding-top: 0;
    }
    .car-rentals-form-section form {
        width: 100%;
        flex-flow: column wrap;
    }

    .input-group {
        margin: 0 0 10px;
    }

    .explore-button {
        width: 100%;
    }

    .input-group label {
        display: none;
    }

    input.has-error {
        margin-bottom: 20px;
    }

    span#location_suggestion_err {
        bottom: -10px;
    }

    .loading-results {
        transform: translateY(-50%);
    }
}

/* Modern Search Results Page Styles */

/* Hero Section */
.search-hero {
    background: linear-gradient(135deg, #1C1C1C 0%, #2E2E2E 100%);
    padding: 40px 0;
    position: relative;
    /*overflow: hidden;*/
}

.search-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1550355291-bbee04a92027?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.search-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #FFFFFF;
}

.search-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.search-hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.search-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

/* Results Section */
.search-results-section {
    padding: 60px 0;
    background: #F8F9FA;
    min-height: 60vh;
}

/* Results Header */
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E0E0E0;
}

.results-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1C1C1C;
    margin: 0;
}

.results-count {
    color: #666;
    margin: 5px 0 0;
    font-size: 1rem;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #FFFFFF;
    border: 2px solid #D4AF37;
    border-radius: 12px;
    color: #1C1C1C;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #D4AF37;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Results Grid */
.results-grid {
    display: grid;
    gap: 30px;
}

/* Modern Car Result Card */
.car-result-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 300px 1fr 280px;
}

.car-result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Car Image Section */
.car-image-section {
    position: relative;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.car-image-wrapper {
    position: relative;
    height: 180px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
}

.car-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.car-result-card:hover .car-image {
    transform: scale(1.05);
}

.car-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #D4AF37;
    color: #1C1C1C;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.supplier-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
}

.supplier-logo img {
    max-width: 100px;
    max-height: 30px;
    object-fit: contain;
    opacity: 0.7;
}

/* Car Content Section */
.car-content-section {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.car-header {
    margin-bottom: 20px;
}

.car-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1C1C1C;
    margin: 0;
}

.car-subtitle {
    color: #666;
    font-style: italic;
    font-size: 0.95rem;
}

/* Car Specs Grid */
.car-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: #F8F9FA;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: #E9ECEF;
    transform: translateY(-2px);
}

.spec-item i {
    color: #D4AF37;
    font-size: 1.1rem;
}

.spec-item span {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}

/* Car Features */
.car-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #555;
}

.feature-item i {
    color: #28a745;
    font-size: 1rem;
}

/* Location Info */
.location-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: #F0F8FF;
    border-radius: 10px;
    color: #0066CC;
    font-weight: 500;
    font-size: 0.9rem;
}

.location-info i {
    color: #0066CC;
}

/* Car Pricing Section */
.car-pricing-section {
    background: linear-gradient(135deg, #1C1C1C 0%, #2E2E2E 100%);
    padding: 30px;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.pricing-header {
    margin-bottom: 20px;
}

.package-label {
    display: block;
    background: #D4AF37;
    color: #1C1C1C;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.duration-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.pricing-main {
    margin-bottom: 15px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 400;
    vertical-align: top;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.period {
    font-size: 1rem;
    opacity: 0.8;
    display: block;
    margin-top: 5px;
}

.pricing-per-day {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 25px;
}

.book-now-btn {
    width: 100%;
    padding: 15px;
    background: #D4AF37;
    color: #1C1C1C;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.book-now-btn:hover {
    background: #FFFFFF;
    color: #1C1C1C;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.details-link {
    color: #D4AF37;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.details-link:hover {
    color: #FFFFFF;
}

/* No Results Modern */
.no-results-modern {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.no-results-icon {
    width: 80px;
    height: 80px;
    background: #F8F9FA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.no-results-icon i {
    font-size: 2.5rem;
    color: #666;
}

.no-results-modern h3 {
    font-size: 1.8rem;
    color: #1C1C1C;
    margin-bottom: 10px;
}

.no-results-modern p {
    color: #666;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.modify-search-btn {
    padding: 12px 30px;
    background: #D4AF37;
    color: #1C1C1C;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.modify-search-btn:hover {
    background: #1C1C1C;
    color: #D4AF37;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .car-result-card {
        grid-template-columns: 250px 1fr 250px;
    }
}

@media screen and (max-width: 992px) {
    .car-result-card {
        grid-template-columns: 1fr;
    }
    
    .car-image-section {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }
    
    .car-image-wrapper {
        height: 150px;
        width: 200px;
        margin-bottom: 0;
    }
    
    .car-pricing-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        align-items: center;
    }
    
    .pricing-main {
        grid-column: 1 / -1;
    }
}

@media screen and (max-width: 768px) {
    .search-hero-title {
        font-size: 2rem;
    }
    
    .results-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .car-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .car-features {
        grid-template-columns: 1fr;
    }
    
    .car-pricing-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .car-image-section {
        flex-direction: column;
    }
    
    .car-image-wrapper {
        width: 100%;
        height: 200px;
    }
}

@media screen and (max-width: 576px) {
    .search-hero-title {
        font-size: 1.8rem;
    }
    
    .search-form-wrapper {
        padding: 20px;
    }
    
    .car-content-section {
        padding: 20px;
    }
    
    .car-pricing-section {
        padding: 20px;
    }
    
    .price {
        font-size: 2rem;
    }
}