﻿ 
:root {
    --red: #ff3b30;
    --red-dark: #c8140b;
    --black: #080808;
    --dark: #111;
    --gray: #171717;
    --light: #f5f5f5;
    --text: #bdbdbd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter',sans-serif;
    background: var(--black);
    color: #fff;
    overflow-x: hidden;
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 20px;
}

/* LOADING EFFECT */
body:before {
    content: "";
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,rgba(255,59,48,.08),transparent 70%);
    top: -200px;
    right: -150px;
    pointer-events: none;
    z-index: -1;
}

/* NAVBAR */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    padding: 20px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .4s;
}

    nav.scrolled {
        background: rgba(8,8,8,.85);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255,255,255,.06);
        padding: 14px 6%;
    }

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 24px;
    letter-spacing: -1px;
}

.logo-mark {
    width: 42px;
    height: 42px;
    background: var(--red);
    border-radius: 12px;
    display: grid;
    place-items: center;
    transform: rotate(-8deg);
    box-shadow: 0 10px 30px rgba(255,59,48,.35);
}

    .logo-mark span {
        font-size: 22px;
        transform: rotate(8deg);
    }

.logo strong {
    color: var(--red);
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

    .nav-links a {
        color: #aaa;
        text-decoration: none;
        font-size: 14px;
        transition: .3s;
    }

        .nav-links a:hover {
            color: #fff;
        }

.nav-call {
    background: #fff;
    color: #000 !important;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
}

/* HERO */

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 140px 6% 70px;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .15;
    background-image: linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to bottom,black,transparent);
}

.hero-content {
    position: relative;
    max-width: 850px;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50px;
    color: #ddd;
    font-size: 13px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.pulse {
    width: 8px;
    height: 8px;
    background: #32d74b;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(50,215,75,.6);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    70% {
        box-shadow: 0 0 0 10px rgba(50,215,75,0);
    }
}

.hero h1 {
    font-family: 'Oswald',sans-serif;
    font-size: clamp(65px,10vw,150px);
    line-height: .88;
    text-transform: uppercase;
    letter-spacing: -3px;
}

    .hero h1 span {
        color: var(--red);
        display: block;
    }

.hero-text {
    max-width: 550px;
    margin: 30px 0;
    font-size: 18px;
    line-height: 1.7;
    color: #a9a9a9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 26px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    transition: .35s;
}

.btn-primary {
    background: var(--red);
    color: #fff;
    box-shadow: 0 15px 40px rgba(255,59,48,.25);
}

    .btn-primary:hover {
        transform: translateY(-4px);
        background: #ff5147;
    }

.btn-outline {
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
    background: rgba(255,255,255,.03);
}

    .btn-outline:hover {
        background: #fff;
        color: #000;
        transform: translateY(-4px);
    }

/* HERO VISUAL */

.hero-visual {
    position: absolute;
    right: -4%;
    top: 50%;
    transform: translateY(-48%);
    width: min(55vw,850px);
    height: 80vh;
    pointer-events: none;
}

.glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--red);
    filter: blur(150px);
    opacity: .18;
    top: 15%;
    left: 15%;
}

.tire {
    position: absolute;
    width: min(48vw,650px);
    aspect-ratio: 1;
    border-radius: 50%;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: repeating-radial-gradient( circle, #0b0b0b 0px, #0b0b0b 8px, #181818 10px, #050505 20px );
    box-shadow: inset 0 0 80px #000, 0 50px 100px rgba(0,0,0,.8);
    animation: float 6s ease-in-out infinite;
}

    .tire:before {
        content: "";
        position: absolute;
        inset: 18%;
        border-radius: 50%;
        background: repeating-conic-gradient( from 0deg, #111 0deg 8deg, #444 8deg 10deg, #111 10deg 18deg );
        border: 35px solid #080808;
        box-shadow: inset 0 0 50px #000;
    }

    .tire:after {
        content: "";
        position: absolute;
        width: 15%;
        aspect-ratio: 1;
        background: #111;
        border: 8px solid #444;
        border-radius: 50%;
        left: 42.5%;
        top: 42.5%;
        box-shadow: 0 0 40px #000;
    }

@keyframes float {
    0%,100% {
        transform: translateY(-50%) rotate(-8deg);
    }

    50% {
        transform: translateY(-54%) rotate(5deg);
    }
}

.hero-stats {
    position: absolute;
    bottom: 45px;
    left: 6%;
    display: flex;
    gap: 50px;
    z-index: 5;
}

.stat strong {
    display: block;
    font-size: 30px;
}

.stat span {
    font-size: 12px;
    color: #777;
}

/* MARQUEE */

.marquee {
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
    padding: 18px 0;
    white-space: nowrap;
    background: #0d0d0d;
}

.marquee-inner {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.marquee span {
    font-family: 'Oswald';
    font-size: 22px;
    text-transform: uppercase;
    margin: 0 30px;
    color: #666;
}

.marquee b {
    color: var(--red);
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* GENERAL */

section {
    padding: 120px 6%;
}

.section-label {
    color: var(--red);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Oswald';
    text-transform: uppercase;
    font-size: clamp(45px,6vw,80px);
    line-height: .95;
    max-width: 850px;
}

/* SERVICES */

.services {
    background: #0d0d0d;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    margin-top: 60px;
    border-top: 1px solid #292929;
    border-left: 1px solid #292929;
}

.service {
    padding: 45px;
    border-right: 1px solid #292929;
    border-bottom: 1px solid #292929;
    min-height: 300px;
    position: relative;
    overflow: hidden;
    transition: .4s;
}

    .service:before {
        content: "";
        position: absolute;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: var(--red);
        filter: blur(80px);
        opacity: 0;
        right: -100px;
        top: -100px;
        transition: .5s;
    }

    .service:hover {
        background: #151515;
        transform: translateY(-5px);
    }

        .service:hover:before {
            opacity: .18;
        }

.service-number {
    font-size: 13px;
    color: #555;
}

.service-icon {
    font-size: 45px;
    margin: 45px 0 25px;
}

.service h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service p {
    color: #777;
    line-height: 1.7;
    font-size: 14px;
}

/* EMERGENCY */

.emergency {
    position: relative;
    overflow: hidden;
}

.emergency-box {
    min-height: 550px;
    border-radius: 30px;
    background: linear-gradient(110deg,rgba(0,0,0,.95),rgba(0,0,0,.45)), radial-gradient(circle at 80% 30%,#a5140c,transparent 45%), #161616;
    border: 1px solid rgba(255,255,255,.08);
    padding: 80px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

    .emergency-box:after {
        content: "24/7";
        position: absolute;
        right: -30px;
        bottom: -80px;
        font-family: 'Oswald';
        font-size: 300px;
        color: rgba(255,255,255,.03);
        font-weight: 700;
    }

.emergency-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

    .emergency-content h2 {
        font-family: 'Oswald';
        font-size: clamp(55px,8vw,110px);
        text-transform: uppercase;
        line-height: 1.2;
    }

    .emergency-content p {
        color: #aaa;
        margin: 25px 0;
        font-size: 17px;
        line-height: 1.7;
    }

/* WHY */

.why {
    background: #f4f4f4;
    color: #111;
}

    .why .section-title {
        max-width: 700px;
    }

.why-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-top: 60px;
}

.why-card {
    background: #fff;
    padding: 35px;
    min-height: 250px;
    border-radius: 20px;
    transition: .4s;
}

    .why-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(0,0,0,.12);
    }

    .why-card strong {
        display: block;
        font-size: 50px;
        font-family: 'Oswald';
        color: var(--red);
        margin-bottom: 25px;
    }

    .why-card h3 {
        margin-bottom: 10px;
    }

    .why-card p {
        font-size: 14px;
        line-height: 1.7;
        color: #777;
    }

/* BRANDS */
 iframe{
     width:100%;
     border-radius:10px;
 }

.brand-list {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.brand {
    padding: 22px 35px;
    border: 1px solid #222;
    border-radius: 15px;
    color: #777;
    font-weight: 800;
    transition: .3s;
}

    .brand:hover {
        color: #fff;
        border-color: var(--red);
        background: rgba(255,59,48,.08);
    }

/* CONTACT */

.contact {
    background: #101010;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.contact-info {
    margin-top: 50px;
}

.contact-item {
    padding: 25px 0;
    border-bottom: 1px solid #252525;
}

    .contact-item small {
        color: #666;
        display: block;
        margin-bottom: 8px;
    }

    .contact-item strong {
        font-size: 20px;
    }

.contact-form {
    background: #161616;
    padding: 40px;
    border-radius: 25px;
    border: 1px solid #242424;
}

.form-row {
    margin-bottom: 18px;
}

input, textarea {
    width: 100%;
    padding: 17px;
    border-radius: 12px;
    border: 1px solid #292929;
    background: #0d0d0d;
    color: #fff;
    font-family: inherit;
    outline: none;
    transition: .3s;
}

    input:focus, textarea:focus {
        border-color: var(--red);
    }

textarea {
    min-height: 140px;
    resize: vertical;
}

/* FOOTER */

footer {
    padding: 35px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #222;
    color: #666;
    font-size: 13px;
}

/* MOBILE BAR */

.mobile-actions {
    display: none;
}

/* SCROLL REVEAL */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s cubic-bezier(.2,.65,.3,1);
}

    .reveal.active {
        opacity: 1;
        transform: none;
    }

/* RESPONSIVE */

@media(max-width:1000px) {

    .hero-visual {
        opacity: .35;
        width: 80vw;
        right: -30%;
    }

    .services-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {

    nav {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 130px 20px 120px;
    }

        .hero h1 {
            font-size: 72px;
            letter-spacing: -2px;
        }

    .hero-text {
        font-size: 15px;
        max-width: 400px;
    }

    .hero-visual {
        opacity: .18;
        width: 100vw;
        right: -50%;
    }

    .hero-stats {
        left: 20px;
        gap: 25px;
    }

    section {
        padding: 85px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service {
        min-height: 230px;
        padding: 30px;
    }

    .emergency-box {
        padding: 45px 25px;
        min-height: 500px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    footer {
        padding: 30px 20px 100px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .mobile-actions {
        position: fixed;
        display: grid;
        grid-template-columns: 1fr 1fr;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: rgba(15,15,15,.95);
        backdrop-filter: blur(20px);
        border-top: 1px solid #333;
        padding: 10px;
        gap: 10px;
    }

        .mobile-actions a {
            padding: 15px;
            text-align: center;
            text-decoration: none;
            border-radius: 12px;
            font-size: 13px;
            font-weight: 800;
        }

    .mobile-call {
        background: #fff;
        color: #000;
    }

    .mobile-wa {
        background: var(--red);
        color: #fff;
    }
}
 