:root {
    --primary: #0b1f3a;
    --primary-soft: #163861;
    --secondary: #f7941d;
    --accent: #ffb703;
    --ink: #111827;
    --muted: #667085;
    --line: #e6ebf2;
    --surface: #ffffff;
    --surface-alt: #f6f8fb;
    --radius: 8px;
    --shadow: 0 16px 42px rgba(15, 23, 42, .12);
    --shadow-sm: 0 10px 25px rgba(15, 23, 42, .08);
    --transition: .25s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--surface);
    color: var(--ink);
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

a.navbar-brand img {
    width: 300px;
}


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

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--ink);
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.15;
    text-transform: capitalize;
}

.section-padding {
    padding: 104px 0;
}

.section-anchor {
    scroll-margin-top: 92px;
}

.section-title {
    max-width: 820px;
    margin: 0 auto;
}

.section-title span,
.section-subtitle {
    color: var(--secondary);
    display: inline-block;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: 1.8px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.section-title h2,
.about-content h2,
.contact-copy h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 18px;
}

.section-title p,
.about-content p,
.contact-copy p {
    color: var(--muted);
    margin: 0;
}

.preloader {
    align-items: center;
    background: var(--primary);
    display: flex;
    inset: 0;
    justify-content: center;
    position: fixed;
    transition: opacity .35s ease, visibility .35s ease;
    z-index: 99999;
}

.preloader.is-hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.loader span {
    color: #fff;
    display: block;
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(2rem, 8vw, 3.2rem);
    font-weight: 800;
    letter-spacing: 4px;
    animation: pulse 1.4s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: .45;
        transform: scale(.96);
    }

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

#progress-bar {
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    height: 4px;
    left: 0;
    position: fixed;
    top: 0;
    width: 0;
    z-index: 10000;
}

.custom-navbar {
    padding: 18px 0;
    transition: var(--transition);
}

.custom-navbar.scrolled,
.custom-navbar.menu-open {
    background: rgba(11, 31, 58, .97);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
}

.custom-navbar.scrolled {
    padding: 10px 0;
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.navbar-brand span {
    color: #fff;
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(1.45rem, 3vw, 1.9rem);
    font-weight: 800;
    text-transform: uppercase;
}

.navbar-brand small {
    color: var(--accent);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: 1.7px;
    margin-top: 4px;
    text-transform: uppercase;
}

.navbar-toggler {
    border: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler span {
    background: #fff;
    display: block;
    height: 3px;
    transition: var(--transition);
    width: 28px;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.nav-link {
    color: rgba(255, 255, 255, .9);
    font-weight: 700;
    margin-left: 18px;
    padding: 8px 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.nav-link::after {
    background: var(--accent);
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transition: var(--transition);
    width: 0;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-primary-custom,
.quote-btn {
    align-items: center;
    background: var(--secondary);
    border: 2px solid var(--secondary);
    border-radius: var(--radius);
    color: #fff;
    display: inline-flex;
    font-weight: 800;
    justify-content: center;
    min-height: 48px;
    padding: 12px 24px;
    transition: var(--transition);
}

.btn-primary-custom:hover,
.quote-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--ink);
    transform: translateY(-2px);
}

.btn-outline-custom {
    align-items: center;
    border: 2px solid rgba(255, 255, 255, .75);
    border-radius: var(--radius);
    color: #fff;
    display: inline-flex;
    font-weight: 800;
    justify-content: center;
    min-height: 48px;
    padding: 12px 24px;
    transition: var(--transition);
}

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

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: #fff !important;
}

.hero-section {
    background:
        linear-gradient(115deg, rgba(11, 31, 58, .97), rgba(22, 56, 97, .86)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .04) 0 1px, transparent 1px 90px);
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

.hero-section .row {
    margin-top: 20px;
}
 
.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    background:
        linear-gradient(135deg, transparent 0 54%, rgba(247, 148, 29, .18) 54% 72%, transparent 72%),
        radial-gradient(circle at 82% 24%, rgba(255, 183, 3, .22), transparent 28%);
    inset: 0;
    position: absolute;
}

.hero-content,
.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-tag {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
    padding: 9px 16px;
    text-transform: uppercase;
}

.hero-content h1 {
    color: #fff;
    font-size: clamp(2.65rem, 6vw, 3rem);
    max-width: 820px;
}

.hero-content p {
    color: rgba(255, 255, 255, .82);
    font-size: 1.08rem;
    margin: 24px 0 32px;
    max-width: 680px;
}

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

.hero-visual {
    aspect-ratio: 1 / 1;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, .06)),
        linear-gradient(145deg, rgba(247, 148, 29, .22), rgba(255, 183, 3, .08));
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-height: 390px;
    overflow: hidden;
}

.visual-sun {
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    border-radius: 50%;
    height: 110px;
    position: absolute;
    right: 56px;
    top: 54px;
    width: 110px;
}

.visual-road {
    background:
        linear-gradient(90deg, transparent 0 7%, rgba(255, 255, 255, .82) 7% 14%, transparent 14% 24%),
        linear-gradient(165deg, #202c3c 0 52%, #101828 52%);
    bottom: -20px;
    height: 36%;
    left: -20px;
    position: absolute;
    right: -20px;
    transform: skewY(-8deg);
}

.truck-illustration {
    bottom: 24%;
    height: 148px;
    left: 8%;
    position: absolute;
    width: 84%;
}

.truck-cab,
.truck-trailer,
.truck-load,
.wheel {
    display: block;
    position: absolute;
}

.truck-cab {
    background: #f8fafc;
    border-radius: 8px 18px 8px 8px;
    bottom: 32px;
    height: 74px;
    right: 8px;
    width: 28%;
}

.truck-cab::before {
    background: #88bfe8;
    border-radius: 4px 14px 4px 4px;
    content: "";
    height: 26px;
    position: absolute;
    right: 12px;
    top: 12px;
    width: 46%;
}

.truck-trailer {
    background: #f7941d;
    border-radius: 8px;
    bottom: 36px;
    height: 72px;
    left: 0;
    width: 67%;
}

.truck-load {
    background: #ba6b2f;
    clip-path: polygon(4% 100%, 19% 20%, 92% 0, 100% 100%);
    height: 58px;
    left: 3%;
    top: 0;
    width: 60%;
}

.wheel {
    background: #0f172a;
    border: 7px solid #d9dee8;
    border-radius: 50%;
    bottom: 4px;
    height: 48px;
    width: 48px;
}

.wheel-front {
    right: 12%;
}

.wheel-mid {
    left: 48%;
}

.wheel-back {
    left: 10%;
}

.floating-truck {
    animation: floatTruck 4.5s ease-in-out infinite;
}

@keyframes floatTruck {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

.service-strip {
    margin-top: -72px;
    position: relative;
    z-index: 4;
}

.service-mini-card,
.service-card,
.fleet-card,
.testimonial-card,
.stack-card,
.quote-form {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition);
}

.service-mini-card {
    overflow: hidden;
    padding: 30px;
    text-align: center;
}

.service-mini-card:hover,
.service-card:hover,
.fleet-card:hover,
.testimonial-card:hover,
.stack-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}

.icon,
.fleet-card i,
.testimonial-card > i {
    align-items: center;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: var(--radius);
    color: #fff;
    display: inline-flex;
    height: 64px;
    justify-content: center;
    margin-bottom: 22px;
    width: 64px;
}

.icon i,
.fleet-card i,
.testimonial-card > i {
    font-size: 1.7rem;
}

.service-mini-card h2,
.service-card h3,
.fleet-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-mini-card p,
.service-content p,
.fleet-card p,
.testimonial-card p {
    color: var(--muted);
    margin: 0;
}

.about-section,
.testimonial-section {
    background: #fff;
}

.about-visual {
    background:
        linear-gradient(145deg, rgba(11, 31, 58, .94), rgba(22, 56, 97, .84)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .08) 0 2px, transparent 2px 28px);
    border-radius: var(--radius);
    min-height: 460px;
    overflow: hidden;
    position: relative;
}

.about-visual img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

/* .about-visual::before {
    background: linear-gradient(90deg, #f7941d 0 48%, #ffb703 48%);
    bottom: 72px;
    content: "";
    height: 88px;
    left: 8%;
    position: absolute;
    transform: skewX(-12deg);
    width: 70%;
} */

/* .about-visual::after {
    background: #fff;
    border-radius: 8px 18px 8px 8px;
    bottom: 74px;
    content: "";
    height: 82px;
    position: absolute;
    right: 9%;
    width: 27%;
} */

.about-stat,
.route-card {
    background: rgba(255, 255, 255, .94);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    color: var(--primary);
    position: absolute;
    z-index: 2;
}

.about-stat {
    left: 28px;
    padding: 18px 22px;
    top: 28px;
}

.about-stat strong {
    display: block;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 2.3rem;
    line-height: 1;
}

.about-stat span {
    color: var(--muted);
    font-weight: 700;
}

.route-card {
    align-items: center;
    bottom: 28px;
    display: flex;
    gap: 14px;
    left: 28px;
    max-width: 330px;
    padding: 18px;
}

.route-card i {
    color: var(--secondary);
    font-size: 1.5rem;
}

.feature-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
}

.feature-box {
    align-items: center;
    background: var(--surface-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--primary);
    display: flex;
    font-weight: 800;
    gap: 10px;
    min-height: 64px;
    padding: 16px;
}

.feature-box i {
    color: var(--secondary);
}

.services-section,
.contact-section {
    background: var(--surface-alt);
}

.service-card {
    overflow: hidden;
}

.tilt-card {
    transform-style: preserve-3d;
    will-change: transform;
}

.tilt-card::after {
    background: linear-gradient(135deg, rgba(255, 255, 255, .3), transparent 42%);
    border-radius: inherit;
    content: "";
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transition: opacity .25s ease;
}

.tilt-card:hover::after {
    opacity: 1;
}

.service-mini-card,
.service-card,
.fleet-card,
.hero-visual,
.about-visual {
    overflow: hidden;
    position: relative;
}

.image-hover {
    isolation: isolate;
}

.image-hover::after {
    background:
        linear-gradient(120deg, transparent 0 35%, rgba(255, 255, 255, .32) 48%, transparent 62%),
        linear-gradient(180deg, transparent, rgba(11, 31, 58, .18));
    content: "";
    inset: 0;
    opacity: 0;
    position: absolute;
    transform: translateX(-42%);
    transition: opacity .35s ease, transform .65s ease;
    z-index: 3;
}

.image-hover:hover::after {
    opacity: 1;
    transform: translateX(42%);
}

.image-hover:hover .service-visual i,
.service-card:hover .service-visual i {
    transform: translateY(-6px) scale(1.08) rotate(-2deg);
}

.service-visual {
    align-items: center;
    display: flex;
    height: 220px;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.service-visual::before {
    background: rgba(255, 255, 255, .18);
    bottom: -45%;
    content: "";
    height: 90%;
    left: -12%;
    position: absolute;
    transform: rotate(-12deg);
    width: 125%;
}

.service-visual i {
    color: rgba(255, 255, 255, .95);
    font-size: 5rem;
    position: relative;
    transition: transform .45s ease;
    z-index: 2;
}

.service-visual-one {
    background: linear-gradient(135deg, #0b1f3a, #4f6f91);
}

.service-visual-two {
    background: linear-gradient(135deg, #163861, #f7941d);
}

.service-visual-three {
    background: linear-gradient(135deg, #111827, #ffb703);
}

.service-content {
    padding: 28px;
}

.read-more {
    align-items: center;
    color: var(--secondary);
    display: inline-flex;
    font-weight: 800;
    gap: 8px;
    margin-top: 22px;
}

.read-more i {
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary);
}

.read-more:hover i {
    transform: translateX(5px);
}

.fleet-grid,
.testimonial-grid {
    display: grid;
    gap: 24px;
    margin-top: 44px;
}

.stack-section {
    background:
        linear-gradient(180deg, #fff 0%, #f6f8fb 100%);
    overflow: clip;
}

.stack-wrapper {
    display: grid;
    gap: 22px;
    margin: 54px auto 0;
    max-width: 900px;
}

.stack-card {
    align-items: flex-start;
    display: grid;
    gap: 12px;
    grid-template-columns: auto 1fr;
    min-height: 170px;
    padding: 34px;
    position: sticky;
    top: 104px;
}

.stack-card span {
    align-items: center;
    background: var(--primary);
    border-radius: var(--radius);
    color: var(--accent);
    display: inline-flex;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    height: 54px;
    justify-content: center;
    width: 54px;
}

.stack-card h3 {
    color: var(--primary);
    font-size: 1.45rem;
    margin: 0;
}

.stack-card p {
    color: var(--muted);
    grid-column: 2;
    margin: 0;
    margin-top: 10px;
}

.stack-card-one {
    top: 104px;
}

.stack-card-two {
    top: 128px;
}

.stack-card-three {
    top: 152px;
}

.stack-card-four {
    top: 176px;
}

.stack-section .stack-sec-img {
    margin-top: 54px;
    position: sticky;
    top: 106px;
}

.parallax-section {
    align-items: center;
    background:
        linear-gradient(90deg, rgba(11, 31, 58, .94), rgba(22, 56, 97, .72)),
        linear-gradient(135deg, #202c3c, #111827);
    display: flex;
    min-height: 330px;
    overflow: hidden;
    position: relative;
}

.parallax-bg {
    background:
        repeating-linear-gradient(120deg, rgba(255, 255, 255, .09) 0 1px, transparent 1px 34px),
        linear-gradient(135deg, rgba(247, 148, 29, .28), transparent 48%),
        linear-gradient(180deg, transparent, rgba(0, 0, 0, .32));
    inset: -12% 0;
    position: absolute;
    will-change: transform;
}

.parallax-content {
    /* max-width: 760px; */
    position: relative;
    z-index: 2;
}

.parallax-content span {
    color: var(--accent);
    display: inline-block;
    font-weight: 800;
    letter-spacing: 1.8px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.parallax-content h2 {
    color: #fff;
    font-size: clamp(2rem, 4.5vw, 2.5rem);
    margin-bottom: 28px;
}

.fleet-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fleet-card,
.testimonial-card {
    overflow: hidden;
    padding: 28px;
}

.counter-section {
    background:
        linear-gradient(rgba(11, 31, 58, .94), rgba(11, 31, 58, .94)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 72px);
    padding: 76px 0;
}

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .75s ease, transform .75s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal:nth-child(2) {
    transition-delay: .08s;
}

.reveal:nth-child(3) {
    transition-delay: .16s;
}

.reveal:nth-child(4) {
    transition-delay: .24s;
}

.counter-box {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    padding: 26px 12px;
}

.counter-box strong {
    color: var(--accent);
    display: block;
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1;
}

.counter-box span {
    color: #fff;
    display: block;
    font-weight: 800;
    margin-top: 10px;
}

.testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card h3 {
    color: var(--primary);
    font-size: 1rem;
    margin: 22px 0 0;
}

.contact-copy {
    position: sticky;
    top: 110px;
}

.contact-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.contact-list a,
.contact-list span {
    align-items: center;
    color: var(--primary);
    display: flex;
    font-weight: 800;
    gap: 12px;
}

.contact-list i {
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--secondary);
    display: inline-flex;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.quote-form {
    padding: 32px;
}

.quote-form label {
    color: var(--primary);
    display: block;
    font-weight: 800;
    margin-bottom: 8px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    background: var(--surface-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    display: block;
    min-height: 52px;
    padding: 12px 14px;
    transition: var(--transition);
    width: 100%;
}

.quote-form textarea {
    resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    background: #fff;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(247, 148, 29, .14);
    outline: 0;
}

.form-status {
    color: var(--primary);
    font-weight: 800;
    margin: 14px 0 0;
    min-height: 26px;
}

.footer-area {
    background: #091425;
    color: #fff;
    padding-top: 72px;
}

.footer-widget h2,
.footer-widget h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 18px;
}

.footer-widget p,
.footer-widget li,
.footer-widget a {
    color: rgba(255, 255, 255, .74);
}

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

.footer-widget a {
    transition: var(--transition);
}

.footer-widget a:hover {
    color: var(--accent);
}

.footer-widget i {
    color: var(--secondary);
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 48px;
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, .68);
    margin: 0;
}

.footer-widget .img-logo {
    width: 250px;
}

.floating-call,
#backToTop {
    align-items: center;
    border: 0;
    border-radius: 50%;
    bottom: 24px;
    box-shadow: var(--shadow-sm);
    color: #fff;
    display: inline-flex;
    height: 54px;
    justify-content: center;
    position: fixed;
    transition: var(--transition);
    width: 54px;
    z-index: 999;
}

.floating-call {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    right: 90px;
}

#backToTop {
    background: var(--primary);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    right: 24px;
    transform: translateY(8px);
}

#backToTop.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.floating-call:hover,
#backToTop:hover {
    color: #fff;
    transform: translateY(-4px);
}

@media (max-width: 1199px) {
    .fleet-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .custom-navbar {
        background: rgba(11, 31, 58, .97);
        padding: 12px 0;
    }

    .navbar-collapse {
        display: none;
        padding: 18px 0 4px;
    }

    .navbar-collapse.show {
        display: block;
    }

    .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }

    .nav-link::after {
        display: none;
    }

    .quote-btn {
        margin-top: 12px;
        width: 100%;
    }

    .hero-section {
        padding-top: 96px;
    }

    .hero-section .min-vh-100 {
        min-height: auto !important;
        padding: 54px 0 120px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        margin: 0 auto;
        max-width: 520px;
    }

    .service-strip {
        margin-top: -44px;
    }

    .about-content,
    .contact-copy {
        position: static;
    }

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

    .stack-card,
    .stack-card-one,
    .stack-card-two,
    .stack-card-three,
    .stack-card-four {
        position: relative;
        top: auto;
    }

    .parallax-section {
        min-height: 360px;
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 76px 0;
    }

    .hero-section .min-vh-100 {
        padding-top: 0;
    }

    .about-visual img {
    height: 400px;
}

a.navbar-brand img {
    width: 200px;
}


.parallax-content .col-md-4 {
    text-align: left !important;
}

    .feature-grid,
    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        min-height: 390px;
    }

    .service-visual {
        height: 190px;
    }

    .quote-form {
        padding: 24px;
    }

    .stack-card {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 26px;
    }

    .stack-card p {
        grid-column: 1;
    }
}

@media (max-width: 575px) {
    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-content h1 {
        font-size: 2.35rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 300px;
    }

    .truck-illustration {
        transform: scale(.82);
        transform-origin: center bottom;
    }

    .service-mini-card,
    .service-content,
    .fleet-card,
    .testimonial-card,
    .quote-form {
        padding: 22px;
    }

    .contact-list a,
    .contact-list span {
        align-items: flex-start;
        overflow-wrap: anywhere;
    }

    .floating-call,
    #backToTop {
        height: 48px;
        width: 48px;
    }

    .floating-call {
        right: 82px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
