:root {
    --primary: #bd1c2e;
    --primary-dark: #1d4ed8;
    --primary-light: #dbeafe;
    --accent: #f59e0b;
    --dark: #0f172a;
    --dark-2: #1e293b;
    --text: #334155;
    --text-light: #94a3b8;
    --text-dark: #1e293b;
    --border: #e2e8f0;
    --bg: #f8fafc;
    --white: #ffffff;
    --font: 'Outfit', sans-serif;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.08);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font);
    color: var(--text);
    background-color: var(--bg);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
}

/* ========================================
   HEADER 
   ======================================== */
.header {
    background: var(--white);
    padding: 16px 0;
    width: 100%;
    z-index: 1000;
    position: sticky;
    top: 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom-color: var(--border);
}

.logo h2 {
    font-size: 22px;
    color: var(--primary) !important;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo h2 i {
    color: var(--primary);
}

.nav-menu ul li a {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    transition: var(--transition);
    position: relative;
    padding: 4px 0;
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-menu ul li a:hover::after,
.nav-menu ul li a.active::after {
    width: 100%;
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
    color: var(--text-dark);
}

.header-actions a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.header-actions a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.header-actions i {
    font-size: 16px;
    color: #64748b;
}

.header-actions a:hover i {
    color: var(--primary);
}

/* ========================================
   HERO SECTION 
   ======================================== */
.hero-section {
    padding: 60px 0 40px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero-desc {
    color: var(--text-light);
    max-width: 620px;
    margin: 0 auto 30px;
    font-size: 15px;
    line-height: 1.7;
}

.hero-btns {
    margin-bottom: 40px;
}

.hero-btn {
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.hero-btn.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

.hero-btn.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.35);
}

.hero-btn.btn-outline-secondary {
    border: 2px solid var(--border);
    color: var(--text);
    background: var(--white);
}

.hero-btn.btn-outline-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

/* Hero Car Display */
.hero-car-display {
    position: relative;
    margin-top: 0;
    padding-bottom: 40px;
}

.main-car-view {
    position: relative;
    text-align: center;
    padding: 0 100px;
}

.hero-car-bg-shape {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 65%;
    background: #173154;
    border-radius: 24px;
    z-index: 1;
}

.hero-car-img {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    display: block;
}

.hero-slide-counter {
    position: absolute;
    right: 120px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 64px;
    font-weight: 800;
    color: rgba(37, 99, 235, 0.08);
    z-index: 12;
    pointer-events: none;
}

/* Hero Stats Left */
.hero-stats-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.stat-item {
    text-align: center;
    width: 70px;
}

.stat-item h4 {
    font-weight: 800;
    font-size: 20px;
    margin: 0;
    color: var(--text-dark);
    line-height: 1;
}

.stat-item span {
    font-size: 9px;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    display: block;
    margin-top: 4px;
}

.stat-item .icon {
    margin-top: 8px;
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 12px;
    margin: 8px auto 0;
    transition: var(--transition);
}

.stat-item:hover .icon {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

/* Hero Counter Right */
.hero-counter-right {
    position: absolute;
    right: 0;
    top: 30%;
    z-index: 20;
}

.hero-counter-right span {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    opacity: 0.15;
}

/* View Details Button */
.view-details-btn {
    position: absolute;
    bottom: -10px;
    left: 100px;
    z-index: 20;
}

.view-details-btn .btn {
    background: #173154;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
    font-weight: 600;
    padding: 10px 28px;
    border: none;
    font-size: 13px;
}

.view-details-btn .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.4);
}

/* Nav Arrows */
.hero-nav-right {
    position: absolute;
    right: 0;
    bottom: -10px;
    z-index: 20;
    display: flex;
    gap: 12px;
}

.nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--text-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}

.nav-btn:hover,
.nav-btn.next {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

/* ========================================
   SECTION COMMON
   ======================================== */
.section-title {
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 32px;
    letter-spacing: -0.5px;
}

.section-desc {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
}

.sub-title {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

/* ========================================
   BRANDS SECTION 
   ======================================== */
.brands-section {
    background: var(--white);
    padding: 80px 0;
}

.brand-feature-card {
    background: var(--bg);
    padding: 16px;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid transparent;
}

.brand-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border);
    background: var(--white);
}

.brand-main-img {
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 14px;
    background: var(--white);
}

.brand-main-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: var(--transition);
}

.brand-feature-card:hover .brand-main-img img {
    transform: scale(1.03);
}

.brand-info {
    margin-bottom: 12px;
}

.brand-info h5 {
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 16px;
    color: var(--text-dark);
}

.brand-info p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.brand-thumb-row {
    display: flex;
    gap: 8px;
}

.brand-thumb-row img {
    width: calc(33.333% - 5.33px);
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    transition: var(--transition);
}

.brand-thumb-row img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

/* ========================================
   TAGLINE / STATS SECTION 
   ======================================== */
.tagline-section {
    padding: 80px 0;
    background: var(--bg);
}

.tagline-section h2 {
    font-weight: 800;
    font-size: 32px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.tagline-desc {
    color: var(--text-light);
    max-width: 640px;
    margin: 0 auto 40px !important;
    font-size: 14px;
    line-height: 1.7;
}

.stats-row .stat-box {
    text-align: center;
    padding: 24px 14px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.stats-row .stat-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.stats-row .stat-box h3 {
    color: var(--primary);
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 6px;
}

.stats-row .stat-box p {
    font-size: 11px;
    font-weight: 500;
    margin: 0;
    color: var(--text-light);
    line-height: 1.4;
}

/* ========================================
   ABOUT SECTION 
   ======================================== */
.about-section {
    background: var(--white);
    padding: 80px 0;
}

.about-heading {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.about-desc {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

.feature-list li {
    font-size: 14px;
    margin-bottom: 14px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list li i {
    width: 32px;
    height: 32px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.about-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.about-img-wrapper img {
    transition: var(--transition);
}

.about-img-wrapper:hover img {
    transform: scale(1.03);
}

/* ========================================
   FLEET / EXPLORE CARS SECTION 
   ======================================== */
.fleet-section {
    background: var(--bg);
    padding: 80px 0;
}

.fleet-tabs {
    gap: 8px;
}

.fleet-tab-btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
}

.fleet-tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.fleet-tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
}

/* Rental Cards (New Design) */
.rental-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
    border: 1px solid var(--border);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.rental-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.rental-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.rental-card-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 2px 0;
}

.rental-card-type {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.rental-wishlist {
    font-size: 20px;
    color: #cbd5e1;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.rental-wishlist:hover,
.rental-wishlist.active {
    color: #ef4444;
}

.rental-card-img {
    text-align: center;
    padding: 10px 0 20px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rental-card-img img {
    max-width: 100%;
    height: 140px;
    object-fit: contain;
    transition: var(--transition);
}

.rental-card:hover .rental-card-img img {
    transform: scale(1.05);
}

.rental-card-specs {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    margin-bottom: 16px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-light);
}

.spec-item i {
    font-size: 14px;
    color: #94a3b8;
}

.rental-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rental-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.price-unit {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.old-price {
    font-size: 13px;
    color: var(--text-light);
    text-decoration: line-through;
    display: block;
    width: 100%;
}

.btn-rent {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-rent:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

/* ========================================
   TESTIMONIAL SECTION 
   ======================================== */
.testimonial-section {
    background: var(--white);
    padding: 80px 0;
}

.review-card {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 28px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    background: var(--white);
}

.review-avatar {
    width: 48px;
    height: 48px;
    object-fit: cover;
}

.review-card p {
    font-size: 13px;
    line-height: 1.7;
}

.review-card .rating i {
    font-size: 13px;
    color: var(--accent);
}

/* Dots */
.testimonial-dots,
.gallery-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 32px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 10px;
}

/* ========================================
   GALLERY SECTION 
   ======================================== */
.gallery-section {
    background: var(--bg);
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 180px);
    gap: 12px;
}

.gallery-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.3));
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item.gallery-large {
    grid-row: span 2;
}

/* ========================================
   CONTACT SECTION 
   ======================================== */
.contact-section {
    background: var(--white);
    padding: 80px 0;
}

.contact-img-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
}

.contact-img-wrapper img {
    transition: var(--transition);
}

.contact-img-wrapper:hover img {
    transform: scale(1.03);
}

.contact-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.get-help-badge .badge {
    font-size: 12px;
    font-weight: 600;
    background: var(--primary) !important;
}

.contact-form-page .form-control {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 12px 16px;
    font-size: 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    color: var(--text);
}

.contact-form-page .form-control:focus {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    border-color: var(--primary);
    background: var(--white);
}

.contact-form-page .form-control::placeholder {
    color: #94a3b8;
}

.contact-form-page .btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    font-weight: 600;
    padding: 12px 36px;
    font-size: 14px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
    transition: var(--transition);
}

.contact-form-page .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.35);
}

/* ========================================
   FOOTER 
   ======================================== */
.footer-section {
    background: var(--dark);
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-text p {
    margin-bottom: 14px;
    font-size: 13px;
    color: #ffffff;
    line-height: 1.8;
}

.footer-social-icon {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social-icon a {
    color: var(--white);
    font-size: 14px;
}

.footer-social-icon i {
    height: 36px;
    width: 36px;
    text-align: center;
    line-height: 36px;
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social-icon i:hover {
    transform: translateY(-3px);
}

.facebook-bg {
    background: #3B5998;
}

.twitter-bg {
    background: #1DA1F2;
}

.google-bg {
    background: #EA4335;
}

.footer-widget-heading h3 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 28px;
    position: relative;
}

.footer-widget-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 2px;
    width: 40px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: #ffffff;
    font-size: 13px;
    transition: var(--transition);
}

.footer-widget ul li a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-gallery img {
    border-radius: 6px;
    transition: var(--transition);
    height: 70px;
    object-fit: cover;
    width: 100%;
}

.footer-gallery img:hover {
    transform: scale(1.05);
    opacity: 0.85;
}

.copyright-area {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-text p {
    margin: 0;
    font-size: 13px;
    color: #ffffff;
}

.copyright-text p a {
    color: var(--primary);
}

.footer-menu li {
    display: inline-block;
    margin-left: 24px;
}

.footer-menu li a {
    font-size: 13px;
    color: #ffffff;
    transition: var(--transition);
}

.footer-menu li a:hover {
    color: var(--primary);
}

/* ========================================
   MODAL BOOKING 
   ======================================== */
.modal-content {
    border-radius: var(--radius);
    border: none;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
}

.keqcxy {
    display: none !important;
}

.modal-title {
    font-weight: 700;
    color: var(--text-white);
}

.modal-body {
    padding: 24px;
}

.modal-body .form-control {
    border-radius: var(--radius-sm);
    border-color: var(--border);
    padding: 10px 16px;
    font-size: 14px;
}

.modal-body .form-control:focus {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    border-color: var(--primary);
}

.modal-body .btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    border-radius: var(--radius-sm);
    padding: 12px;
    font-weight: 600;
    font-size: 14px;
}

/* ========================================
   MOBILE MENU 
   ======================================== */
.nav-menu.mobile-active {
    display: block !important;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 999;
    border-top: 1px solid var(--border);
}

.nav-menu.mobile-active ul {
    flex-direction: column;
    gap: 16px !important;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title,
.hero-desc,
.hero-btns {
    animation: fadeInUp 0.6s ease forwards;
}

.hero-desc {
    animation-delay: 0.15s;
}

.hero-btns {
    animation-delay: 0.3s;
}

/* ========================================
   RESPONSIVE — Desktop adjustments 
   ======================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 34px;
    }

    .hero-car-display {
        margin-top: 20px;
    }

    .main-car-view {
        padding: 0 20px;
    }

    .hero-slide-counter {
        display: none;
    }

    .view-details-btn {
        left: 20px;
    }

    .section-title {
        font-size: 26px;
    }

    .about-heading {
        font-size: 26px;
    }

    .tagline-section h2 {
        font-size: 26px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 160px);
    }

    .gallery-item.gallery-large {
        grid-row: span 2;
    }

    .contact-title {
        font-size: 24px;
    }
}

/* ========================================
   BOOKING MODAL 
   ======================================== */
.booking-car-banner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 28px;
    background: linear-gradient(135deg, #f0f4f8, #e8edf4);
    border-bottom: 1px solid var(--border);
}

.booking-car-img {
    flex-shrink: 0;
    width: 200px;
}

.booking-car-img img {
    width: 100%;
    height: 130px;
    object-fit: contain;
}

.booking-car-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.booking-car-type {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin: 6px 0 12px;
}

.booking-car-specs {
    display: flex;
    gap: 16px;
    margin-bottom: 10px;
}

.booking-car-specs span {
    font-size: 13px;
    color: var(--text-light);
}

.booking-car-specs i {
    color: #94a3b8;
    margin-right: 4px;
}

.booking-car-price {
    font-size: 20px;
    color: var(--text-dark);
}

.booking-car-price .text-muted {
    font-size: 14px;
}

/* Booking Alert */
.booking-alert {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 9999;
    padding: 18px 24px;
    border-radius: 12px;
    max-width: 420px;
    animation: slideInRight 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.booking-alert-success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.booking-alert-error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 576px) {
    .booking-car-banner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 18px 20px;
    }

    .booking-car-img {
        width: 160px;
    }

    .booking-car-specs {
        justify-content: center;
    }
}

/* Flatpickr Override */
.flatpickr-calendar {
    z-index: 1060 !important;
}


.footer-logo img {
    filter: brightness(0) invert(1);
}