/*==================================================
  SPARROW COMMERCIALS MODERN HOMEPAGE
  File: assets/css/sparrow-modern.css
==================================================*/

*{
    box-sizing:border-box;
}

:root{
    --sp-navy:#031b36;
    --sp-navy-2:#06284f;
    --sp-navy-3:#0a3566;
    --sp-blue:#0787f8;
    --sp-blue-2:#0aa0ff;
    --sp-blue-dark:#006dcc;
    --sp-text:#10223e;
    --sp-muted:#65748b;
    --sp-soft:#f4f8fd;
    --sp-soft-2:#eef5fc;
    --sp-border:#dce8f4;
    --sp-white:#ffffff;
    --sp-shadow:0 18px 45px rgba(6, 31, 64, .12);
    --sp-shadow-soft:0 10px 28px rgba(6, 31, 64, .08);
    --sp-radius:14px;
    --sp-radius-lg:18px;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:'Jost', Arial, Helvetica, sans-serif;
    color:var(--sp-text);
    background:#fff;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    color:inherit;
    text-decoration:none;
}

button,
input{
    font-family:inherit;
}

.container{
    width:min(1280px, calc(100% - 40px));
    margin:0 auto;
}

/*==================================================
  HEADER
==================================================*/

.site-header{
    position:relative;
    z-index:50;
    background:linear-gradient(180deg, #031b36 0%, #021428 100%);
    color:#fff;
    box-shadow:0 8px 28px rgba(0,0,0,.22);
}

.header-wrap{
    width:min(1280px, calc(100% - 40px));
    margin:0 auto;
    min-height:74px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.brand{
    display:flex;
    align-items:center;
    min-width:210px;
}

.brand img{
    max-height:58px;
    width:auto;
}

.header-actions{
    display:flex;
    align-items:center;
    gap:24px;
}

.header-contact{
    display:grid;
    grid-template-columns:24px 1fr;
    column-gap:8px;
    align-items:center;
    color:#fff;
    font-size:12px;
    line-height:1.1;
}

.header-contact i{
    grid-row:1 / span 2;
    font-size:22px;
    color:var(--sp-blue-2);
}

.header-contact span{
    color:#d7e7f7;
    font-weight:700;
    font-size:12px;
}

.header-contact strong{
    font-size:15px;
    color:#fff;
    font-weight:800;
    letter-spacing:.2px;
    margin-top:3px;
}

.social-link{
    color:#fff;
    font-size:26px;
    transition:.2s ease;
}

.social-link:hover{
    color:var(--sp-blue-2);
}

.main-nav{
    border-top:1px solid rgba(255,255,255,.06);
    background:rgba(0, 12, 26, .42);
}

.nav-wrap{
    width:min(1280px, calc(100% - 40px));
    margin:0 auto;
    min-height:44px;
    display:flex;
    align-items:center;
    justify-content:flex-end;
}

.nav-toggle{
    display:none;
    border:0;
    color:#fff;
    background:var(--sp-blue);
    border-radius:9px;
    width:42px;
    height:36px;
    font-size:18px;
    cursor:pointer;
}

.nav-menu{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:0;
    list-style:none;
    margin:0;
    padding:0;
}

.nav-menu li{
    position:relative;
    margin:0;
    padding:0;
}

.nav-menu a{
    display:flex;
    align-items:center;
    min-height:44px;
    padding:0 16px;
    color:#fff;
    font-size:13px;
    font-weight:800;
    transition:.2s ease;
    opacity:.92;
}

.nav-menu a:hover,
.nav-menu a.active{
    color:var(--sp-blue-2);
    opacity:1;
}

.nav-menu a.active::after{
    content:"";
    position:absolute;
    left:16px;
    right:16px;
    bottom:0;
    height:3px;
    border-radius:4px 4px 0 0;
    background:var(--sp-blue);
}

.nav-menu .stock-link{
    min-height:34px;
    margin-left:8px;
    border-radius:8px;
    background:linear-gradient(135deg, var(--sp-blue), var(--sp-blue-2));
    color:#fff;
    box-shadow:0 8px 20px rgba(7,135,248,.25);
}

.nav-menu .stock-link:hover{
    color:#fff;
    transform:translateY(-1px);
}

/*==================================================
  HERO
==================================================*/

.hero{
    position:relative;
    min-height:485px;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:
        linear-gradient(90deg, rgba(2,18,38,.98) 0%, rgba(3,31,62,.93) 35%, rgba(3,31,62,.5) 63%, rgba(3,31,62,.15) 100%),
        url('../../images/sptwins.jpg');
    background-repeat:no-repeat;
    background-size:cover;
    background-position:center right;
}

.hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at 25% 50%, rgba(7,135,248,.32), transparent 42%);
    pointer-events:none;
}

.hero-inner{
    position:relative;
    z-index:2;
}

.hero-content{
    max-width:620px;
    padding:54px 0 72px;
}

.eyebrow{
    display:inline-flex;
    margin-bottom:18px;
    color:#31b5ff;
    font-size:15px;
    font-weight:900;
    letter-spacing:.5px;
    text-transform:uppercase;
}

.hero h1{
    margin:0 0 22px;
    color:#fff;
    font-size:52px;
    line-height:1.12;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:-1px;
    text-shadow:0 4px 18px rgba(0,0,0,.3);
}

.hero h1 span{
    color:var(--sp-blue-2);
}

.hero p{
    margin:0 0 32px;
    max-width:520px;
    color:#f0f7ff;
    font-size:18px;
    line-height:1.65;
    font-weight:600;
}

.hero-buttons{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

/*==================================================
  BUTTONS
==================================================*/

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    min-height:48px;
    padding:0 28px;
    border-radius:8px;
    border:1px solid transparent;
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.2px;
    cursor:pointer;
    transition:.22s ease;
    white-space:nowrap;
}

.btn-primary{
    background:linear-gradient(135deg, var(--sp-blue), var(--sp-blue-2));
    color:#fff;
    box-shadow:0 12px 28px rgba(7,135,248,.28);
}

.btn-primary:hover{
    transform:translateY(-2px);
    box-shadow:0 16px 34px rgba(7,135,248,.36);
}

.btn-outline{
    color:#fff;
    border-color:rgba(255,255,255,.72);
    background:rgba(255,255,255,.03);
}

.btn-outline:hover{
    background:#fff;
    color:var(--sp-navy);
}

.btn-small{
    min-height:38px;
    padding:0 20px;
    color:var(--sp-blue);
    background:#fff;
    border-color:var(--sp-blue);
    border-radius:7px;
}

.btn-small:hover{
    color:#fff;
    background:var(--sp-blue);
}

.center-btn{
    display:flex;
    justify-content:center;
    margin-top:28px;
}

/*==================================================
  TRUST STRIP
==================================================*/

.trust-strip{
    position:relative;
    z-index:5;
    margin-top:-56px;
}

.trust-card{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    background:#fff;
    border:1px solid var(--sp-border);
    border-radius:9px;
    box-shadow:var(--sp-shadow);
    overflow:hidden;
}

.trust-item{
    display:flex;
    align-items:center;
    gap:18px;
    padding:28px 30px;
    min-height:110px;
    border-right:1px solid var(--sp-border);
}

.trust-item:last-child{
    border-right:0;
}

.trust-item i{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex:0 0 48px;
    border-radius:50%;
    color:var(--sp-blue);
    border:3px solid var(--sp-blue);
    font-size:24px;
}

.trust-item strong{
    display:block;
    color:var(--sp-text);
    font-size:14px;
    line-height:1.25;
    text-transform:uppercase;
    font-weight:900;
}

.trust-item span{
    display:block;
    margin-top:3px;
    color:var(--sp-muted);
    font-size:13px;
    line-height:1.35;
    font-weight:600;
}

/*==================================================
  SECTIONS
==================================================*/

.section{
    padding:78px 0;
}

.categories-section{
    background:#fff;
    padding-top:64px;
}

.vehicles-section{
    background:linear-gradient(180deg, #eef5fc 0%, #f7fbff 100%);
}

.section-title h2,
.section-head h2{
    margin:0;
    color:var(--sp-text);
    font-size:28px;
    line-height:1.2;
    text-transform:uppercase;
    font-weight:900;
    letter-spacing:.3px;
}

.section-title h2::after{
    content:"";
    display:block;
    width:44px;
    height:3px;
    border-radius:4px;
    background:var(--sp-blue);
    margin:10px 0 0;
}

.section-title.centered{
    text-align:center;
}

.section-title.centered h2::after{
    margin:10px auto 0;
}

.section-title p,
.section-head p{
    margin:10px 0 0;
    color:var(--sp-muted);
    font-size:16px;
    font-weight:500;
}

.section-head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:24px;
    margin-bottom:30px;
}

/*==================================================
  CATEGORIES
==================================================*/

.category-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:18px;
    margin-top:32px;
}

.category-card{
    min-height:190px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    gap:18px;
    padding:24px 16px;
    background:#fff;
    border:1px solid var(--sp-border);
    border-radius:9px;
    box-shadow:0 6px 20px rgba(6,31,64,.05);
    transition:.22s ease;
}

.category-card:hover{
    transform:translateY(-4px);
    border-color:rgba(7,135,248,.45);
    box-shadow:var(--sp-shadow-soft);
}

.category-card img{
    height:86px;
    width:auto;
    object-fit:contain;
}

.category-card strong{
    display:block;
    color:var(--sp-text);
    font-size:15px;
    line-height:1.2;
    font-weight:900;
}

/*==================================================
  VEHICLE GRID
==================================================*/

.vehicle-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:26px;
}

.vehicle-card{
    background:#fff;
    border:1px solid var(--sp-border);
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(6,31,64,.06);
    transition:.22s ease;
}

.vehicle-card:hover{
    transform:translateY(-5px);
    box-shadow:var(--sp-shadow-soft);
}

.vehicle-image{
    position:relative;
    display:block;
    background:#dfe9f5;
    aspect-ratio:1.38 / 1;
    overflow:hidden;
}

.vehicle-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.3s ease;
}

.vehicle-card:hover .vehicle-image img{
    transform:scale(1.045);
}

.vehicle-badge{
    position:absolute;
    top:10px;
    left:10px;
    padding:7px 13px;
    border-radius:12px;
    background:var(--sp-blue);
    color:#fff;
    font-size:15px;
    font-weight:900;
    text-transform:uppercase;
}

.vehicle-badge.sold{
    background:#10223e;
}

.vehicle-badge.pending{
    background:#f0a500;
}

.vehicle-badge.new{
    background:#14a76c;
}

.vehicle-content{
    padding:15px 14px 17px;
}

.vehicle-price{
    margin:0 0 10px;
    color:var(--sp-blue);
    font-size:15px;
    font-weight:900;
}

.vehicle-price small{
    font-size:10px;
    font-weight:900;
    margin-left:2px;
}

.vehicle-content h3{
    margin:0 0 13px;
    color:var(--sp-text);
    font-size:15px;
    line-height:1.3;
    font-weight:900;
}

.vehicle-content h3 a:hover{
    color:var(--sp-blue);
}

.vehicle-meta{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:8px 12px;
    color:var(--sp-muted);
    font-size:12px;
    font-weight:700;
}

.vehicle-meta span:not(:last-child)::after{
    content:"-";
    margin-left:12px;
    color:#b1bfce;
}

/*==================================================
  SELL BANNER
==================================================*/

.sell-banner{
    position:relative;
    min-height:150px;
    margin:72px 0 30px;
    padding:34px 280px 34px 34px;
    display:flex;
    align-items:center;
    gap:26px;
    overflow:hidden;
    border-radius:10px;
    background:
        linear-gradient(90deg, #031b36 0%, #073b7b 72%, #088af6 100%);
    color:#fff;
    box-shadow:var(--sp-shadow);
}

.sell-banner::after{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at 70% 50%, rgba(255,255,255,.16), transparent 34%);
    pointer-events:none;
}

.sell-icon{
    position:relative;
    z-index:2;
    width:72px;
    height:72px;
    flex:0 0 72px;
    border:4px solid rgba(255,255,255,.92);
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    transform:rotate(-8deg);
}

.sell-icon i{
    font-size:34px;
    transform:rotate(8deg);
}

.sell-text{
    position:relative;
    z-index:2;
    flex:1;
}

.sell-text h2{
    margin:0 0 10px;
    color:#fff;
    font-size:28px;
    line-height:1.2;
    text-transform:uppercase;
    font-weight:900;
}

.sell-text p{
    margin:0;
    color:#f0f7ff;
    font-size:16px;
    line-height:1.55;
    max-width:700px;
    font-weight:600;
}

.sell-banner .btn{
    position:relative;
    z-index:2;
    flex:0 0 auto;
}

.sell-banner img{
    position:absolute;
    right:0;
    bottom:0;
    width:280px;
    height:196px;
    object-fit:cover;
    opacity:.95;
    mask-image:linear-gradient(90deg, transparent 0%, #000 26%);
}

/*==================================================
  NEWSLETTER
==================================================*/

.newsletter{
    background:linear-gradient(135deg, #0585ee 0%, #006ec8 50%, #005cb0 100%);
    color:#fff;
    padding:38px 0;
}

.newsletter-inner{
    display:grid;
    grid-template-columns:1fr 560px;
    align-items:center;
    gap:46px;
}

.newsletter-title{
    display:flex;
    align-items:center;
    gap:26px;
}

.newsletter-title i{
    font-size:62px;
    line-height:1;
    color:#fff;
    opacity:.95;
}

.newsletter-title h2{
    margin:0 0 8px;
    color:#fff;
    font-size:26px;
    text-transform:uppercase;
    font-weight:900;
}

.newsletter-title p{
    margin:0;
    color:#eaf6ff;
    font-size:15px;
    line-height:1.5;
    font-weight:600;
}

.newsletter-form{
    display:grid;
    grid-template-columns:1fr 150px;
    gap:12px;
}

.newsletter-form input{
    width:100%;
    height:54px;
    border:0;
    border-radius:7px;
    padding:0 20px;
    background:#fff;
    color:var(--sp-text);
    font-size:15px;
    outline:none;
    box-shadow:inset 0 0 0 1px rgba(255,255,255,.35);
}

.newsletter-form button{
    height:54px;
    border:0;
    border-radius:7px;
    color:#fff;
    background:#021428;
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
    cursor:pointer;
    transition:.22s ease;
}

.newsletter-form button:hover{
    background:#000b18;
    transform:translateY(-1px);
}

.newsletter-form small{
    grid-column:1 / -1;
    color:#e5f4ff;
    font-size:12px;
    font-weight:600;
}

/*==================================================
  FOOTER
==================================================*/

.site-footer{
    background:linear-gradient(180deg, #031b36 0%, #021326 100%);
    color:#d9e7f7;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.25fr 1fr .8fr .55fr;
    gap:54px;
    padding:54px 0 48px;
}

.footer-about img{
    max-height:62px;
    width:auto;
    margin-bottom:18px;
}

.footer-about p,
.footer-col p{
    margin:0;
    color:#d9e7f7;
    font-size:14px;
    line-height:1.7;
    font-weight:500;
}

.footer-col h3{
    margin:0 0 18px;
    color:#fff;
    font-size:15px;
    text-transform:uppercase;
    font-weight:900;
}

.footer-col p{
    position:relative;
    padding-left:28px;
    margin-bottom:18px;
}

.footer-col p i{
    position:absolute;
    left:0;
    top:3px;
    color:#fff;
    font-size:18px;
}

.footer-col a{
    display:block;
    color:#d9e7f7;
    font-size:14px;
    margin-bottom:11px;
    transition:.2s ease;
}

.footer-col a:hover{
    color:var(--sp-blue-2);
    padding-left:4px;
}

.footer-social{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:16px;
}

.footer-social a{
    width:54px;
    height:54px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#fff;
    font-size:26px;
    transition:.22s ease;
}

.footer-social a:first-child{
    background:#2d65b7;
}

.footer-social a:last-child{
    background:#12a84f;
}

.footer-social a:hover{
    transform:translateY(-3px);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    background:rgba(0,0,0,.12);
}

.footer-bottom-inner{
    min-height:58px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.footer-bottom p{
    margin:0;
    color:#d9e7f7;
    font-size:13px;
    font-weight:500;
}

/*==================================================
  RESPONSIVE
==================================================*/

@media (max-width:1180px){
    .vehicle-grid{
        grid-template-columns:repeat(4,1fr);
    }

    .category-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .trust-card{
        grid-template-columns:repeat(2,1fr);
    }

    .trust-item:nth-child(2){
        border-right:0;
    }

    .trust-item:nth-child(1),
    .trust-item:nth-child(2){
        border-bottom:1px solid var(--sp-border);
    }

    .newsletter-inner{
        grid-template-columns:1fr;
        gap:26px;
    }

    .newsletter-form{
        max-width:720px;
    }
}

@media (max-width:980px){
    .header-wrap{
        min-height:auto;
        padding:16px 0;
        align-items:flex-start;
        flex-direction:column;
        gap:16px;
    }

    .header-actions{
        width:100%;
        justify-content:space-between;
        gap:16px;
        flex-wrap:wrap;
    }

    .nav-wrap{
        min-height:54px;
        justify-content:space-between;
        padding:8px 0;
    }

    .nav-toggle{
        display:inline-flex;
        align-items:center;
        justify-content:center;
        margin-left:auto;
    }

    .nav-menu{
        position:absolute;
        left:0;
        right:0;
        top:100%;
        display:none;
        flex-direction:column;
        align-items:stretch;
        background:#031b36;
        border-top:1px solid rgba(255,255,255,.08);
        box-shadow:0 16px 30px rgba(0,0,0,.25);
    }

    .nav-menu.open{
        display:flex;
    }

    .nav-menu a{
        min-height:48px;
        padding:0 24px;
        border-bottom:1px solid rgba(255,255,255,.07);
    }

    .nav-menu a.active::after{
        display:none;
    }

    .nav-menu .stock-link{
        margin:10px 20px;
        justify-content:center;
    }

    .hero{
        min-height:520px;
        background-position:center right;
    }

    .hero h1{
        font-size:44px;
    }

    .vehicle-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .sell-banner{
        padding:32px;
        flex-wrap:wrap;
    }

    .sell-banner img{
        display:none;
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

    .footer-social{
        justify-content:flex-start;
    }
}

@media (max-width:760px){
    .container,
    .header-wrap,
    .nav-wrap{
        width:min(100% - 28px, 1280px);
    }

    .brand img{
        max-height:52px;
    }

    .header-contact{
        grid-template-columns:22px 1fr;
    }

    .header-contact strong{
        font-size:14px;
    }

    .hero{
        min-height:auto;
        background:
            linear-gradient(90deg, rgba(2,18,38,.98) 0%, rgba(3,31,62,.92) 100%),
            url('../../images/sptwins.jpg');
        background-size:cover;
        background-position:center;
    }

    .hero-content{
        padding:58px 0 92px;
    }

    .hero h1{
        font-size:36px;
    }

    .hero p{
        font-size:16px;
    }

    .hero-buttons{
        align-items:stretch;
        flex-direction:column;
    }

    .btn{
        width:100%;
    }

    .trust-strip{
        margin-top:-46px;
    }

    .trust-card{
        grid-template-columns:1fr;
    }

    .trust-item,
    .trust-item:nth-child(2){
        border-right:0;
        border-bottom:1px solid var(--sp-border);
    }

    .trust-item:last-child{
        border-bottom:0;
    }

    .section{
        padding:56px 0;
    }

    .section-head{
        flex-direction:column;
        align-items:flex-start;
    }

    .section-title h2,
    .section-head h2{
        font-size:24px;
    }

    .category-grid{
        grid-template-columns:repeat(2,1fr);
        gap:14px;
    }

    .category-card{
        min-height:160px;
    }

    .category-card img{
        height:70px;
    }

    .vehicle-grid{
        grid-template-columns:repeat(2,1fr);
        gap:16px;
    }

    .sell-banner{
        margin-top:50px;
        align-items:flex-start;
        flex-direction:column;
    }

    .sell-text h2{
        font-size:22px;
    }

    .newsletter-title{
        align-items:flex-start;
    }

    .newsletter-title i{
        font-size:46px;
    }

    .newsletter-form{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:32px;
    }

    .footer-bottom-inner{
        align-items:flex-start;
        flex-direction:column;
        justify-content:center;
        padding:16px 0;
    }
}

@media (max-width:520px){
    .header-actions{
        align-items:flex-start;
        flex-direction:column;
    }

    .social-link{
        position:absolute;
        top:24px;
        right:20px;
    }

    .hero h1{
        font-size:31px;
        letter-spacing:-.5px;
    }

    .eyebrow{
        font-size:13px;
    }

    .trust-item{
        padding:22px 18px;
    }

    .category-grid,
    .vehicle-grid{
        grid-template-columns:1fr;
    }

    .category-card{
        min-height:140px;
    }

    .vehicle-image{
        aspect-ratio:1.55 / 1;
    }

    .sell-icon{
        width:60px;
        height:60px;
        flex-basis:60px;
    }

    .sell-icon i{
        font-size:28px;
    }

    .newsletter-title{
        flex-direction:column;
        gap:14px;
    }
}

/*==================================================
  SPARROW GROUP
==================================================*/

.sparrow-group{
    padding:90px 0;
    background:#f7f9fc;
}

.group-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:45px;
}

.group-card{
    display:flex;
    flex-direction:column;
    align-items:flex-start;

    padding:38px;

    background:#fff;

    border-radius:20px;

    text-decoration:none;
    color:#243447;

    box-shadow:
        0 15px 35px rgba(0,0,0,.06);

    transition:.35s;
    position:relative;
    overflow:hidden;
}

.group-card::before{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:0;
    height:5px;
    background:#56c1ef;

    transform:scaleX(0);
    transform-origin:left;
    transition:.35s;
}

.group-card:hover{
    transform:translateY(-8px);
    box-shadow:
        0 25px 45px rgba(0,0,0,.12);
}

.group-card:hover::before{
    transform:scaleX(1);
}

.group-icon{
    width:78px;
    height:78px;

    border-radius:18px;

    background:#e9f7fd;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:25px;
}

.group-icon i{
    font-size:34px;
    color:#56c1ef;
}

.group-card h3{
    margin:0 0 16px;
    font-size:28px;
    font-weight:700;
    color:#243447;
}

.group-card p{
    margin:0;
    color:#677788;
    line-height:1.8;
    font-size:16px;
    flex:1;
}

.group-card span{
    margin-top:30px;
    font-weight:700;
    font-size:15px;
    color:#56c1ef;
    transition:.3s;
}

.group-card:hover span{
    letter-spacing:.6px;
}

@media(max-width:1100px){

.group-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:700px){

.sparrow-group{
    padding:70px 0;
}

.group-grid{
    grid-template-columns:1fr;
}

.group-card{
    padding:30px;
}

.group-card h3{
    font-size:24px;
}

.group-card p{
    font-size:15px;
}

.group-icon{
    width:70px;
    height:70px;
}

.group-icon i{
    font-size:30px;
}

}

/*==================================================
CONTACT PAGE
==================================================*/

.contact-page-section{
    padding:80px 0;
}

.contact-layout{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
    align-items:start;
}

.contact-panel,
.contact-info-card{
    background:#fff;
    border-radius:18px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.modern-contact-form{
    margin-top:30px;
}

.form-row{
    margin-bottom:22px;
}

.form-row label{
    display:block;
    margin-bottom:8px;
    font-weight:700;
    color:#12284a;
}

.form-row input,
.form-row textarea{
    width:100%;
    border:1px solid #d9e3ef;
    border-radius:12px;
    padding:15px 18px;
    font-size:15px;
    font-family:inherit;
    transition:.3s;
    background:#fff;
}

.form-row textarea{
    resize:vertical;
    min-height:180px;
}

.form-row input:focus,
.form-row textarea:focus{
    border-color:#1488f5;
    outline:none;
    box-shadow:0 0 0 4px rgba(20,136,245,.12);
}

.form-submit{
    margin-top:10px;
}

.contact-info-list{
    display:flex;
    flex-direction:column;
    gap:28px;
    margin:35px 0;
}

.contact-info-list div{
    display:flex;
    gap:18px;
    align-items:flex-start;
}

.contact-info-list i{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#edf7ff;
    color:#1488f5;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.contact-info-list strong{
    display:block;
    margin-bottom:5px;
}

.contact-info-list a{
    color:#1488f5;
    text-decoration:none;
}

.contact-note{
    margin-top:30px;
    background:#f8fbfe;
    border-left:4px solid #1488f5;
    padding:18px 20px;
    border-radius:10px;
    display:flex;
    gap:15px;
}

.contact-note i{
    color:#1488f5;
    font-size:22px;
    margin-top:2px;
}

.map-section{
    padding-bottom:90px;
}

.map-card{
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.map-card iframe{
    display:block;
}

/* Honeypot */

.hp-field{
    position:absolute;
    left:-9999px;
    width:1px;
    height:1px;
    overflow:hidden;
}

/* Alerts */

.modern-alert{
    display:flex;
    gap:18px;
    align-items:flex-start;
    padding:18px 22px;
    border-radius:14px;
    margin-bottom:30px;
}

.modern-alert.success{
    background:#eefbf3;
    color:#146c43;
}

.modern-alert.error{
    background:#fff0f0;
    color:#b42318;
}

.modern-alert i{
    font-size:22px;
}

/* Mobile */

@media(max-width:900px){

.contact-layout{
    grid-template-columns:1fr;
}

.contact-panel,
.contact-info-card{
    padding:30px;
}

}

.unsubscribe-page{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:30px;
    background:linear-gradient(135deg,#001c38,#006edc);
}

.unsubscribe-card{
    width:100%;
    max-width:620px;
    background:#fff;
    border-radius:22px;
    padding:45px;
    text-align:center;
    box-shadow:0 30px 80px rgba(0,0,0,.25);
}

.unsubscribe-logo img{
    display:block;
    max-width:260px;
    height:auto;
    margin:0 auto 30px;
}

.unsubscribe-text{
    color:#607086;
    margin:20px 0 30px;
    line-height:1.7;
}

/*==================================================
  INVENTORY / LISTINGS PAGE
==================================================*/

.inventory-section{
    background:#f5f8fc;
}

.inventory-layout{
    display:grid;
    grid-template-columns:290px 1fr;
    gap:34px;
    align-items:start;
}

.inventory-sidebar{
    position:sticky;
    top:120px;
}

.inventory-widget{
    background:#fff;
    border:1px solid #dbe7f3;
    border-radius:18px;
    padding:26px;
    box-shadow:0 12px 35px rgba(0,31,66,.07);
    margin-bottom:24px;
}

.inventory-widget h3{
    margin:0 0 8px;
    font-size:22px;
    color:#061f3d;
}

.inventory-widget p{
    margin:0 0 20px;
    color:#66758a;
}

.inventory-cat-list{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.inventory-cat-link{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    padding:13px 15px;
    border-radius:12px;
    color:#061f3d;
    text-decoration:none;
    background:#f6f9fd;
    border:1px solid #e1ebf5;
    font-weight:700;
    transition:.25s;
}

.inventory-cat-link small{
    min-width:32px;
    height:24px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    color:#168af2;
    font-weight:800;
}

.inventory-cat-link:hover,
.inventory-cat-link.active{
    background:#168af2;
    color:#fff;
    border-color:#168af2;
    transform:translateX(4px);
}

.inventory-cat-link:hover small,
.inventory-cat-link.active small{
    color:#168af2;
}

.inventory-cta{
    background:linear-gradient(135deg,#041f3e,#006fdc);
    color:#fff;
}

.inventory-cta i{
    width:58px;
    height:58px;
    border-radius:16px;
    background:rgba(255,255,255,.13);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    margin-bottom:18px;
}

.inventory-cta h3,
.inventory-cta p{
    color:#fff;
}

.inventory-toolbar{
    background:#fff;
    border:1px solid #dbe7f3;
    border-radius:16px;
    padding:18px 22px;
    margin-bottom:24px;
    display:flex;
    justify-content:space-between;
    gap:20px;
    box-shadow:0 10px 30px rgba(0,31,66,.05);
}

.inventory-toolbar span{
    color:#061f3d;
    font-weight:800;
}

.inventory-toolbar small{
    color:#66758a;
    font-weight:700;
}

.inventory-grid{
    grid-template-columns:repeat(3,1fr);
}

.vehicle-topline{
    display:flex;
    justify-content:space-between;
    gap:10px;
    margin-bottom:10px;
    color:#68798e;
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
}

.vehicle-tags{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin:14px 0;
}

.vehicle-tags span{
    padding:6px 9px;
    border-radius:999px;
    background:#edf7ff;
    color:#137fd9;
    font-size:11px;
    font-weight:800;
    text-transform:uppercase;
}

.vehicle-detail-link{
    margin-top:16px;
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#168af2;
    text-decoration:none;
    font-weight:900;
}

.price-sold{
    text-decoration:line-through;
    opacity:.65;
}

.modern-pagination{
    margin-top:36px;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:8px;
}

.modern-page-link{
    min-width:42px;
    height:42px;
    padding:0 14px;
    border-radius:12px;
    background:#fff;
    border:1px solid #dbe7f3;
    color:#061f3d;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-weight:900;
    transition:.25s;
}

.modern-page-link:hover,
.modern-page-link.active{
    background:#168af2;
    border-color:#168af2;
    color:#fff;
}

.empty-stock-card{
    background:#fff;
    border-radius:20px;
    padding:60px 30px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,31,66,.07);
}

.empty-stock-card i{
    font-size:50px;
    color:#168af2;
    margin-bottom:20px;
}

.empty-stock-card h3{
    color:#061f3d;
    font-size:28px;
    margin:0 0 12px;
}

.empty-stock-card p{
    color:#66758a;
    margin:0 0 25px;
}

@media(max-width:1100px){
    .inventory-layout{
        grid-template-columns:1fr;
    }

    .inventory-sidebar{
        position:static;
    }

    .inventory-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:700px){
    .inventory-grid{
        grid-template-columns:1fr;
    }

    .inventory-toolbar{
        flex-direction:column;
    }
}

/*==================================================
  VEHICLE VIEW PAGE
==================================================*/

.vehicle-view-hero{
    min-height:430px;
    position:relative;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:flex-end;
}

.vehicle-view-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            90deg,
            rgba(2,22,45,.9),
            rgba(2,22,45,.65),
            rgba(2,22,45,.25)
        );
}

.vehicle-view-hero-inner{
    position:relative;
    z-index:2;
    padding:120px 0 70px;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:40px;
}

.vehicle-view-hero h1{
    margin:14px 0 20px;
    color:#fff;
    font-size:56px;
    line-height:1.05;
    max-width:850px;
}

.vehicle-view-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.vehicle-view-tags span{
    display:inline-flex;
    align-items:center;
    padding:8px 13px;
    border-radius:999px;
    background:rgba(255,255,255,.14);
    color:#fff;
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    backdrop-filter:blur(8px);
}

.vehicle-view-price{
    min-width:260px;
    background:#fff;
    border-radius:20px;
    padding:26px;
    box-shadow:0 25px 70px rgba(0,0,0,.25);
}

.vehicle-view-price span{
    display:block;
    font-size:34px;
    font-weight:900;
    color:#061f3d;
}

.vehicle-view-price small{
    display:block;
    margin-top:6px;
    color:#66758a;
    font-weight:700;
}

.vehicle-view-section{
    background:#f5f8fc;
}

.vehicle-view-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) 360px;
    gap:36px;
    align-items:start;
}

.vehicle-view-sidebar{
    position:sticky;
    top:120px;
}

.vehicle-gallery-card,
.vehicle-overview-card,
.vehicle-side-card{
    background:#fff;
    border:1px solid #dbe7f3;
    border-radius:22px;
    box-shadow:0 15px 45px rgba(0,31,66,.07);
}

.vehicle-gallery-card{
    overflow:hidden;
    margin-bottom:30px;
}

.vehicle-gallery{
    position:relative;
    height:560px;
    background:#071b31;
    overflow:hidden;
}

.vehicle-gallery-slide{
    position:absolute;
    inset:0;
    opacity:0;
    pointer-events:none;
    transition:.35s;
}

.vehicle-gallery-slide.active{
    opacity:1;
    pointer-events:auto;
}

.vehicle-gallery-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.gallery-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:52px;
    height:52px;
    border-radius:50%;
    border:0;
    background:rgba(255,255,255,.92);
    color:#061f3d;
    font-size:26px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 12px 28px rgba(0,0,0,.25);
    transition:.25s;
}

.gallery-btn:hover{
    background:#168af2;
    color:#fff;
}

.gallery-prev{
    left:22px;
}

.gallery-next{
    right:22px;
}

.vehicle-gallery-thumbs{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(92px,1fr));
    gap:12px;
    padding:16px;
    background:#fff;
}

.vehicle-gallery-thumb{
    border:3px solid transparent;
    border-radius:12px;
    overflow:hidden;
    padding:0;
    background:#f2f6fb;
    cursor:pointer;
    height:82px;
}

.vehicle-gallery-thumb.active{
    border-color:#168af2;
}

.vehicle-gallery-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.vehicle-overview-card{
    padding:34px;
    margin-bottom:30px;
}

.vehicle-description{
    color:#52657d;
    font-size:17px;
    line-height:1.85;
}

.vehicle-feature-checklist{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin:28px 0 0;
    padding:0;
    list-style:none;
}

.vehicle-feature-checklist li{
    display:flex;
    gap:12px;
    align-items:center;
    padding:14px 16px;
    border-radius:14px;
    background:#f6f9fd;
    color:#061f3d;
    font-weight:700;
}

.vehicle-feature-checklist i{
    color:#168af2;
}

.vehicle-side-card{
    padding:28px;
    margin-bottom:24px;
}

.vehicle-side-card h3{
    margin:0 0 12px;
    font-size:24px;
    color:#061f3d;
}

.vehicle-side-card p{
    margin:0 0 22px;
    color:#66758a;
    line-height:1.7;
}

.vehicle-contact-person{
    display:flex;
    align-items:center;
    gap:14px;
    margin:24px 0;
    padding:14px;
    border-radius:16px;
    background:#f6f9fd;
}

.vehicle-contact-person img{
    width:58px;
    height:58px;
    border-radius:50%;
    object-fit:cover;
}

.vehicle-contact-person strong{
    display:block;
    color:#061f3d;
}

.vehicle-contact-person span{
    display:block;
    color:#66758a;
    font-size:14px;
}

.btn-outline-dark{
    width:100%;
    margin-top:12px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    padding:14px 22px;
    border-radius:999px;
    border:2px solid #061f3d;
    background:#fff;
    color:#061f3d;
    font-weight:900;
    text-decoration:none;
    transition:.25s;
}

.btn-outline-dark:hover{
    background:#061f3d;
    color:#fff;
}

.vehicle-contact-card .btn-primary{
    width:100%;
    justify-content:center;
}

.vehicle-detail-list{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.vehicle-detail-list div{
    display:flex;
    justify-content:space-between;
    gap:20px;
    padding:13px 0;
    border-bottom:1px solid #edf2f7;
}

.vehicle-detail-list div:last-child{
    border-bottom:0;
}

.vehicle-detail-list span{
    color:#66758a;
    font-weight:700;
}

.vehicle-detail-list strong{
    color:#061f3d;
    text-align:right;
}

.vehicle-sell-card{
    background:linear-gradient(135deg,#041f3e,#006fdc);
    color:#fff;
}

.vehicle-sell-card i{
    width:58px;
    height:58px;
    border-radius:16px;
    background:rgba(255,255,255,.13);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    margin-bottom:18px;
}

.vehicle-sell-card h3,
.vehicle-sell-card p{
    color:#fff;
}

.vehicle-share-link{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:14px 18px;
    border-radius:999px;
    background:#1877f2;
    color:#fff;
    text-decoration:none;
    font-weight:900;
}

.related-vehicles-section{
    background:#fff;
}

@media(max-width:1100px){

.vehicle-view-hero-inner{
    flex-direction:column;
    align-items:flex-start;
}

.vehicle-view-price{
    width:100%;
}

.vehicle-view-layout{
    grid-template-columns:1fr;
}

.vehicle-view-sidebar{
    position:static;
}

.vehicle-gallery{
    height:480px;
}

}

@media(max-width:700px){

.vehicle-view-hero{
    min-height:420px;
}

.vehicle-view-hero-inner{
    padding:100px 0 50px;
}

.vehicle-view-hero h1{
    font-size:36px;
}

.vehicle-view-price span{
    font-size:28px;
}

.vehicle-gallery{
    height:320px;
}

.vehicle-gallery-thumbs{
    grid-template-columns:repeat(4,1fr);
}

.vehicle-gallery-thumb{
    height:64px;
}

.vehicle-feature-checklist{
    grid-template-columns:1fr;
}

.vehicle-overview-card,
.vehicle-side-card{
    padding:24px;
}

.gallery-btn{
    width:44px;
    height:44px;
}

}

/*==================================================
  404 PAGE
==================================================*/

.error-hero{
    min-height:620px;
    position:relative;
    display:flex;
    align-items:center;
    background:
        linear-gradient(rgba(3,20,40,.78),rgba(3,20,40,.78)),
        url("../../images/banner/SparrowFalkom.jpg") center/cover no-repeat;
}

.error-hero-inner{
    position:relative;
    z-index:2;
    max-width:850px;
    text-align:center;
    color:#fff;
    padding:120px 0;
}

.error-code{
    font-size:150px;
    line-height:.85;
    font-weight:900;
    color:#56c1ef;
    margin-bottom:25px;
}

.error-hero h1{
    font-size:54px;
    line-height:1.1;
    margin:15px 0 20px;
    color:#fff;
}

.error-hero p{
    font-size:18px;
    line-height:1.8;
    color:rgba(255,255,255,.86);
    max-width:760px;
    margin:0 auto 34px;
}

.error-hero .hero-buttons{
    justify-content:center;
}

.error-hero .btn-outline{
    border-color:rgba(255,255,255,.55);
    color:#fff;
}

.error-hero .btn-outline:hover{
    background:#fff;
    color:#061f3d;
}

@media(max-width:700px){

.error-code{
    font-size:96px;
}

.error-hero h1{
    font-size:34px;
}

.error-hero p{
    font-size:16px;
}

.error-hero .hero-buttons{
    flex-direction:column;
}

}