  /* Glassmorphism Hero - Option 3 */
.rent-hero-glass {
    position: relative;
    min-height: 100vh;
    background: #0a0a0a;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    transform: scale(1.1);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.85) 0%, 
        rgba(30, 30, 60, 0.75) 50%, 
        rgba(10, 10, 10, 0.85) 100%);
}

.glass-hero-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.stat-glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-glass-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 193, 7, 0.2);
}

.booking-glass-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.title-underline {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 10px;
}

.form-floating > label {
    color: #6c757d;
}

.form-control:focus, .form-select:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

.btn-warning {
    background: linear-gradient(135deg, #ed5729 0%, #ed5729 100%);
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
    color: #fff !important;
}

.btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.5);
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

.trust-badge {
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .display-2 {
        font-size: 2.5rem;
    }
    
    .glass-hero-card {
        padding: 2rem !important;
    }
}

/* ============================================
   FIX IMAGE SECTION ONLY - REPLACE THIS PART
   ============================================ */

/* Image Section - PROPERLY FIXED */
.md-listing-single figure {
    position: relative;
    margin: 0;
    padding: 2rem 1.5rem;
    background: #f8f9fa;
    min-height: 220px;
    max-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.md-listing-single figure img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.md-listing-single:hover figure img {
    transform: scale(1.05);
}

/* Responsive Image Heights */
@media (max-width: 1199px) {
    .md-listing-single figure {
        min-height: 200px;
        max-height: 200px;
    }
    
    .md-listing-single figure img {
        max-height: 160px;
    }
}

@media (max-width: 991px) {
    .md-listing-single figure {
        min-height: 190px;
        max-height: 190px;
    }
    
    .md-listing-single figure img {
        max-height: 150px;
    }
}

@media (max-width: 767px) {
    .md-listing-single figure {
        min-height: 180px;
        max-height: 180px;
        padding: 1.5rem 1rem;
    }
    
    .md-listing-single figure img {
        max-height: 140px;
    }
}

@media (max-width: 575px) {
    .md-listing-single figure {
        min-height: 160px;
        max-height: 160px;
        padding: 1rem;
    }
    
    .md-listing-single figure img {
        max-height: 120px;
    }
}



/* ============================================
   CAR BOOKING SECTION
   ============================================ */

/* Main Car Booking Section */
.car-booking {
    background: #f8f9fa;
}

.ptb-120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

/* Section Title */
.title-style-2 .subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.title-style-2 h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0c0800;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-30 {
    margin-top: 30px;
}

/* Car Card */
.car-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.car-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(237, 87, 41, 0.12);
}

/* Image Section - FIXED HEIGHT */
.car-card .feature-img {
    position: relative;
    margin: 0;
    background: #f8f9fa;
    min-height: 240px;
    max-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.car-card .feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.car-card:hover .feature-img img {
    transform: scale(1.1);
}

/* Card Content */
.car-card .card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Star Rating Badge */
.star-rating {
    top: -20px;
    right: 20px;
    background: linear-gradient(135deg, #FFA726 0%, #FB8C00 100%);
    color: #fff;
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 5px 15px rgba(255, 167, 38, 0.3);
    z-index: 2;
}

.star-rating i {
    color: #fff;
}

/* Car Title */
.car-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0c0800;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

/* Pricing Info */
.pricing-info {
    margin-bottom: 1rem;
}

.pricing-info strong {
    font-size: 1.75rem;
    font-weight: 800;
}

.text-primary {
    color: #ed5729 !important;
}

/* Car Info List */
ul.car-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

ul.car-info li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #495057;
    font-weight: 500;
    padding: 0.6rem 0.75rem;
    background: rgba(237, 87, 41, 0.04);
    border-radius: 6px;
    border-left: 3px solid #ed5729;
}

ul.car-info li span {
    display: inline-flex;
    align-items: center;
}

ul.car-info li i {
    color: #ed5729;
    font-size: 1rem;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(237, 87, 41, 0.12);
    border-radius: 50%;
}

/* Card Buttons */
.card-btns {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 2px solid rgba(237, 87, 41, 0.1);
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.card-btns .btn {
    font-weight: 600;
    padding: 0.7rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: fit-content;
}

.card-btns .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.card-btns .btn:hover::before {
    width: 300px;
    height: 300px;
}

.card-btns .btn i {
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* Call Button */
.card-btns .btn-secondary {
    background: linear-gradient(135deg, #111010 0%, #2a2929 100%);
    border: 2px solid #111010;
    color: #fff;
    box-shadow: 0 4px 15px rgba(17, 16, 16, 0.2);
}

.card-btns .btn-secondary:hover {
    background: linear-gradient(135deg, #2a2929 0%, #3d3d3d 100%);
    border-color: #2a2929;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(17, 16, 16, 0.35);
}

/* WhatsApp Button (Outline) */
.card-btns .outline-btn {
    background: rgba(37, 211, 102, 0.05);
    border: 2px solid #25D366;
    color: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.1);
}

.card-btns .outline-btn:hover {
    background: linear-gradient(135deg, #25D366 0%, #20bd5a 100%);
    border-color: #25D366;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .car-card .feature-img {
        min-height: 220px;
        max-height: 220px;
    }
    
    .car-card h5 {
        font-size: 1.15rem;
    }
}

@media (max-width: 991px) {
    .ptb-120 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    
    .title-style-2 h2 {
        font-size: 2rem;
    }
    
    .car-card .feature-img {
        min-height: 200px;
        max-height: 200px;
    }
}

@media (max-width: 767px) {
    .car-card .feature-img {
        min-height: 180px;
        max-height: 180px;
    }
    
    .car-card .card-content {
        padding: 1.25rem;
    }
    
    .car-card h5 {
        font-size: 1.1rem;
    }
    
    .pricing-info strong {
        font-size: 1.5rem;
    }
    
    ul.car-info li {
        font-size: 0.85rem;
        padding: 0.5rem 0.65rem;
    }
}

@media (max-width: 575px) {
    .title-style-2 h2 {
        font-size: 1.75rem;
    }
    
    .car-card .feature-img {
        min-height: 160px;
        max-height: 160px;
    }
    
    .card-btns {
        flex-direction: column;
    }
    
    .card-btns .btn {
        width: 100%;
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
    }
    
    .star-rating {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
        right: 15px;
    }
}

/* ============================================
   BIKE SPECIFICATIONS - FIXED 2 COLUMN LAYOUT
   ============================================ */

ul.meta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.65rem !important;
}

ul.meta-list li.meta-data {
    display: flex !important;
    align-items: center;
    font-size: 0.88rem;
    color: #495057;
    font-weight: 500;
    padding: 0.2rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid rgba(237, 87, 41, 0.15);
    transition: all 0.3s ease;
    width: 100% !important;
}

ul.meta-list li.meta-data:hover {
    background: rgba(237, 87, 41, 0.04);
    border-color: rgba(237, 87, 41, 0.3);
    transform: translateX(3px);
}

ul.meta-list li.meta-data i {
    color: #fff;
    width: 26px;
    height: 26px;
    min-width: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ed5729 0%, #ff6b3d 100%);
    border-radius: 50%;
    font-size: 0.75rem;
    margin-right: 0.65rem;
    box-shadow: 0 3px 8px rgba(237, 87, 41, 0.25);
}

/* Responsive 2-Column Layout */
@media (max-width: 767px) {
    ul.meta-list {
        gap: 0.5rem !important;
    }
    
    ul.meta-list li.meta-data {
        font-size: 0.82rem;
        padding: 0.55rem 0.75rem;
    }
    
    ul.meta-list li.meta-data i {
        width: 24px;
        height: 24px;
        min-width: 24px;
        font-size: 0.7rem;
        margin-right: 0.55rem;
    }
}

@media (max-width: 575px) {
    /* Keep 2 columns on mobile */
    ul.meta-list {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
    }
    
    ul.meta-list li.meta-data {
        font-size: 0.78rem;
        padding: 0.5rem 0.65rem;
    }
    
    ul.meta-list li.meta-data i {
        width: 22px;
        height: 22px;
        min-width: 22px;
        font-size: 0.65rem;
        margin-right: 0.5rem;
    }
}

