:root{
    --accent:#ff6b00;
    --accent-hover:#ff8c33;

    --bg:#050505;
    --bg-secondary:#0b0b0b;
    --card:#101010;

    --text:#ffffff;
    --muted:#bdbdbd;

    --blue-start:#061326;
    --blue-end:#0b2342;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/* ==========================
   HEADER
========================== */

.header{
    position:fixed;
    top:0;
    width:100%;
    z-index:999;
    background:rgba(0,0,0,.7);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,255,255,.05);
}

.nav-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 0;
}

.logo img{
    height:60px;
    width:auto;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
}

.nav-links a{
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    transition:.3s;
}

.nav-links a:hover{
    color:var(--accent);
}

.nav-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.phone-link{
    white-space:nowrap;
    font-weight:600;
    font-size:16px;
}


/* ==========================
   BUTTONS
========================== */

.btn-primary{
    background:var(--accent);
    color:white;
    padding:16px 30px;
    border-radius:6px;
    font-weight:700;
    transition:.3s;
}

.btn-primary:hover{
    background:var(--accent-hover);
    transform:translateY(-2px);
}

.btn-secondary{
    border:1px solid rgba(255,255,255,.25);
    padding:16px 30px;
    border-radius:6px;
    transition:.3s;
}

.btn-secondary:hover{
    border-color:var(--accent);
    color:var(--accent);
}

/* ==========================
   HERO
========================== */

.hero{
    position:relative;
    min-height:100vh;

    display:flex;
    align-items:center;

    background-image:url("../images/hero-bg.jpg");
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;

    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.82) 0%,
        rgba(0,0,0,.55) 45%,
        rgba(0,0,0,.15) 100%
    );

    z-index:1;
}

.hero-content{

    max-width:700px;
    position:relative;
    z-index:5;
}

.hero-subtitle{

    color:#ff6b00;

    letter-spacing:4px;

    font-weight:700;

    margin-bottom:20px;
}

.hero h1{

    font-size:110px;

    line-height:.9;

    text-transform:uppercase;

    margin-bottom:25px;
}

.hero h1 span{
    color:#ff6b00;
}

.hero p{

    max-width:600px;

    font-size:26px;

    line-height:1.7;

    color:#d5d5d5;

    margin-bottom:40px;
}

.hero-buttons{

    display:flex;
    gap:20px;
}

.why-grid img{
    width:100%;
    height:550px;
    object-fit:cover;
    border-radius:16px;
    box-shadow:0 20px 60px rgba(0,0,0,.4);
}

/* ==========================
   TRUST BAR
========================== */

.trust-bar{
    background:#0d0d0d;
    padding:40px 0;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:30px;
    text-align:center;
}

.trust-grid h3{
    color:var(--accent);
    margin-bottom:10px;
}

.trust-grid p{
    color:#999;
}

/* ==========================
   GOOGLE RATING BANNER
========================== */

.rating-banner{

    background:#111;

    padding:40px 0;

    border-top:1px solid rgba(255,255,255,.05);
    border-bottom:1px solid rgba(255,255,255,.05);
}

.rating-content{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:30px;

    text-align:center;
}

.rating-stars{

    color:#ff6b00;

    font-size:32px;

    letter-spacing:3px;
}

.rating-content h3{

    margin-bottom:8px;

    font-size:24px;
}

.rating-content p{

    color:#bdbdbd;
}

/* ==========================
   ABOUT
========================== */

.about{

    padding:120px 0;

    background:#080808;
}

.about-grid{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:80px;

    align-items:center;
}

.about p{

    color:#bdbdbd;

    line-height:1.9;

    margin-bottom:20px;

    max-width:800px;
}

.about-features{

    display:grid;

    gap:18px;
}

.about-features div{

    background:#111;

    padding:18px 22px;

    border-left:3px solid #ff6b00;

    border-radius:6px;
}

/* ==========================
   SECTIONS
========================== */

.services,
.why-us,
.manufacturers,
.reviews,
.booking{
    padding:120px 0;
}

.section-label{
    color:var(--accent);
    font-size:13px;
    font-weight:700;
    letter-spacing:3px;
    margin-bottom:15px;
    text-transform:uppercase;
}

.section-title{
    font-size:58px;
    line-height:1;
    margin-bottom:60px;
    text-transform:uppercase;
}

/* ==========================
   SERVICES
========================== */

.service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.service-card{
    background:var(--card);
    border:1px solid rgba(255,255,255,.05);
    padding:35px;
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-6px);
    border-color:var(--accent);
}

.service-card h3{
    margin-bottom:15px;
}

.service-card p{
    color:#aaa;
    line-height:1.7;
}

/* ==========================
   WHY US
========================== */

.why-us{
    background:var(--bg-secondary);
}

.why-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.why-grid img{
    width:100%;
    height:550px;
    object-fit:cover;
    border-radius:12px;
    box-shadow:0 20px 60px rgba(0,0,0,.4);
}

.benefits{
    list-style:none;
}

.benefits li{
    margin-bottom:18px;
    color:#ddd;
}

/* ==========================
   MANUFACTURERS
========================== */

.manufacturers{
    padding:120px 0;
    background:#0b0b0b;
    border-top:1px solid rgba(255,255,255,.05);
    border-bottom:1px solid rgba(255,255,255,.05);
}

.logo-slider{
    overflow:hidden;
    position:relative;
    width:100%;
}

.logo-track{
    display:flex;
    align-items:center;
    gap:80px;
    width:max-content;

    animation:scrollBrands 45s linear infinite;
}

.logo-track img{
    height:65px;
    width:auto;
    opacity:.65;
    transition:.3s;

    filter:
        brightness(0)
        invert(1)
        opacity(.65);
}

.logo-track img:hover{
    opacity:1;

    filter:
        brightness(0)
        invert(53%)
        sepia(98%)
        saturate(2493%)
        hue-rotate(2deg)
        brightness(104%)
        contrast(103%);

    transform:translateY(-3px);

    transition:.3s ease;
}



@keyframes scrollBrands{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}

.logo-slider:hover .logo-track{
    animation-play-state:paused;
}

/* ==========================
   REVIEWS
========================== */

.review-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.review-card{
    background:var(--card);
    padding:35px;
    border:1px solid rgba(255,255,255,.05);
    border-radius:10px;
    transition:.3s;
}

.review-card:hover{
    transform:translateY(-5px);
    border-color:var(--accent);
}

.review-card p{
    margin-top:15px;
    line-height:1.7;
    color:#ccc;
}

/* ==========================
   BOOKING
========================== */

.booking iframe{
    background:white;
}

/* ==========================
   FOOTER
========================== */

footer{
    background:#030303;
    padding:80px 0;
    border-top:1px solid rgba(255,255,255,.05);
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
}

.footer-logo{
    max-width:220px;
    margin-bottom:20px;
}

footer h3{
    margin-bottom:20px;
}

footer p,
footer a{
    color:#9f9f9f;
    display:block;
    margin-bottom:10px;
}

footer a:hover{
    color:var(--accent);
}

/* ==========================
   BOOKING PAGE
========================== */

.booking-hero{

    padding-top:180px;
    padding-bottom:120px;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.85),
        rgba(0,0,0,.45)
    ),
    url('../images/hero-bg.jpg');

    background-size:cover;
    background-position:center;
}

.booking-hero-content{

    max-width:700px;
}

.booking-hero h1{

    font-size:72px;
    margin-bottom:20px;
    text-transform:uppercase;
}

.booking-hero p{

    font-size:22px;
    color:#d5d5d5;
    line-height:1.7;
}

.booking-section{

    padding:100px 0;
    background:#080808;
}

.booking-card{

    background:#111;

    padding:25px;

    border-radius:12px;

    box-shadow:
    0 15px 50px rgba(0,0,0,.4);
}

.booking-notice{

    text-align:center;

    padding:25px;

    margin-bottom:25px;

    border-bottom:1px solid rgba(255,107,0,.3);
}

.booking-notice p{

    color:#ff6b00;

    font-size:28px;

    font-weight:700;

    line-height:1.4;

    margin-bottom:10px;
}

.booking-notice span{

    display:block;

    color:#ffb37a;

    font-size:18px;

    font-style:italic;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:1100px){

    .about-grid,
    .why-grid{
        grid-template-columns:1fr;
    }

    .service-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .review-grid{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

    .hero h1{
        font-size:64px;
    }
}

@media(max-width:768px){

    .booking-notice p{
    font-size:20px;
}

.booking-notice span{
    font-size:15px;
}

    .nav-links{
        display:none;
    }

    .hero h1{
        font-size:46px;
    }

    .section-title{
        font-size:38px;
    }

    .service-grid{
        grid-template-columns:1fr;
    }

    .trust-grid{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .hero-buttons{
        flex-direction:column;
    }
}

.cta{
    padding:120px 0;
    text-align:center;

    background:
    linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),
    url('../images/hero-bg.jpg');

    background-size:cover;
    background-position:center;
}

.cta h2{
    font-size:72px;
    line-height:1;
    text-transform:uppercase;
}

.cta p{
    max-width:700px;
    margin:auto;
    color:#ccc;
    margin-bottom:40px;
    font-size:20px;
}

.reviews-button {
    text-align: center;
    margin-top: 40px;
}

/* ==========================
   TESTIMONIAL SLIDER
========================== */

.testimonial-slider{
    position:relative;
    max-width:900px;
    margin:0 auto;
    min-height:260px;
}

.testimonial{
    display:none;
    text-align:center;
    padding:50px;
    background:var(--card);
    border:1px solid rgba(255,255,255,.05);
    border-radius:12px;
}

.testimonial.active{
    display:block;
}

.stars{
    color:var(--accent);
    font-size:28px;
    margin-bottom:20px;
}

.testimonial p{
    font-size:22px;
    line-height:1.8;
    color:#d5d5d5;
    max-width:700px;
    margin:0 auto 25px;
}

.testimonial h4{
    color:#fff;
    font-size:18px;
}

.reviews-button{
    text-align:center;
    margin-top:40px;
}

.call-btn{
    display:none;
}

@media(max-width:768px){

    .phone-link{
        display:none;
    }

    .call-btn{
        display:inline-block;
        padding:12px 18px;
    }
}

.mobile-call{
    display:none;
}

@media(max-width:768px){

    .mobile-call{
        display:block;
        position:fixed;
        bottom:0;
        left:0;
        width:100%;
        text-align:center;
        background:var(--accent);
        color:#fff;
        padding:18px;
        font-weight:700;
        z-index:9999;
    }

    body{
        padding-bottom:70px;
    }
}

.location{
    padding:120px 0;
    background:#080808;
}

.location iframe{
    border-radius:12px;
    overflow:hidden;
}

/* ==========================
   CARZOA APP PAGE
========================== */

.app-info,
.app-download,
.how-it-works{
    padding:120px 0;
}

.app-intro{
    max-width:900px;
    color:#d5d5d5;
    line-height:1.9;
    margin-bottom:60px;
}

/* FEATURES GRID */

.app-features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.feature-card{
    background:#111;
    padding:35px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,.05);
}

.feature-card h3{
    color:#ff6b00;
    margin-bottom:15px;
}

/* HOW IT WORKS GRID */

.steps-grid{
    display:grid;
    grid-template-columns:1.35fr 1fr 1fr 1fr;
    gap:25px;
    align-items:stretch;
}

.step-card{
    background:#111;
    border:1px solid rgba(255,255,255,.06);
    border-radius:18px;
    padding:30px;
    display:flex;
    flex-direction:column;
    height:100%;
}

.step-card h3{
    color:#ff6b00;
    margin-bottom:15px;
}

.step-card p{
    color:#ffffff;
    line-height:1.5;
    margin-bottom:25px;
}

/* STEP 1 DOWNLOAD AREA */

.download-options{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin-top:10px;
}

.download-option{
    background:#0f0f0f;
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    padding:18px;
    text-align:center;
}

.download-option:hover{
    border-color:#ff6b00;
}

.store-badge{
    width:140px;
    max-width:100%;
    margin:0 auto 15px;
}

.store-qr{
    width:120px;
    height:120px;
    margin:auto;

    background:#fff;
    padding:8px;
    border-radius:10px;

    object-fit:contain;
}

/* PHONE MOCKUPS */

.phone-mockup{
    width:220px;
    margin:20px auto 0;

    background:#111;
    padding:10px;

    border-radius:34px;

    border:2px solid rgba(255,255,255,.08);

    box-shadow:
        0 20px 50px rgba(0,0,0,.45),
        inset 0 0 0 1px rgba(255,255,255,.05);

    overflow:hidden;
}

.phone-mockup img{
    width:100%;
    display:block;
    border-radius:24px;
}

.phone-notch{
    display:none;
}

/* GARAGE CODE */

.garage-code-plate{
    display:block;
    width:fit-content;
    margin:0 auto 20px;

    padding:10px 24px;

    background:#ffd500;

    color:#000;

    font-weight:900;
    font-size:1.8rem;

    letter-spacing:4px;

    border-radius:4px;

    border:1px solid #111;

    font-family:'Arial Black',sans-serif;
}

/* DOWNLOAD HERO */

.download-subtitle{
    margin-top:35px;
    margin-bottom:20px;

    color:#ff6b00;

    font-size:1.8rem;
    font-weight:700;
}

.hero-download-grid{
    display:flex;
    gap:40px;
    margin-top:25px;
    align-items:flex-start;
}

.hero-download-item{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.hero-download-item > a img{
    height:60px;
    width:auto;
}

.hero-qr-wrap{
    margin-top:18px;
    text-align:center;
}

.hero-qr-wrap p{
    color:#fff;
    font-size:15px;
    font-weight:600;
    margin-bottom:10px;
}

.hero-qr{
    width:120px;
    height:120px;
    background:#fff;
    padding:8px;
    border-radius:10px;
}

/* MOBILE */

@media(max-width:1200px){

    .steps-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .app-features{
        grid-template-columns:1fr;
    }

    .steps-grid{
        grid-template-columns:1fr;
    }

    .download-options{
        grid-template-columns:1fr;
    }

    .hero-download-grid{
        justify-content:center;
        flex-wrap:wrap;
    }

    .phone-mockup{
        width:200px;
    }
}