

:root {
    --red: #d8232a;
    --red-dark: #b81d23;
    --dark: #161616;
    --dark-2: #1f1f1f;
    --dark-3: #262626;
    --text: #2b2b2b;
    --muted: #6b7280;
    --light: #f5f6f8;
    --white: #fff;
    --radius: 8px;
    --container: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.img-ph {
    background: linear-gradient(135deg, #3a3a3a, #1d1d1d);
    color: #cfcfcf;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: var(--radius);
    min-height: 180px;
    border: 1px dashed #555;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border: none;
    width: auto;
    transition: .25s;
    text-transform: uppercase;
    letter-spacing: .5px;
}

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

.btn-red:hover {
    background: var(--red-dark);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

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

.btn-dark:hover {
    background: #000;
}

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

.btn-white:hover {
    background: #f0f0f0;
    color: var(--red);
}

/* ---------- Headings / helpers ---------- */
.eyebrow {
    color: var(--red);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 10px;
}

.eyebrow.center,
h2.center {
    text-align: center;
}

h2 {
    font-size: 30px;
    color: var(--dark);
    margin-bottom: 18px;
    text-transform: uppercase;
}

h2.light {
    color: #fff;
    margin-bottom: 35px;
}

.center {
    text-align: center;
}

/* ================= TOP BAR ================= */
.topbar {
    display: flex;
    background: var(--white);
    border-bottom: 1px solid #eee;
    padding: 12px 0;
    justify-content: center;
}

.topbar-row {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 20px;
    flex-wrap: wrap;
}

.logo {
    font-size: 30px;
    font-weight: 900;
    color: var(--dark);
    font-style: italic;
    letter-spacing: -1px;
}

.logo span {
    background: var(--red);
    color: #fff;
    font-style: normal;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 3px;
    vertical-align: super;
    margin-left: 3px;
}

.nav-logo {
    margin-right: auto;
    display: flex;
    width: auto;
    align-items: center;
    padding: 8px 0;
}

.nav-logo img {
    height: 64px;
    height: 100px;
    width: auto;
    border-radius: 4px;
    background: #fff;
    padding: 4px 8px;
}

.topbar-info {
    display: flex;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
}

.ti-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.ti-item >div{
    display:flex;   
    flex-direction:column;
}
.logo-truck {
    color: var(--red);
    margin-right: 6px;
    font-size: 26px;
}

.ti-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ti-item strong {
    display: block;
    font-size: 15px;
    color: var(--dark);
}

.ti-item strong.phone-num {
    color: var(--red);
    font-size: 20px;
    font-weight: 800;
}

.ti-item small {
    color: var(--muted);
    font-size: 12px;
}

/* ---------- Top-bar contact animations ---------- */
.ti-item {
    animation: tiFadeIn .6s ease both;
}
.ti-item:nth-child(1) { animation-delay: .05s; }
.ti-item:nth-child(2) { animation-delay: .2s; }
.ti-item:nth-child(3) { animation-delay: .35s; }

@keyframes tiFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* icon transition + hover lift */
.ti-icon {
    position: relative;
    transition: transform .3s ease, box-shadow .3s ease;
}
.ti-item:hover .ti-icon {
    transform: scale(1.12) rotate(-6deg);
    box-shadow: 0 8px 18px rgba(216, 35, 42, .4);
}

/* text nudges right on hover */
.ti-item strong,
.ti-item small {
    transition: color .3s ease, transform .3s ease;
}
.ti-item:hover strong { color: var(--red); }
.ti-item:hover > div { transform: translateX(3px); transition: transform .3s ease; }

/* continuous pulse ring on the phone icon */
.ti-item:has(.phone-num) .ti-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--red);
    animation: tiPulse 1.8s ease-out infinite;
}
@keyframes tiPulse {
    0%   { transform: scale(1);   opacity: .7; }
    100% { transform: scale(1.8); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .ti-item,
    .ti-item:has(.phone-num) .ti-icon::after {
        animation: none;
    }
}

/* ================= NAVBAR ================= */
.navbar {
    background: var(--dark);
    position: sticky;
    top: 0;
    z-index: 100;
}
.navbar .nav-logo {
    display:flex;
}
.topbar .nav-logo{
    display:none;
}
.nav-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.menu {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.menu>a {
    color: #e8e8e8;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 18px 14px;
    display: inline-block;
    transition: .2s;
    letter-spacing: .5px;
}

.menu>a:hover {
    color: #fff;
}

.menu>a.active {
    background: var(--red);
    color: #fff;
}

.hamburger {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
}

/* ================= HERO ================= */
.hero {
    position: relative;
    background: linear-gradient(120deg, #15171a 0%, #2a2d31 60%, #4a4d52 100%);
    color: #fff;
    padding: 4rem 0;
    overflow: hidden;
}

/* Background image slider */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Hero background video */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    /* 3 slides x 7s each = 21s full loop */
    animation: heroSlide 21s infinite;
}

.hero-slide:nth-child(1) {
    animation-delay: 0s;
}

.hero-slide:nth-child(2) {
    animation-delay: 7s;
}

.hero-slide:nth-child(3) {
    animation-delay: 14s;
}

@keyframes heroSlide {

    0% {
        opacity: 0;
        transform: scale(1);
    }

    /* fade in */
    5% {
        opacity: 1;
    }

    /* stay visible + slow zoom (Ken Burns) */
    28% {
        opacity: 1;
        transform: scale(1.1);
    }

    /* fade out */
    33% {
        opacity: 0;
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 78% 50%, rgba(216, 35, 42, .18), transparent 55%),
        linear-gradient(90deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .45) 45%, rgba(0, 0, 0, .2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 90px 20px;
}

.hero h1 {
    font-size: 54px;
    line-height: 1.05;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 18px;
    width:65%;
}

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

.hero p {
    font-size: 17px;
    max-width: 520px;
    margin-bottom: 28px;
    color: #e3e3e3;
}

.hero-badges {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.badge i {
    color: #ffffff;
    font-size: 22px;
}

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

/* Call Us Now white box (hero) */
.hero-call {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 10px 22px 10px 12px;
       border-radius: 50px;
}

.hero-call .hc-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fdeaea;
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.hero-call .hc-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.hero-call .hc-text small {
    color: var(--red);
    margin-bottom: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.hero-call .hc-text strong {
    color: var(--dark);
    font-size: 20px;
    font-weight: 800;
}

/* ================= ABOUT ================= */
.about {
    padding: 80px 0;
}
.about-content{
    display:flex;
    flex-direction: column;
    width:58%;
}

/* ---- About hero: compact, full-width card layout ---- */
.about-hero--wide .container{
    padding-top:56px;
    padding-bottom:56px;
}

/* Uniform vertical overlay so the truck stays visible across the full width */
.about-hero--wide .about-hero-overlay{
    background:
        radial-gradient(120% 120% at 0% 0%, rgba(216,35,42,.22) 0%, transparent 48%),
        linear-gradient(180deg, rgba(8,8,8,.86) 0%, rgba(8,8,8,.55) 42%, rgba(8,8,8,.55) 60%, rgba(8,8,8,.85) 100%);
}

.about-hero--wide .about-content{
    width:100%;
}

.about-hero--wide h1{
    margin-bottom:6px;
}

/* Three paragraphs become balanced content cards in one compact row */
.about-copy{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:16px;
    margin:18px 0 24px;
}

.about-copy p{
    margin:0;
    padding:18px 20px;
    background:rgba(14,14,14,.55);
    -webkit-backdrop-filter:blur(6px);
    backdrop-filter:blur(6px);
    border:1px solid rgba(255,255,255,.08);
    border-left:3px solid var(--red);
    border-radius:12px;
    color:#e6e6e6;
    font-size:13.5px;
    line-height:1.65;
    box-shadow:0 18px 40px rgba(0,0,0,.35);
}

/* Chips and buttons share a single row to save vertical space */
.about-hero-foot{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:14px 24px;
}

.about-hero-foot .svc-hero-points{
    margin:0;
}

.about-hero-foot .hero-btns{
    margin:0;
}

@media (max-width:1000px){
    .about-copy{ grid-template-columns:repeat(2, 1fr); }
}

@media (max-width:680px){
    .about-copy{ grid-template-columns:1fr; }
    .about-hero-foot{ align-items:flex-start; }
}
.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: flex-start;
    gap: 56px;
}

.about-media {
    position: sticky;
    top:0;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.about-media::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 5px;
    height: 100%;
    background: var(--red);
}

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

.about-body h2 {
    margin-bottom: 16px;
}

.about-body > p {
    color: var(--muted);
    margin-bottom: 16px;
    text-align: justify;
}

.check-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 24px;
    margin-bottom: 30px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--dark);
}

.check-list li i {
    color: var(--red);
    font-size: 17px;
}

/* ================= SERVICES ================= */
.services {
    position: relative;
    background: var(--dark);
    padding: 80px 0;
    overflow: hidden;
}

/* Single animated background image (subtle, behind dark overlay) */
.services-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    animation: servicesZoom 20s ease-in-out infinite alternate;
}

@keyframes servicesZoom {
    0% {
        transform: scale(1);
        background-position: center center;
    }

    100% {
        transform: scale(1.15);
        background-position: center top;
    }
}

/* Dark overlay keeps the section mostly black */
.services-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(15, 15, 15, .88);
}

.services .container {
    position: relative;
    z-index: 2;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 40px;
}

.service-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    transition: .25s;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
}

.service-card:hover {
    transform: translateY(-6px);
}

/* image area (replace .img-ph with a real <img> later) */
.service-card .s-img {
    position: relative;
    min-height: 175px;
    border-radius: 0;
    border: none;
    color: #d9d9d9;
}

.service-card .s-img img {
    width: 100%;
    height: 175px;
    object-fit: cover;
    display: block;
}

/* red circular icon overlapping the image bottom-left */
.s-icon {
    position: absolute;
    left: 18px;
    bottom: -26px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 5px 14px rgba(0, 0, 0, .35);
    z-index: 2;
    border: 3px solid #fff;
}

.s-body {
    padding: 38px 20px 24px;
    text-align: left;
}

.service-card h3 {
    color: var(--dark);
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: .3px;
}

.service-card p {
    color: var(--muted);
    font-size: 13.5px;
    margin: 0;
}

/* ================= WHY CHOOSE US ================= */
.why {
    padding: 80px 0;
    background: var(--light);
}

.why-head {
    margin-bottom: 48px;
}

.why-underline {
    display: block;
    width: 70px;
    height: 3px;
    background: var(--red);
    margin: 14px auto 0;
    border-radius: 2px;
}

/* ----- Top block: stats + image ----- */
.why-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 55px;
}

.why-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.stat-box {
    background: #fff;
    border: 1px solid #e8e8ec;
    border-radius: 12px;
    padding: 30px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform .25s, box-shadow .25s;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
}

.stat-box strong {
    font-size: 44px;
    color: var(--red);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-box span {
    color: var(--dark);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .5px;
}

/* red filled stat box */
.stat-box--red {
    background: var(--red);
    border-color: var(--red);
}

.stat-box--red strong,
.stat-box--red span {
    color: #fff;
}

/* image with caption */
.why-img {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

.why-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .6), transparent 45%);
}

.why-img-caption {
    position: absolute;
    left: 22px;
    bottom: 18px;
    z-index: 2;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ----- Bottom block: feature points ----- */
.why-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 40px;
}

.why-point {
    display: flex;
    gap: 16px;
}

.wp-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(216, 35, 42, .10);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: .25s;
}

.why-point:hover .wp-icon {
    background: var(--red);
    color: #fff;
}

.why-point strong {
    display: block;
    color: var(--dark);
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 6px;
    letter-spacing: .3px;
}

.why-point p {
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.55;
    margin: 0;
}

/* ================= CTA BANNER ================= */
.cta-banner {
    background: var(--red);
    color: #fff;
    padding: 28px 0;
}

.cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-text {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cta-icon {
    font-size: 22px;
    background: #fff;
    color: var(--red);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: ctaPulse 2s infinite;
}

.cta-icon i {
    animation: ctaRing 2s infinite;
}

/* pulsing white halo around the circle */
@keyframes ctaPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, .55);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* ringing / shake of the phone icon */
@keyframes ctaRing {
    0%, 50%, 100% {
        transform: rotate(0);
    }
    10%, 30% {
        transform: rotate(-14deg);
    }
    20%, 40% {
        transform: rotate(14deg);
    }
}

.cta-text strong {
    font-size: 22px;
    text-transform: uppercase;
}

.cta-text p {
    opacity: .9;
}

/* ================= GALLERY ================= */
.gallery {
    background: var(--white);
    padding: 80px 0;
}

.gallery-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 32px;
}

.gallery-head .eyebrow {
    margin-bottom: 6px;
}

.gallery-head h2 {
    margin-bottom: 0;
}

.btn-ghost {
    background: transparent;
    color: var(--dark);
    border: 1px solid #d5d7dc;
}

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

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

.g-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    margin: 0;
}

.g-item.g-wide {
    grid-column: span 2;
}

.g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.g-item:hover img {
    transform: scale(1.07);
}

.g-item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px 20px 16px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(to top, rgba(0, 0, 0, .85), transparent);
    transform: translateY(8px);
    opacity: 0;
    transition: .35s ease;
}

.g-item figcaption i {
    color: var(--red);
}

.g-item:hover figcaption {
    transform: translateY(0);
    opacity: 1;
}

.g-item img {
    cursor: pointer;
}

/* ----- Gallery lightbox popup ----- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, .9);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.lightbox.open {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 12px 45px rgba(0, 0, 0, .6);
    animation: lightboxZoom .3s ease;
}

@keyframes lightboxZoom {
    from {
        transform: scale(.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 30px;
    color: #fff;
    font-size: 46px;
    line-height: 1;
    cursor: pointer;
    transition: .2s;
}

.lightbox-close:hover {
    color: var(--red);
}

.lightbox-caption {
    position: absolute;
    bottom: 28px;
    width: 100%;
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 0 20px;
}

/* ================= TESTIMONIALS ================= */
.testimonials {
    padding: 80px 0;
    background: var(--light);
}

.testimonials h2 {
    margin-bottom: 40px;
}

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

.testi-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .06);
}

.testi-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.quote-icon {
    color: var(--red);
    font-size: 30px;
}

.stars {
    color: #f5a623;
    font-size: 18px;
    letter-spacing: 2px;
}

.testi-card p {
    color: var(--muted);
    font-style: italic;
    margin-bottom: 16px;
}

.testi-card strong {
    color: var(--dark);
    display: block;
}

.testi-card small {
    color: var(--red);
    font-weight: 600;
}

.testi-google {
    margin-top: 44px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

.testi-google iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

/* ================= FOOTER ================= */
.footer {
    background: var(--dark);
    color: #c9c9c9;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 36px;
    padding-bottom: 40px;
}

.footer-logo {
    color: #fff;
    margin-bottom: 16px;
    display: inline-block;
}

.footer-logo img {
    background: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    max-width: 220px;
    height: auto;
}

.footer p {
    font-size: 14px;
    margin-bottom: 18px;
}

.footer h4 {
    color: #fff;
    margin-bottom: 18px;
    text-transform: uppercase;
    font-size: 15px;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a,
.contact-info li {
    font-size: 14px;
   display: flex;
    color: #b5b5b5;
    transition: .2s;
   align-items: center;
}

.footer ul li a:hover {
    color: var(--red);
}

.contact-info li {
    margin-bottom: 12px;
}

.contact-info i {
    color: #ffffff;
    margin-right: 8px;
    width: 30px;
    min-width: 30px;
    display: flex;
    font-size: 13px;
    text-align: center;
    align-items: center;
    justify-content: center;
    height: 30px;
    background-color: var(--red);
    border-radius: 50%;
}

.socials {
    display: flex;
    gap: 10px;
}

.socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--dark-3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: .2s;
}

.socials a:hover {
    background: var(--red);
}

.footer-bottom {
    border-top: 1px solid #333;
    text-align: center;
    padding: 18px 0;
    font-size: 13px;
    color: #9a9a9a;
}

/* ======================================================
   PORTFOLIO / WORK GALLERY PAGE  (gallery.html)
   "OUR WORK IN ACTION" — dark masonry grid + filter tabs
   ====================================================== */
.work-gallery {
    background: #0d0d0d;
    color: #fff;
    padding: 70px 0 80px;
}

.wg-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    flex-wrap: wrap;
}

.wg-head .eyebrow {
    margin-bottom: 8px;
}

.wg-head h2 {
    color: #fff;
    font-size: 34px;
    margin-bottom: 12px;
}

.wg-head p {
    color: #9a9a9a;
    font-size: 15px;
    max-width: 540px;
    margin: 0;
}

.wg-filters {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    border-bottom: 1px solid #2a2a2a;
    margin: 28px 0 34px;
}

.wg-filter {
    background: none;
    border: none;
    color: #cfcfcf;
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 0 14px;
    cursor: pointer;
    position: relative;
    transition: .2s;
}

.wg-filter:hover {
    color: #fff;
}

.wg-filter.active {
    color: var(--red);
}

.wg-filter.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: var(--red);
}

/* Masonry-style staggered grid via CSS columns */
.wg-grid {
    columns: 3;
    column-gap: 18px;
}

.wg-item {
    break-inside: avoid;
    margin: 0 0 18px;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
}

.wg-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .5s ease;
}

.wg-item:hover img {
    transform: scale(1.06);
}

.wg-item .wg-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 34px 18px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, .88), transparent);
}

.wg-item .wg-label small {
    color: var(--red);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 4px;
}

.wg-item .wg-label strong {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.wg-item.is-hidden {
    display: none;
}

@media (max-width: 900px) {
    .wg-grid { columns: 2; }
    .wg-head h2 { font-size: 28px; }
}

@media (max-width: 560px) {
    .wg-grid { columns: 1; }
}

/* ======================================================
   ABOUT US PAGE  (about.html)
   ====================================================== */
/* ---- Hero banner ---- */
.about-hero {
    position: relative;
    color: #fff;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: center;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .6) 55%, rgba(0, 0, 0, .15) 100%);
}

.about-hero .container {
    position: relative;
    z-index: 2;
    padding: 70px 20px;
}

.about-hero h1 {
    font-size: 46px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 10px;
    color: #fff;
}

.about-hero .ah-sub {
    color: var(--red);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
    margin-bottom: 18px;
    display: block;
}

.about-hero p {
 
    color: #dcdcdc;
    font-size: 15px;
    margin-bottom: 26px;
}

.about-hero .hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-line {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .5);
}

.btn-line:hover {
    background: #fff;
    color: var(--dark);
}

/* ---- Services page hero (redesigned, attractive content panel) ---- */
.svc-hero {
    min-height: 460px;
}

.svc-hero .about-hero-bg {
    animation: servicesZoom 22s ease-in-out infinite alternate;
}

/* Richer overlay: dark on the left where the content sits, fading right */
.svc-hero .about-hero-overlay {
    background:
        radial-gradient(120% 130% at 0% 50%, rgba(216, 35, 42, .28) 0%, transparent 45%),
        linear-gradient(90deg, rgba(8, 8, 8, .92) 0%, rgba(8, 8, 8, .72) 50%, rgba(8, 8, 8, .35) 100%);
}

/* Glass content panel that highlights the text against the busy image */
.svc-hero-panel {
    max-width: 70%;
    padding: 38px 40px 40px;
    background: rgba(14, 14, 14, .55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-left: 4px solid var(--red);
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}

.svc-hero .ah-sub {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.svc-hero .ah-sub::before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--red);
}

.svc-hero h1 {
    font-size: 52px;
    letter-spacing: .5px;
    margin-bottom: 16px;
}

.svc-hero p {
    color: #e2e2e2;
    line-height: 1.65;
}

/* Highlighted feature chips */
.svc-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin: 0 0 28px;
}

.svc-hero-points li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px 8px 12px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.svc-hero-points li i {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 600px) {
    .svc-hero-panel {
        max-width: 100%;
        padding: 28px 22px 30px;
        background: rgba(14, 14, 14, .62);
    }

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

/* ---- Who we are ---- */
.who {
    padding: 70px 0;
}

.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

.who-img {
    border-radius: 8px;
    overflow: hidden;
}

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

.who-text p {
    color: var(--muted);
    margin-bottom: 18px;
}

.who-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 26px;
}

.who-badge {
    background: #f7f7f8;
    border: 1px solid #ededf0;
    border-radius: 12px;
    padding: 26px 12px;
    text-align: center;
    transition: .25s;
}

.who-badge:hover {
    box-shadow: 0 10px 26px rgba(0, 0, 0, .08);
    transform: translateY(-4px);
}

.who-badge i {
    color: var(--red);
    font-size: 40px;
    margin-bottom: 14px;
    display: block;
}

.who-badge span {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark);
    letter-spacing: .3px;
}

/* ---- Red stats banner ---- */
.about-stats {
    background: var(--red);
    color: #fff;
    padding: 34px 0;
}

.about-stats .container {
    display: flex;
    align-items: center;
}

.as-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 6px 18px;
    border-right: 1px solid rgba(255, 255, 255, .28);
}

.as-item:last-child {
    border-right: none;
}

.as-item i {
    font-size: 38px;
    opacity: .92;
    flex-shrink: 0;
}

.as-text {
    text-align: left;
}

.as-item strong {
    display: block;
    font-size: 40px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
}

.as-item span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
    opacity: .95;
}

/* ---- Experience / why choose ---- */
.exp {
    padding: 70px 0;
    background: #fff;
    overflow: hidden;
}

/* Image breaks out to the LEFT edge of the page; text stays aligned
   with the centered container on the right. */
.exp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.exp-img {
    overflow: hidden;
    border-radius: 0 10px 10px 0;
}

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

.exp-text {
    padding-left: 55px;
    padding-right: max(20px, calc((100vw - var(--container)) / 2));
}

.exp-list {
    display: grid;
    gap: 18px;
    margin-top: 10px;
}

.exp-point {
    display: flex;
    gap: 14px;
}

.exp-check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-top: 2px;
}

.exp-point strong {
    display: block;
    color: var(--dark);
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 3px;
}

.exp-point p {
    color: var(--muted);
    font-size: 13.5px;
    margin: 0;
}

.exp-intro {
    color: var(--muted);
    margin: 14px 0 6px;
    max-width: 620px;
}

.exp-tagline {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid #e8e8ec;
    color: var(--red);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .3px;
    font-size: 15px;
}

/* ---- Dashed centered section heading (Brands / Workshop) ---- */
.dash-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.dash-head h2 {
    margin: 0;
    font-size: 26px;
}

.dash-head .dash {
    width: 46px;
    height: 2px;
    background: var(--red);
    display: inline-block;
}

.dash-gear {
    text-align: center;
    color: #c4c4c4;
    font-size: 16px;
    margin: 8px 0 30px;
}

/* ---- Brands ---- */
.brands {
    padding: 55px 0;
    text-align: center;
}

.brands-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.brand {
    flex: 1 1 16%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px 14px;
    border-right: 1px solid #eee;
}

.brand:last-child {
    border-right: none;
}

.brand:nth-child(2){
    padding:2rem;
}
.brand img {
    max-height: 100px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    transition: .25s;
}

/* ---- Workshop ---- */
.workshop {
    padding: 0 0 70px;
    text-align: center;
}

.workshop h2 {
    margin-bottom: 30px;
}

.workshop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ws-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.ws-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform .5s;
    display: block;
}

.ws-item:hover img {
    transform: scale(1.07);
}

.ws-item span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--red);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 10px;
}

@media (max-width: 900px) {
    .hero h1{
        width:100%;
    }
    .about-grid { grid-template-columns: 1fr; gap: 36px; }
    .who-grid, .exp-grid { grid-template-columns: 1fr; }
    .who-img, .exp-img { height: 300px; }
    .exp-img { border-radius: 0; }
    .exp-text { padding: 28px 20px 0; }
    .who-badges { grid-template-columns: 1fr 1fr; }
    .about-stats .container { flex-wrap: wrap; }
    .about-stats .as-item { flex: 0 0 50%; border-right: none; padding: 16px 18px; }
    .workshop-grid { grid-template-columns: 1fr 1fr; }
    .about-hero h1 { font-size: 34px; }
    .brand { flex: 0 0 33.33%; }
    .brand:nth-child(3n) { border-right: none; }
}

@media (max-width: 560px) {
    .workshop-grid { grid-template-columns: 1fr; }
    .check-list { grid-template-columns: 1fr; }
    .brand { flex: 0 0 50%; }
    .brand:nth-child(3n) { border-right: 1px solid #eee; }
    .brand:nth-child(2n) { border-right: none; }
}

/* ======================================================
   SERVICES PAGE  (services.html)
   ====================================================== */
.svc-intro {
    padding: 70px 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.svc-intro > .container > p {
    color: var(--muted);
    max-width: 570px;
    margin: 0 auto 60px;
    font-size: 17px;
}

/* wrench divider under the eyebrow */
.svc-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 6px 0 18px;
    color: var(--red);
}

.svc-divider-line {
    width: 90px;
    height: 2px;
    background: var(--red);
    opacity: .55;
}

.svc-divider i {
    font-size: 18px;
}

/* two-tone heading */
.svc-title {
    font-size: 48px;
    line-height: 1.05;
    margin-bottom: 18px;
}

.svc-title span {
    color: var(--red);
}

/* ---- dark feature band ---- */
.svc-do {
    position: relative;
    overflow: visible;
    padding: 64px 0;
}

.svc-do-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
}

.svc-do-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(rgba(10, 10, 10, .92), rgba(10, 10, 10, .88));
}

/* Repair photo bleeding to the right edge, lifted slightly, clipped by the band */
.svc-do-photo {
    position: absolute;
    top: -6rem;
    right: 0;
    bottom: 0;
    width: 40%;
    z-index: 1;
    background-size: cover;
    background-position: center top;
}

.svc-do .container {
    position: relative;
    z-index: 2;
}

.svc-do-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 30px;
    max-width: 65%;
}

.svc-do-item {
    display: flex;
    gap: 16px;
    text-align: left;
}

.svc-do-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--red);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.svc-do-item strong {
    display: block;
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: .4px;
    margin-bottom: 7px;
}

.svc-do-item p {
    color: #c7c7c7;
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .svc-do-photo {
        display: none;
    }

    .svc-do-grid {
        max-width: 100%;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 860px) {
    .svc-do-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .svc-title {
        font-size: 36px;
    }
}

@media (max-width: 560px) {
    .svc-do-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- Service process steps ---- */
.process {
    padding: 80px 0;
    background: var(--light);
    text-align: center;
}

.process .why-underline {
    margin-bottom: 46px;
}

.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

/* connector line behind the number circles */
.process-grid::before {
    content: "";
    position: absolute;
    top: 35px;
    left: 13%;
    right: 13%;
    height: 2px;
    background: #e1e1e6;
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    padding: 0 8px;
}

.ps-num {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: 26px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 5px solid var(--light);
    box-shadow: 0 6px 16px rgba(216, 35, 42, .3);
}

.process-step h3 {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 10px;
    letter-spacing: .3px;
}

.process-step p {
    color: var(--muted);
    font-size: 13.5px;
    margin: 0;
}
@media (max-width:1100px) {
    .about-content{
        width:100%;
    }
}
@media (max-width: 900px) {
    .process-grid { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
    .process-grid::before { display: none; }
}

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

/* ---- 24/7 Emergency Roadside banner ---- */
.roadside {
    position: relative;
    padding: 84px 0;
    color: #fff;
    text-align: center;
    overflow: hidden;
    /* Crisp top accent + soft inner shadow to separate from the dark band above */
    border-top: 3px solid var(--red);
    box-shadow: inset 0 18px 40px -20px rgba(0, 0, 0, .65);
}

.roadside-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    /* Slightly muted so the lighter charcoal overlay reads clearly */
    opacity: .35;
    animation: servicesZoom 20s ease-in-out infinite alternate;
}

.roadside-overlay {
    position: absolute;
    inset: 0;
    /* Lighter charcoal/gray gradient with a subtle red glow — distinct from the
       near-black section above, while keeping the premium industrial tone */
    background:
        radial-gradient(circle at 50% 28%, rgba(216, 35, 42, .22), transparent 58%),
        linear-gradient(180deg,
            rgba(64, 67, 72, .94) 0%,
            rgba(50, 53, 58, .92) 45%,
            rgba(40, 42, 46, .95) 100%);
}

/* Fine diagonal texture for an industrial, machined feel */
.roadside-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, .025) 0px,
        rgba(255, 255, 255, .025) 1px,
        transparent 1px,
        transparent 7px);
    pointer-events: none;
}

.roadside .container {
    position: relative;
    z-index: 2;
}

/* Facility tour video (gallery) */
.roadside--video {
    background: linear-gradient(120deg, #15171a 0%, #2a2d31 60%, #4a4d52 100%);
}

.tour-wrap {
    position: relative;
    width: 100%;
    max-width: 880px;
    margin: 22px auto 0;
}

.tour-video {
    width: 100%;
    display: block;
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .5);
}

.tour-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 84px;
    height: 84px;
    border: none;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: 28px;
    padding-left: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
    transition: transform .2s ease, background .2s ease;
    z-index: 3;
    animation: tourPulse 2s infinite;
}

@keyframes tourPulse {
    0% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, .45), 0 0 0 0 rgba(216, 35, 42, .55);
    }
    70% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, .45), 0 0 0 22px rgba(216, 35, 42, 0);
    }
    100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, .45), 0 0 0 0 rgba(216, 35, 42, 0);
    }
}

.tour-play:hover {
    transform: translate(-50%, -50%) scale(1.08);
}

.tour-play.is-hidden {
    display: none;
}

.rs-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    animation: ctaPulse 2s infinite;
}

.roadside h2 {
    color: #fff;
    font-size: 34px;
    margin-bottom: 14px;
}

.roadside p {
    color: #d6d6d6;
    max-width: 620px;
    margin: 0 auto 26px;
    font-size: 15px;
}

.rs-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 30px;
    font-weight: 900;
    color: #fff;
}

.rs-phone i {
    color: var(--red);
}

/* ---- Maintenance plans ---- */
.plans {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.plans .why-underline {
    margin-bottom: 46px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    text-align: left;
}

.plan-card {
    position: relative;
    background: #fff;
    border: 1px solid #e8e8ec;
    border-radius: 14px;
    padding: 36px 30px;
    transition: .25s;
}

.plan-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
    transform: translateY(-6px);
}

.plan-card.featured {
    border-color: var(--red);
    box-shadow: 0 16px 44px rgba(216, 35, 42, .15);
}

.plan-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 5px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.plan-card h3 {
    text-transform: uppercase;
    font-size: 19px;
    color: var(--dark);
    margin-bottom: 6px;
}

.plan-sub {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 22px;
}

.plan-list {
    display: grid;
    gap: 12px;
    margin: 0 0 28px;
}

.plan-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #444;
    font-size: 14px;
}

.plan-list li i {
    color: var(--red);
    margin-top: 4px;
    font-size: 12px;
    flex-shrink: 0;
}

.plan-card .btn {
    width: 100%;
    justify-content: center;
}

@media (max-width: 900px) {
    .plans-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .roadside h2 { font-size: 28px; }
}

/* ======================================================
   CONTACT PAGE  (contact.html)
   ====================================================== */
/* ---- Info cards ---- */
.contact-cards {
    padding: 70px 0 10px;
}

.contact-cards .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.c-card {
    background: #fff;
    border: 1px solid #ededf0;
    border-radius: 14px;
    padding: 32px 22px;
    text-align: center;
    transition: .25s;
}

.c-card:hover {
    box-shadow: 0 14px 34px rgba(0, 0, 0, .08);
    transform: translateY(-5px);
}

.c-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(216, 35, 42, .1);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
    transition: .25s;
}

.c-card:hover .c-icon {
    background: var(--red);
    color: #fff;
}

.c-card h3 {
    font-size: 15px;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 8px;
}

.c-card p,
.c-card a {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.c-card a:hover {
    color: var(--red);
}

/* ---- Form + Map ---- */
.contact-main {
    padding: 60px 0 80px;
}

.contact-main .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-form h2 {
    font-size: 26px;
    margin-bottom: 8px;
}

.form-sub {
    color: var(--muted);
    margin-bottom: 24px;
    font-size: 14px;
}

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

.field {
    margin-bottom: 16px;
}

.contact-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid #dcdce1;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    background: #fafafa;
    transition: .2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--red);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(216, 35, 42, .1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 130px;
}

.form-success {
    display: none;
    background: #e9f8ee;
    border: 1px solid #b7e4c7;
    color: #1b7a3d;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 16px;
}

.contact-map {
    border-radius: 14px;
    overflow: hidden;
    min-height: 430px;
    border: 1px solid #ededf0;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 430px;
    border: 0;
    display: block;
}

/* ---- FAQ accordion ---- */
.faq {
    padding: 80px 0;
    background: var(--light);
    text-align: center;
}

.faq .why-underline {
    margin-bottom: 40px;
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
    text-align: left;
}

.faq-item {
    background: #fff;
    border: 1px solid #ececf0;
    border-radius: 10px;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 22px;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-q i {
    color: var(--red);
    transition: .3s;
    flex-shrink: 0;
}

.faq-item.open .faq-q i {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-a p {
    padding: 0 22px 20px;
    color: var(--muted);
    font-size: 14px;
    margin: 0;
}

.faq-item.open .faq-a {
    max-height: 320px;
}

@media (max-width: 900px) {
    .contact-cards .container { grid-template-columns: 1fr 1fr; }
    .contact-main .container { grid-template-columns: 1fr; }
    .contact-map { min-height: 320px; }
}

@media (max-width: 560px) {
    .contact-cards .container { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

/* ======================================================
   WHY CHOOSE US PAGE  (why-choose.html)
   ====================================================== */
.why-page {
    padding: 80px 0;
    text-align: center;
}

.why-page .why-underline {
    margin-bottom: 46px;
}

.why-page .why-features {
    text-align: left;
}

/* ---- Comparison table ---- */
.compare {
    padding: 80px 0;
    background: var(--light);
    text-align: center;
}

.compare .why-underline {
    margin-bottom: 42px;
}

.compare-table {
    max-width: 780px;
    margin: 0 auto;
    border: 1px solid #e6e6ec;
    border-radius: 14px;
    overflow: hidden;
    text-align: left;
    background: #fff;
}

.compare-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    align-items: center;
}

.compare-row:not(:last-child) {
    border-bottom: 1px solid #eeeef2;
}

.compare-cell {
    padding: 16px 22px;
}

.compare-cell.center {
    text-align: center;
}

.compare-head .compare-cell {
    background: var(--dark);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .4px;
}

.compare-head .ch-dttr {
    background: var(--red);
}

.compare-cell.feature {
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}

.compare-cell .yes {
    color: #16a34a;
    font-size: 17px;
}

.compare-cell .no {
    color: #b5b5bd;
    font-size: 17px;
}

/* ---- Guarantee / promise cards ---- */
.promise {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.promise .why-underline {
    margin-bottom: 46px;
}

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

.promise-card {
    background: #fff;
    border: 1px solid #ececf0;
    border-radius: 14px;
    padding: 38px 28px;
    transition: .25s;
}

.promise-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
}

.promise-icon {
    width: 66px;
    height: 66px;
    border-radius: 16px;
    background: rgba(216, 35, 42, .1);
    color: var(--red);
    font-size: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: .25s;
}

.promise-card:hover .promise-icon {
    background: var(--red);
    color: #fff;
}

.promise-card h3 {
    text-transform: uppercase;
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 10px;
}

.promise-card p {
    color: var(--muted);
    font-size: 14px;
    margin: 0;
}

@media (max-width: 900px) {
    .promise-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

@media (max-width: 560px) {
    .compare-row { grid-template-columns: 1.6fr 1fr 1fr; }
    .compare-cell { padding: 14px 12px; font-size: 13px; }
}

/* ======================================================
   FLOATING CONTACT BUTTONS  (all pages, fixed)
   ====================================================== */
.float-actions {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 1500;
    display: none;                 /* hidden on desktop; shown on mobile (media.css) */
    flex-direction: column;
    gap: 12px;
    animation: floatBob 3s ease-in-out infinite;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .28);
    transition: background .2s;
}

.float-btn:hover {
    color: #fff;
}

.float-btn:active {
    transform: scale(.92);
}

/* phone glyph reads large — trim it down */
.float-call i {
    font-size: 18px;
}

.float-wa {
    background: #25d366;
    animation: waPulse 2s infinite;
}

.float-wa:hover {
    background: #1ebe5b;
}

.float-call {
    background: var(--red);
    animation: callPulse 2s infinite;
}

.float-call:hover {
    background: var(--red-dark);
}

@keyframes floatBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes waPulse {
    0%   { box-shadow: 0 6px 18px rgba(0,0,0,.28), 0 0 0 0 rgba(37,211,102,.5); }
    70%  { box-shadow: 0 6px 18px rgba(0,0,0,.28), 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 6px 18px rgba(0,0,0,.28), 0 0 0 0 rgba(37,211,102,0); }
}

@keyframes callPulse {
    0%   { box-shadow: 0 6px 18px rgba(0,0,0,.28), 0 0 0 0 rgba(216,35,42,.5); }
    70%  { box-shadow: 0 6px 18px rgba(0,0,0,.28), 0 0 0 14px rgba(216,35,42,0); }
    100% { box-shadow: 0 6px 18px rgba(0,0,0,.28), 0 0 0 0 rgba(216,35,42,0); }
}

/* ======================================================
   RESPONSIVE
   All @media queries live in ./media/media.css
   ====================================================== */
