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

a, button {
    transition: all 0.25s ease;
}

body {
font-family: Arial, Helvetica, sans-serif;
background:#0b0b0b;
color:white;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

.container {
width:90%;
max-width:1200px;
margin:auto;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

section {
    padding: 80px 0;
}

/* TOP BAR */

.topbar {
background:black;
padding:10px;
font-size:14px;
display: flex;
justify-content: center;
font-size: 13px;
}

.topbar-flex {
display:flex;
justify-content:space-between;
width: 100%;
gap: 20px;
}

.topbar a {
    color: white;
    text-decoration: none;
}

.topbar a:hover {
    color: red;
}

/* NAVBAR */

.navbar {
background:#111;
position:sticky;
top:0;
z-index:999;
border-bottom:3px solid red;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.nav-links a.active {
    color: red;
    border-bottom: 2px solid red;
    padding-bottom: 4px;
}

.header-social {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: 15px;
}

.header-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    color: white;

    font-size: 16px;

    transition: 0.25s;
    border: 1px solid rgba(255,255,255,0.1);
}

.header-social a:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.18);
}

/* HERO VIDEO */

.hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

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

.hero-full {
    height: 90vh;   /* makes it longer */
    position: relative;
}

.hero.hero-full {
    height: 90vh;
    padding: 0;
}

/* REVIEWS */

.reviews {
    padding: 80px 0;
    background: #0f0f0f;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.review-card {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 10px;
    transition: 0.3s;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(255,0,0,0.6);
}

.stars {
    font-size: 20px;
    color: gold;
    margin-bottom: 10px;
}

/* NAV LINKS */

.nav-links {
list-style: none;
display: flex;
gap: 30px;
align-items: center;
}

.nav-links a {
color: white;
text-decoration: none;
font-weight: bold;
transition: 0.3s;
}

.nav-links a:hover {
color: orange;
}

.menu-toggle {
display: none;
font-size: 28px;
cursor: pointer;
}

/* BUTTONS */

.btn-primary {
background: orange;
color: black;
padding: 12px 20px;
border: none;
font-weight: bold;
cursor: pointer;
border-radius: 6px;
transition: 0.3s;
}

.btn-primary:hover {
transform: scale(1.05);
}

.btn-red {
background: red;
color: white;
padding: 14px 24px;
border: none;
border-radius: 6px;
cursor: pointer;
font-weight: bold;
display: inline-block;
text-decoration: none;
transition: 0.3s;
}

.btn-red:hover {
background: darkred;
transform: scale(1.05);
}

.btn-primary,
.btn-red {
    transition: all 0.25s ease;
}

/* SERVICES */

.services {
padding: 80px 0;
}

.section-title {
text-align: center;
font-size: 36px;
margin-bottom: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

/* BASE CARD */
.service-card {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

/* IMAGE ALWAYS FILLS ITS AREA */
.service-card img {
    width: 100%;
    object-fit: cover;
    display: block;
}

/* HOVER */
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(255,0,0,0.6);
}

.gallery .service-card {
    height: 260px;
}

.gallery .service-card img {
    height: 100%;
}

.tires .service-card {
    height: auto;
}

.tires .service-card img {
    height: 180px;
}

.tires .service-card h3 {
    padding: 12px 12px 0;
    font-size: 16px;
}

.tires .service-card p {
    padding: 8px 12px 14px;
    font-size: 13px;
    color: #bbb;
}

.service-content {
    padding: 20px;
    flex-grow: 1;
}

.service-content h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.service-content p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.5;
}

/* VIDEO SECTION */

.video-section {
padding: 80px 0;
text-align: center;
}

.video-placeholder {
height: 300px;
background: #222;
display: flex;
align-items: center;
justify-content: center;
border-radius: 10px;
font-size: 22px;
}

/* CTA */

.cta {
    background: linear-gradient(135deg, #b30000, #ff0000);
    padding: 80px 20px;
    text-align: center;
}

/* FOOTER */
.footer {
    background: #050505;
    padding: 70px 0 30px;
    color: #ccc;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

/* LOGO */
.footer-brand img {
    width: 140px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
}

.footer .phone a {
    color: red;
    text-decoration: none;
    font-weight: bold;
}

.footer .phone a:hover {
    color: white;
}

/* OPEN STATUS */
.status {
    margin-top: 10px;
    color: #00ff88;
    font-size: 13px;
    font-weight: bold;
}

.dot {
    height: 8px;
    width: 8px;
    background: #00ff88;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

/* HEADINGS */
.footer h4 {
    color: white;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* LISTS */
.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #aaa;
}

/* LINKS */
.footer a {
    text-decoration: none;
    color: #aaa;
}

.footer a:hover {
    color: white;
}

/* CONTACT */
.location {
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.phone {
    color: red;
    font-weight: bold;
    margin: 5px 0;
}

.email {
    margin-top: 10px;
    font-size: 14px;
}

/* BOTTOM BAR */
.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 25px;
    padding-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #bbb;
    letter-spacing: 0.3px;
}

/* SOCIAL */
.footer-social a {
    color: #aaa;
    font-size: 18px;
}

.footer-social a:hover {
    color: white;
}

/* FLOAT BUTTON */
.quote-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: red;
    color: white;
    padding: 14px 18px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    z-index: 9999;
    box-shadow: 0 0 15px rgba(255,0,0,0.5);
}

/* MODAL BACKDROP */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

/* MODAL BOX */
.modal-content {
    background: #1a1a1a;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    margin: 15% auto;
    border-radius: 10px;
    text-align: center;
}

/* CLOSE BUTTON */
.close {
    float: right;
    font-size: 28px;
    cursor: pointer;
    color: white;
}

.close:hover {
    color: red;
}

.booking {
    padding: 80px 0;
}

.booking-form {
    max-width: 700px;
    margin: auto;
    background: #111;
    padding: 30px;
    border-radius: 12px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    margin-bottom: 15px;
    background: #1a1a1a;
    color: white;
}

.booking-form textarea {
    grid-column: 1 / -1;
}

.social-icons a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.social-icons a:hover {
    color: orange;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-stats {
    margin: 20px 0;
    display: grid;
    gap: 10px;
}

.contact {
    padding: 90px 0;
}

.contact .container {
    max-width: 1100px;
}

/* LAYOUT */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

/* FORM CARD */
.contact-form {
    background: #111;
    padding: 30px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);

    display: grid;
    gap: 15px;
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;

    background: #1a1a1a;
    color: white;

    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.25s ease;
    font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: red;
    box-shadow: 0 0 0 3px rgba(255,0,0,0.15);
}

/* BUTTON */
.contact-form .btn-red {
    margin-top: 5px;
    padding: 14px;
    font-size: 15px;
    letter-spacing: 0.5px;
}

/* RIGHT SIDE INFO */
.contact-info {
    margin-top: 0;
    text-align: left;
}

.contact-box {
    background: #111;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 12px;
    transition: 0.25s ease;
}

.contact-box:hover {
    transform: translateY(-3px);
    border-color: rgba(255,0,0,0.3);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);

    color: white;
    font-size: 20px;

    transition: all 0.25s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

/* hover glow like Apple UI */
.social-btn:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* Instagram gradient hover */
.social-btn:nth-child(1):hover {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

/* TikTok glow hover */
.social-btn:nth-child(2):hover {
    background: linear-gradient(45deg, #25f4ee, #000000, #fe2c55);
}

.contact-info {
    display: grid;
    gap: 15px;
    margin-top: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.contact-box {
    background: #1a1a1a;
    padding: 15px;
    border-radius: 10px;
    transition: 0.3s;
}

.contact-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 15px rgba(255,0,0,0.4);
}

.contact-box a {
    color: white;
    text-decoration: none;
}

.contact-box a:hover {
    color: red;
}

/* =========================
   WHY DRIVERS TRUST US
   (About Page Section)
========================= */

.why-us {
    background: #050505;
    padding: 80px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* SMALL RED LABEL */

.why-sub {
    color: red;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: bold;
    text-transform: uppercase;
}

/* MAIN TITLE */

.why-text h2 {
    font-size: 42px;
    margin: 12px 0 30px;
    line-height: 1.2;
}

.why-text h2 span {
    color: red;
}

/* ITEMS */

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.why-item .icon {
    background: rgba(255, 0, 0, 0.12);
    color: red;
    padding: 12px;
    border-radius: 10px;
    font-size: 16px;
    min-width: 42px;
    text-align: center;
}

.why-item h4 {
    font-size: 15px;
    margin-bottom: 5px;
}

.why-item p {
    color: #b0b0b0;
    font-size: 14px;
}

/* IMAGE SIDE */

.why-image {
    position: relative;
    height: 520px; /* increase this number to make image taller */
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* SPANISH BUTTON */

.spanish-btn {
    position: absolute;
    bottom: 18px;
    right: 18px;

    background: red;
    color: white;

    border: none;
    padding: 10px 18px;

    border-radius: 999px;
    font-size: 12px;
    font-weight: bold;

    cursor: pointer;

    box-shadow: 0 6px 18px rgba(255,0,0,0.5);
    transition: 0.25s;
}

.spanish-btn:hover {
    transform: translateY(-2px);
    background: darkred;
}

/* =========================
   SCROLL ANIMATIONS
========================= */

/* hidden state before animation */

.fade-in {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

/* visible state */

.fade-in.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* slight delay options */

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }


/* PROMO TITLE */
.promo-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: red;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

/* MAIN FLEX LAYOUT */
.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: center;
}

/* LEFT IMAGE */
.promo-image {
    flex: 1;
    max-width: 300px;
    height: 260px;
    overflow: hidden;
    border-radius: 12px;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* RIGHT TEXT */
.promo-text {
    flex: 1;
    max-width: 500px;
}

.promo-text h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: white;
}

.promo-text p {
    color: #bbb;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.red-title {
    color: red;
}

.btn-black {
    background: black;
    color: white;
    padding: 14px 24px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s;
}

.btn-black:hover {
    background: #111;
    transform: scale(1.05);
}

/* FORM HEADER STYLE */
.form-title {
    font-size: 22px;
    margin-bottom: 5px;
    color: white;
    text-align: left;
}

.form-subtext {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 15px;
    text-align: left;
}

/* INPUT ENHANCEMENT */
.contact-form input,
.contact-form textarea {
    transition: 0.25s ease;
    border: 1px solid rgba(255,255,255,0.06);
}

/* glow on focus */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: red;
    box-shadow: 0 0 0 3px rgba(255,0,0,0.2);
    transform: scale(1.01);
}

/* BUTTON ENHANCE */
.contact-form .btn-red {
    margin-top: 5px;
    width: 100%;
    font-size: 15px;
    letter-spacing: 0.5px;
}

/* FORM FOOTER TEXT */
.form-footer-text {
    margin-top: 15px;
    font-size: 13px;
    color: #888;
    text-align: center;
}

/* FORM CARD PREMIUM LOOK */
.contact-form {
    position: relative;
    overflow: hidden;
}

/* subtle glow border effect */
.contact-form::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,0,0,0.3), transparent);
    -webkit-mask: 
        linear-gradient(#000 0 0) content-box, 
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* =========================
   TABLET (<= 992px)
========================= */
@media (max-width: 992px) {

    .nav-links {
        gap: 18px;
    }

    .hero {
        padding: 80px 0;
    }

    .hero-full {
        height: 70vh;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .promo-content {
        flex-direction: column;
        gap: 25px;
    }

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

/* =========================
   MOBILE (<= 768px)
========================= */
@media (max-width: 768px) {

    /* NAVBAR */
    .nav-flex {
        flex-wrap: wrap;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        display: none; /* optional: for hamburger menu later */
        background: #111;
        padding: 15px 0;
    }

    .menu-toggle {
        display: block;
    }

    /* HERO */
    .hero {
        padding: 60px 0;
    }

    .hero-full {
        height: 60vh;
    }

    /* GRID FIXES */
    .service-grid {
        grid-template-columns: 1fr;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

    /* CONTACT */
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    /* WHY US */
    .why-text h2 {
        font-size: 30px;
    }

    .why-image {
        height: 350px;
    }

    /* PROMO */
    .promo-image {
        max-width: 100%;
        height: 220px;
    }

    .promo-text {
        max-width: 100%;
    }
}

/* =========================
   SMALL MOBILE (<= 480px)
========================= */
@media (max-width: 480px) {

    .section-title {
        font-size: 26px;
    }

    .why-text h2 {
        font-size: 24px;
    }

    .btn-red,
    .btn-primary,
    .btn-black {
        width: 100%;
        text-align: center;
    }

    .topbar-flex {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .logo img {
        height: 55px;
    }

    .footer-brand img {
        width: 120px;
        margin: 0 auto 15px;
    }
}
