﻿
/* =========================================================
           ROOT
        ========================================================= */
:root {
    --yellow: #f7d622;
    --yellow-dark: #d8b900;
    --black: #101010;
    --black-2: #151515;
    --black-3: #1d1d1d;
    --white: #ffffff;
    --off-white: #f5f5f1;
    --soft-white: #eeeeea;
    --text: #161616;
    --muted: #727272;
    --line: rgba(16, 16, 16, 0.11);
    --line-light: rgba(255, 255, 255, 0.12);
    --container: 1680px;
    --gutter: clamp( 20px, 3.2vw, 64px );
    --display: "Barlow Condensed", sans-serif;
    --body: "Inter", sans-serif;
    --ease: cubic-bezier( 0.22, 1, 0.36, 1 );
    --ease-soft: cubic-bezier( 0.16, 1, 0.3, 1 );
}


/* =========================================================
           RESET
        ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}


body {
    font-family: var(--body);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


    body.menu-open {
        overflow: hidden;
    }


img {
    display: block;
    width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea,
select {
    font: inherit;
}


button {
    cursor: pointer;
}


.rms-container {
    width: min( calc(100% - (var(--gutter) * 2)), var(--container) );
    margin-inline: auto;
}


/* =========================================================
           PRELOADER
        ========================================================= */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100dvh;
    padding: 20px;
    background: #fff;
    transition: opacity 0.9s var(--ease), visibility 0.9s ease;
}


    .preloader.hide {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }


/* Main loader width */
.loader-inner {
    width: min(390px, 100%);
    margin: 0 auto;
}


/* Logo area */
.loader-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 0 16px;
}


/* Logo */
.loader-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    line-height: 0;
}


    .loader-brand img {
        display: block;
        width: auto;
        max-width: 100%;
        height: auto;
        max-height: 90px;
        object-fit: contain;
    }


/* Progress line */
.loader-line {
    width: 100%;
    height: 2px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.12);
}


    .loader-line span {
        display: block;
        width: 0;
        height: 100%;
        background: var(--yellow);
        animation: loaderProgress 1.7s var(--ease) forwards;
    }


@keyframes loaderProgress {
    to {
        width: 100%;
    }
}


/* Mobile */
@media (max-width: 576px) {

    .preloader {
        padding: 20px 24px;
    }


    .loader-inner {
        width: min(320px, 100%);
    }


    .loader-top {
        margin-bottom: 14px;
    }


    .loader-brand img {
        max-width: 80%;
        max-height: 70px;
    }


    .loader-line {
        height: 2px;
    }
}

@media (max-width: 576px) {

    .preloader {
        align-items: flex-start;
        padding-top: 30vh;
    }
}


/* Very small phones */
@media (max-width: 360px) {

    .preloader {
        padding-left: 18px;
        padding-right: 18px;
    }


    .loader-inner {
        width: 100%;
    }


    .loader-brand img {
        max-width: 75%;
        max-height: 60px;
    }
}

/* =========================================================
           TOP STRIP
        ========================================================= */

.top-strip {
    position: relative;
    z-index: 1100;
    background: #ededE9;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}


.top-strip-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


.top-info {
    display: flex;
    align-items: center;
    gap: clamp( 18px, 2vw, 42px );
    flex-wrap: wrap;
}


    .top-info span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #5f5f5f;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }


    .top-info i {
        color: #888;
    }


.top-social {
    display: flex;
    align-items: center;
    gap: 6px;
}


    .top-social a {
        width: 28px;
        height: 28px;
        display: grid;
        place-items: center;
        border: 1px solid rgba(0, 0, 0, 0.11);
        color: #555;
        font-size: 11px;
        transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
    }


        .top-social a:hover {
            color: var(--black);
            background: var(--yellow);
            border-color: var(--yellow);
            transform: translateY(-2px);
        }


/* =========================================================
           NAVIGATION
        ========================================================= */
.img-brand {
    height: 85px;
}

@media(max-width:991px) {
    .img-brand {
        height: 60px;
    }
}

.main-nav {
    position: absolute;
    top: 42px;
    left: 0;
    right: 0;
    z-index: 1050;
    transition: top 0.45s var(--ease), background 0.45s var(--ease), box-shadow 0.45s var(--ease);
}


    .main-nav.scrolled {
        position: fixed;
        top: 0;
        background: rgba( 12, 12, 12, 0.94 );
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.18);
    }


.nav-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.brand {
    position: relative;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}


.brand-mark {
    width: 34px;
    height: 34px;
    position: relative;
    display: grid;
    place-items: center;
    background: var(--yellow);
    color: var(--black);
    font-family: var(--display);
    font-size: 17px;
    font-weight: 800;
    line-height: 1;
}


    .brand-mark::before {
        content: "";
        position: absolute;
        inset: 5px;
        border: 1px solid rgba(0, 0, 0, 0.3);
    }


.brand-name {
    color: var(--white);
    font-family: var(--display);
    font-size: clamp( 30px, 2.5vw, 43px );
    font-weight: 800;
    line-height: 0.85;
    letter-spacing: 0.045em;
}


    .brand-name span {
        color: var(--yellow);
    }


.nav-links {
    height: 88px;
    display: flex;
    align-items: stretch;
    gap: clamp( 18px, 2.1vw, 42px );
}


    .nav-links > a,
    .nav-dropdown > a {
        position: relative;
        display: flex;
        align-items: center;
        color: rgba( 255, 255, 255, 0.78 );
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.11em;
        text-transform: uppercase;
        transition: color 0.3s ease;
    }


        .nav-links > a:not(.nav-cta)::after,
        .nav-dropdown > a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 21px;
            width: 0;
            height: 2px;
            background: var(--yellow);
            transition: width 0.45s var(--ease);
        }


        .nav-links > a:hover,
        .nav-dropdown:hover > a {
            color: var(--white);
        }


            .nav-links > a:hover::after,
            .nav-dropdown:hover > a::after {
                width: 100%;
            }


/* =========================================================
           DESKTOP DROPDOWN
        ========================================================= */

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: stretch;
}


.nav-dropdown-menu {
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    width: 325px;
    padding: 8px;
    background: #edede9;
    border-top: 2px solid var(--yellow);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 18px);
    transition: opacity 0.35s var(--ease), visibility 0.35s ease, transform 0.45s var(--ease);
}


.nav-dropdown:hover
.nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}


.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    width: 12px;
    height: 12px;
    background: var(--yellow);
    transform: translateX(-50%) rotate(45deg);
    z-index: -1;
}


.dropdown-heading {
    padding: 16px 16px 11px;
    color: #777;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}


.nav-dropdown-menu a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 53px;
    padding: 0 15px;
    color: #000;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    overflow: hidden;
    transition: color 0.3s ease, padding-left 0.4s var(--ease);
}


    .nav-dropdown-menu a::before {
        content: "";
        position: absolute;
        inset: 0;
        width: 0;
        background: var(--yellow);
        transition: width 0.45s var(--ease);
        z-index: 0;
    }


    .nav-dropdown-menu a i,
    .nav-dropdown-menu a span {
        position: relative;
        z-index: 1;
    }


    .nav-dropdown-menu a i {
        width: 31px;
        height: 31px;
        display: grid;
        place-items: center;
        flex: 0 0 31px;
        color: #5f5f5f;
        border: 1px solid #5f5f5f;
        transition: color 0.35s ease;
    }


    .nav-dropdown-menu a:hover {
        color: var(--black);
        padding-left: 20px;
    }


        .nav-dropdown-menu a:hover::before {
            width: 100%;
        }


        .nav-dropdown-menu a:hover i {
            color: var(--black);
            border-color: rgba( 0, 0, 0, 0.2 );
        }


/* =========================================================
           NAV CTA
        ========================================================= */

.nav-cta {
    align-self: center;
    min-height: 44px;
    padding: 0 21px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--black) !important;
    background: var(--yellow);
    border: 1px solid var(--yellow);
    transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}


    .nav-cta::after {
        display: none !important;
    }


    .nav-cta:hover {
        color: var(--black) !important;
        background: var(--white);
        border-color: var(--white);
        transform: translateY(-2px);
    }


/* =========================================================
           MOBILE TOGGLE
        ========================================================= */

.mobile-toggle {
    display: none;
    position: relative;
    z-index: 5;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--white);
    font-size: 23px;
}


/* =========================================================
           HERO
        ========================================================= */

.hero {
    position: relative;
    height: clamp( 560px, 68vh, 760px );
    min-height: 560px;
    overflow: hidden;
    background: var(--black);
}


.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.1s var(--ease);
}


    .hero-slide.active {
        opacity: 1;
        visibility: visible;
    }


.hero-image {
    position: absolute;
    inset: -2%;
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.65) 36%, rgba(0, 0, 0, 0.22) 72%, rgba(0, 0, 0, 0.4) 100% ), url("https://images.unsplash.com/photo-1574359411659-15573a27fd0c?auto=format&fit=crop&w=2400&q=90") center / cover no-repeat;
    transform: scale(1.08);
    transition: transform 8s var(--ease);
}


.hero-slide:nth-child(2)
.hero-image {
    background-image: linear-gradient( 90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.57) 42%, rgba(0, 0, 0, 0.18) 100% ), url("https://images.unsplash.com/photo-1586864387967-d02ef85d93e8?auto=format&fit=crop&w=2400&q=90");
}


.hero-slide:nth-child(3)
.hero-image {
    background-image: linear-gradient( 90deg, rgba(0, 0, 0, 0.91) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.14) 100% ), url("https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=2400&q=90");
}


.hero-slide.active
.hero-image {
    transform: scale(1);
}


.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient( 180deg, rgba(0, 0, 0, 0.22), transparent 28%, transparent 72%, rgba(0, 0, 0, 0.58) );
}


.hero-content-wrap {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}


.hero-content {
    width: min( 720px, 65% );
    color: var(--white);
}


.hero-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: var(--yellow);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.8s 0.15s var(--ease), transform 0.9s 0.15s var(--ease);
}


    .hero-kicker::before {
        content: "";
        width: 42px;
        height: 2px;
        background: var(--yellow);
    }


.hero-slide.active
.hero-kicker {
    opacity: 1;
    transform: translateY(0);
}


.hero-title {
    font-family: var(--display);
    font-size: clamp( 64px, 7.5vw, 132px );
    font-weight: 800;
    line-height: 0.78;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(45px);
    transition: opacity 1s 0.22s var(--ease), transform 1.15s 0.22s var(--ease);
}


.hero-slide.active
.hero-title {
    opacity: 1;
    transform: translateY(0);
}


.hero-title em {
    color: var(--yellow);
    font-style: normal;
}


.hero-description {
    max-width: 590px;
    margin-top: 28px;
    color: rgba( 255, 255, 255, 0.7 );
    font-size: 12px;
    line-height: 1.85;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s 0.35s var(--ease), transform 1s 0.35s var(--ease);
}


.hero-slide.active
.hero-description {
    opacity: 1;
    transform: translateY(0);
}


.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.8s 0.45s var(--ease), transform 0.9s 0.45s var(--ease);
}


.hero-slide.active
.hero-actions {
    opacity: 1;
    transform: translateY(0);
}


.btn-hero-primary,
.btn-hero-outline {
    min-height: 50px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}


.btn-hero-primary {
    color: var(--black);
    background: #fff;
    border: 1px solid var(--yellow);
}


    .btn-hero-primary:hover {
        color: var(--black);
        background: var(--white);
        border-color: var(--white);
        transform: translateY(-4px);
    }


.btn-hero-outline {
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
}


    .btn-hero-outline:hover {
        color: var(--black);
        background: var(--white);
        border-color: var(--white);
        transform: translateY(-4px);
    }


/* =========================================================
           HERO SIDE PANEL
        ========================================================= */

.hero-side-data {
    position: absolute;
    z-index: 4;
    right: var(--gutter);
    bottom: 88px;
    width: 150px;
    padding: 5px;
    border-left: 1px solid rgba(0, 0, 0, 0.75);
    color: #000;
    border-radius: 10px;
    background: #fff;
    text-align: center;
}


.side-label {
    color: rgba( 0, 0, 0, 1 );
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}


.side-number {
    margin-top: 5px;
    color: var(--yellow);
    font-family: var(--display);
    font-size: clamp( 54px, 5vw, 78px );
    font-weight: 700;
    line-height: 0.85;
}


.side-title {
    margin-top: 9px;
    color: rgba( 255, 255, 255, 0.75 );
    font-size: 10px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}


.side-rule {
    width: 38px;
    height: 1px;
    margin: 18px 0;
    background: rgba( 255, 255, 255, 0.25 );
}


.side-bottom {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: rgba( 255, 255, 255, 0.4 );
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


    .side-bottom strong {
        color: var(--white);
    }


/* =========================================================
           HERO SLIDE NUMBER
        ========================================================= */

.hero-slide-number {
    position: absolute;
    z-index: 4;
    right: var(--gutter);
    top: 50%;
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba( 255, 255, 255, 0.45 );
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.12em;
    transform: translateY(-50%) rotate(90deg);
}


    .hero-slide-number::before {
        content: "";
        width: 40px;
        height: 1px;
        background: rgba( 255, 255, 255, 0.35 );
    }


/* =========================================================
           HERO PROGRESS
        ========================================================= */

.hero-bottom {
    position: absolute;
    z-index: 6;
    left: 0;
    right: 0;
    bottom: 0;
}


.hero-progress-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 var(--gutter);
}


.hero-progress-counter {
    min-width: 70px;
    color: var(--white);
    font-family: var(--display);
    font-size: 16px;
    letter-spacing: 0.04em;
}


    .hero-progress-counter span {
        color: var(--yellow);
    }


.full-progression-bar {
    flex: 1;
    height: 3px;
    overflow: hidden;
    background: rgba( 255, 255, 255, 0.2 );
    cursor: pointer;
}


.full-progression-fill {
    width: 0;
    height: 100%;
    background: var(--yellow);
}


/* =========================================================
           GENERAL SECTION
        ========================================================= */

section {
    position: relative;
    padding: clamp(90px, 9vw, 165px) 0;
}


.eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 17px;
    color: #777;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}


    .eyebrow::before {
        content: "";
        width: 30px;
        height: 2px;
        background: var(--yellow-dark);
    }


.section-title {
    font-family: var(--display);
    font-size: clamp( 57px, 6.2vw, 112px );
    font-weight: 800;
    line-height: 0.8;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}


    .section-title span {
        color: var(--yellow-dark);
    }


.section-description {
    max-width: 610px;
    color: #6d6d6d;
    font-size: 14px;
    line-height: 1.9;
}


/* =========================================================
           REVEAL SYSTEM
        ========================================================= */

.reveal,
.reveal-left,
.reveal-right,
.reveal-scale,
.reveal-clip {
    opacity: 0;
    transition: opacity 0.9s var(--ease), transform 1.1s var(--ease), clip-path 1.2s var(--ease);
}


.reveal {
    transform: translateY(55px);
}


.reveal-left {
    transform: translateX(-70px);
}


.reveal-right {
    transform: translateX(70px);
}


.reveal-scale {
    transform: scale(0.91);
}


.reveal-clip {
    transform: translateY(35px);
    clip-path: inset( 0 0 100% 0 );
}


    .reveal.show,
    .reveal-left.show,
    .reveal-right.show,
    .reveal-scale.show,
    .reveal-clip.show {
        opacity: 1;
        transform: none;
        clip-path: inset( 0 0 0 0 );
    }


[data-delay="1"] {
    transition-delay: 0.1s;
}


[data-delay="2"] {
    transition-delay: 0.2s;
}


[data-delay="3"] {
    transition-delay: 0.3s;
}


[data-delay="4"] {
    transition-delay: 0.4s;
}


[data-delay="5"] {
    transition-delay: 0.5s;
}


/* =========================================================
           CAPABILITIES
        ========================================================= */

.intro-section {
    background: var(--off-white);
}


.section-topline {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 490px);
    align-items: end;
    gap: 60px;
    margin-bottom: 65px;
}


.division-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}


.division-card {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    color: var(--white);
    background: var(--black);
}


.division-card-image {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, transparent 15%, rgba(0, 0, 0, 0.9) 100% ), url("../img/rental-equipment.webp") center / cover no-repeat;
    transform: scale(1);
    transition: transform 1.2s var(--ease);
}


.division-card:nth-child(2)
.division-card-image {
    background-image: linear-gradient( 180deg, transparent 15%, rgba(0, 0, 0, 0.9) 100% ), url("../img/road-safety.webp");
}


.division-card:nth-child(3)
.division-card-image {
    background-image: linear-gradient( 180deg, transparent 15%, rgba(0, 0, 0, 0.9) 100% ), url("../img/civil-infrastructure.webp");
}


.division-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.09);
    pointer-events: none;
}


.division-card:hover
.division-card-image {
    transform: scale(1.08);
}


.division-number {
    position: absolute;
    top: 26px;
    left: 28px;
    z-index: 2;
    color: var(--yellow);
    font-family: var(--display);
    font-size: 20px;
    font-weight: 600;
}


    .division-number::after {
        content: "";
        display: inline-block;
        width: 28px;
        height: 1px;
        margin-left: 9px;
        vertical-align: middle;
        background: var(--yellow);
    }


.division-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 2;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: var(--yellow);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 19px;
    transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.4s var(--ease);
}


.division-card:hover
.division-icon {
    color: var(--black);
    background: var(--yellow);
    transform: translateY(-4px);
}


.division-content {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 32px;
    z-index: 2;
}


    .division-content h3 {
        font-family: var(--display);
        font-size: clamp( 40px, 3.3vw, 62px );
        font-weight: 700;
        line-height: 0.85;
        text-transform: uppercase;
    }


    .division-content p {
        max-width: 430px;
        margin-top: 18px;
        color: rgba( 255, 255, 255, 0.63 );
        font-size: 13px;
        line-height: 1.75;
    }


.division-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 23px;
    color: var(--yellow);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}


    .division-link i {
        transition: transform 0.35s ease;
    }


    .division-link:hover i {
        transform: translateX(7px);
    }


/* =========================================================
           ABOUT
        ========================================================= */

.about-section {
    background: var(--white);
}


.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: clamp( 60px, 8vw, 145px );
}


.about-heading {
    font-family: var(--display);
    font-size: clamp( 62px, 6.5vw, 122px );
    font-weight: 800;
    line-height: 0.78;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}


    .about-heading span {
        color: var(--yellow-dark);
    }


.about-copy {
    max-width: 475px;
    margin-top: 30px;
    color: #6d6d6d;
    font-size: 14px;
    line-height: 1.9;
}


.about-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 50px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}


.metric-number {
    font-family: var(--display);
    font-size: clamp( 43px, 4vw, 66px );
    font-weight: 700;
    line-height: 0.85;
}


    .metric-number::after {
        content: "+";
        color: var(--yellow-dark);
    }


.metric-label {
    margin-top: 9px;
    color: #777;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}


.about-visual {
    position: relative;
    min-height: 650px;
}


.about-main-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 84%;
    height: 590px;
    overflow: hidden;
}


    .about-main-image img {
        height: 100%;
        object-fit: cover;
        transition: transform 1.2s var(--ease);
    }


.about-visual:hover
.about-main-image img {
    transform: scale(1.045);
}


.about-main-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 130deg, rgba(0, 0, 0, 0.2), transparent 50% );
}


.about-mini-image {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 38%;
    height: 270px;
    padding: 12px;
    background: var(--white);
    overflow: hidden;
}


    .about-mini-image img {
        height: 100%;
        object-fit: cover;
    }


.about-badge {
    position: absolute;
    right: 0;
    bottom: 45px;
    width: 145px;
    height: 145px;
    display: grid;
    place-content: center;
    text-align: center;
    color: var(--black);
    background: var(--yellow);
}


    .about-badge strong {
        font-family: var(--display);
        font-size: 49px;
        line-height: 0.8;
    }


    .about-badge span {
        margin-top: 9px;
        font-size: 8px;
        font-weight: 800;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }


/* =========================================================
           FLEET
        ========================================================= */

.fleet-section {
    background: #e9e9e4;
}


.fleet-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 62px;
}


    .fleet-header > p {
        max-width: 430px;
        margin-bottom: 2px;
        color: #666;
        font-size: 13px;
        line-height: 1.8;
    }


.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}


.fleet-card {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    color: var(--white);
    background: var(--black);
}


.fleet-card-image {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, transparent 20%, rgba(0, 0, 0, 0.94) 100% ), url("../img/hydraulic-crane.webp") center / cover no-repeat;
    transition: transform 1.1s var(--ease);
}


.fleet-card:nth-child(2)
.fleet-card-image {
    background-image: linear-gradient( 180deg, transparent 20%, rgba(0, 0, 0, 0.94) 100% ), url("../img/crawler-crane.webp");
}


.fleet-card:nth-child(3)
.fleet-card-image {
    background-image: linear-gradient( 180deg, transparent 20%, rgba(0, 0, 0, 0.94) 100% ), url("../img/scissors-spider-lift.webp");
}


.fleet-card:nth-child(4)
.fleet-card-image {
    background-image: linear-gradient( 180deg, transparent 20%, rgba(0, 0, 0, 0.94) 100% ), url("../img/farana-hydra.webp");
}


.fleet-card:nth-child(5)
.fleet-card-image {
    background-image: linear-gradient( 180deg, transparent 20%, rgba(0, 0, 0, 0.94) 100% ), url("../img/boom-lift.webp");
}


.fleet-card:nth-child(6)
.fleet-card-image {
    background-image: linear-gradient( 180deg, transparent 20%, rgba(0, 0, 0, 0.94) 100% ), url("../img/fork-lift.webp");
}


.fleet-card:hover
.fleet-card-image {
    transform: scale(1.075);
}


.fleet-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}


.fleet-top {
    position: absolute;
    top: 22px;
    left: 23px;
    right: 23px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.fleet-index {
    color: var(--yellow);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.15em;
}


.fleet-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--yellow);
    border: 1px solid rgba(255, 255, 255, 0.75);
  font-size: 22px;
    transition: background 0.4s var(--ease), color 0.4s var(--ease);
}


.fleet-card:hover
.fleet-icon {
    color: var(--black);
    background: var(--yellow);
}


.fleet-card-content {
    position: absolute;
    left: 27px;
    right: 27px;
    bottom: 27px;
    z-index: 2;
}


.fleet-card h3 {
    margin-top: 8px;
    font-family: var(--display);
    font-size: clamp( 38px, 3vw, 57px );
    font-weight: 700;
    line-height: 0.85;
    text-transform: uppercase;
}


.fleet-card p {
    max-width: 400px;
    margin-top: 14px;
    color: rgba( 255, 255, 255, 0.6 );
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
           ROAD SAFETY
        ========================================================= */

.safety-section {
    background: var(--white);
}


.safety-header {
    margin-bottom: 65px;
    text-align: center;
}


    .safety-header .eyebrow {
        justify-content: center;
    }


.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}


.safety-card {
    position: relative;
    min-height: 335px;
    padding: 28px;
    overflow: hidden;
    background: #f1f1ed;
    border: 1px solid transparent;
    transition: transform 0.55s var(--ease), background 0.55s var(--ease), border-color 0.55s var(--ease);
}


    .safety-card:hover {
        transform: translateY(-9px);
        background: var(--white);
        border-color: rgba(0, 0, 0, 0.12);
    }


.safety-number {
    position: absolute;
    top: 20px;
    right: 22px;
    color: #d5d5d0;
    font-family: var(--display);
    font-size: 45px;
    font-weight: 700;
    line-height: 1;
    transition: color 0.4s ease;
}


.safety-card:hover
.safety-number {
    color: var(--yellow);
}


.safety-card-image {
    width: 105px;
    height: 105px;
    margin-bottom: 25px;
    overflow: hidden;
    background: url("../img/cautionary-sign.webp") center / cover no-repeat;
}


.safety-card:nth-child(2)
.safety-card-image {
    background-image: url("../img/mandatory-sign.webp");
}


.safety-card:nth-child(3)
.safety-card-image {
    background-image: url("../img/informatory-sign.webp");
}


.safety-card:nth-child(4)
.safety-card-image {
    background-image: url("../img/work-zone-products.webp");
}


.safety-card:nth-child(5)
.safety-card-image {
    background-image: url("../img/bollards.webp");
}


.safety-card:nth-child(6)
.safety-card-image {
    background-image: url("https://images.unsplash.com/photo-1516939884455-1445c8652f83?auto=format&fit=crop&w=600&q=80");
}


.safety-card h3 {
    font-family: var(--display);
    font-size: 34px;
    font-weight: 700;
    line-height: 0.9;
    text-transform: uppercase;
}


.safety-card p {
    max-width: 380px;
    margin-top: 12px;
    color: #777;
    font-size: 10px;
    line-height: 1.75;
}


.safety-arrow {
    position: absolute;
    right: 25px;
    bottom: 23px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #888;
    border: 1px solid rgba(0, 0, 0, 0.12);
    transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}


.safety-card:hover
.safety-arrow {
    color: var(--black);
    background: var(--yellow);
    border-color: var(--yellow);
    transform: translate(3px, -3px);
}


/* =========================================================
           CIVIL
        ========================================================= */

.civil-section {
    color: var(--white);
    background: var(--black);
}


.civil-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
    align-items: end;
    gap: 80px;
    margin-bottom: 70px;
}


    .civil-header .eyebrow {
        color: #8d8d8d;
    }


    .civil-header > p {
        color: #8d8d8d;
        font-size: 11px;
        line-height: 1.9;
    }


.civil-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 3px;
}


.civil-card {
    position: relative;
    grid-column: span 4;
    min-height: 380px;
    overflow: hidden;
    background: #222;
}


    .civil-card:nth-child(1),
    .civil-card:nth-child(4) {
        grid-column: span 6;
    }


.civil-card-image {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, transparent 15%, rgba(0, 0, 0, 0.92) 100% ), url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1400&q=85") center / cover no-repeat;
    transition: transform 1.1s var(--ease);
}


.civil-card:nth-child(2)
.civil-card-image {
    background-image: linear-gradient( 180deg, transparent 15%, rgba(0, 0, 0, 0.92) 100% ), url("https://images.unsplash.com/photo-1590479773265-7464e5d48118?auto=format&fit=crop&w=1400&q=85");
}


.civil-card:nth-child(3)
.civil-card-image {
    background-image: linear-gradient( 180deg, transparent 15%, rgba(0, 0, 0, 0.92) 100% ), url("https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=1400&q=85");
}


.civil-card:nth-child(4)
.civil-card-image {
    background-image: linear-gradient( 180deg, transparent 15%, rgba(0, 0, 0, 0.92) 100% ), url("https://images.unsplash.com/photo-1516939884455-1445c8652f83?auto=format&fit=crop&w=1400&q=85");
}


.civil-card:nth-child(5)
.civil-card-image {
    background-image: linear-gradient( 180deg, transparent 15%, rgba(0, 0, 0, 0.92) 100% ), url("https://images.unsplash.com/photo-1581094794329-c8112a89af12?auto=format&fit=crop&w=1400&q=85");
}


.civil-card:nth-child(6)
.civil-card-image {
    background-image: linear-gradient( 180deg, transparent 15%, rgba(0, 0, 0, 0.92) 100% ), url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1400&q=85");
}


.civil-card:hover
.civil-card-image {
    transform: scale(1.075);
}


.civil-card-top {
    position: absolute;
    top: 22px;
    left: 25px;
    z-index: 2;
    color: var(--yellow);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.15em;
}


.civil-content {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 27px;
    z-index: 2;
}


    .civil-content h3 {
        font-family: var(--display);
        font-size: clamp( 34px, 3vw, 50px );
        font-weight: 700;
        line-height: 0.87;
        text-transform: uppercase;
    }


    .civil-content p {
        max-width: 430px;
        margin-top: 11px;
        color: rgba( 255, 255, 255, 0.6 );
        font-size: 10px;
        line-height: 1.7;
    }


/* =========================================================
           NETWORK
        ========================================================= */

.family-section {
    overflow: hidden;
    background: var(--yellow);
}


.family-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: 100px;
}


.family-title {
    font-family: var(--display);
    font-size: clamp( 70px, 8vw, 148px );
    font-weight: 800;
    line-height: 0.72;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}


    .family-title span {
        color: var(--white);
    }


.family-copy {
    max-width: 480px;
    margin-top: 30px;
    color: rgba( 0, 0, 0, 0.63 );
    font-size: 14px;
    line-height: 1.9;
}


.family-visual {
    position: relative;
    min-height: 510px;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 35px;
    background: linear-gradient( rgba(0, 0, 0, 0.13), rgba(0, 0, 0, 0.13) ), url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1800&q=85") center / cover no-repeat;
}


.family-stats {
    width: min( 100%, 650px );
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba( 8, 8, 8, 0.91 );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


.family-stat {
    min-height: 175px;
    padding: 27px;
    border-right: 1px solid rgba( 255, 255, 255, 0.12 );
}


    .family-stat:last-child {
        border-right: 0;
    }


.family-stat-number {
    color: var(--yellow);
    font-family: var(--display);
    font-size: clamp( 48px, 4vw, 72px );
    font-weight: 700;
    line-height: 0.82;
}


    .family-stat-number::after {
        content: "+";
    }


.family-stat-label {
    margin-top: 16px;
    color: rgba( 255, 255, 255, 0.58 );
    font-size: 10px;
    font-weight: 700;
    line-height: 1.55;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}


/* =========================================================
           TESTIMONIAL
        ========================================================= */

.testimonial-section {
    background: #f1f1ed;
}


.testimonial-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp( 50px, 8vw, 135px );
}


.testimonial-image {
    height: 620px;
    overflow: hidden;
}


    .testimonial-image img {
        height: 100%;
        object-fit: cover;
        transition: transform 1.2s var(--ease);
    }


    .testimonial-image:hover img {
        transform: scale(1.045);
    }


.quote-panel {
    position: relative;
    margin-top: 18px;
    padding: clamp(30px, 4vw, 48px);
    background: var(--white);
    border-left: 4px solid var(--yellow);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);
}


.quote-mark {
    color: var(--yellow-dark);
    font-family: Georgia, serif;
    font-size: 82px;
    line-height: 0.45;
}


.quote-text {
    margin-top: 22px;
    color: var(--black);
    font-family: var(--display);
    font-size: clamp( 28px, 2.4vw, 42px );
    font-weight: 600;
    line-height: 1.02;
}


.quote-author {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}


    .quote-author strong {
        display: block;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.07em;
        text-transform: uppercase;
    }


    .quote-author span {
        display: block;
        margin-top: 5px;
        color: #888;
        font-size: 12px;
    }


.quote-dots {
    display: flex;
    align-items: center;
    gap: 5px;
}


.quote-dot {
    width: 22px;
    height: 3px;
    padding: 0;
    border: 0;
    background: #d0d0cb;
    transition: width 0.35s var(--ease), background 0.35s ease;
}


    .quote-dot.active {
        width: 40px;
        background: var(--yellow-dark);
    }


/* =========================================================
           CONTACT
        ========================================================= */

.contact-section {
    background: var(--white);
}


.contact-head {
    text-align: center;
}


    .contact-head .eyebrow {
        justify-content: center;
    }


.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    margin-top: 60px;
}


.contact-method {
    min-height: 120px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px;
    background: #f1f1ed;
    transition: background 0.4s var(--ease), color 0.4s var(--ease);
}


    .contact-method:hover {
        color: var(--white);
        background: var(--black);
    }


.contact-method-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    color: var(--black);
    background: var(--yellow);
}


.contact-method small {
    display: block;
    color: #888;
    font-size:12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}


.contact-method a,
.contact-method strong {
    display: block;
    margin-top: 6px;
    font-size: 15px;
    font-weight: 700;
}


.contact-method:hover small {
    color: #aaa;
}


.quote-wrapper {
    position: relative;
    margin-top: 55px;
    padding: clamp(30px, 5vw, 72px);
    overflow: hidden;
    background: #eeeeea;
}


    .quote-wrapper::before {
        content: "QUOTE";
        position: absolute;
        right: -20px;
        top: 20px;
        color: rgba( 0, 0, 0, 0.035 );
        font-family: var(--display);
        font-size: clamp( 130px, 17vw, 300px );
        font-weight: 800;
        line-height: 0.8;
        pointer-events: none;
    }


.quote-title {
    position: relative;
    z-index: 1;
    font-family: var(--display);
    font-size: clamp( 55px, 6vw, 100px );
    font-weight: 800;
    line-height: 0.78;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}


.quote-subtitle {
    position: relative;
    z-index: 1;
    margin-top: 20px;
    color: #777;
    font-size: 15px;
    line-height: 1.8;
}


.quote-form {
    position: relative;
    z-index: 1;
    margin-top: 45px;
}


    .quote-form label {
        display: block;
        margin-bottom: 8px;
        color: #555;
        font-size: 8px;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }


    .quote-form .form-control {
        height: 53px;
        padding: 0 15px;
        color: var(--black);
        background: var(--white);
        border: 1px solid rgba(0, 0, 0, 0.12);
        border-radius: 0;
        box-shadow: none;
        font-size: 11px;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }


    .quote-form
    textarea.form-control {
        height: 145px;
        padding-top: 15px;
        resize: vertical;
    }


    .quote-form
    .form-control:focus {
        border-color: var(--yellow-dark);
        box-shadow: 0 0 0 3px rgba( 247, 214, 34, 0.14 );
    }


.service-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}


.service-check {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    color: #555;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.12);
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.3s ease, border-color 0.3s ease;
}


    .service-check:hover {
        border-color: var(--yellow-dark);
        background: #fffef5;
    }


    .service-check input {
        accent-color: var(--yellow-dark);
    }


/* =========================================================
           FOOTER
        ========================================================= */

.footer {
    position: relative;
    color: var(--white);
    background: #101010;
    padding-top: 85px;
}


.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.8fr 1fr;
    gap: 55px;
    padding-bottom: 70px;
}


.footer-brand-name {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--display);
    font-size: 48px;
    font-weight: 800;
    line-height: 0.8;
    letter-spacing: 0.045em;
}


    .footer-brand-name span {
        color: var(--yellow);
    }


.footer-brand p {
    max-width: 410px;
    margin-top: 20px;
    color: #858585;
    font-size: 14px;
    line-height: 1.9;
}


.footer-social {
    display: flex;
    gap: 6px;
    margin-top: 24px;
}


    .footer-social a {
        width: 36px;
        height: 36px;
        display: grid;
        place-items: center;
        color: #aaa;
        border: 1px solid rgba(255, 255, 255, 0.12);
        font-size: 12px;
        transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    }


        .footer-social a:hover {
            color: var(--black);
            background: var(--yellow);
            border-color: var(--yellow);
        }


.footer-title {
    margin-bottom: 20px;
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}


.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


    .footer-links a {
        color: #858585;
        font-size: 13px;
        transition: color 0.3s ease, transform 0.3s ease;
    }


        .footer-links a:hover {
            color: var(--yellow);
            transform: translateX(5px);
        }


.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}


.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: #858585;
    font-size: 13px;
    line-height: 1.6;
}


    .footer-contact-item i {
        color: var(--yellow);
    }


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}


.footer-bottom-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #666;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}


.back-top {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--black);
    background: var(--yellow);
    transition: transform 0.35s var(--ease), background 0.35s ease;
}


    .back-top:hover {
        background: var(--white);
        transform: translateY(-4px);
    }


/* =========================================================
           LARGE DESKTOP
        ========================================================= */

@media (min-width: 1800px) {

    :root {
        --container: 1780px;
    }


    .nav-inner {
        min-height: 96px;
    }


    .nav-links {
        height: 96px;
    }


    .hero {
        height: 720px;
    }


    .division-card {
        min-height: 650px;
    }


    .fleet-card {
        min-height: 560px;
    }


    .safety-card {
        min-height: 355px;
    }


    .civil-card {
        min-height: 440px;
    }


    .about-main-image {
        height: 650px;
    }


    .about-visual {
        min-height: 710px;
    }
}


@media (min-width: 2200px) {

    :root {
        --container: 2000px;
    }


    .hero {
        height: 780px;
    }


    .division-card {
        min-height: 720px;
    }


    .fleet-card {
        min-height: 620px;
    }


    .civil-card {
        min-height: 490px;
    }


    section {
        padding-top: 185px;
        padding-bottom: 185px;
    }
}


/* =========================================================
           TABLET
        ========================================================= */

@media (max-width: 1200px) {

    .nav-links {
        gap: 15px;
    }


        .nav-links > a,
        .nav-dropdown > a {
            font-size: 9px;
        }


    .nav-cta {
        padding-inline: 15px;
    }


    .about-grid,
    .family-grid {
        gap: 55px;
    }


    .fleet-grid,
    .division-grid,
    .safety-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .civil-card,
    .civil-card:nth-child(1),
    .civil-card:nth-child(4) {
        grid-column: span 6;
    }


    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
           MOBILE NAVIGATION
        ========================================================= */

@media (max-width: 991px) {

    .top-strip {
        display: none;
    }


    .main-nav {
        top: 0;
    }


        .main-nav.scrolled {
            background: rgba( 15, 15, 15, 0.96 );
        }


    .nav-inner {
        min-height: 76px;
    }


    .mobile-toggle {
        display: grid;
        place-items: center;
    }


    .nav-links {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100dvh;
        padding: 105px var(--gutter) 35px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        overflow-y: auto;
        background: rgba( 13, 13, 13, 0.98 );
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        transform: translateX(100%);
        transition: transform 0.6s var(--ease);
    }


        .nav-links.open {
            transform: translateX(0);
        }


        .nav-links > a,
        .nav-dropdown > a {
            min-height: 62px;
            justify-content: space-between;
            border-bottom: 1px solid rgba( 255, 255, 255, 0.09 );
            color: var(--white);
            font-size: 12px;
        }


            .nav-links > a:not(.nav-cta)::after,
            .nav-dropdown > a::after {
                display: none;
            }


    .nav-dropdown {
        display: block;
    }


    .nav-dropdown-menu {
        position: static;
        width: 100%;
        padding: 0;
        border-top: 0;
        box-shadow: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
    }


    .nav-dropdown:hover
    .nav-dropdown-menu {
        display: none;
    }


    .nav-dropdown.open
    .nav-dropdown-menu {
        display: block;
    }


    .nav-dropdown-menu::before {
        display: none;
    }


    .nav-dropdown-menu a {
        min-height: 51px;
    }


    .nav-cta {
        margin-top: 20px;
        justify-content: center !important;
    }


    .hero {
        height: 650px;
        min-height: 620px;
    }


    .hero-content {
        width: 78%;
        padding-top: 45px;
    }


    .hero-side-data,
    .hero-slide-number {
        display: none;
    }


    .section-topline,
    .civil-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }


    .about-grid,
    .testimonial-grid,
    .family-grid {
        grid-template-columns: 1fr;
    }


    .about-visual {
        min-height: 610px;
    }


    .family-visual {
        min-height: 450px;
    }


    .testimonial-image {
        height: 500px;
    }


    .contact-methods {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
           MOBILE
        ========================================================= */

@media (max-width: 767px) {

    :root {
        --gutter: 20px;
    }


    section {
        padding: 78px 0;
    }


    .hero {
        height: 690px;
        min-height: 650px;
    }


    .hero-image {
        background-position: 63% center;
    }


    .hero-content {
        width: 100%;
        padding-top: 35px;
    }


    .hero-title {
        font-size: clamp( 60px, 17vw, 96px );
    }


    .hero-description {
        max-width: 430px;
        margin-top: 24px;
        font-size: 11px;
    }


    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        max-width: 310px;
    }


    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
    }


    .hero-progress-counter {
        min-width: 55px;
    }


    .division-grid,
    .fleet-grid,
    .safety-grid {
        grid-template-columns: 1fr;
    }


    .division-card {
        min-height: 500px;
    }


    .fleet-card {
        min-height: 475px;
    }


    .safety-card {
        min-height: 300px;
    }


    .about-main-image {
        width: 90%;
        height: 490px;
    }


    .about-mini-image {
        width: 48%;
        height: 205px;
        padding: 9px;
    }


    .about-badge {
        width: 112px;
        height: 112px;
        bottom: 25px;
    }


        .about-badge strong {
            font-size: 37px;
        }


    .about-metrics {
        gap: 10px;
    }


    .metric-number {
        font-size: 42px;
    }


    .metric-label {
        font-size: 7px;
    }


    .civil-card,
    .civil-card:nth-child(1),
    .civil-card:nth-child(4) {
        grid-column: span 12;
        min-height: 330px;
    }


    .family-visual {
        min-height: 430px;
        padding: 15px;
    }


    .family-stats {
        width: 100%;
    }


    .family-stat {
        min-height: 140px;
        padding: 18px;
    }


    .family-stat-number {
        font-size: 42px;
    }


    .family-stat-label {
        font-size: 7px;
    }


    .testimonial-image {
        height: 400px;
    }


    .quote-panel {
        padding: 27px;
    }


    .quote-text {
        font-size: 30px;
    }


    .footer-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }


    .footer {
        padding-top: 70px;
    }
}


/* =========================================================
           SMALL MOBILE
        ========================================================= */

@media (max-width: 400px) {

    .brand-name {
        font-size: 27px;
    }


    .brand-mark {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }


    .hero {
        min-height: 650px;
    }


    .hero-title {
        font-size: 57px;
    }


    .division-card,
    .fleet-card {
        min-height: 450px;
    }


    .about-visual {
        min-height: 530px;
    }


    .about-main-image {
        height: 425px;
    }


    .about-mini-image {
        height: 170px;
    }


    .about-badge {
        width: 98px;
        height: 98px;
    }


        .about-badge strong {
            font-size: 31px;
        }


    .family-stats {
        grid-template-columns: 1fr;
    }


    .family-stat {
        min-height: 100px;
        border-right: 0;
        border-bottom: 1px solid rgba( 255, 255, 255, 0.12 );
    }


        .family-stat:last-child {
            border-bottom: 0;
        }


    .footer-brand-name {
        font-size: 42px;
    }
}


/* =========================================================
           REDUCED MOTION
        ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* =========================================================
           PREMIUM TARGETED REFINEMENT
           Keeps the original structure and content intact.
        ========================================================= */

/* ---------------------------------------------------------
           PREMIUM REVEAL POLISH
        --------------------------------------------------------- */

.reveal,
.reveal-left,
.reveal-right,
.reveal-scale,
.reveal-clip {
    will-change: opacity, transform, clip-path;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

    .reveal.show,
    .reveal-left.show,
    .reveal-right.show,
    .reveal-scale.show,
    .reveal-clip.show {
        transition-timing-function: var(--ease-soft);
    }

.civil-card,
.safety-card {
    isolation: isolate;
    will-change: transform;
}

    .civil-card::before,
    .safety-card::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 4;
        pointer-events: none;
        border: 1px solid rgba(16, 16, 16, 0.08);
        transition: border-color 0.45s var(--ease), box-shadow 0.55s var(--ease);
    }

    .civil-card:hover::before,
    .safety-card:hover::before {
        border-color: rgba(247, 214, 34, 0.72);
        box-shadow: 0 24px 60px rgba(16, 16, 16, 0.12);
    }

/* ---------------------------------------------------------
           CIVIL DIVISION
           Light premium product-card treatment
        --------------------------------------------------------- */

.civil-section {
    color: var(--text);
    background: var(--off-white);
}

.civil-header .eyebrow {
    color: #777;
}

.civil-header > p {
    color: #6d6d6d;
}

.civil-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.civil-card,
.civil-card:nth-child(1),
.civil-card:nth-child(4) {
    grid-column: auto;
    min-height: 455px;
    background: var(--white);
    color: var(--text);
    border: 1px solid rgba(16, 16, 16, 0.07);
    box-shadow: 0 8px 30px rgba(16, 16, 16, 0.045);
    transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease), border-color 0.45s var(--ease);
}

    .civil-card:hover {
        transform: translateY(-10px);
        border-color: rgba(247, 214, 34, 0.72);
        box-shadow: 0 30px 70px rgba(16, 16, 16, 0.13);
    }

.civil-card-image {
    inset: 0 0 auto 0;
    height: 61%;
    background: linear-gradient( 180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.08) 55%, rgba(0, 0, 0, 0.52) 100% ), url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1400&q=85") center / cover no-repeat;
    transition: transform 1.15s var(--ease);
}

.civil-card:nth-child(2) .civil-card-image {
    background-image: linear-gradient( 180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.08) 55%, rgba(0, 0, 0, 0.52) 100% ), url("https://images.unsplash.com/photo-1590479773265-7464e5d48118?auto=format&fit=crop&w=1400&q=85");
}

.civil-card:nth-child(3) .civil-card-image {
    background-image: linear-gradient( 180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.08) 55%, rgba(0, 0, 0, 0.52) 100% ), url("https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=1400&q=85");
}

.civil-card:nth-child(4) .civil-card-image {
    background-image: linear-gradient( 180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.08) 55%, rgba(0, 0, 0, 0.52) 100% ), url("https://images.unsplash.com/photo-1516939884455-1445c8652f83?auto=format&fit=crop&w=1400&q=85");
}

.civil-card:nth-child(5) .civil-card-image {
    background-image: linear-gradient( 180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.08) 55%, rgba(0, 0, 0, 0.52) 100% ), url("https://images.unsplash.com/photo-1581094794329-c8112a89af12?auto=format&fit=crop&w=1400&q=85");
}

.civil-card:nth-child(6) .civil-card-image {
    background-image: linear-gradient( 180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.08) 55%, rgba(0, 0, 0, 0.52) 100% ), url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1400&q=85");
}

.civil-card:hover .civil-card-image {
    transform: scale(1.07);
}

.civil-card-top {
    top: 20px;
    left: 22px;
    padding: 7px 10px;
    color: var(--black);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 8px;
    letter-spacing: 0.13em;
    border-left: 2px solid var(--yellow);
}

.civil-content {
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 42%;
    padding: 24px 25px 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: var(--white);
    border-top: 1px solid rgba(16, 16, 16, 0.07);
}

    .civil-content h3 {
        color: var(--black);
        font-size: clamp(32px, 2.55vw, 48px);
    }

    .civil-content p {
        margin-top: 10px;
        color: #707070;
        font-size: 10px;
        line-height: 1.75;
    }

/* ---------------------------------------------------------
           ROAD SAFETY
           Match the same premium product-card language
        --------------------------------------------------------- */

.safety-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.safety-card {
    min-height: 455px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: var(--white);
    border: 1px solid rgba(16, 16, 16, 0.07);
    box-shadow: 0 8px 30px rgba(16, 16, 16, 0.045);
    transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease), border-color 0.45s var(--ease);
}

    .safety-card:hover {
        transform: translateY(-10px);
        background: var(--white);
        border-color: rgba(247, 214, 34, 0.72);
        box-shadow: 0 30px 70px rgba(16, 16, 16, 0.13);
    }

.safety-number {
    top: 18px;
    right: 18px;
    z-index: 5;
    min-width: 42px;
    padding: 8px 9px;
    text-align: center;
    color: var(--black);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 16px;
}

.safety-card:hover .safety-number {
    color: var(--black);
}

.safety-card-image {
    width: 100%;
    height: 235px;
    flex: 0 0 235px;
    margin: 0;
    background-position: center;
    transition: transform 1.05s var(--ease), filter 0.6s var(--ease);
}

.safety-card:hover .safety-card-image {
    transform: scale(1.045);
    filter: saturate(1.08);
}

.safety-card h3 {
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 25px 28px 0;
    color: var(--black);
    font-size: clamp(30px, 2.5vw, 45px);
}

.safety-card p {
    position: relative;
    z-index: 2;
    max-width: 390px;
    margin: 10px 0 0;
    padding: 0 70px 28px 28px;
    color: #707070;
    font-size: 14px;
    line-height: 1.75;
}

.safety-arrow {
    right: 25px;
    bottom: 25px;
    z-index: 5;
    width: 42px;
    height: 42px;
    color: var(--black);
    background: #f5f5f1;
    border-color: rgba(16, 16, 16, 0.1);
    transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.4s var(--ease);
}

.safety-card:hover .safety-arrow {
    color: var(--black);
    background: var(--yellow);
    border-color: var(--yellow);
    transform: translate(3px, -3px);
}

/* ---------------------------------------------------------
           LIGHT PREMIUM FOOTER
        --------------------------------------------------------- */

.footer {
    color: var(--black);
    background: var(--off-white);
    border-top: 1px solid rgba(16, 16, 16, 0.08);
}

.footer-brand-name {
    color: var(--black);
}

    .footer-brand-name span {
        color: var(--yellow-dark);
    }

.footer-brand p,
.footer-links a,
.footer-contact-item {
    color: #707070;
}

.footer-title {
    color: var(--black);
}

.footer-social a {
    color: #666;
    border-color: rgba(16, 16, 16, 0.12);
}

    .footer-social a:hover {
        color: var(--black);
        background: var(--yellow);
        border-color: var(--yellow);
    }

.footer-links a:hover {
    color: var(--black);
}

.footer-contact-item i {
    color: var(--yellow-dark);
}

.footer-bottom {
    border-top-color: rgba(16, 16, 16, 0.09);
}

.footer-bottom-inner {
    color: #777;
}

/* ---------------------------------------------------------
           LARGE-SCREEN FLUIDITY
        --------------------------------------------------------- */

@media (min-width: 1600px) {
    .civil-grid,
    .safety-grid {
        gap: 22px;
    }

    .civil-card,
    .safety-card {
        min-height: 485px;
    }

    .safety-card-image {
        height: 255px;
        flex-basis: 255px;
    }
}

@media (min-width: 2200px) {
    .civil-grid,
    .safety-grid {
        gap: 26px;
    }

    .civil-card,
    .safety-card {
        min-height: 525px;
    }

    .civil-card-image {
        height: 62%;
    }

    .safety-card-image {
        height: 285px;
        flex-basis: 285px;
    }
}

/* ---------------------------------------------------------
           TABLET / MOBILE CARD BALANCE
        --------------------------------------------------------- */

@media (max-width: 1200px) {
    .civil-grid,
    .safety-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .civil-card,
    .civil-card:nth-child(1),
    .civil-card:nth-child(4) {
        grid-column: auto;
    }
}

@media (max-width: 767px) {
    .civil-grid,
    .safety-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .civil-card,
    .civil-card:nth-child(1),
    .civil-card:nth-child(4),
    .safety-card {
        min-height: 430px;
    }

    .civil-card-image {
        height: 58%;
    }

    .civil-content {
        min-height: 46%;
        padding: 22px 21px 22px;
    }

    .civil-card-top {
        left: 18px;
        top: 18px;
    }

    .civil-content h3,
    .safety-card h3 {
        font-size: 34px;
    }

    .safety-card-image {
        height: 215px;
        flex-basis: 215px;
    }

    .safety-card h3 {
        padding: 22px 22px 0;
    }

    .safety-card p {
        padding: 0 65px 24px 22px;
    }

    .safety-arrow {
        right: 20px;
        bottom: 20px;
    }
}

@media (max-width: 400px) {
    .civil-card,
    .civil-card:nth-child(1),
    .civil-card:nth-child(4),
    .safety-card {
        min-height: 405px;
    }

    .civil-card-image {
        height: 56%;
    }

    .safety-card-image {
        height: 195px;
        flex-basis: 195px;
    }
}



/* =========================================================
           FINAL LIGHT / SEPARATED NAV + HERO REFINEMENT
        ========================================================= */

/* Keep the navigation completely separate from the slider. */
.main-nav {
    position: relative !important;
    top: 0 !important;
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff !important;
    border-bottom: 1px solid #e9e9e9;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

    .main-nav.scrolled {
        position: fixed !important;
        top: 0 !important;
        background: rgba(255, 255, 255, 0.97) !important;
        border-bottom: 1px solid #e7e7e7;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    }

.brand-name {
    color: #111111 !important;
}

.nav-links > a,
.nav-dropdown > a {
    color: #202020 !important;
}

    .nav-links > a:hover,
    .nav-dropdown:hover > a {
        color: #111111 !important;
    }

.main-nav .mobile-toggle {
    color: #111111 !important;
    border-color: #dddddd !important;
}

/* Give the complete page a clean light foundation. */
body,
section:not(.hero):not(.family-section),
.main-content,
.page-section {
    background-color: #ffffff !important;
}

/* Keep the slider photographic, but remove the heavy black wash. */
.hero {
    background: #f5f5f5 !important;
}

.hero-image {
    background-image: linear-gradient( 90deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.18) 42%, rgba(0, 0, 0, 0.03) 78%, rgba(0, 0, 0, 0.10) 100% ), url("https://images.unsplash.com/photo-1574359411659-15573a27fd0c?auto=format&fit=crop&w=2400&q=90") !important;
}

.hero-slide:nth-child(2) .hero-image {
    background-image: linear-gradient( 90deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.16) 45%, rgba(0, 0, 0, 0.04) 100% ), url("https://images.unsplash.com/photo-1586864387967-d02ef85d93e8?auto=format&fit=crop&w=2400&q=90") !important;
}

.hero-slide:nth-child(3) .hero-image {
    background-image: linear-gradient( 90deg, rgba(0, 0, 0, 0.44) 0%, rgba(0, 0, 0, 0.17) 46%, rgba(0, 0, 0, 0.04) 100% ), url("https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=2400&q=90") !important;
}

.hero::before {
    background: linear-gradient( 180deg, rgba(0, 0, 0, 0.06), transparent 32%, transparent 76%, rgba(0, 0, 0, 0.16) ) !important;
}

/* Established 49 Years — white, clean and highly visible. */
.hero-side-data .side-label,
.hero-side-data .side-title,
.hero-side-data .side-bottom,
.hero-side-data .side-bottom strong {
    color: #000 !important;
}

.hero-side-data .side-number {
    text-shadow: 0 3px 18px rgba(255, 255, 255, 0.20);
    color: #f8d021;
}

/* Full-width progression line across the entire slider. */
.hero-bottom {
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    padding: 0 !important;
}

.hero-progress-wrap {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.full-progression-bar {
    display: block !important;
    width: 100% !important;
    height: 4px !important;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.38) !important;
}

.full-progression-fill {
    background: #f7d622 !important;
}

/* Slide counter remains available without affecting the full-width line. */
.hero-progress-counter {
    position: absolute !important;
    right: clamp(20px, 3vw, 55px) !important;
    bottom: 16px !important;
    min-width: auto !important;
    color: #ffffff !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

@media (max-width: 991.98px) {
    .main-nav,
    .main-nav.scrolled {
        position: relative !important;
        top: 0 !important;
    }

    .nav-links {
        background: #ffffff !important;
    }

        .nav-links > a,
        .nav-dropdown > a {
            color: #171717 !important;
        }
}

@media (max-width: 575.98px) {
    .hero-progress-counter {
        right: 16px !important;
        bottom: 13px !important;
    }

    .full-progression-bar {
        height: 3px !important;
    }
}
