/* =========================================================
   AARAV MOTORS — MOCKUP MATCHING CSS
   ========================================================= */

:root{
    --red:#ed1c24;
    --green:#12a84a;
    --navy:#07162f;
    --dark:#080a0d;
    --text:#12151b;
    --muted:#6d737c;
    --light:#f5f6f8;
    --line:#e2e4e8;
    --container:1180px;
}

*{margin:0;padding:0;box-sizing:border-box}

html{
    scroll-behavior:smooth;
    scroll-padding-top:90px;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    color:var(--text);
    background:#fff;
    line-height:1.45;
    overflow-x:hidden;
}

img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button,input,select,textarea{font:inherit}
.container{
    width:min(var(--container),calc(100% - 40px));
    margin:0 auto;
}

/* ================= TOP BAR ================= */

.top-bar{
    height:34px;
    background:#091126;
    color:#fff;
    font-size:11px;
}

.top-bar-inner{
    height:100%;
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
}

.top-left{text-align:left}
.top-right{text-align:right}
.top-tagline{
    font-weight:700;
    letter-spacing:.3px;
}

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

.header{
    height:72px;
    background:#fff;
    border-bottom:1px solid #ececec;
    position:sticky;
    top:0;
    z-index:1000;
}

.header-inner{
    height:100%;
    display:flex;
    align-items:center;
}

.logo{
    width:190px;
    color:#0b1830;
    font-size:26px;
    line-height:.82;
    font-weight:900;
    letter-spacing:-1.5px;
}

.logo small{
    display:block;
    font-size:7px;
    letter-spacing:.35px;
    margin-top:5px;
    color:#343941;
}

.navigation{
    margin-left:auto;
    display:flex;
    align-items:center;
    gap:27px;
    height:100%;
}

.navigation a{
    height:100%;
    display:flex;
    align-items:center;
    position:relative;
    font-size:12px;
    font-weight:700;
    white-space:nowrap;
}

.navigation a:after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:17px;
    height:2px;
    background:var(--red);
    transform:scaleX(0);
    transition:.2s;
}

.navigation a:hover:after,
.navigation a.active:after{
    transform:scaleX(1);
}

.header-call{
    margin-left:24px;
    min-width:130px;
    height:46px;
    padding:5px 13px;
    border-radius:9px;
    background:var(--red);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    box-shadow:0 5px 14px rgba(237,28,36,.22);
}

.header-call span{font-size:21px}
.header-call b{
    font-size:12px;
    line-height:1.15;
}
.header-call small{
    font-size:10px;
    font-weight:700;
}

.menu-button{
    display:none;
    border:0;
    background:none;
    font-size:26px;
    margin-left:auto;
}

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

.hero{
    height:310px;
    position:relative;
    overflow:hidden;
    color:#fff;
}

.hero-image{
    position:absolute;
    inset:0;
}

.placeholder{
    background:
        linear-gradient(135deg,#26374c,#17283e 55%,#0d1a2e);
}

.hero-image:after{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg,#06142c 0%,rgba(6,20,44,.94) 38%,rgba(6,20,44,.38) 100%);
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(4,14,31,.72),rgba(4,14,31,.18));
}

.hero-inner{
    height:100%;
    position:relative;
    display:flex;
    align-items:center;
}

.hero-content{
    width:620px;
}

.eyebrow{
    font-size:9px;
    font-weight:900;
    letter-spacing:.7px;
    margin-bottom:5px;
}

.hero h1{
    font-size:31px;
    line-height:1.03;
    letter-spacing:-.8px;
    margin-bottom:12px;
}

.hero h1 span{color:var(--red)}

.hero-content p{
    max-width:530px;
    font-size:11px;
    color:#e1e5eb;
    margin-bottom:10px;
}

.hero-address{
    font-size:11px;
    font-weight:700;
    margin-bottom:15px;
}

.hero-buttons{
    display:flex;
    gap:10px;
}

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

.btn{
    min-height:35px;
    padding:0 18px;
    border-radius:5px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:10px;
    font-weight:800;
    border:0;
    cursor:pointer;
    transition:.2s;
}

.btn.red{
    color:#fff;
    background:var(--red);
}

.btn.green{
    color:#fff;
    background:var(--green);
}

.btn:hover{
    transform:translateY(-1px);
    filter:brightness(.96);
}

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

.trust-strip{
    position:relative;
    z-index:5;
    background:#fff;
    box-shadow:0 6px 18px rgba(0,0,0,.09);
}

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

.trust-item{
    min-height:57px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    border-right:1px solid #ececec;
}

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

.trust-item>strong{
    font-size:18px;
    color:var(--red);
}

.trust-item span b,
.trust-item span small{
    display:block;
}

.trust-item span b{font-size:10px}
.trust-item span small{
    color:#747a83;
    font-size:9px;
}

/* ================= COMMON SECTION ================= */

.section{padding:52px 0}

.section-heading{
    text-align:center;
    margin-bottom:25px;
}

.section-heading span,
.panel-heading span,
.location-card>span{
    color:var(--red);
    font-size:8px;
    font-weight:900;
    letter-spacing:.7px;
    text-transform:uppercase;
}

.section-heading h2{
    font-size:25px;
    line-height:1.1;
    margin:4px 0 5px;
}

.section-heading p{
    color:var(--muted);
    font-size:10px;
}

/* ================= SERVICES ================= */

.services{
    background:#fff;
}

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

.service-card{
    min-width:0;
    border:1px solid var(--line);
    border-radius:7px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 3px 10px rgba(0,0,0,.05);
}

.image-placeholder{
    height:90px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#9da3ac;
    background:linear-gradient(135deg,#e7e9ec,#cfd4da);
    font-size:8px;
    font-weight:800;
    letter-spacing:.5px;
}

.service-card>div:last-child{
    text-align:center;
    padding:10px 6px 11px;
}

.service-card h3{
    font-size:10px;
    line-height:1.2;
    margin-bottom:4px;
}

.service-card p{
    color:#777d86;
    font-size:8px;
}

/* ================= WHY ================= */

.why{
    background:var(--navy);
    color:#fff;
    padding:45px 0;
}

.two-col{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    align-items:center;
}

.label{
    color:#ff2930;
    font-size:8px;
    font-weight:900;
    letter-spacing:.7px;
}

.why h2,
.insurance h2{
    font-size:27px;
    line-height:1.1;
    margin:5px 0 16px;
}

.why ul,
.insurance ul{
    list-style:none;
    display:grid;
    gap:7px;
}

.why li,
.insurance li{
    font-size:10px;
    position:relative;
    padding-left:19px;
}

.why li:before,
.insurance li:before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    width:13px;
    height:13px;
    border-radius:50%;
    background:#18b653;
    display:grid;
    place-items:center;
    font-size:8px;
    font-weight:900;
}

.large-placeholder{
    height:205px;
    border-radius:9px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#243a55,#0f243d);
    color:#9faab8;
    font-size:10px;
    font-weight:800;
}

.large-placeholder.light{
    background:linear-gradient(135deg,#f5dcdc,#eee);
    color:#a07b7b;
}

/* ================= INSURANCE ================= */

.insurance{
    padding:45px 0;
    background:#fff0f0;
}

.insurance-content p{
    color:#6e747c;
    font-size:10px;
    max-width:500px;
    margin-bottom:11px;
}

/* ================= BRANDS ================= */

.brands{
    background:#fff;
}

.brand-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:8px;
}

.brand-grid>div,
.insurer-grid>div{
    min-height:42px;
    border:1px solid #dfe2e6;
    border-radius:4px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:6px;
    font-size:8px;
    font-weight:800;
}

/* ================= INSURERS ================= */

.insurance-companies{
    background:#f5f6f8;
}

.insurer-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:8px;
}

/* ================= WORK AREA ================= */

.work-area{
    background:#fff;
}

.work-grid{
    display:grid;
    grid-template-columns:1.15fr .8fr .7fr;
    gap:18px;
    align-items:start;
}

.panel-heading{
    margin-bottom:15px;
}

.panel-heading h2{
    font-size:19px;
    line-height:1.1;
    margin:3px 0;
}

.panel-heading small{
    color:#777d85;
    font-size:8px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:7px;
}

.gallery-placeholder{
    height:88px;
    border-radius:5px;
    background:linear-gradient(135deg,#dfe2e5,#bfc5cb);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#7d858e;
    font-size:8px;
    font-weight:800;
}

.review-placeholder{
    min-height:248px;
    border:1px solid var(--line);
    border-radius:8px;
    background:#fff;
    box-shadow:0 3px 12px rgba(0,0,0,.04);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    text-align:center;
    padding:20px;
}

.stars{
    color:#f4ad00;
    letter-spacing:2px;
    font-size:17px;
    margin-bottom:8px;
}

.review-placeholder h3{
    font-size:10px;
    margin-bottom:5px;
}

.review-placeholder p{
    color:#777d85;
    font-size:8px;
}

/* ================= BOOKING ================= */

.booking-panel{
    background:var(--navy);
    color:#fff;
    border-radius:9px;
    padding:17px;
}

.booking-panel .panel-heading span{color:#ff343b}
.booking-panel .panel-heading small{color:#c4ccd8}

.booking-panel form{
    display:grid;
    gap:7px;
}

.booking-panel input,
.booking-panel select{
    width:100%;
    height:31px;
    border:1px solid #dfe2e6;
    border-radius:5px;
    background:#fff;
    padding:0 9px;
    color:#222;
    font-size:8px;
    outline:0;
}

.booking-panel .btn{
    width:100%;
    min-height:34px;
}

.or{
    text-align:center;
    color:#adb5c0;
    font-size:8px;
    font-weight:800;
}

/* ================= LOCATION ================= */

.location{
    background:#f7f8fa;
    padding:30px 0;
}

.location-grid{
    display:grid;
    grid-template-columns:1fr 1.35fr 1fr 1fr;
    gap:14px;
    align-items:stretch;
}

.location-card{
    background:#fff;
    border-radius:7px;
    padding:20px;
    border:1px solid var(--line);
}

.location-card h2{
    font-size:17px;
    margin:4px 0 7px;
}

.location-card p{
    color:#70767e;
    font-size:9px;
    margin-bottom:12px;
}

.location-card .btn{
    min-height:30px;
    font-size:8px;
}

.map-placeholder{
    min-height:155px;
    border-radius:7px;
    background:
        linear-gradient(35deg,#e3e8ec 25%,#f5f6f7 25%,#f5f6f7 50%,#e3e8ec 50%,#e3e8ec 75%,#f5f6f7 75%);
    background-size:38px 38px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#8a9199;
    font-size:9px;
    font-weight:800;
}

.multi-brand-box,
.faq-mini{
    background:#fff;
    border:1px solid var(--line);
    border-radius:7px;
    padding:17px;
}

.multi-brand-box h3,
.faq-mini h3{
    font-size:14px;
    margin-bottom:5px;
}

.multi-brand-box p{
    color:#727880;
    font-size:9px;
}

.faq-mini div{
    padding:8px 0;
    border-bottom:1px solid #eceef0;
    font-size:8px;
}

.faq-mini div:last-child{border-bottom:0}
.faq-mini b{
    float:right;
    color:var(--red);
}

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

.footer{
    background:#08090b;
    color:#fff;
}

.footer-grid{
    padding:38px 0;
    display:grid;
    grid-template-columns:1.35fr 1fr 1fr 1.2fr;
    gap:35px;
}

.footer-logo{
    font-size:22px;
    font-weight:900;
    letter-spacing:-1px;
    line-height:.9;
    margin-bottom:12px;
}

.footer-logo small{
    display:block;
    font-size:6px;
    letter-spacing:.4px;
    margin-top:5px;
}

.footer p{
    color:#9da3ab;
    font-size:9px;
    line-height:1.6;
    max-width:260px;
}

.footer h3{
    font-size:10px;
    margin-bottom:10px;
}

.footer a{
    display:block;
    color:#9da3ab;
    font-size:8px;
    margin-bottom:6px;
}

.footer a:hover{color:#fff}

.footer-bottom{
    border-top:1px solid #25272c;
}

.footer-bottom .container{
    min-height:40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-bottom span,
.footer-bottom a{
    font-size:7px;
    color:#777d85;
}

.footer-bottom div{
    display:flex;
    gap:15px;
}

/* ================= MOBILE ================= */

.mobile-actions{display:none}

@media(max-width:1050px){
    .navigation{gap:14px}
    .navigation a{font-size:10px}
    .header-call{margin-left:12px}

    .service-grid{grid-template-columns:repeat(4,1fr)}
    .brand-grid,.insurer-grid{grid-template-columns:repeat(4,1fr)}
    .work-grid{grid-template-columns:1fr 1fr}
    .booking-panel{grid-column:span 2}
    .location-grid{grid-template-columns:1fr 1fr}
}

@media(max-width:800px){
    .top-bar{display:none}

    .header{height:65px}
    .navigation,.header-call{display:none}

    .menu-button{
        display:block;
    }

    .header.menu-open .navigation{
        display:flex;
        position:absolute;
        top:65px;
        left:0;
        right:0;
        height:auto;
        background:#fff;
        flex-direction:column;
        align-items:stretch;
        gap:0;
        padding:5px 20px 10px;
        box-shadow:0 8px 20px rgba(0,0,0,.1);
    }

    .header.menu-open .navigation a{
        height:auto;
        padding:11px 0;
        border-bottom:1px solid #eee;
    }

    .header.menu-open .navigation a:after{display:none}

    .hero{height:500px}
    .hero-inner{height:100%}
    .hero-content{width:100%}
    .hero h1{font-size:39px}

    .service-grid{grid-template-columns:repeat(2,1fr)}
    .two-col{grid-template-columns:1fr}
    .brand-grid,.insurer-grid{grid-template-columns:repeat(3,1fr)}
    .work-grid{grid-template-columns:1fr}
    .booking-panel{grid-column:auto}
    .location-grid{grid-template-columns:1fr}
    .footer-grid{grid-template-columns:1fr 1fr}
}

@media(max-width:550px){
    body{padding-bottom:58px}

    .container{width:calc(100% - 24px)}

    .top-bar{display:none}

    .logo{font-size:21px;width:160px}
    .logo small{font-size:5.5px}

    .hero{height:520px}
    .hero h1{font-size:34px}
    .hero-content p{font-size:10px}
    .hero-buttons{display:grid;grid-template-columns:1fr}
    .hero-buttons .btn{width:100%}

    .trust-grid{grid-template-columns:1fr 1fr}
    .trust-item{
        min-height:62px;
        justify-content:flex-start;
        padding:8px;
    }

    .section{padding:42px 0}
    .section-heading h2{font-size:23px}

    .service-grid{gap:8px}
    .image-placeholder{height:82px}
    .service-card h3{font-size:9px}
    .service-card p{font-size:7px}

    .brand-grid,.insurer-grid{grid-template-columns:1fr 1fr}

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

    .location-grid{grid-template-columns:1fr}

    .footer-grid{grid-template-columns:1fr}
    .footer-bottom .container{
        flex-direction:column;
        align-items:flex-start;
        gap:7px;
        padding:12px 0 70px;
    }

    .mobile-actions{
        display:grid;
        position:fixed;
        left:0;
        right:0;
        bottom:0;
        height:58px;
        z-index:2000;
        grid-template-columns:repeat(3,1fr);
        background:#111317;
    }

    .mobile-actions a{
        color:#fff;
        display:flex;
        align-items:center;
        justify-content:center;
        flex-direction:column;
        font-size:16px;
        border-right:1px solid #333;
    }

    .mobile-actions small{
        font-size:8px;
        font-weight:800;
    }

    .mobile-actions a:nth-child(2){background:var(--green)}
    .mobile-actions a:nth-child(3){
        background:var(--red);
        border-right:0;
    }
}
