:root {
    --bodytext: #4A5565;
    --headline: #0A0A0A;
    --white: #ffffff;
    --accent: #F26522;
    --muted: #6b7280;
    --darkorange: #D04A0E;
    --darkgray: #172130;
    --lightgray: #F2F4F6;
    --orange-red-gradient: linear-gradient(90deg, #EF670F 0%, #FF0100 100%);
    --card-radius: 12px;
}

body {
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
    color: #0A0A0A;
    margin: 0;
    scroll-behavior: smooth;
}
body.no-scroll {
    overflow: hidden;
}

a {
    outline: none;
    text-decoration: none;
}

.common-grediant {
    background: linear-gradient(90deg, #EF670F 0%, #FF0100 100%);

}

@media (min-width: 1200px) {

    .h1,
    h1 {
        font-size: 56px;
        font-weight: 500;
    }

    .h2,
    h2 {
        font-size: 36px;
        font-weight: 500;
    }

    .h3,
    h3 {
        font-size: 30px;
        font-weight: 500;
    }

    .h4,
    h4 {
        font-size: 24px;
        font-weight: 400;
    }

    .h5,
    h5 {
        font-size: 20px;
        font-weight: 400;
    }

    .h6,
    h6 {
        font-size: 16px;
        font-weight: 400;
    }
}



.full-width-section {
    width: 90%;
}

.common-orange-btn {
    padding: 8px 16px;
    background: #f26522;
    color: #fff;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #f26522;
}

.common-orange-btn:hover {
    border: 1px solid var(--accent);
}

/*topbar*/
.topmenubar {
    background: #f26522;
    height: 40px;
}

.socialiconbar {
    height: 40px;
    gap: 16px;
}

/* NAV */
.navbar {
    background: var(--white);
    box-shadow: 0 6px 18px rgba(16, 24, 40, .06);
    position: relative;
    z-index: 99999;
}

.nav-brand {
    color: var(--orange-red-gradient);
    font-weight: 700
}

.nav-brand img {
    max-height: 47px;
}

.nav-link {
    font-weight: 400;
}

.nav-link:focus,
.nav-link:hover,
.nav-link.active {
    color: var(--bs-nav-link-hover-color);
    font-weight: 500;
}

.navbar-collapse.show {
    position: absolute;
    top: 80px;
    left: 0px;
    width: 100%;
    z-index: 3;
    background: rgb(255, 255, 255);
    padding: 5px 30px 20px;
}

.header-menu-wrapper {
    width: 100%;
}

/* Base styles */
.account-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-family: "Inter", sans-serif;
    position: relative;
    z-index: 10;
}

/* Dropdown Wrapper */
.account-dropdown {
    position: relative;
}

/* Toggle Button */
.account-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #344054;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.account-toggle:hover {
    color: #f26b21;
}

.account-toggle i {
    font-size: 18px;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 120%;
    right: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    display: none;
    z-index: 9;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    color: #344054;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s, color 0.3s;
}

.dropdown-menu li a:hover {
    background: var(--orange-red-gradient);
    color: #fff;
}




/* HERO */
.hero {
    position: relative;
    height: 76vh;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff
}

.hero img.bg-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease, transform 6s linear;
    transform: scale(1.02);
    z-index: 0;
    filter: saturate(.95) contrast(.95)
}

.hero img.bg-slide.active {
    opacity: 1;
    transform: scale(1)
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .28), rgba(0, 0, 0, .52));
    z-index: 1
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 36px;
    padding-bottom: 0px;
    text-align: center
}

.hero h1 {
    font-weight: 500;
    line-height: 60px;
    letter-spacing: .3px
}

.hero p.lead {
    color: rgba(255, 255, 255, .95)
}

.vehiclepic {
    height: 64px;
    width: 64px;
    background-color: var(--white);
    padding: 16px;
    border-radius: 100px;
    margin-bottom: 14px;
}

.nextstep {
    margin-top: 74px;
    transition: transform .10s;
    animation: bounce-up-down 1.5s infinite alternate;
}

.nextstep:hover {
    transform: translateY(-8px);
}

@keyframes bounce-up-down {

    0%,
    100% {
        transform: translateY(0);
        /* Start and end at original position */
    }

    50% {
        transform: translateY(-20px);
        /* Move up 10px */
    }
}

/* Section Title Style */
.section-title {
    position: relative;
    text-align: center;
    margin: 40px 0 30px;
}

.section-title h4 {
    display: inline-block;
    color: var(--white);
    /* change to #333 for light sections */
    font-weight: 500;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

/* Horizontal lines */
.section-title::before,
.section-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 35%;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    /* white line for dark bg */
    transform: translateY(-50%);
}

.section-title::before {
    left: 0;
}

.section-title::after {
    right: 0;
}

/* optional variant for light background */
.light-section .section-title::before,
.light-section .section-title::after {
    background: rgba(0, 0, 0, 0.2);
}

.section-hr {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    margin-top: 35px;
}


/* card styles for carousels */
.card-light {
    border-radius: var(--card-radius);
    padding: 18px;
    min-height: 144px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
    color: var(--white);
    transition: transform .22s, box-shadow .22s
}

.card-light i {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 8px
}

.card-light:hover {
    /* transform: translateY(-8px); */
    box-shadow: 0 14px 40px rgba(3, 7, 18, .22);
    background: var(--orange-red-gradient);
    color: var(--white);
    cursor: pointer;
}

.card-dark {
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.20);
    border-radius: var(--card-radius);
    background: var(--white);
    color: #111;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 36px;
}

.card-dark:hover {
    cursor: pointer;
    border: none;
    box-shadow: 0 10px 30px rgba(15, 23, 43, 0.06);
    /* transform: translateY(-4px); */
}

.services-section {
    background: #f6f7fb;
    padding: 90px 0;
}

/*.............................*/
/* Vehicle Action Section */
.vehicle-action-section {
    padding-top: 90px;
}

.vehicle-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    flex: 1;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
    padding: 20px 20px;
}

.vehicle-card:hover {
    transform: translateY(-5px);
}

.vehicle-card .overlay {
    position: absolute;
    inset: 0;
    opacity: 0.85;
}

.vehicle-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    flex-direction: column;
    gap: 50px;
}

.vehicle-card-icon {
    height: 80px;
    width: 80px;
    border-radius: 100px;
    padding: 20px;
    background-color: rgba(255, 255, 255, .20);
}

.vehicle-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}



/* Card Variants */
.list-vehicle {
    background-image: url('../images/tolistback.jpg');
}

.list-vehicle .overlay {
    background: var(--darkorange);
}

.rent-vehicle {
    background-image: url('../images/torentback.jpg');
}

.rent-vehicle .overlay {
    background: var(--darkgray);
    /* dark blue overlay */
}

/* Buttons */
.btn-orange {
    background: var(--orange-red-gradient);
    color: var(--white);
    border-radius: 8px;
    width: 100%;
}

.btn-orange:hover {
    background: var(--accent);
}

.btn-light {
    background: var(--white);
    color: var(--accent);
    border-radius: 8px;
    width: 100%;
}

.btn-light:hover {
    background: var(--white);
    color: var(--accent);
}

/*.............................*/

.download {
    padding: 90px;
    text-align: center
}

.testimonial {
    background: #f2f6fa;
    padding: 80px 0;
    text-align: center
}

.test-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    max-width: 280px;
    text-align: center;
    transition: all 0.3s ease;
}

.test-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.test-card .avatar img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.test-card .name {
    font-size: 16px;
    color: var(--headline);
    text-align: left;
}

.test-card .role {
    font-size: 12px;
    color: var(--muted);
    text-align: left;
}

.test-stars {
    color: var(--accent);
    /* orange stars */
    font-size: 16px;
    letter-spacing: 2px;
    text-align: left;
}

.testimonial-text {
    color: var(--bodytext);
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
}


/* FEATURED CARS */
.featured {
    padding: 90px 0;
    background: var(--white)
}

.car-card {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid #eef2f6;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(10, 12, 20, .04);
    display: flex;
    flex-direction: column
}

.car-card:hover {
    background: var(--lightgray);
}

.car-card img {
    width: 100%;
    height: 185px;
    object-fit: cover
}

.car-body {
    padding: 9px 15px 18px 15px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.car-title {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 8px
}

.car-specs {
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap
}

.car-specs-filter {
    padding: 6px 14px;
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 50px;
    width: 23%;
}

.car-specs-filter img {
    height: 16px;
    width: 16px !important;
    object-fit: cover;
}

.car-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.car-footer-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.price {
    color: var(--accent);
    font-weight: 700
}

/* FOOTER */
footer.site-footer {
    background: #f26522;
    color: var(--white);
    padding: 80px 0 30px;
}

footer .footer-links a {
    color: rgba(255, 255, 255, .95);
    text-decoration: none;
    display: block;
    font-size: 14px;
    margin-bottom: 8px
}

footer small {
    opacity: .9
}

footer .social img {
    background: rgba(255, 255, 255, .12);
    padding: 8px;
    border-radius: 100px;
    margin-right: 8px;
    color: var(--white)
}

footer hr {
    border: 1px solid rgba(255, 255, 255, .40);
    margin: 60px 0 25px;
}

footer a {
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Owl controls */
.owl-nav button.owl-prev,
.owl-nav button.owl-next {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    border: none !important;
    background: rgba(16, 24, 40, .55);
    color: var(--white) !important;
    width: 44px;
    height: 44px;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: var(--accent);
}

.owl-nav button.owl-prev {
    left: -18px
}

.owl-nav button.owl-next {
    right: -18px
}

.owl-nav button:hover {
    background: var(--accent)
}

.owl-dots {
    margin-top: 18px
}

.owl-dot span {
    width: 10px;
    height: 10px;
    background: #dde3ea;
    display: inline-block;
    border-radius: 50%;
    margin: 3px
}

.owl-dot.active span {
    background: var(--accent);
    transform: scale(1.05)
}



/*.................../login page css start/....................*/
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}

.login-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    max-width: 448px;
    width: 100%;
    padding: 33px;
    text-align: center;
}

.login-card h3 {
    font-weight: 600;
    margin-bottom: 8px;
    color: #111827;
}

.login-card p {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.input-group-text {
    background-color: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-right: none;
    border-radius: 8px 0 0 8px;
}

.input-group-text img {
  width: 18px;
  height: 18px;
}

.toggle-password {
  cursor: pointer;
  background-color: #f3f4f6;
}

.form-control {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    height: 45px;
    font-size: 0.95rem;
}

.form-control:focus {
    box-shadow: none;
    border-color: #e5e7eb;
}

.login-btn {
    background: var(--orange-red-gradient);
    color: #fff;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    width: 100%;
    height: 45px;
    margin-top: 10px;
    transition: 0.3s;
}

.login-btn:hover {
    opacity: 0.9;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.remember-forgot a {
    text-decoration: none;
    color: #f26a21;
}

.divider {
    position: relative;
    text-align: center;
    margin: 25px 0;
    color: #9ca3af;
    font-size: 0.9rem;
}

.divider::before,
.divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #e5e7eb;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.social-btn {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    width: 48%;
    height: 45px;
    background: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s;
}

.social-btn:hover {
    background: #f9fafb;
}

.signup-link {
    font-size: 0.9rem;
    margin-top: 15px;
    color: #6b7280;
}

.signup-link a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.app-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.app-buttons img {
    height: 40px;
    object-fit: contain;
}

.toggle-password {
    cursor: pointer;
    border-left: none;
    border-radius: 0 8px 8px 0;
    background-color: #f3f4f6;
}

/*.................../login page css end/....................*/



/* Vendor cards */
.vehicle-card {
        border-radius: 20px;
        padding: 35px 20px;
        text-align: center;
        transition: 0.2s;
        border: 1px solid #e5e5e5;
        box-shadow: 0 2px 6px rgba(0,0,0,0.05);

        display: flex;
        flex-direction: column;
        align-items: center;
        
    }

    .vehicle-card:hover {
        box-shadow: 0 6px 20px rgba(0,0,0,0.12);
        transform: translateY(-3px);
        cursor: pointer;
        border: 2px solid #f26522;
    }

    .vehicle-icon {
        width: 110px;
        height: 110px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: auto;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .vehicle-label {
        font-size: 1.1rem;
        font-weight: 500;
        margin-top: 25px;  /* MORE SPACE */
        display: block;    /* ALWAYS NEW LINE */
    }

    .vehicle-icon img {
        width: 48px;
        height: 48px;
    }





     .custom-tabs {
        background: #f1f1f6;
        padding: 5px;
        border-radius: 30px;
        display: inline-flex;
        gap: 5px;
    }

    .custom-tab {
        padding: 8px 30px;
        border-radius: 25px;
        font-weight: 500;
        color: #000;
        cursor: pointer;
        transition: .2s;
    }

    .custom-tab.active {
        background: #fff;
        box-shadow: 0 0 5px rgba(0,0,0,0.1);
    }

    .btn-idrive-orange
    {
        background-color: #f26522;
    }
    
    .btn-idrive-orange:hover{
        background-color: #ee8453;
        color: #fff;
    }

    .tab-content { display: none; padding: 20px; border: 1px solid #ddd; margin-top: 10px; }
    .tab-content.active { display: block; }

    .text-breadcrumb
    {
        color: #000000;
        font-size: small;
    }
    
    .text-breadcrumb:hover
    {
        color: #f26522;
    }


.request-container
{
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 33px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
}

.request-booking-note{
    background-color: #d3e0f1;
    padding: 33px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    color: #193cb8;
    
}

.custom-title{
    font-size: 24px;
}

.custom-title:hover{
    cursor: pointer;
}

.service-topbar{
    border: 1px solid #e5e7eb;
    padding: 11px;
}

.custom-subtitle
{
    font-size: 8px;
}

.tab-nav {
        border-bottom: 2px solid #e7e7e7;
        margin-bottom: 2rem;
    }

    .tab-nav .nav-link {
        color: #7b8496;
        border: none;
        border-bottom: 3px solid transparent;
        padding: 1rem 1.5rem;
        font-weight: 500;
    }

    .tab-nav .nav-link.active {
        color: #f26522;
        border-bottom-color: #f26522;
        background: transparent;
    }


    .tab-nav .nav-link:hover {
        color: #f26522;
        border-bottom-color: #f26522;
        background: transparent;
    }

    .wash-card {
      background: #00cdb2;
      color: white;
      border-radius: 0.5rem;
      padding: 1.5rem 2rem;
      width: 100%;       /* Full width relative to container */
      
      box-sizing: border-box; /* ensure padding is included */
    }
    .credit-icon {
      font-size: 2.5rem;
      opacity: 0.7;
    }

    .wash-credit-box{
        background-color: #ddd;
         border-radius: 0.5rem;
        margin: 10px;
    }


    .hn-hero {
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, #ffffff, #fff7ed);
        padding: 80px 0 40px;
    }

    .hn-hero .badge {
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid #f4c9b0;
        color: #f26522;
        font-weight: 600;
        border-radius: 999px;
        padding: 10px 16px;
    }

    .hn-hero h1 {
        font-weight: 400;
        color: #1a2332;
        letter-spacing: -1px;
    }

    .hn-hero .hero-sub {
        color: #f26522;
        font-size: 1.1rem;
        font-weight: 700;
    }

    .hn-hero .car-visual {
        position: relative;
        border-radius: 28px;
        background: #0b1f3b;
        box-shadow: 0 26px 60px rgba(15, 23, 42, 0.35);
        overflow: hidden;
    }

    .hn-hero .car-visual:before {
        content: "";
        position: absolute;
        inset: 10% 8% 8% 8%;
        background: radial-gradient(circle at 50% 80%, rgba(248, 196, 113, 0.55), transparent 60%);
        filter: blur(18px);
        z-index: 0;
    }

    .hn-hero img {
        position: relative;
        z-index: 1;
        width: 100%;
        display: block;
        border-radius: 0;
    }

    .hn-pill {
        border-radius: 999px;
        padding: 10px 18px;
        font-weight: 600;
    }

    .hn-section-title {
        font-weight: 800;
        color: #1a2332;
    }

    .hn-grid-card {
        background: #fff;
        border: 1px solid #f1f5f9;
        border-radius: 16px;
        padding: 18px;
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.05);
        transition: all 0.2s ease;
        height: 100%;
    }

    .hn-grid-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
    }

    .hn-service-card {
        padding: 24px 18px;
    }

    .hn-service-icon {
        width: 80px;
        height: 80px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        color: #fff;
        box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
        transition: transform .2s ease, box-shadow .2s ease;
    }

    .hn-service-card:hover {
        border-color: #e2e8f0;
    }

    .hn-service-card:hover .hn-service-icon {
        transform: translateY(-2px) scale(1.04);
        box-shadow: 0 18px 30px rgba(15, 23, 42, 0.16);
    }

    .hn-cta-panel {
        border-radius: 26px;
        padding: 40px 32px;
        color: #fff;
        position: relative;
        overflow: hidden;
        box-shadow: 0 28px 60px rgba(15, 23, 42, 0.25);
        transition: transform .2s ease, box-shadow .2s ease;
    }

    .hn-cta-panel .overlay {
        position: absolute;
        inset: 0;
        opacity: 0.15;
        background: radial-gradient(circle at 20% 20%, #fff, transparent 45%);
    }

    .hn-cta-panel:hover {
        transform: translateY(-6px);
        box-shadow: 0 36px 80px rgba(15, 23, 42, 0.30);
    }

    .hn-app-buttons .btn {
        min-width: 180px;
    }

    .hn-testimonial {
        border-radius: 16px;
        padding: 20px;
        border: 1px solid #e2e8f0;
        background: #fff;
    }

    .hn-featured-card {
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        background: #fff;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .hn-featured-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

    .hn-featured-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }

    .hn-featured-pill {
        position: absolute;
        top: 12px;
        right: 12px;
        background: #f26522;
        color: #fff;
        padding: 6px 14px;
        border-radius: 999px;
        font-size: 0.75rem;
        font-weight: 700;
        z-index: 2;
    }

    .hn-featured-specs {
        display: flex;
        justify-content: space-around;
        gap: 8px;
        margin: 16px 0;
    }

    .hn-featured-spec-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 1;
    }

    .hn-featured-spec-icon {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        /*background: #f97316;
        color: #fff;*/
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.875rem;
        margin-bottom: 6px;
    }

    .hn-featured-spec-value {
        font-size: 0.75rem;
        color: #64748b;
        font-weight: 500;
    }

    .hn-featured-price {
        display: flex;
        align-items: baseline;
        gap: 4px;
    }

    .hn-featured-price-label {
        font-size: 0.75rem;
        color: #d97706;
        font-weight: 500;
    }

    .hn-featured-price-amount {
        font-size: 1.125rem;
        color: #f26522;
        font-weight: 700;
    }

    .hn-vehicle-card {
        border-radius: 24px;
        padding: 5px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
        transition: all .2s ease;
        border: 2px solid transparent;
    }

    .hn-vehicle-card img {
        width: 100%;
        height: 140px;
        object-fit: cover;
        display: block;
        border-radius: 18px;
    }

    .hn-vehicle-overlay {
        position: absolute;
        inset: 5px;
        border-radius: 18px;
        background: linear-gradient(to top, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.7), transparent 65%);
        pointer-events: none;
        transition: background .2s ease;
    }

    .hn-vehicle-label {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 18px;
        text-align: center;
        color: #f26522;
        font-weight: 700;
        font-size: .95rem;
    }

    .hn-vehicle-card:hover {
        transform: translateY(-4px);
        border-color: #f26522;
        box-shadow: 0 22px 40px rgba(15, 23, 42, 0.14);
    }

    .hn-vehicle-card:hover .hn-vehicle-overlay {
        background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.8), transparent 70%);
    }

    @media (max-width: 767px) {
        .hn-hero {
            padding: 60px 0 30px;
        }

        .hn-hero h1 {
            font-size: 2rem;
        }
    }