/*==================================================
    HASKE MOTORS
    PREMIUM DEALERSHIP WEBSITE
==================================================*/


/*==================================================
    GOOGLE FONT
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*==================================================
    ROOT VARIABLES
==================================================*/

:root{

    --primary:#0B1F3A;

    --primary-dark:#071426;

    --secondary:#D4AF37;

    /* Fallback height for the fixed header. Overwritten live by
       the small script in header-offset.js, which measures the
       real header (it can grow taller when the top bar wraps
       onto two lines on narrow screens). */
    --header-height:142px;

}

/* NAVBAR LOGO */
.logo-img{
    width:380px;
    height:100px;
    object-fit:contain;
}

.logo-text{
    display:flex;
    align-items:center;
    gap:5px;
    margin-top:4px;
}

.logo-text .company{
    font-size:16px;
    font-weight:700;
    color:var(--secondary);
    line-height:1.2;
}

.logo-text .tagline{
    display:inline;
    font-size:16px;
    font-weight:700;
    color:var(--secondary);
    line-height:1.2;
}

/* ======================================
   GLOBAL CONTAINER
====================================== */

.container{
    width: min(92%, 1400px);
    margin: 0 auto;
}

/*==================================================
    RESET
==================================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--light);

    color:var(--dark);

    line-height:1.7;

    overflow-x:hidden;

}

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

button,
input,
select{

    font-family:inherit;

}

section{

    padding:clamp(60px,8vw,100px) 0;

}


/*==================================================
    TYPOGRAPHY
==================================================*/

.section-title{

    text-align:center;

    margin-bottom:40px;

}

.section-title span{

    display:inline-block;

    color:var(--secondary);

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:15px;

}

.section-title h2{

    font-size:clamp(2rem,4vw,3rem);

}

.section-title p{

    max-width:700px;

    margin:auto;

    color:var(--gray);

}


/*==================================================
    BUTTONS
==================================================*/

.primary-btn,
.secondary-btn,
.inventory-btn,
.search-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:15px 34px;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

    cursor:pointer;

    border:none;

}

.primary-btn{

    background:var(--secondary);

    color:#111;

}

.primary-btn:hover{

    transform:translateY(-4px);

    box-shadow:var(--shadow-hover);

}

.primary-btn{

    transition:

        transform .3s,

        box-shadow .3s,

        background .3s;

}

.secondary-btn{

    border:2px solid #fff;

    color:#fff;

    background:transparent;

}

.secondary-btn:hover{

    background:#fff;

    color:#111;

}

.inventory-btn{

    background:var(--primary);

    color:#fff;

}

.inventory-btn:hover{

    background:var(--primary-dark);

}

.search-btn{

    background:var(--secondary);

    color:#111;

    width:100%;

    margin-top:30px;

}


/*==================================================
    HEADER
==================================================*/

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:rgba(17,24,39,.96);
    backdrop-filter:blur(18px);
    box-shadow:0 2px 20px rgba(0,0,0,.15);
}

/* The header is fixed/floating, so it never takes up space in
   normal flow. Without this, whatever sits at the very top of
   the page (the hero badge, a page title, etc.) renders behind
   the header and gets visually clipped/overlapped, especially
   on mobile where the header itself is taller. */
#main-content,
main{
    padding-top:var(--header-height);
}


/*==================================================
    TOP INFORMATION BAR
==================================================*/

.top-bar{
    width:100%;
    background:#071426;
    color:#ffffff;
    font-size:13px;
}

.top-bar-inner{
    width:min(92%,1400px);
    min-height:42px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.contact-info,
.location-info{
    display:flex;
    align-items:center;
    gap:24px;
}

.contact-info span,
.location-info span{
    display:flex;
    align-items:center;
    gap:7px;
    white-space:nowrap;
}

.contact-info i,
.location-info i{
    color:var(--secondary);
}


/*==================================================
    TOP BAR - MOBILE
    The phone / email / location / hours row uses
    white-space:nowrap with no wrapping fallback, so on
    narrow screens it overflows past the viewport width.
    Because body has overflow-x:hidden, the overflow isn't a
    visible scrollbar - it just gets silently clipped, which
    is why parts of the header appear to be "missing" on
    mobile. This makes it wrap and shrink instead.
==================================================*/

@media(max-width:700px){

    .top-bar-inner{
        flex-wrap:wrap;
        row-gap:3px;
        justify-content:center;
        text-align:center;
        padding:6px 0;
    }

    .contact-info,
    .location-info{
        flex-wrap:wrap;
        justify-content:center;
        gap:2px 12px;
    }

    .contact-info span,
    .location-info span{
        font-size:11px;
        white-space:normal;
        gap:5px;
    }

    .contact-info i,
    .location-info i{
        font-size:10px;
    }

}

@media(max-width:480px){

    /* Drop the lowest-priority line (business hours) so the
       bar stays to two short lines instead of three/four. */
    .location-info span:nth-child(2){
        display:none;
    }

}


.mobile-header-controls{
    display:flex;
    align-items:center;
    gap:12px;
}

.header-icons{
    display:none;
}

@media(max-width:900px){

    .top-bar{
        display:none;
    }

    .navbar-inner{
        min-height:70px;
    }

    .header-icons{
        display:flex;
        align-items:center;
        gap:10px;
    }

    /* Circular filled phone button - the one action people
       actually want one tap away from the header. */
    .header-icons a{
        display:flex;
        align-items:center;
        justify-content:center;
        width:40px;
        height:40px;
        border-radius:50%;
        background:rgba(255,255,255,.1);
        color:var(--secondary);
        font-size:16px;
        text-decoration:none;
        transition:background .2s ease;
    }

    .header-icons a:hover{
        background:rgba(255,255,255,.2);
    }

    /* Email/location live in the nav dropdown and footer
       instead of cluttering the compact header row. */
    /* Gold-bordered hamburger button, matching the phone
       button's size so the pair reads as one tidy control group. */
    .menu-toggle{
        display:flex;
        align-items:center;
        justify-content:center;
        width:40px;
        height:40px;
        border:1.5px solid var(--secondary);
        border-radius:10px;
        color:var(--secondary);
        font-size:17px;
    }

}

/*==================================================
    MAIN NAVIGATION
==================================================*/

.navbar{
    width:100%;
    min-height:88px;
    background:#111827;
}

.navbar-inner{
    width:min(92%,1400px);
    min-height:88px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}


/*==================================================
    LOGO
==================================================*/

.logo{
    display:flex;
    align-items:center;
    flex-shrink:0;
}

.logo a{
    display:flex;
    align-items:center;
}

.logo-img{
    width:260px;
    height:100px;
    object-fit:contain;
    display:block;
}


/*==================================================
    NAVIGATION LINKS
==================================================*/

.nav-links{
    display:flex;
    align-items:center;
    gap:28px;
    margin-left:auto;
}

.nav-links li{
    position:relative;
}

.nav-links a{
    position:relative;
    display:block;
    color:#ffffff;
    font-size:14px;
    font-weight:600;
    padding:10px 0;
}

.nav-links a:hover,
.nav-links a.active{
    color:var(--secondary);
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:2px;
    background:var(--secondary);
    transition:.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after{
    width:100%;
}


/*==================================================
    INVENTORY BUTTON
==================================================*/

.nav-actions{
    display:flex;
    align-items:center;
    flex-shrink:0;
}

.nav-actions .inventory-btn{
    padding:12px 22px;
    border-radius:30px;
}


/*==================================================
    MOBILE MENU
==================================================*/

.menu-toggle{
    display:none;
    font-size:28px;
    color:#ffffff;
    cursor:pointer;
}

/*==================================================
    HERO
==================================================*/

.hero{

    height:90vh;

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

}v

.hero-slider{

    position:absolute;

    inset:0;

}

.slide{

    position:absolute;

    inset:0;

    opacity:0;

    transition:opacity 1.3s ease;

    background-size:cover;

    background-position:center;

}

.slide.active{

    opacity:1;

}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.hero-content{
    position:relative;
    z-index:10;
    text-align:center;
    color:#fff;
    max-width:900px;
    padding:20px;
}

.hero-badge{

    display:inline-block;

    background:rgba(212,175,55,.20);

    color:var(--secondary);

    padding:12px 24px;

    border-radius:40px;

    font-weight:600;

    margin-bottom:25px;

    backdrop-filter:blur(8px);

}

.hero-content h1{

    font-size:50px;

    line-height:1.15;

    margin-bottom:25px;

    font-weight:800;

}

.hero-content p{

    font-size:20px;

    color:#f3f3f3;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

/*==================================================
    SEARCH SECTION
==================================================*/

.search-section{

    background:#fff;

    margin-top:-70px;

    position:relative;

    z-index:50;

}

.search-container{

    max-width:1200px;

    margin:auto;

    background:#fff;

    padding:45px;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.search-container h2{

    text-align:center;

    font-size:36px;

    margin-bottom:10px;

}

.search-container p{

    text-align:center;

    color:var(--gray);

    margin-bottom:35px;

}

.search-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

}

.search-grid label{

    display:block;

    margin-bottom:10px;

    font-weight:600;

}

.search-grid input,
.search-grid select{

    width:100%;

    padding:16px;

    border:1px solid var(--gray-light);

    border-radius:12px;

    background:#fff;

    font-size:15px;

    transition:var(--transition);

}

.search-grid input:focus,
.search-grid select:focus{

    outline:none;

    border-color:var(--secondary);

    box-shadow:0 0 0 4px rgba(212,175,55,.15);

}



/*==================================================
    STATISTICS
==================================================*/

.stats-section{

    background:var(--light);
    padding:5px 0;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-card{

    background:#fff;

    border-radius:18px;

    padding:45px 25px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.stat-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-hover);

}

.stat-card i{

    font-size:42px;

    color:var(--secondary);

    margin-bottom:20px;

}

.stat-card h2{

    font-size:44px;

    margin-bottom:12px;

    color:var(--primary);

}

.stat-card p{

    color:var(--gray);

}



/*==================================================
    BRANDS
==================================================*/

.brands-section{
    background:#f4f6f8;
    padding:90px 0;
    border-top:1px solid #e5e7eb;
    border-bottom:1px solid #e5e7eb;
}

.brand-grid{
    display:grid;
    grid-template-columns:repeat(6, minmax(0, 1fr));
    gap:20px;
}

.brand-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:16px;
    padding:28px;
    text-align:center;
    box-shadow:0 8px 20px rgba(15,23,42,.06);
    transition:transform .3s ease, box-shadow .3s ease;
}

.brand-card:hover{
    transform:translateY(-6px);
    box-shadow:0 16px 32px rgba(15,23,42,.12);
}

.brand-card img{

    height:90px;

    width:auto;

    margin:auto;

    object-fit:contain;

}

.brand-card h3{

    margin-top:20px;

    color:var(--dark);

    font-size:18px;

}



/*==================================================
    FEATURED SECTION
==================================================*/

.featured-section{
    background:#f4f6f8;
    padding:90px 0 100px;
    border-top:1px solid #e5e7eb;
    border-bottom:1px solid #e5e7eb;
}

.center-button{
    text-align:center;
    margin-top:40px;
}



/*==================================================
    VEHICLE GRID
==================================================*/

.vehicle-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:28px;
}

.vehicle-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(15,23,42,.08);
    transition:transform .3s ease, box-shadow .3s ease;
    display:flex;
    flex-direction:column;
}

.vehicle-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(15,23,42,.14);
}

.vehicle-card img{
    width:100%;
    aspect-ratio:16 / 10;
    object-fit:cover;
    display:block;
    transition:transform .45s ease;
}

.vehicle-card:hover img{
    transform:scale(1.05);
}


/*==================================================
    VEHICLE IMAGE
==================================================*/

.vehicle-card img{

    width:100%;

    aspect-ratio:16/10;

    object-fit:cover;

    transition:transform .5s;

}

img{

    max-width:100%;

    height:auto;

    object-fit:cover;

}

.vehicle-card:hover img{

    transform:scale(1.08);

}

:focus-visible{

    outline:3px solid var(--secondary);

    outline-offset:3px;

}

@media (prefers-reduced-motion: reduce){

    *{

        animation:none !important;

        transition:none !important;

        scroll-behavior:auto !important;

    }

}




/*==================================================
    VEHICLE CONTENT
==================================================*/

.vehicle-content{

    padding:25px;

    display:flex;

    flex-direction:column;

    flex:1;

}

.vehicle-content h3{

    font-size:24px;

    margin-bottom:12px;

    color:var(--dark);

}

.vehicle-price{

    color:var(--primary);

    font-size:28px;

    font-weight:700;

    margin-bottom:15px;

}

.vehicle-specs{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-bottom:25px;

}

.vehicle-spec{

    background:var(--light);

    padding:8px 14px;

    border-radius:30px;

    font-size:14px;

    color:var(--gray);

}

.vehicle-content .primary-btn{

    margin-top:auto;

}



/*==================================================
    STATUS BADGES
==================================================*/

.status{

    display:inline-block;

    padding:8px 14px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    margin-bottom:20px;

}

.status.available{

    background:#DCFCE7;

    color:#166534;

}

.status.sold{

    background:#FEE2E2;

    color:#991B1B;

}

.status.reserved{

    background:#FEF3C7;

    color:#92400E;

}



/*==================================================
    LOADING CARD
==================================================*/

.loading-card{

    background:#fff;

    border-radius:20px;

    padding:80px 20px;

    text-align:center;

    box-shadow:var(--shadow);

}

.loading-card i{

    font-size:45px;

    color:var(--secondary);

    margin-bottom:20px;

}

.loading-card p{

    color:var(--gray);

}



/*==================================================
    EMPTY STATE
==================================================*/

.empty-state{

    grid-column:1/-1;

    text-align:center;

    background:#fff;

    border-radius:20px;

    padding:70px 30px;

    box-shadow:var(--shadow);

}

.empty-state i{

    font-size:60px;

    color:var(--secondary);

    margin-bottom:25px;

}

.empty-state h3{

    margin-bottom:12px;

    font-size:30px;

}

.empty-state p{

    color:var(--gray);

}

/*==================================================
    WHY CHOOSE US
==================================================*/

.why-section{

    background:#ffffff;

}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:24px;
}

.why-card{

    background:#fff;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-hover);

}

.why-card .icon{

    width:90px;

    height:90px;

    margin:auto auto 25px;

    border-radius:50%;

    background:rgba(212,175,55,.12);

    display:flex;

    align-items:center;

    justify-content:center;

}

.why-card .icon i{

    font-size:38px;

    color:var(--secondary);

}

.why-card h3{

    font-size:24px;

    margin-bottom:15px;

}

.why-card p{

    color:var(--gray);

}


/*==================================================
    SERVICES
==================================================*/

.services-section{
    background:var(--light);
    padding:20px 0;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:24px;
}

.service-card{

    background:#fff;
    border:1px solid #e5e7eb;
    padding:32px;
    border-radius:16px;
    box-shadow:0 8px 20px rgba(15,23,42,.06);
    transition:transform .3s ease, box-shadow .3s ease;
    position:relative;
}

.service-card:hover{

    transform:translateY(-6px);
    box-shadow:0 16px 32px rgba(15,23,42,.12);
}

.service-card i{

    font-size:45px;

    color:var(--primary);

    margin-bottom:25px;

}

.service-card h3{

    margin-bottom:15px;

    font-size:24px;

}

.service-card p{

    color:var(--gray);

}


/*==================================================
    TESTIMONIALS
==================================================*/

.testimonials-section{

    background:#fff;

}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(320px, 1fr));
    gap:24px;
}

.testimonial-card{
    background:#fff;
    border:1px solid #e5e7eb;
    padding:32px;
    border-radius:16px;
    box-shadow:0 8px 20px rgba(15,23,42,.06);
    transition:transform .3s ease, box-shadow .3s ease;
    position:relative;
}

.testimonial-card:hover{
    transform:translateY(-6px);
    box-shadow:0 16px 32px rgba(15,23,42,.12);
}

.testimonial-card::before{

    content:"❝";

    position:absolute;

    top:20px;

    right:30px;

    font-size:70px;

    color:rgba(212,175,55,.18);

}

.stars{

    color:#F4B400;

    font-size:22px;

    margin-bottom:20px;

}

.testimonial-card p{

    color:var(--gray);

    margin-bottom:25px;

}

.testimonial-card h4{

    color:var(--primary);

}


/*==================================================
    FINANCE SECTION
==================================================*/

.finance-section{

    background:linear-gradient(135deg,var(--primary),var(--primary-dark));

    color:#fff;

}

.finance-content{

    max-width:900px;

    margin:auto;

    text-align:center;

}

.finance-content span{

    color:var(--secondary);

    text-transform:uppercase;

    font-weight:700;

    letter-spacing:1px;

}

.finance-content h2{

    font-size:46px;

    margin:20px 0;

}

.finance-content p{

    font-size:18px;

    margin-bottom:35px;

    color:#f4f4f4;

}

.finance-content .primary-btn{

    background:var(--secondary);

}


/*==================================================
    LATEST VEHICLES
==================================================*/

.latest-section{

    background:#ffffff;

}


/* =====================================
   ABOUT SECTION
===================================== */

.about-section{
    padding:100px 8%;
    background:#f9fafc;
}

.about-container{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:70px;
    align-items:center;
}

.about-text span{

    color:#D4AF37;

    font-size:15px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.about-text h2{

    font-size:54px;

    margin:20px 0;

    line-height:1.15;

    color:#111;

}

.about-text p{

    font-size:18px;

    line-height:1.9;

    color:#555;

    margin-bottom:25px;

}

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin:35px 0;

}

.about-features div{

    font-size:17px;

    font-weight:600;

    color:#222;

}

.about-featured{

    display:flex;

    justify-content:center;

}

.featured-card{

    background:white;

    border-radius:22px;

    padding:30px;

    width:100%;

    max-width:420px;

    box-shadow:0 20px 60px rgba(0,0,0,.12);

    transition:.35s;

}

#aboutFeaturedVehicle{

    min-height:380px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:20px;

    color:#777;

}

.about-text .primary-btn{

    margin-top:20px;

}

@media(max-width:992px){

.about-container{

grid-template-columns:1fr;

text-align:center;

}

.about-features{

grid-template-columns:1fr;

}

.about-featured{

margin-top:40px;

}

}

.featured-card:hover{

    transform:translateY(-8px);

    box-shadow:0 35px 70px rgba(0,0,0,.18);

}

.about-image img{

    border-radius:22px;

    box-shadow:var(--shadow-hover);

}


/*==================================================
    CALL TO ACTION
==================================================*/

.cta-section{
    background:#fff;
    padding:30px 0;
}

.cta-box{

    max-width:1200px;

    margin:auto;

    padding:70px;

    border-radius:24px;

    background:linear-gradient(135deg,var(--primary),var(--primary-dark));

    color:#fff;

    text-align:center;

}

.cta-box h2{

    font-size:46px;

    margin-bottom:20px;

}

.cta-box p{

    font-size:18px;

    margin-bottom:35px;

    color:#f5f5f5;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta-buttons .secondary-btn{

    border:2px solid var(--secondary);

    color:var(--secondary);

}

.cta-buttons .secondary-btn:hover{

    background:var(--secondary);

    color:#111;

}

/*==================================================
    FOOTER
==================================================*/

footer{
    background:linear-gradient(135deg, #0b192d, #111827);
    color:#ffffff;
    border-top:1px solid rgba(218,178,54,.35);
}

.footer-container{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:50px;

    padding:20px 8% 20px;

}

.footer-column h3{

    color:var(--secondary);

    margin-bottom:25px;

    font-size:24px;

}

.footer-column p{

    color:#D1D5DB;

    margin-bottom:15px;

}

.footer-column ul{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.footer-column ul li a{

    color:#D1D5DB;

    transition:var(--transition);

}

.footer-column ul li a:hover{

    color:var(--secondary);

    padding-left:8px;

}

.social-links{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.social-links a{

    width:45px;

    height:45px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.08);

    transition:var(--transition);

}

.social-links a:hover{

    background:var(--secondary);

    color:#111;

    transform:translateY(-5px);

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.10);

    padding:25px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

    text-align:center;

}

.footer-bottom a{

    color:var(--secondary);

    font-weight:600;

}



/*==================================================
    GLOBAL ANIMATIONS
==================================================*/

@keyframes fadeIn{

    from{

        opacity:0;

        transform:translateY(20px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-8px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes spin{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

.fade-in{

    animation:fadeIn .8s ease both;

}

.float{

    animation:float 3s ease-in-out infinite;

}

.loading-card i{

    animation:spin 1s linear infinite;

}



/*==================================================
    UTILITIES
==================================================*/

.text-center{

    text-align:center;

}

.mt-1{margin-top:10px;}
.mt-2{margin-top:20px;}
.mt-3{margin-top:30px;}
.mt-4{margin-top:40px;}
.mt-5{margin-top:50px;}

.mb-1{margin-bottom:10px;}
.mb-2{margin-bottom:20px;}
.mb-3{margin-bottom:30px;}
.mb-4{margin-bottom:40px;}
.mb-5{margin-bottom:50px;}



/*==================================================
    RESPONSIVE
==================================================*/

@media(max-width:1100px){

.search-grid{

grid-template-columns:repeat(2,1fr);

}

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

.about-container{

grid-template-columns:1fr;

}

.hero-content h1{

font-size:52px;

}

.section-title h2{

font-size:36px;

}

.cta-box h2{

font-size:38px;

}

.finance-content h2{

font-size:38px;

}

}



@media(max-width:900px){

.navbar{

padding:12px 20px;

}

.logo-img{

    width:190px;

    height:auto;

}

/* .menu-toggle display + button styling now defined once,
   in the mobile-header-controls section above */


.nav-links{

position:absolute;

top:100%;

left:0;

width:100%;

background:#111827;

flex-direction:column;

align-items:center;

gap:0;

max-height:0;

overflow:hidden;

transition:.4s;

}

.nav-links.active{

max-height:500px;

padding:25px 0;

}

.nav-links li{

width:100%;

text-align:center;

}

.nav-links a{

display:block;

padding:18px;

}

.nav-actions,
.navbar .nav-actions{

display:none !important;

}

.hero-content h1{

font-size:46px;

}

.hero-content p{

font-size:18px;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

.cta-buttons{

flex-direction:column;

align-items:center;

}

}



@media(max-width:768px){

section{

padding:70px 6%;

}

.search-container{

padding:30px;

}

.search-grid{

grid-template-columns:1fr;

}

.stats-grid{

grid-template-columns:1fr;

}

.vehicle-grid{

grid-template-columns:1fr;

}

.brand-grid{

grid-template-columns:repeat(2,1fr);

}

.services-grid{

grid-template-columns:1fr;

}

.why-grid{

grid-template-columns:1fr;

}

.testimonial-grid{

grid-template-columns:1fr;

}

.footer-bottom{

flex-direction:column;

}

.hero{

height:auto;

padding:160px 20px 100px;

}

.hero-content h1{

font-size:40px;

}

.hero-content p{

font-size:17px;

}

.about-text h2{

font-size:36px;

}

.finance-content h2{

font-size:34px;

}

.cta-box{

padding:50px 25px;

}

.cta-box h2{

font-size:32px;

}

}



@media(max-width:500px){

.logo a{

font-size:24px;

}

.hero-content h1{

font-size:34px;

}

.hero-badge{

font-size:14px;

padding:10px 18px;

}

.section-title h2{

font-size:30px;

}

.brand-grid{

grid-template-columns:1fr;

}

.primary-btn,
.secondary-btn,
.inventory-btn{

width:100%;

}

.vehicle-price{

font-size:24px;

}

}

/* ==========================================
   INVENTORY HERO
========================================== */

/*.inventory-hero{
    position:relative;
    background:linear-gradient(
        rgba(0,0,0,.65),
        rgba(0,0,0,.65)
    ),
    url("../images/inventory-banner.jpg") center/cover no-repeat;

    min-height:320px;

    display:flex;

    align-items:center;

    color:#fff;
}*/

.inventory-overlay{
    position:absolute;
    inset:0;
}

.inventory-content{

    position:relative;

    z-index:2;

    max-width:1200px;

    width:100%;

    margin:auto;

    padding:80px 40px;

}

.inventory-content span{

    color:#d4af37;

    font-size:15px;

    text-transform:uppercase;

    letter-spacing:2px;

}

.inventory-content h1{

    font-size:56px;

    margin:15px 0;

}

.inventory-content p{

    max-width:650px;

    font-size:18px;

    line-height:1.8;

}

/* ==========================================
   FILTER PANEL
========================================== */

.inventory-filters{

    margin-top:-60px;

    position:relative;

    z-index:10;

}

.filter-container{
    max-width:1200px;
    margin:auto;
    background:#f8f9fb;
    padding:35px 40px;
    border-radius:18px;
    border:1px solid #e5e7eb;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.filter-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:20px;

    margin-top:30px;

}

.filter-grid label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

}

.filter-grid input,

.filter-grid select{

    width:100%;

    height:52px;

    padding:0 15px;

    border:1px solid #ddd;

    border-radius:10px;

    font-size:15px;

}

.filter-grid input:focus,

.filter-grid select:focus{

    outline:none;

    border-color:#d4af37;

}

.filter-buttons{

    display:flex;

    gap:15px;

    margin-top:35px;

    flex-wrap:wrap;

}

/* ==========================================
   INVENTORY SUMMARY
========================================== */

.inventory-summary{

    max-width:1200px;

    margin:70px auto 40px;

    padding:0 20px;

}

.summary-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;

    flex-wrap:wrap;

}

.summary-card{

    background:#fff;

    padding:25px;

    border-radius:16px;

    display:flex;

    gap:20px;

    align-items:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.summary-card i{

    font-size:34px;

    color:#d4af37;

}

/* ==========================================
   INVENTORY GRID
========================================== */

.vehicle-grid{

    max-width:1300px;

    margin:auto;

    padding:20px;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

    gap:35px;

}

.vehicle-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.3s;

}

.vehicle-card:hover{

    transform:translateY(-8px);

}

.vehicle-image{

    height:250px;

    overflow:hidden;

}

.vehicle-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.4s;

}

.vehicle-card:hover img{

    transform:scale(1.08);

}

.vehicle-info{

    padding:25px;

}

.vehicle-price{

    color:#b40000;

    font-size:28px;

    font-weight:700;

    margin:15px 0;

}

.vehicle-specs{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-bottom:18px;

}

.vehicle-specs span{

    background:#f5f5f5;

    padding:8px 14px;

    border-radius:30px;

    font-size:14px;

}

/* ==========================================
   STATUS BADGE
========================================== */

.status-badge{

    position:absolute;

    top:15px;

    left:15px;

    background:#16a34a;

    color:#fff;

    padding:8px 16px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    z-index:5;

    box-shadow:0 5px 15px rgba(0,0,0,.2);

}

.vehicle-image{

    position:relative;

}

.vehicle-info h3{

    font-size:24px;

    margin-bottom:12px;

    color:#1e293b;

}

.vehicle-description{

    margin:20px 0;

    color:#666;

    line-height:1.7;

    min-height:55px;

}

.vehicle-actions{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.vehicle-actions a,

.vehicle-actions button{

    flex:1;

    height:48px;

    border:none;

    border-radius:10px;

    cursor:pointer;

    font-size:15px;

    font-weight:600;

    transition:.3s;

}

.vehicle-actions .primary-btn{

    background:#d4af37;

    color:#111;

}

.vehicle-actions .primary-btn:hover{

    background:#b89123;

}

.vehicle-actions .secondary-btn{

    background:#1e293b;

    color:#fff;

}

.vehicle-actions .secondary-btn:hover{

    background:#111827;

}

.loading-card{

    grid-column:1/-1;

    text-align:center;

    background:#fff;

    padding:80px;

    border-radius:20px;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}

.loading-card i{

    font-size:50px;

    color:#d4af37;

    margin-bottom:20px;

}

.empty-state{

    max-width:700px;

    margin:70px auto;

    text-align:center;

    background:#fff;

    padding:60px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.empty-state i{

    font-size:70px;

    color:#d4af37;

    margin-bottom:20px;

}

.load-more-section{

    text-align:center;

    margin:50px 0 80px;

}

#loadMoreBtn{

    padding:15px 45px;

    border:none;

    border-radius:50px;

    background:#d4af37;

    color:#111;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

#loadMoreBtn:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(0,0,0,.2);

}

.compare-floating{

    position:fixed;

    bottom:30px;

    right:30px;

    background:#b40000;

    color:#fff;

    padding:15px 22px;

    border-radius:50px;

    display:flex;

    align-items:center;

    gap:12px;

    cursor:pointer;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

    z-index:999;

    transition:.3s;

}

.compare-floating:hover{

    transform:translateY(-5px);

}

.compare-count{

    background:#fff;

    color:#b40000;

    width:28px;

    height:28px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:bold;

}

@media (max-width:768px){

    .inventory-content h1{

        font-size:38px;

    }

    .filter-container{

        padding:25px;

    }

    .summary-container{

        flex-direction:column;

        align-items:flex-start;

    }

    .vehicle-grid{

        grid-template-columns:1fr;

    }

    .vehicle-actions{

        flex-direction:column;

    }

    .compare-floating{

        right:15px;

        bottom:15px;

    }
/* ===============================
   TOP BAR
================================ */

/*==============================
TOP BAR
==============================*/

.top-bar{

    background:#111827;

    color:#d1d5db;

    font-size:14px;

    padding:10px 0;

}

.top-bar .container{

    width:min(92%,1400px);

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.contact-info{
    display:flex;
    align-items:center;
    gap:24px;
    font-size:14px;
    color:#ffffff;
}

.location-info{
    display:flex;
    align-items:center;
    gap:24px;
    font-size:14px;
    color:#ffffff;
}
.contact-info span,
.location-info span{
    display:flex;
    align-items:center;
    gap:8px;
    white-space:nowrap;
}

.contact-info i,
.location-info i{
    color:var(--secondary);
}

.top-bar span{

    display:flex;

    align-items:center;

    gap:8px;

}
}
.top-bar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100%;
    padding:10px 40px;
    font-size:14px;
    color:#ffffff;
}

.top-bar-left,
.top-bar-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.top-bar i{
    color:var(--secondary);
    margin-right:6px;
}

/* ==========================================
   HEADER FINAL FIX
   Remove gold line and keep top contact bar
   ========================================== */

header > .navbar {
    border-bottom: none !important;
    box-shadow: none !important;
}

header > .navbar::before,
header > .navbar::after {
    display: none !important;
    content: none !important;
}

/* Keep phone, email, location and time visible */
header .contact-info,
header .location-info {
    display: flex !important;
    align-items: center;
    gap: 24px;
    color: #ffffff !important;
}

header .contact-info span,
header .location-info span {
    color: #ffffff !important;
}

header .contact-info i,
header .location-info i {
    color: #D4AF37 !important;
}

/* REMOVE GOLD LINE ABOVE HERO */

.hero {
    border-top: none !important;
    border-bottom: none !important;
}

.hero::before,
.hero::after,
.hero-slider::before,
.hero-slider::after {
    border: none !important;
    box-shadow: none !important;
}

.about-featured{
    display:none;
}

@media (max-width:1100px){
    .brand-grid{
        grid-template-columns:repeat(3, minmax(0, 1fr));
    }
}

@media (max-width:600px){
    .brand-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

/* ==========================================
   INVENTORY FILTER BUTTONS
   ========================================== */

.filter-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    margin-top:30px;
    flex-wrap:wrap;
}

.filter-buttons .search-btn{
    width:auto;
    margin-top:0;
    min-width:180px;
    padding:15px 32px;
    background:var(--secondary);
    color:#111;
}

.filter-buttons .search-btn:hover{
    background:var(--primary-dark);
    color:#fff;
}

.filter-buttons .secondary-btn{
    width:auto;
    min-width:180px;
    padding:15px 32px;
    margin-top:0;
    border:2px solid var(--primary);
    color:var(--primary);
    background:#fff;
}

.filter-buttons .secondary-btn:hover{
    background:var(--primary);
    color:#fff;
}

/* ==========================================
   FINAL INVENTORY FILTER BUTTON FIX
   ========================================== */

.filter-buttons {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 16px !important;
    width: 100% !important;
    margin-top: 30px !important;
    flex-wrap: nowrap !important;
}

.filter-buttons .search-btn {
    width: 200px !important;
    min-width: 200px !important;
    margin-top: 0 !important;
    padding: 15px 30px !important;
    background: var(--secondary) !important;
    color: #111 !important;
    border: none !important;
}

.filter-buttons .secondary-btn {
    width: 200px !important;
    min-width: 200px !important;
    margin-top: 0 !important;
    padding: 15px 30px !important;
    background: #fff !important;
    color: var(--primary) !important;
    border: 2px solid var(--primary) !important;
}

.filter-buttons .search-btn:hover {
    background: var(--primary-dark) !important;
    color: #fff !important;
}

.filter-buttons .secondary-btn:hover {
    background: var(--primary) !important;
    color: #fff !important;
}

/* ============================================================
   HASKE BRIGHT MOTORS
   CONTACT SALES HEADER
   ============================================================ */

.sales-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;

    background:
        linear-gradient(
            135deg,
            #071a33 0%,
            #0b2342 55%,
            #102d4d 100%
        );

    border-bottom: 2px solid #e7b923;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.18);
}


/* ============================================================
   HEADER INNER
   ============================================================ */

.sales-header-inner {
    width: min(1400px, calc(100% - 60px));

    min-height: 88px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


/* ============================================================
   BRAND
   ============================================================ */

.sales-brand {
    display: flex;

    align-items: center;

    gap: 13px;

    text-decoration: none;

    flex-shrink: 0;
}


/* ============================================================
   HB LOGO
   ============================================================ */

.sales-logo {
    width: 58px;
    height: 58px;

    border: 2px solid #e7b923;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    position: relative;

    background:
        radial-gradient(
            circle,
            rgba(231, 185, 35, 0.15),
            rgba(231, 185, 35, 0.02)
        );

    box-shadow:
        0 0 0 4px rgba(231, 185, 35, 0.08),
        inset 0 0 20px rgba(231, 185, 35, 0.08);
}


/* Inner gold ring */

.sales-logo::before {
    content: "";

    position: absolute;

    inset: 5px;

    border: 1px solid rgba(231, 185, 35, 0.65);

    border-radius: 50%;
}


/* HB */

.sales-logo span {
    position: relative;

    z-index: 1;

    color: #e7b923;

    font-size: 19px;

    font-weight: 900;

    letter-spacing: -1px;

    font-family:
        Arial,
        Helvetica,
        sans-serif;
}


/* ============================================================
   BRAND TEXT
   ============================================================ */

.sales-brand-text {
    display: flex;

    flex-direction: column;

    line-height: 1.05;
}

.sales-brand-text span {
    color: #e7b923;

    font-size: 17px;

    font-weight: 900;

    letter-spacing: 0.02em;
}


/* ============================================================
   NAVIGATION
   ============================================================ */

.sales-nav {
    display: flex;

    align-items: stretch;

    height: 88px;

    gap: 8px;

    margin-left: auto;
}


.sales-nav a {
    position: relative;

    min-width: 105px;

    padding: 0 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    color: #f8fafc;

    text-decoration: none;

    font-size: 14px;

    font-weight: 800;

    transition:
        color 0.25s ease,
        background 0.25s ease;
}


/* Navigation icon */

.nav-icon {
    color: #dce5f1;

    font-size: 20px;

    line-height: 1;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


/* Hover */

.sales-nav a:hover {
    color: #e7b923;

    background:
        rgba(255, 255, 255, 0.04);
}

.sales-nav a:hover .nav-icon {
    color: #e7b923;

    transform: translateY(-2px);
}


/* ============================================================
   ACTIVE NAVIGATION
   ============================================================ */

.sales-nav a.active {
    color: #e7b923;
}


.sales-nav a.active .nav-icon {
    color: #e7b923;
}


/* Gold underline */

.sales-nav a.active::after {
    content: "";

    position: absolute;

    left: 18px;
    right: 18px;

    bottom: 0;

    height: 4px;

    border-radius:
        4px 4px 0 0;

    background: #e7b923;

    box-shadow:
        0 -2px 10px rgba(231, 185, 35, 0.25);
}


/* ============================================================
   PHONE
   ============================================================ */

.sales-phone {
    display: flex;

    align-items: center;

    gap: 11px;

    text-decoration: none;

    color: #ffffff;

    padding: 8px 12px;

    border-radius: 14px;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.sales-phone:hover {
    background:
        rgba(255, 255, 255, 0.06);

    transform: translateY(-1px);
}


/* Phone circle */

.phone-icon {
    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(231, 185, 35, 0.14);

    color: #e7b923;

    font-size: 21px;

    box-shadow:
        0 0 0 1px rgba(231, 185, 35, 0.12);
}


/* Phone text */

.phone-text {
    display: flex;

    flex-direction: column;

    gap: 3px;

    white-space: nowrap;
}


.phone-text strong {
    color: #ffffff;

    font-size: 14px;

    font-weight: 900;
}


.phone-text small {
    color: #9fb2ca;

    font-size: 11px;

    font-weight: 500;
}


/* ============================================================
   MOBILE MENU BUTTON
   ============================================================ */

.sales-menu-toggle {
    display: none;

    width: 54px;
    height: 54px;

    border: 2px solid #e7b923;

    border-radius: 10px;

    background:
        rgba(231, 185, 35, 0.05);

    cursor: pointer;

    padding: 12px;

    flex-direction: column;

    justify-content: center;

    gap: 5px;
}


.sales-menu-toggle span {
    display: block;

    width: 100%;

    height: 3px;

    border-radius: 4px;

    background: #e7b923;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1050px) {

    .sales-header-inner {
        width: min(
            100%,
            calc(100% - 35px)
        );

        gap: 15px;
    }


    .sales-brand-text span {
        font-size: 15px;
    }


    .sales-nav a {
        min-width: auto;

        padding: 0 12px;
    }


    .sales-phone {
        padding: 5px;
    }


    .phone-text {
        display: none;
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 800px) {

    .sales-header {
        position: sticky;

        top: 0;
    }


    .sales-header-inner {
        min-height: 76px;

        width: calc(100% - 30px);

        gap: 12px;
    }


    .sales-logo {
        width: 48px;
        height: 48px;
    }


    .sales-logo span {
        font-size: 16px;
    }


    .sales-brand-text span {
        font-size: 14px;
    }


    /* Hide desktop navigation */

    .sales-nav {
        display: none;

        position: absolute;

        top: 78px;

        left: 0;
        right: 0;

        height: auto;

        margin: 0;

        padding: 10px 15px 18px;

        flex-direction: column;

        gap: 4px;

        background: #0b203c;

        border-bottom:
            1px solid
            rgba(231, 185, 35, 0.25);

        box-shadow:
            0 15px 30px
            rgba(0, 0, 0, 0.25);
    }


    /* Open menu */

    .sales-nav.active {
        display: flex;
    }


    .sales-nav a {
        width: 100%;

        min-height: 52px;

        justify-content: flex-start;

        padding: 0 18px;

        border-radius: 8px;
    }


    .sales-nav a.active {
        background:
            rgba(231, 185, 35, 0.08);
    }


    .sales-nav a.active::after {
        left: 0;
        right: auto;

        top: 10px;
        bottom: 10px;

        width: 4px;

        height: auto;

        border-radius: 0 4px 4px 0;
    }


    /* Phone */

    .sales-phone {
        margin-left: auto;
    }


    .phone-icon {
        width: 43px;
        height: 43px;
    }


    /* Hamburger */

    .sales-menu-toggle {
        display: flex;
    }

}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 480px) {

    .sales-header-inner {
        width: calc(100% - 20px);
    }


    .sales-brand {
        gap: 8px;
    }


    .sales-logo {
        width: 43px;
        height: 43px;
    }


    .sales-logo span {
        font-size: 14px;
    }


    .sales-brand-text span {
        font-size: 12px;
    }


    .phone-icon {
        width: 40px;
        height: 40px;

        font-size: 18px;
    }


    .sales-menu-toggle {
        width: 48px;
        height: 48px;
    }

}

/* ============================================================
   HASKE BRIGHT MOTORS — FINAL HEADER POLISH
   ============================================================ */

.sales-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: #081b35;
    border-bottom: 2px solid #e7b923;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.14);
}

.sales-header-inner {
    width: min(1380px, calc(100% - 48px));
    min-height: 78px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    gap: 28px;
}


/* ============================================================
   BRAND
   ============================================================ */

.sales-brand {
    display: flex;
    align-items: center;
    gap: 12px;

    text-decoration: none;
    flex-shrink: 0;
}

.sales-logo {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    border: 2px solid #e7b923;
    border-radius: 50%;

    background: rgba(231, 185, 35, 0.06);

    box-shadow:
        0 0 0 4px rgba(231, 185, 35, 0.07);
}

.sales-logo::before {
    content: "";

    position: absolute;
    inset: 5px;

    border: 1px solid rgba(231, 185, 35, 0.65);
    border-radius: 50%;
}

.sales-logo span {
    position: relative;
    z-index: 1;

    color: #e7b923;

    font-size: 18px;
    font-weight: 900;
    letter-spacing: -1px;
}

.sales-brand-text {
    display: flex;
    flex-direction: column;

    line-height: 1.05;
}

.sales-brand-text span {
    color: #e7b923;

    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.01em;
}


/* ============================================================
   NAVIGATION
   ============================================================ */

.sales-nav {
    height: 78px;

    margin-left: auto;

    display: flex;
    align-items: stretch;

    gap: 3px;
}

.sales-nav a {
    position: relative;

    min-width: 105px;

    padding: 0 15px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    color: #f4f7fb;

    text-decoration: none;

    font-size: 14px;
    font-weight: 800;

    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.sales-nav a:hover {
    color: #e7b923;
    background: rgba(255, 255, 255, 0.035);
}

.nav-icon {
    color: #dce5ef;

    font-size: 18px;
    line-height: 1;

    transition: color 0.2s ease;
}

.sales-nav a:hover .nav-icon,
.sales-nav a.active .nav-icon {
    color: #e7b923;
}


/* ============================================================
   ACTIVE CONTACT
   ============================================================ */

.sales-nav a.active {
    color: #e7b923;
}

.sales-nav a.active::after {
    content: "";

    position: absolute;

    left: 16px;
    right: 16px;
    bottom: 0;

    height: 4px;

    background: #e7b923;

    border-radius: 4px 4px 0 0;
}


/* ============================================================
   PHONE
   ============================================================ */

.sales-phone {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 6px 4px 6px 10px;

    color: #fff;

    text-decoration: none;

    flex-shrink: 0;
}

.phone-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(231, 185, 35, 0.13);

    color: #e7b923;

    font-size: 20px;
}

.phone-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.phone-text strong {
    color: #fff;

    font-size: 13px;
    font-weight: 900;

    white-space: nowrap;
}

.phone-text small {
    color: #9fb1c8;

    font-size: 11px;

    white-space: nowrap;
}


/* ============================================================
   MOBILE MENU
   ============================================================ */

.sales-menu-toggle {
    display: none;

    width: 50px;
    height: 50px;

    padding: 11px;

    border: 2px solid #e7b923;
    border-radius: 10px;

    background: transparent;

    cursor: pointer;

    flex-direction: column;
    justify-content: center;

    gap: 5px;
}

.sales-menu-toggle span {
    width: 100%;
    height: 3px;

    border-radius: 3px;

    background: #e7b923;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1050px) {

    .sales-header-inner {
        width: calc(100% - 30px);
        gap: 14px;
    }

    .sales-brand-text span {
        font-size: 14px;
    }

    .sales-nav a {
        min-width: auto;
        padding: 0 10px;
    }

    .sales-phone {
        padding-left: 4px;
    }

    .phone-text {
        display: none;
    }
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 800px) {

    .sales-header-inner {
        min-height: 72px;
        width: calc(100% - 24px);
    }

    .sales-nav {
        display: none;

        position: absolute;

        top: 72px;
        left: 0;
        right: 0;

        height: auto;

        margin: 0;
        padding: 10px 14px 16px;

        flex-direction: column;
        gap: 4px;

        background: #081b35;

        border-bottom: 1px solid rgba(231, 185, 35, 0.25);

        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.22);
    }

    .sales-nav.active {
        display: flex;
    }

    .sales-nav a {
        width: 100%;
        min-height: 50px;

        justify-content: flex-start;

        padding: 0 16px;

        border-radius: 8px;
    }

    .sales-nav a.active {
        background: rgba(231, 185, 35, 0.08);
    }

    .sales-nav a.active::after {
        left: 0;
        right: auto;

        top: 9px;
        bottom: 9px;

        width: 4px;
        height: auto;

        border-radius: 0 4px 4px 0;
    }

    .sales-phone {
        margin-left: auto;
    }

    .phone-icon {
        width: 42px;
        height: 42px;
    }

    .sales-menu-toggle {
        display: flex;
    }
}


/* ============================================================
   SMALL PHONES
   ============================================================ */

@media (max-width: 480px) {

    .sales-header-inner {
        width: calc(100% - 16px);
    }

    .sales-logo {
        width: 46px;
        height: 46px;
    }

    .sales-logo span {
        font-size: 15px;
    }

    .sales-brand-text span {
        font-size: 12px;
    }

    .phone-icon {
        width: 39px;
        height: 39px;
        font-size: 18px;
    }

    .sales-menu-toggle {
        width: 46px;
        height: 46px;
    }
}
/* ============================================================
   HASKE BRIGHT MOTORS — SALES HEADER
   (copied from the live contact-sales page so the inventory
   page can share the exact same header component)
   ============================================================ */

.sales-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: #081b35;
    border-bottom: 2px solid #e7b923;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.14);
}

.sales-header-inner {
    width: min(1380px, calc(100% - 48px));
    min-height: 78px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    gap: 28px;
}


/* ============================================================
   BRAND
   ============================================================ */

.sales-brand {
    display: flex;
    align-items: center;
    gap: 12px;

    text-decoration: none;
    flex-shrink: 0;
}

.sales-logo {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    border: 2px solid #e7b923;
    border-radius: 50%;

    background: rgba(231, 185, 35, 0.06);

    box-shadow:
        0 0 0 4px rgba(231, 185, 35, 0.07);
}

.sales-logo::before {
    content: "";

    position: absolute;
    inset: 5px;

    border: 1px solid rgba(231, 185, 35, 0.65);
    border-radius: 50%;
}

.sales-logo span {
    position: relative;
    z-index: 1;

    color: #e7b923;

    font-size: 18px;
    font-weight: 900;
    letter-spacing: -1px;
}

.sales-brand-text {
    display: flex;
    flex-direction: column;

    line-height: 1.05;
}

.sales-brand-text span {
    color: #e7b923;

    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.01em;
}


/* ============================================================
   NAVIGATION
   ============================================================ */

.sales-nav {
    height: 78px;

    margin-left: auto;

    display: flex;
    align-items: stretch;

    gap: 3px;
}

.sales-nav a {
    position: relative;

    min-width: 105px;

    padding: 0 15px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    color: #f4f7fb;

    text-decoration: none;

    font-size: 14px;
    font-weight: 800;

    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.sales-nav a:hover {
    color: #e7b923;
    background: rgba(255, 255, 255, 0.035);
}

.nav-icon {
    color: #dce5ef;

    font-size: 18px;
    line-height: 1;

    transition: color 0.2s ease;
}

.sales-nav a:hover .nav-icon,
.sales-nav a.active .nav-icon {
    color: #e7b923;
}


/* ============================================================
   ACTIVE CONTACT
   ============================================================ */

.sales-nav a.active {
    color: #e7b923;
}

.sales-nav a.active::after {
    content: "";

    position: absolute;

    left: 16px;
    right: 16px;
    bottom: 0;

    height: 4px;

    background: #e7b923;

    border-radius: 4px 4px 0 0;
}


/* ============================================================
   PHONE
   ============================================================ */

.sales-phone {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 6px 4px 6px 10px;

    color: #fff;

    text-decoration: none;

    flex-shrink: 0;
}

.phone-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(231, 185, 35, 0.13);

    color: #e7b923;

    font-size: 20px;
}

.phone-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.phone-text strong {
    color: #fff;

    font-size: 13px;
    font-weight: 900;

    white-space: nowrap;
}

.phone-text small {
    color: #9fb1c8;

    font-size: 11px;

    white-space: nowrap;
}


/* ============================================================
   MOBILE MENU
   ============================================================ */

.sales-menu-toggle {
    display: none;

    width: 50px;
    height: 50px;

    padding: 11px;

    border: 2px solid #e7b923;
    border-radius: 10px;

    background: transparent;

    cursor: pointer;

    flex-direction: column;
    justify-content: center;

    gap: 5px;
}

.sales-menu-toggle span {
    width: 100%;
    height: 3px;

    border-radius: 3px;

    background: #e7b923;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1050px) {

    .sales-header-inner {
        width: calc(100% - 30px);
        gap: 14px;
    }

    .sales-brand-text span {
        font-size: 14px;
    }

    .sales-nav a {
        min-width: auto;
        padding: 0 10px;
    }

    .sales-phone {
        padding-left: 4px;
    }

    .phone-text {
        display: none;
    }
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 800px) {

    .sales-header-inner {
        min-height: 72px;
        width: calc(100% - 24px);
    }

    .sales-nav {
        display: none;

        position: absolute;

        top: 72px;
        left: 0;
        right: 0;

        height: auto;

        margin: 0;
        padding: 10px 14px 16px;

        flex-direction: column;
        gap: 4px;

        background: #081b35;

        border-bottom: 1px solid rgba(231, 185, 35, 0.25);

        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.22);
    }

    .sales-nav.active {
        display: flex;
    }

    .sales-nav a {
        width: 100%;
        min-height: 50px;

        justify-content: flex-start;

        padding: 0 16px;

        border-radius: 8px;
    }

    .sales-nav a.active {
        background: rgba(231, 185, 35, 0.08);
    }

    .sales-nav a.active::after {
        left: 0;
        right: auto;

        top: 9px;
        bottom: 9px;

        width: 4px;
        height: auto;

        border-radius: 0 4px 4px 0;
    }

    .sales-phone {
        margin-left: auto;
    }

    .phone-icon {
        width: 42px;
        height: 42px;
    }

    .sales-menu-toggle {
        display: flex;
    }
}


/* ============================================================
   SMALL PHONES
   ============================================================ */

@media (max-width: 480px) {

    .sales-header-inner {
        width: calc(100% - 16px);
    }

    .sales-logo {
        width: 46px;
        height: 46px;
    }

    .sales-logo span {
        font-size: 15px;
    }

    .sales-brand-text span {
        font-size: 12px;
    }

    .phone-icon {
        width: 39px;
        height: 39px;
        font-size: 18px;
    }

    .sales-menu-toggle {
        width: 46px;
        height: 46px;
    }
}

/* =========================================================
   HASKE BRIGHT MOTORS
   COMPACT HEADER
   MATCH VEHICLE DETAILS PAGE
   ========================================================= */


/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */

.site-header {
    width: 100%;
    height: 145px;

    background: #111827;

    position: relative;
    z-index: 1000;

    display: flex;
    align-items: center;
}


/* ---------------------------------------------------------
   NAVBAR
   --------------------------------------------------------- */

.site-header .navbar {

    width: 100%;
    max-width: 1530px;

    height: 145px;

    margin: 0 auto;

    padding: 0 40px;

    display: flex;
    align-items: center;

    gap: 28px;

    box-sizing: border-box;
}


/* ---------------------------------------------------------
   LOGO
   --------------------------------------------------------- */

.site-header .logo {

    flex-shrink: 0;

    display: flex;
    align-items: center;
}


.site-header .logo a {

    display: flex;
    align-items: center;

    text-decoration: none;
}


.site-header .logo-img {

    width: 315px;
    height: 100px;

    object-fit: contain;

    display: block;
}


/* Hide the old separate text beside the logo */

.site-header .logo-text {

    display: none !important;
}


/* ---------------------------------------------------------
   CONTACT INFORMATION
   --------------------------------------------------------- */

.site-header .header-contact {

    flex: 1;

    display: flex;
    align-items: center;

    justify-content: center;

    gap: 14px;

    min-width: 0;
}


.site-header .contact-item {

    display: flex;
    align-items: center;

    gap: 7px;

    color: #ffffff;

    text-decoration: none;

    font-size: 13px;
    font-weight: 500;

    white-space: nowrap;

    transition: color .25s ease;
}


.site-header .contact-item i {

    color: #D4AF37;

    font-size: 14px;
}


.site-header .contact-item:hover {

    color: #D4AF37;
}


.site-header .divider {

    color: rgba(255,255,255,.30);

    font-size: 13px;

    flex-shrink: 0;
}


/* ---------------------------------------------------------
   DESKTOP NAVIGATION
   --------------------------------------------------------- */

.site-header .nav-links {

    display: flex;

    align-items: center;

    gap: 28px;

    flex-shrink: 0;
}


.site-header .nav-links ul {

    display: flex;

    align-items: center;

    gap: 28px;

    list-style: none;

    margin: 0;
    padding: 0;
}


.site-header .nav-links li {

    list-style: none;
}


.site-header .nav-links a {

    color: #ffffff;

    text-decoration: none;

    font-size: 15px;

    font-weight: 600;

    white-space: nowrap;

    transition: color .25s ease;
}


.site-header .nav-links a:hover {

    color: #D4AF37;
}


.site-header .nav-links a.active {

    color: #ffffff;
}


/* ---------------------------------------------------------
   CONTACT SALES BUTTON
   --------------------------------------------------------- */

.site-header .contact-btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    background: #0D3B70;

    color: #ffffff !important;

    padding: 15px 30px;

    min-height: 64px;

    border-radius: 35px;

    text-decoration: none;

    font-size: 16px;

    font-weight: 700;

    white-space: nowrap;

    transition:
        background .25s ease,
        transform .25s ease;
}


.site-header .contact-btn:hover {

    background: #14518F;

    transform: translateY(-2px);
}


/* ---------------------------------------------------------
   MOBILE BUTTON
   --------------------------------------------------------- */

.site-header .menu-toggle {

    display: none;

    border: none;

    background: transparent;

    color: #ffffff;

    width: 46px;
    height: 46px;

    align-items: center;
    justify-content: center;

    font-size: 30px;

    cursor: pointer;

    flex-shrink: 0;
}


/* ---------------------------------------------------------
   MOBILE MENU
   --------------------------------------------------------- */

.site-header .mobile-menu {

    display: none;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1200px) {

    .site-header .navbar {

        padding: 0 25px;

        gap: 18px;
    }


    .site-header .logo-img {

        width: 260px;

        height: 90px;
    }


    .site-header .header-contact {

        gap: 8px;
    }


    .site-header .contact-item {

        font-size: 11px;
    }


    .site-header .nav-links {

        gap: 16px;
    }


    .site-header .nav-links ul {

        gap: 16px;
    }


    .site-header .nav-links a {

        font-size: 13px;
    }


    .site-header .contact-btn {

        padding: 13px 20px;

        min-height: 55px;

        font-size: 14px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .site-header {

        height: 72px;

        min-height: 72px;
    }


    .site-header .navbar {

        height: 72px;

        padding: 0 18px;

        gap: 0;

        justify-content: space-between;
    }


    /* Logo */

    .site-header .logo-img {

        width: 150px;

        height: 60px;

        object-fit: contain;
    }


    /* Hide desktop contact information */

    .site-header .header-contact {

        display: none !important;
    }


    /* Hide desktop navigation */

    .site-header .nav-links {

        display: none !important;
    }


    /* Show hamburger */

    .site-header .menu-toggle {

        display: flex !important;
    }


    /* -----------------------------------------------------
       MOBILE MENU
       ----------------------------------------------------- */

    .site-header .mobile-menu {

        position: absolute;

        top: 72px;

        left: 0;

        width: 100%;

        background: #111827;

        padding: 0 20px 20px;

        box-sizing: border-box;

        display: none;

        box-shadow: 0 15px 30px rgba(0,0,0,.25);
    }


    .site-header .mobile-menu.active {

        display: block;
    }


    /* Mobile contact information */

    .site-header .mobile-contact {

        display: flex;

        flex-direction: column;

        gap: 12px;

        padding: 18px 0;

        border-bottom: 1px solid rgba(255,255,255,.10);
    }


    .site-header .mobile-contact a,
    .site-header .mobile-contact div {

        display: flex;

        align-items: center;

        gap: 12px;

        color: #ffffff;

        text-decoration: none;

        font-size: 14px;
    }


    .site-header .mobile-contact i {

        width: 20px;

        color: #D4AF37;

        text-align: center;
    }


    /* Mobile navigation */

    .site-header .mobile-menu ul {

        list-style: none;

        margin: 0;

        padding: 10px 0 0;
    }


    .site-header .mobile-menu li {

        list-style: none;

        width: 100%;
    }


    .site-header .mobile-menu li a {

        display: block;

        padding: 14px 5px;

        color: #ffffff;

        text-decoration: none;

        font-size: 16px;

        font-weight: 600;

        border-bottom: 1px solid rgba(255,255,255,.08);
    }


    .site-header .mobile-menu li a:hover,
    .site-header .mobile-menu li a.active {

        color: #D4AF37;
    }


    /* Mobile Contact Sales */

    .site-header .mobile-contact-btn {

        margin-top: 12px;

        text-align: center;

        background: #0D3B70;

        border-radius: 30px;

        border: none !important;

        padding: 14px !important;

        color: #ffffff !important;
    }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    .site-header .navbar {

        padding: 0 14px;
    }


    .site-header .logo-img {

        width: 135px;

        height: 56px;
    }


    .site-header .menu-toggle {

        width: 42px;

        height: 42px;

        font-size: 28px;
    }

}

/* =========================================================
   HASKE BRIGHT MOTORS
   FINAL RESPONSIVE HEADER
   ========================================================= */

.site-header {
    position: relative;
    width: 100%;
    height: 110px;
    background: #071827;
    z-index: 1000;
}


/* =========================================================
   NAVBAR
   ========================================================= */

.site-header .navbar {
    width: 100%;
    max-width: 1450px;
    height: 110px;

    margin: 0 auto;
    padding: 0 28px;

    display: flex;
    align-items: center;

    gap: 18px;

    box-sizing: border-box;
}


/* =========================================================
   LOGO
   ========================================================= */

.site-header .logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}


.site-header .logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}


.site-header .logo-img {
    width: 215px;
    height: 82px;

    object-fit: contain;

    display: block;
}


/* Hide old text beside logo */

.site-header .logo-text {
    display: none !important;
}


/* =========================================================
   CONTACT INFORMATION
   ========================================================= */

.site-header .header-contact {
    flex: 1 1 auto;

    min-width: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;
}


.site-header .contact-item {
    display: inline-flex;
    align-items: center;

    gap: 5px;

    color: #ffffff;

    text-decoration: none;

    font-size: 11px;
    font-weight: 600;

    white-space: nowrap;

    transition: .25s ease;
}


.site-header .contact-item i {
    color: #D4AF37;
    font-size: 12px;
}


.site-header .contact-item:hover {
    color: #D4AF37;
}


.site-header .divider {
    color: rgba(255,255,255,.35);
    font-size: 11px;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.site-header .nav-links {
    flex: 0 0 auto;

    display: flex;
    align-items: center;

    gap: 16px;
}


.site-header .nav-links ul {
    display: flex;
    align-items: center;

    gap: 17px;

    margin: 0;
    padding: 0;

    list-style: none;
}


.site-header .nav-links li {
    list-style: none;
}


.site-header .nav-links a {
    color: #ffffff;

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    white-space: nowrap;

    transition: color .25s ease;
}


.site-header .nav-links a:hover {
    color: #D4AF37;
}


.site-header .nav-links a.active {
    color: #D4AF37;
}


/* =========================================================
   CONTACT SALES
   ========================================================= */

.site-header .contact-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 135px;

    padding: 13px 20px;

    background: #0D3B70;

    border-radius: 30px;

    color: #ffffff !important;

    text-decoration: none;

    font-size: 13px !important;
    font-weight: 700 !important;

    white-space: nowrap;

    transition: .25s ease;
}


.site-header .contact-btn:hover {
    background: #14518F;
    transform: translateY(-2px);
}


/* =========================================================
   HAMBURGER
   ========================================================= */

.site-header .menu-toggle {

    display: none;

    width: 48px;
    height: 48px;

    padding: 0;

    border: 2px solid #D4AF37;

    border-radius: 10px;

    background: transparent;

    color: #D4AF37;

    font-size: 25px;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    position: relative;

    z-index: 1100;

    pointer-events: auto;
}


/* =========================================================
   MOBILE MENU
   ========================================================= */

.site-header .mobile-menu {

    display: none;

    position: absolute;

    top: 110px;
    left: 0;

    width: 100%;

    background: #071827;

    padding: 20px;

    box-sizing: border-box;

    z-index: 1050;

    box-shadow: 0 15px 35px rgba(0,0,0,.35);
}


.site-header .mobile-menu.active {
    display: block;
}


/* Contact information inside mobile menu */

.site-header .mobile-contact {

    display: flex;

    flex-direction: column;

    gap: 12px;

    padding-bottom: 18px;

    margin-bottom: 10px;

    border-bottom: 1px solid rgba(255,255,255,.12);
}


.site-header .mobile-contact a,
.site-header .mobile-contact div {

    display: flex;

    align-items: center;

    gap: 12px;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;
}


.site-header .mobile-contact i {

    width: 20px;

    color: #D4AF37;

    text-align: center;
}


/* Mobile navigation */

.site-header .mobile-menu ul {

    margin: 0;
    padding: 0;

    list-style: none;
}


.site-header .mobile-menu li {

    list-style: none;

    width: 100%;
}


.site-header .mobile-menu li a {

    display: block;

    padding: 14px 5px;

    color: #ffffff;

    text-decoration: none;

    font-size: 16px;

    font-weight: 600;

    border-bottom: 1px solid rgba(255,255,255,.08);
}


.site-header .mobile-menu li a:hover,
.site-header .mobile-menu li a.active {

    color: #D4AF37;
}


/* Mobile Contact Sales */

.site-header .mobile-contact-btn {

    margin-top: 14px;

    text-align: center;

    background: #B80000;

    border-radius: 30px;

    padding: 15px !important;

    color: #ffffff !important;

    border: none !important;
}


/* =========================================================
   MEDIUM DESKTOP
   ========================================================= */

@media (max-width: 1250px) {

    .site-header .navbar {
        padding: 0 20px;
        gap: 12px;
    }

    .site-header .logo-img {
        width: 185px;
        height: 75px;
    }

    .site-header .header-contact {
        gap: 6px;
    }

    .site-header .contact-item {
        font-size: 9.5px;
    }

    .site-header .nav-links {
        gap: 10px;
    }

    .site-header .nav-links ul {
        gap: 11px;
    }

    .site-header .nav-links a {
        font-size: 11.5px;
    }

    .site-header .contact-btn {
        min-width: 115px;
        padding: 11px 15px;
        font-size: 11.5px !important;
    }
}


/* =========================================================
   TABLET / MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .site-header {
        height: 72px;
    }

    .site-header .navbar {

        height: 72px;

        padding: 0 15px;

        justify-content: space-between;

        gap: 0;
    }


    .site-header .logo-img {

        width: 155px;
        height: 60px;
    }


    /* Hide desktop information */

    .site-header .header-contact {
        display: none !important;
    }


    /* Hide desktop navigation */

    .site-header .nav-links {
        display: none !important;
    }


    /* Show hamburger */

    .site-header .menu-toggle {
        display: flex !important;
    }


    /* Mobile menu */

    .site-header .mobile-menu {

        top: 72px;

        max-height: calc(100vh - 72px);

        overflow-y: auto;
    }

}


/* =========================================================
   SMALL PHONE
   ========================================================= */

@media (max-width: 480px) {

    .site-header .navbar {
        padding: 0 12px;
    }

    .site-header .logo-img {
        width: 145px;
        height: 56px;
    }

    .site-header .menu-toggle {
        width: 45px;
        height: 45px;
        font-size: 23px;
    }

}