/* ============================================================
   RESET & VARIABLES
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --coral: #FF4040;
    --coral-hover: #e63a3a;
    --coral-glow: rgba(255, 64, 64, 0.25);
    --teal: #069494;
    --teal-dark: #058080;
    --teal-glow: rgba(6, 148, 148, 0.25);
    --white: #ffffff;
    --dark: #0a0e14;
    --gray: #8a9ba8;
    --gray-dark: #2a3a42;
    --off-white: #f6f8fa;
    --shadow-sm: 0 8px 32px rgba(6, 148, 148, 0.10);
    --shadow-lg: 0 24px 64px rgba(6, 148, 148, 0.15);
    --shadow-xl: 0 40px 80px rgba(6, 148, 148, 0.20);
    --radius: 24px;
    --radius-sm: 14px;
    --transition: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
}
button {
    border: none;
    font-family: inherit;
    cursor: pointer;
}
img {
    max-width: 100%;
    display: block;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================================
   LOADING SCREEN
   ============================================================ */
#loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease, visibility 1s ease;
    opacity: 1;
    visibility: visible;
}
#loader.hidden {
    opacity: 0;
    visibility: hidden;
}
#loader .logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 64px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 4px;
    animation: pulseLogo 1.4s ease-in-out infinite;
}
#loader .logo span {
    color: var(--coral);
}
@keyframes pulseLogo {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.06); opacity: 0.8; }
}
#loader .bar {
    margin-top: 30px;
    width: 180px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}
#loader .bar .fill {
    width: 0%;
    height: 100%;
    background: var(--coral);
    border-radius: 4px;
    animation: loadBar 1.8s ease forwards;
}
@keyframes loadBar {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ============================================================
   TOP RIBBON (BIGGER FONT)
   ============================================================ */
#top-ribbon {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;
    background: var(--dark);
    padding: 10px 0;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
#top-ribbon .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 20px;
}
#top-ribbon .left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
#top-ribbon .left a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
    font-weight: 500;
    font-size: 16px;
}
#top-ribbon .left a:hover {
    color: var(--coral);
}
#top-ribbon .left .sep {
    color: rgba(255, 255, 255, 0.15);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
    position: fixed;
    top: 44px;
    left: 0;
    width: 100%;
    z-index: 1001;
    padding: 12px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
nav.scrolled {
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
}
.nav-logo {
    display: flex;
    align-items: center;
}
.nav-logo img {
    height: 44px;
    width: auto;
    max-height: 50px;
    object-fit: contain;
}
.nav-logo .logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: 2px;
}
.nav-logo .logo-text span {
    color: var(--coral);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: var(--dark);
    transition: color 0.3s;
    text-transform: uppercase;
    position: relative;
    font-family: 'Orbitron', sans-serif;
    opacity: 0.7;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: width 0.3s;
}
.nav-links a:hover::after {
    width: 100%;
}
.nav-links a:hover {
    opacity: 1;
    color: var(--dark);
}
.nav-cta {
    background: var(--coral);
    color: #fff !important;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 700;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(255, 64, 64, 0.25);
    font-family: 'Orbitron', sans-serif;
    opacity: 1 !important;
}
.nav-cta:hover {
    background: var(--coral-hover) !important;
    transform: scale(1.04);
    box-shadow: 0 8px 32px rgba(255, 64, 64, 0.35);
    opacity: 1 !important;
}
.nav-cta::after {
    display: none !important;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 8px;
    z-index: 1001;
}
.hamburger span {
    width: 28px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 4px;
    transition: 0.3s;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 40px;
}
.mobile-nav.open {
    transform: translateY(0);
}
.mobile-nav a {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s;
    font-family: 'Orbitron', sans-serif;
}
.mobile-nav a:hover {
    color: var(--coral);
}
.mobile-nav .nav-cta-mobile {
    background: var(--coral);
    padding: 14px 48px;
    border-radius: 50px;
    font-size: 18px;
    color: #fff !important;
    box-shadow: 0 4px 24px rgba(255, 64, 64, 0.3);
}
.mobile-nav .nav-cta-mobile:hover {
    color: #fff !important;
}

/* ============================================================
   HERO (REDESIGNED)
   ============================================================ */
/* ============================================================
   V LIFT RENTAL
   PREMIUM HERO SECTION
   ============================================================ */


#hero {

    position: relative;

    min-height: calc(100vh - 76px);

    display: flex;

    align-items: center;

    padding: 65px 0 55px;

    margin-top: 76px;

    background:

        radial-gradient(
            circle at 85% 30%,
            rgba(255, 64, 64, 0.045),
            transparent 35%
        ),

        #2f343a;

    overflow: hidden;
}


/* ============================================================
   SUBTLE TECHNICAL BACKGROUND GRID
   ============================================================ */

#hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(
            rgba(255,255,255,0.018) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,0.018) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image:

        linear-gradient(
            to right,
            black,
            transparent 78%
        );

    -webkit-mask-image:

        linear-gradient(
            to right,
            black,
            transparent 78%
        );

    pointer-events: none;

    opacity: 0.55;
}


/* ============================================================
   MAIN GRID
   ============================================================ */

.hero-grid {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1380px;

    margin: 0 auto;

    padding: 0 45px;

    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);

    gap: 55px;

    align-items: center;
}


/* ============================================================
   LEFT CONTENT
   ============================================================ */

.hero-content-left {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    max-width: 680px;
}


/* ============================================================
   BADGE
   ============================================================ */

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 9px 18px;

    margin-bottom: 25px;

    width: fit-content;

    border-radius: 999px;

    background:
        rgba(255,64,64,0.08);

    border:
        1px solid rgba(255,64,64,0.28);

    color:
        var(--coral);

    font-family:
        'Orbitron',
        sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    white-space: nowrap;
}


/* ============================================================
   PULSE DOT
   ============================================================ */

.pulse-dot {

    width: 7px;

    height: 7px;

    flex-shrink: 0;

    border-radius: 50%;

    background:
        var(--coral);

    animation:
        heroPulse 2s
        ease-in-out
        infinite;
}


@keyframes heroPulse {

    0%,
    100% {

        box-shadow:
            0 0 0 0
            rgba(255,64,64,0.45);

    }

    70% {

        box-shadow:
            0 0 0 7px
            rgba(255,64,64,0);

    }

}


/* ============================================================
   MAIN HEADING
   ============================================================ */

.hero-heading {

    margin: 0;

    padding: 0;

    max-width: 660px;

    font-family:
        'Orbitron',
        sans-serif;

    font-size:
        clamp(
            38px,
            3.25vw,
            52px
        );

    font-weight: 900;

    line-height: 1.08;

    letter-spacing: -1.5px;

    color:
        #ffffff;
}


/* Heading Lines */

.hero-heading-line {

    display: block;

    white-space: nowrap;
}


/* Highlight */

.hero-heading-highlight {

    display: block;

    margin-top: 5px;

    color:
        var(--coral);

    white-space: nowrap;
}


/* ============================================================
   SMALL ACCENT LINE
   ============================================================ */

.hero-accent-line {

    width: 50px;

    height: 3px;

    margin-top: 18px;

    border-radius: 10px;

    background:
        var(--coral);
}


/* ============================================================
   DESCRIPTION
   ============================================================ */

.hero-desc {

    max-width: 620px;

    margin:

        23px 0 0;

    color:

        rgba(255,255,255,0.66);

    font-family:

        'Inter',
        Arial,
        sans-serif;

    font-size: 15px;

    line-height: 1.75;

    font-weight: 400;
}


.hero-desc strong {

    color:
        #ffffff;

    font-weight:
        650;
}


/* ============================================================
   CTA GROUP
   ============================================================ */

.hero-cta-group {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 27px;
}


/* ============================================================
   BUTTON BASE
   ============================================================ */

.hero-btn {

    height: 55px;

    padding:
        0 28px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border-radius: 999px;

    font-family:
        'Orbitron',
        sans-serif;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    transition:

        transform 0.3s ease,

        box-shadow 0.3s ease,

        background 0.3s ease,

        border-color 0.3s ease;
}


/* ============================================================
   PRIMARY BUTTON
   ============================================================ */

.hero-btn-primary {

    color:
        #ffffff;

    background:
        var(--coral);

    border:
        1px solid var(--coral);

    box-shadow:
        0 12px 30px
        rgba(255,64,64,0.18);
}


.hero-btn-primary:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 17px 38px
        rgba(255,64,64,0.28);
}


.hero-arrow {

    font-size: 18px;

    transition:
        transform 0.3s ease;
}


.hero-btn-primary:hover
.hero-arrow {

    transform:
        translateX(4px);
}


/* ============================================================
   SECONDARY BUTTON
   ============================================================ */

.hero-btn-secondary {

    color:
        #ffffff;

    background:
        rgba(255,255,255,0.025);

    border:
        1px solid
        rgba(255,255,255,0.30);

    backdrop-filter:
        blur(10px);
}


.hero-btn-secondary:hover {

    transform:
        translateY(-3px);

    border-color:
        rgba(255,255,255,0.65);

    background:
        rgba(255,255,255,0.07);
}


/* ============================================================
   STATS ROW
   ============================================================ */

.hero-stats-row {

    display: flex;

    align-items: stretch;

    gap: 22px;

    margin-top: 34px;
}


/* ============================================================
   STAT BLOCK
   ============================================================ */

.stat-block {

    display: flex;

    flex-direction: column;

    min-width: 70px;
}


.stat-number {

    font-family:
        'Orbitron',
        sans-serif;

    font-size: 24px;

    font-weight: 900;

    line-height: 1.1;

    color:
        var(--coral);

    letter-spacing:
        -0.5px;
}


.stat-label {

    margin-top: 5px;

    color:
        rgba(255,255,255,0.46);

    font-size: 10px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* ============================================================
   STAT DIVIDERS
   ============================================================ */

.stat-divider {

    width: 1px;

    min-height: 46px;

    align-self: center;

    background:
        rgba(255,255,255,0.16);
}


/* ============================================================
   RIGHT VISUAL
   ============================================================ */

.hero-visual-right {

    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;

    min-width: 0;

    transform:
        translateY(-25px);
}


/* ============================================================
   CAPTION ABOVE IMAGE
   ============================================================ */

.hero-visual-caption {

    position: absolute;

    top: -63px;

    left: 5px;

    display: flex;

    align-items: center;

    gap: 11px;

    font-family:
        'Orbitron',
        sans-serif;

    z-index: 5;
}


.caption-line {

    width: 28px;

    height: 2px;

    flex-shrink: 0;

    background:
        var(--coral);

    border-radius: 10px;
}


.caption-content {

    display: flex;

    flex-direction: column;

    gap: 4px;
}


.caption-content strong {

    color:
        rgba(255,255,255,0.92);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;
}


.caption-content span {

    color:
        var(--coral);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 1.2px;
}


/* ============================================================
   IMAGE WRAPPER
   ============================================================ */

.hero-image-wrapper {

    position: relative;

    width: 100%;

    max-width: 780px;

    border-radius: 24px;

    overflow: hidden;

    background:
        #111820;

    border:
        1px solid
        rgba(255,255,255,0.08);

    box-shadow:
        0 35px 90px
        rgba(0,0,0,0.55);
}


/* ============================================================
   IMAGE
   ============================================================ */

.hero-image-wrapper img {

    display: block;

    width: 100%;

    aspect-ratio:
        16 / 10;

    object-fit: cover;

    object-position:
        center;

    transition:
        transform 0.8s
        cubic-bezier(.2,.8,.2,1);
}


.hero-image-wrapper:hover img {

    transform:
        scale(1.025);
}


/* ============================================================
   DARK GRADIENT ON IMAGE BOTTOM
   ============================================================ */

.hero-image-wrapper::after {

    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    z-index: 1;

    background:

        linear-gradient(
            to bottom,
            transparent 48%,
            rgba(0,0,0,0.48) 100%
        );
}


/* ============================================================
   EQUIPMENT BAR
   ============================================================ */

.hero-equipment-bar {

    position: absolute;

    z-index: 4;

    left: 0;

    right: 0;

    bottom: 0;

    min-height: 96px;

    padding:
        16px 18px;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    align-items: center;

    background:
        rgba(18,20,23,0.86);

    backdrop-filter:
        blur(16px);

    -webkit-backdrop-filter:
        blur(16px);

    border-top:
        1px solid
        rgba(255,255,255,0.10);
}


/* ============================================================
   EQUIPMENT ITEM
   ============================================================ */

.hero-equipment-item {

    min-width: 0;

    padding:
        0 14px;

    display: flex;

    align-items: center;

    gap: 10px;

    border-right:
        1px solid
        rgba(255,255,255,0.15);
}


.hero-equipment-item:last-child {

    border-right:
        none;
}


/* ============================================================
   EQUIPMENT ICON
   ============================================================ */

.equipment-icon {

    width: 32px;

    height: 32px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(255,64,64,0.45);

    border-radius: 8px;

    background:
        rgba(255,64,64,0.06);

    color:
        var(--coral);

    font-size: 16px;
}


.equipment-info {

    min-width: 0;
}


.equipment-info strong {

    display: block;

    color:
        #ffffff;

    font-family:
        'Orbitron',
        sans-serif;

    font-size: 9px;

    font-weight: 700;

    line-height: 1.3;

    letter-spacing: 0.2px;
}


.equipment-info span {

    display: block;

    margin-top: 4px;

    color:
        rgba(255,255,255,0.48);

    font-size: 9px;

    line-height: 1.2;

    white-space: nowrap;
}


/* ============================================================
   SCROLL INDICATOR
   ============================================================ */

.scroll-indicator {

    position: absolute;

    z-index: 10;

    bottom: 20px;

    left: 50%;

    transform:
        translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 6px;

    color:
        rgba(255,255,255,0.22);

    font-family:
        'Orbitron',
        sans-serif;

    font-size: 8px;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.scroll-arrow {

    font-size: 17px;

    color:
        rgba(255,255,255,0.35);

    animation:
        scrollBounce 1.8s
        ease-in-out
        infinite;
}


@keyframes scrollBounce {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(5px);

    }

}


/* ============================================================
   TABLET — 1200px
   ============================================================ */

@media (max-width: 1200px) {

    .hero-grid {

        grid-template-columns:
            0.95fr 1.05fr;

        gap:
            40px;

        padding:
            0 32px;
    }


    .hero-heading {

        font-size:
            clamp(
                35px,
                3.5vw,
                48px
            );
    }


    .hero-equipment-item {

        padding:
            0 8px;

        gap:
            7px;
    }


    .equipment-icon {

        width:
            28px;

        height:
            28px;

        font-size:
            14px;
    }


    .equipment-info strong {

        font-size:
            8px;
    }


    .equipment-info span {

        font-size:
            8px;
    }

}


/* ============================================================
   TABLET — 992px
   ============================================================ */

@media (max-width: 992px) {

    #hero {

        min-height:
            auto;

        padding:
            75px 0 60px;

        margin-top:
            72px;
    }


    .hero-grid {

        grid-template-columns:
            1fr;

        gap:
            75px;

        padding:
            0 30px;
    }


    .hero-content-left {

        max-width:
            720px;

        margin:
            0 auto;

        align-items:
            center;

        text-align:
            center;
    }


    .hero-heading {

        font-size:
            clamp(
                38px,
                6vw,
                54px
            );
    }


    .hero-accent-line {

        margin-left:
            auto;

        margin-right:
            auto;
    }


    .hero-desc {

        max-width:
            700px;
    }


    .hero-cta-group {

        justify-content:
            center;
    }


    .hero-stats-row {

        justify-content:
            center;
    }


    .hero-visual-right {

        transform:
            translateY(0);

        width:
            100%;
    }


    .hero-image-wrapper {

        max-width:
            850px;
    }


    .hero-visual-caption {

        top:
            -55px;

        left:
            0;
    }


    .scroll-indicator {

        display:
            none;
    }

}


/* ============================================================
   MOBILE — 768px
   ============================================================ */

@media (max-width: 768px) {

    #hero {

        padding:
            60px 0 45px;

        margin-top:
            68px;
    }


    .hero-grid {

        padding:
            0 20px;

        gap:
            60px;
    }


    .hero-badge {

        max-width:
            100%;

        white-space:
            normal;

        text-align:
            center;

        justify-content:
            center;

        font-size:
            9px;

        padding:
            8px 13px;
    }


    .hero-heading {

        font-size:
            clamp(
                29px,
                7vw,
                42px
            );

        line-height:
            1.08;

        letter-spacing:
            -0.8px;
    }


    .hero-heading-line,
    .hero-heading-highlight {

        white-space:
            normal;
    }


    .hero-desc {

        font-size:
            14px;

        line-height:
            1.7;

        margin-top:
            20px;
    }


    .hero-cta-group {

        width:
            100%;

        max-width:
            360px;

        flex-direction:
            column;

        gap:
            10px;
    }


    .hero-btn {

        width:
            100%;

        height:
            53px;
    }


    .hero-stats-row {

        width:
            100%;

        display:
            grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap:
            16px;

        margin-top:
            30px;
    }


    .stat-block {

        align-items:
            center;

        text-align:
            center;

        padding:
            7px;
    }


    .stat-divider {

        display:
            none;
    }


    .stat-number {

        font-size:
            21px;
    }


    .stat-label {

        font-size:
            8px;
    }


    .hero-visual-right {

        transform:
            translateY(0);
    }


    .hero-visual-caption {

        position:
            relative;

        top:
            auto;

        left:
            auto;

        margin-bottom:
            15px;

        justify-content:
            center;
    }


    .hero-image-wrapper {

        border-radius:
            18px;
    }


    .hero-equipment-bar {

        position:
            relative;

        display:
            grid;

        grid-template-columns:
            repeat(2, 1fr);

        min-height:
            auto;

        padding:
            10px;

        gap:
            8px;

        background:
            rgba(15,18,21,0.96);
    }


    .hero-equipment-item {

        padding:
            10px;

        border-right:
            none;

        border-bottom:
            1px solid
            rgba(255,255,255,0.10);
    }


    .hero-equipment-item:nth-child(3),
    .hero-equipment-item:nth-child(4) {

        border-bottom:
            none;
    }

}


/* ============================================================
   SMALL MOBILE — 480px
   ============================================================ */

@media (max-width: 480px) {

    #hero {

        padding:
            50px 0 35px;
    }


    .hero-grid {

        padding:
            0 15px;

        gap:
            50px;
    }


    .hero-heading {

        font-size:
            clamp(
                26px,
                8vw,
                34px
            );

        letter-spacing:
            -0.6px;
    }


    .hero-desc {

        font-size:
            13px;
    }


    .hero-stats-row {

        gap:
            8px;
    }


    .stat-number {

        font-size:
            19px;
    }


    .stat-label {

        font-size:
            7px;

        letter-spacing:
            0.6px;
    }


    .hero-equipment-bar {

        grid-template-columns:
            1fr;
    }


    .hero-equipment-item {

        border-bottom:
            1px solid
            rgba(255,255,255,0.10) !important;
    }


    .hero-equipment-item:last-child {

        border-bottom:
            none !important;
    }


    .caption-content strong {

        font-size:
            9px;
    }


    .caption-content span {

        font-size:
            7px;
    }

}

.btn-primary {
    background: var(--coral);
    color: #fff;
    padding: 18px 48px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 40px rgba(255, 64, 64, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', sans-serif;
    position: relative;
    overflow: hidden;
}
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.btn-primary:hover::after {
    opacity: 1;
}
.btn-primary:hover {
    background: var(--coral-hover);
    transform: translateY(-3px);
    box-shadow: 0 14px 50px rgba(255, 64, 64, 0.45);
}
.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 18px 48px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', sans-serif;
}
.btn-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-3px);
}
.scroll-indicator {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1003;
    color: rgba(255, 255, 255, 0.25);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: floatDown 2.6s ease-in-out infinite;
    font-family: 'Orbitron', sans-serif;
}
.scroll-indicator .line {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
}
@keyframes floatDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-buttons {
    position: fixed;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 14px;
    bottom: 40px;
}
.floating-buttons.left { left: 30px; }
.floating-buttons.right { right: 30px; }
.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.floating-btn:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
.floating-btn .tooltip {
    position: absolute;
    right: calc(100% + 16px);
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateY(-50%) translateX(8px);
}
.floating-btn:hover .tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}
.floating-btn.phone { background: var(--teal); }
.floating-btn.phone:hover { background: var(--teal-dark); }
.floating-btn.whatsapp { background: #25D366; }
.floating-btn.whatsapp:hover { background: #1da851; }

/* ============================================================
   TRUSTED BY
   ============================================================ */
#trusted {
    padding: 50px 0;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
#trusted .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}
#trusted .label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
    font-family: 'Orbitron', sans-serif;
}
.logo-strip {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.5;
}
.logo-strip span {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--dark);
    white-space: nowrap;
    font-family: 'Orbitron', sans-serif;
    transition: opacity 0.3s;
}
.logo-strip span:hover { opacity: 1; }
.logo-strip span small {
    font-weight: 400;
    font-size: 13px;
    opacity: 0.5;
    font-family: 'Inter', sans-serif;
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.section-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--coral);
    margin-bottom: 10px;
    font-family: 'Orbitron', sans-serif;
}
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -1.5px;
    color: var(--dark);
    margin-bottom: 12px;
}
.section-title .highlight { color: var(--coral); }
.section-desc {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
}

/* ============================================================
   SEARCH / FILTER SECTION
   ============================================================ */
#search {
    padding: 80px 0 60px;
    background: var(--off-white);
}
.search-form {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: var(--radius);
    padding: 40px 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.search-form .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}
.search-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.search-form .form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.5px;
}
.search-form .form-group select,
.search-form .form-group input {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--dark);
    transition: all 0.3s ease;
    outline: none;
}
.search-form .form-group select:focus,
.search-form .form-group input:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(255, 64, 64, 0.08);
    background: #fff;
}
.search-form .form-group input[type="range"] {
    padding: 0;
    background: transparent;
    accent-color: var(--coral);
}
.search-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.search-actions .btn-primary,
.search-actions .btn-secondary {
    padding: 12px 32px;
    font-size: 14px;
}
.search-actions .btn-secondary {
    color: var(--dark);
    border-color: rgba(0,0,0,0.1);
}
.search-actions .btn-secondary:hover {
    background: rgba(0,0,0,0.05);
    border-color: var(--dark);
}

/* ============================================================
   SERVICES
   ============================================================ */
#services {
    padding: 100px 0 80px;
    background: var(--off-white);
    overflow: hidden;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}
.service-card {
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
    transform: translateY(50px);
    position: relative;
}
.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.service-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--coral), var(--teal), var(--coral));
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: shimmerGlow 3s ease infinite;
}
.service-card:hover::before { opacity: 1; }
@keyframes shimmerGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 70px rgba(6, 148, 148, 0.20), 0 0 60px rgba(255, 64, 64, 0.10);
    border-color: var(--coral);
    background: rgba(255, 255, 255, 0.95);
}
.service-card .img-wrap {
    height: 280px;
    background: var(--teal);
    overflow: hidden;
    position: relative;
}
.service-card .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}
.service-card:hover .img-wrap img { transform: scale(1.07); }
.service-card .img-wrap .icon-overlay {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Orbitron', sans-serif;
}
.service-card .body {
    padding: 28px 30px 32px;
    position: relative;
    z-index: 1;
}
.service-card .body h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}
.service-card .body h3 .tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--coral);
    background: rgba(255, 64, 64, 0.08);
    padding: 2px 14px;
    border-radius: 50px;
    margin-left: 8px;
    display: inline-block;
    vertical-align: middle;
    font-family: 'Orbitron', sans-serif;
}
.service-card .body p {
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 18px;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
}
.service-card:hover .body p { color: var(--dark); }
.service-card .body .btn-detail {
    font-weight: 700;
    font-size: 14px;
    color: var(--coral);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s, color 0.3s;
    background: none;
    padding: 0;
    font-family: 'Orbitron', sans-serif;
}
.service-card .body .btn-detail:hover { gap: 16px; color: var(--coral-hover); }



/* ============================================================
   WHY CHOOSE
   ============================================================ */
#why {
    padding: 100px 0;
    background: var(--dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}
#why::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 64, 64, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
#why::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 148, 148, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
#why .section-title { color: #fff; }
#why .section-desc { color: rgba(255, 255, 255, 0.5); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 28px;
    margin-top: 56px;
    position: relative;
    z-index: 1;
}
.why-item {
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
    transform: translateY(30px);
    text-align: center;
    position: relative;
}
.why-item.visible {
    opacity: 1;
    transform: translateY(0);
}
.why-item::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--coral), var(--teal));
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: shimmerGlow 3s ease infinite;
}
.why-item:hover::before { opacity: 1; }
.why-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--coral);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 0 60px rgba(255, 64, 64, 0.06);
}
.why-item .icon {
    font-size: 36px;
    margin-bottom: 14px;
    display: block;
}
.why-item h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}
.why-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

/* ============================================================
   ABOUT US
   ============================================================ */
#about {
    padding: 100px 0;
    background: var(--off-white);
}
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}
.about-hero .img-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--white);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1px;
    transition: transform 0.5s ease;
}
.about-hero .img-wrap:hover { transform: scale(1.01); }
.about-hero .img-wrap img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}
.about-hero .content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--dark);
}
.about-hero .content h3 .highlight { color: var(--coral); }
.about-hero .content p {
    font-size: 16px;
    color: #454e56;
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-hero .content .about-tagline {
    font-size: 18px;
    font-weight: 600;
    color: var(--teal);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.about-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 80px;
}
.about-why-item {
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    padding: 28px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
}
.about-why-item.visible {
    opacity: 1;
    transform: translateY(0);
}
.about-why-item::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--teal), var(--coral));
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: shimmerGlow 3s ease infinite;
}
.about-why-item:hover::before { opacity: 1; }
.about-why-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 50px rgba(6, 148, 148, 0.15);
    border-color: var(--teal);
    background: rgba(255, 255, 255, 0.85);
}
.about-why-item .icon {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}
.about-why-item h5 {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark);
}
.about-why-item p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}
.about-vm {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 80px;
}
.about-vm .vm-card {
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    padding: 36px 32px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    text-align: center;
}
.about-vm .vm-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.about-vm .vm-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--coral), var(--teal));
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: shimmerGlow 3s ease infinite;
}
.about-vm .vm-card:hover::before { opacity: 1; }
.about-vm .vm-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-lg);
    border-color: var(--coral);
    background: rgba(255, 255, 255, 0.85);
}
.about-vm .vm-card .vm-icon {
    font-size: 40px;
    margin-bottom: 12px;
    display: block;
}
.about-vm .vm-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--dark);
}
.about-vm .vm-card h4 .highlight { color: var(--coral); }
.about-vm .vm-card p {
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
}

/* ============================================================
   FOUNDER
   ============================================================ */
#founder {
    padding: 100px 0;
    background: var(--white);
}
.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.founder-grid .img-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--teal);
    aspect-ratio: 4/3;
    transition: transform 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.founder-grid .img-wrap:hover { transform: scale(1.01); }
.founder-grid .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.founder-content .founder-badge {
    display: inline-block;
    background: var(--coral);
    color: #fff;
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 12px;
}
.founder-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 4px;
    color: var(--dark);
}
.founder-content .founder-title {
    font-size: 18px;
    color: var(--coral);
    font-weight: 600;
    margin-bottom: 16px;
    font-family: 'Orbitron', sans-serif;
}
.founder-content p {
    font-size: 16px;
    color: #454e56;
    line-height: 1.8;
    margin-bottom: 14px;
}
.founder-content .founder-quote {
    background: rgba(6, 148, 148, 0.06);
    border-left: 4px solid var(--coral);
    padding: 20px 24px;
    border-radius: var(--radius-sm);
    margin: 16px 0 20px;
    font-style: italic;
    font-size: 17px;
    line-height: 1.7;
    color: var(--dark);
    font-weight: 400;
}
.founder-content .founder-quote .quote-author {
    display: block;
    margin-top: 8px;
    font-style: normal;
    font-weight: 700;
    color: var(--teal);
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
}
.founder-stats {
    display: flex;
    gap: 32px;
    margin-top: 24px;
}
.founder-stats div { text-align: center; }
.founder-stats div strong {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    color: var(--coral);
}
.founder-stats div span {
    font-size: 14px;
    color: var(--gray);
}

/* ============================================================
   COVERAGE
   ============================================================ */
#coverage {
    padding: 100px 0;
    background: var(--white);
}
.coverage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.coverage-grid .map-wrap {
    background: var(--teal-dark);
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s ease;
}
.coverage-grid .map-wrap:hover { transform: scale(1.01); }
.coverage-grid .map-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius);
}
.coverage-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 16px;
}
.coverage-content p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}
.coverage-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
    list-style: none;
    margin-top: 16px;
}
.coverage-list li {
    font-size: 15px;
    font-weight: 600;
    color: var(--teal);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 8px;
    transition: background 0.3s;
}
.coverage-list li:hover { background: rgba(6, 148, 148, 0.06); }
.coverage-list li::before { content: '📍'; font-size: 14px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
#how {
    padding: 100px 0;
    background: var(--off-white);
    overflow: hidden;
    position: relative;
}
#how .section-title { color: var(--dark); }
#how .section-desc { color: var(--gray); }
.how-track {
    max-width: 900px;
    margin: 0 auto 50px;
    position: relative;
    height: 4px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    overflow: hidden;
}
.how-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--coral), var(--teal));
    border-radius: 4px;
    transition: width 4s cubic-bezier(0.22, 1, 0.36, 1);
}
.how-progress-bar.animated { width: 100%; }
.how-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-top: 0;
    flex-wrap: nowrap;
    position: relative;
    z-index: 1;
}
.how-step {
    flex: 1;
    min-width: 160px;
    text-align: center;
    padding: 32px 20px 28px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
    transform: translateY(40px);
    position: relative;
}
.how-step.visible {
    opacity: 1;
    transform: translateY(0);
}
.how-step::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--coral), var(--teal));
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: shimmerGlow 3s ease infinite;
}
.how-step:hover::before { opacity: 1; }
.how-step:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--coral);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow-lg);
}
.step-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 44px;
    font-weight: 900;
    color: var(--coral);
    opacity: 0.8;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.how-step:hover .step-number { opacity: 1; transform: scale(1.05); }
.step-icon-wrapper {
    font-size: 40px;
    line-height: 1;
    display: block;
    margin-bottom: 12px;
    transition: transform 0.4s ease;
}
.how-step:hover .step-icon-wrapper { transform: scale(1.1) rotate(-5deg); }
.how-step h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark);
    letter-spacing: 1px;
    transition: color 0.3s ease;
}
.how-step:hover h4 { color: var(--coral); }
.how-step p {
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
    max-width: 200px;
    margin: 0 auto;
}
.step-arrow {
    flex-shrink: 0;
    align-self: center;
    padding: 0 4px;
    position: relative;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-arrow svg {
    display: block;
    width: 48px;
    height: 24px;
    position: relative;
    z-index: 1;
}
.step-arrow svg path {
    stroke: var(--coral);
    opacity: 0.5;
    transition: opacity 0.4s ease;
}
.how-steps:hover .step-arrow svg path { opacity: 0.8; }
.arrow-pulse {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 64, 64, 0.25) 0%, transparent 70%);
    animation: pulseGlow 1.8s ease-in-out infinite;
    pointer-events: none;
}
.step-arrow:nth-child(2) .arrow-pulse { animation-delay: 0s; }
.step-arrow:nth-child(4) .arrow-pulse { animation-delay: 0.6s; }
.step-arrow:nth-child(6) .arrow-pulse { animation-delay: 1.2s; }
@keyframes pulseGlow {
    0%, 100% { transform: scale(0.7); opacity: 0.4; }
    50% { transform: scale(1.5); opacity: 1; }
}

/* ============================================================
   STATS
   ============================================================ */
#stats {
    padding: 80px 0;
    background: var(--dark);
    color: #fff;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 40px;
    text-align: center;
}
.stat-item {
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}
.stat-item:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--coral);
}
.stat-item .number {
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -2px;
    color: #fff;
    line-height: 1;
}
.stat-item .number .num-value { color: #fff; }
.stat-item .number .highlight { color: var(--coral); }
.stat-item .label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
    padding: 100px 0;
    background: var(--off-white);
    overflow: hidden;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}
.testimonial-card {
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
}
.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.testimonial-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--teal), var(--coral));
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: shimmerGlow 3s ease infinite;
}
.testimonial-card:hover::before { opacity: 1; }
.testimonial-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal);
    background: rgba(255, 255, 255, 0.85);
}
.testimonial-card .stars {
    color: #f5a623;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.testimonial-card blockquote {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: 18px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
}
.testimonial-card:hover blockquote { color: var(--dark); }
.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-card .author .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    font-family: 'Orbitron', sans-serif;
}
.testimonial-card .author .name {
    font-weight: 700;
    font-size: 15px;
    font-family: 'Orbitron', sans-serif;
}
.testimonial-card .author .role {
    font-size: 13px;
    color: var(--gray);
    font-family: 'Inter', sans-serif;
}

/* ============================================================
   GALLERY
   ============================================================ */
#gallery {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
}
.gallery-grid .g-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--off-white);
    aspect-ratio: 4/3;
    opacity: 0;
    transform: scale(0.94);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
    position: relative;
}
.gallery-grid .g-item.visible {
    opacity: 1;
    transform: scale(1);
}
.gallery-grid .g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-grid .g-item:hover img { transform: scale(1.06); }
.gallery-grid .g-item:hover {
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
    border: 2px solid var(--coral);
}
.gallery-grid .g-item .g-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(10px);
}
.gallery-grid .g-item:hover .g-overlay {
    opacity: 1;
    transform: translateY(0);
}
.gallery-grid .g-item .g-overlay .g-tag {
    display: inline-block;
    background: var(--coral);
    color: #fff;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: 'Orbitron', sans-serif;
    box-shadow: 0 4px 15px rgba(255, 64, 64, 0.3);
}
.gallery-grid .g-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid .g-item:nth-child(6) { grid-column: span 2; }

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
    padding: 100px 0;
    background: var(--off-white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 20px;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s ease;
}
.contact-map:hover { transform: scale(1.01); }
.contact-map iframe {
    width: 100%;
    height: 220px;
    display: block;
}
.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
    border-color: var(--coral);
    background: rgba(255, 255, 255, 0.85);
}
.contact-item .contact-icon {
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-item h5 {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray);
    margin-bottom: 2px;
}
.contact-item p, .contact-item a {
    font-size: 14px;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}
.contact-item a:hover { color: var(--coral); }
.contact-social {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-social:hover {
    border-color: var(--teal);
    background: rgba(255, 255, 255, 0.85);
}
.contact-social .social-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
}
.social-icons {
    display: flex;
    gap: 16px;
}
.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    text-decoration: none;
    position: relative;
}
.social-icon:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.social-icon svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}
.social-icon:hover svg { transform: scale(1.1); }
.social-icon.whatsapp { background: #25D366; }
.social-icon.whatsapp:hover { background: #1da851; }
.social-icon.instagram {
    background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.social-icon.instagram:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 30px rgba(214, 36, 159, 0.4);
}
.social-icon.facebook { background: #1877F2; }
.social-icon.facebook:hover {
    background: #166fe5;
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}
.social-icon.linkedin { background: #0A66C2; }
.social-icon.linkedin:hover {
    background: #0957a8;
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}
.social-icon.youtube { background: #FF0000; }
.social-icon.youtube:hover {
    background: #cc0000;
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.4);
}
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    padding: 40px 36px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-form-wrapper:hover { box-shadow: var(--shadow-lg); }
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.5px;
}
.form-group input, .form-group textarea {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--dark);
    transition: all 0.3s ease;
    outline: none;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(255, 64, 64, 0.08);
    background: #fff;
}
.form-group input::placeholder, .form-group textarea::placeholder {
    color: var(--gray);
    font-weight: 400;
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.submit-btn {
    align-self: flex-start;
    padding: 14px 40px;
    font-size: 15px;
    cursor: pointer;
    border: none;
    font-family: 'Orbitron', sans-serif;
    background: var(--coral);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 40px rgba(255, 64, 64, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.submit-btn:hover {
    background: var(--coral-hover);
    transform: translateY(-3px);
    box-shadow: 0 14px 50px rgba(255, 64, 64, 0.45);
}
.submit-btn:active { transform: translateY(0); }

/* ============================================================
   CTA
   ============================================================ */
#cta {
    padding: 100px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
#cta::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 64, 64, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
#cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 148, 148, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
#cta .container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
}
#cta h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 900;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}
#cta h2 .highlight { color: var(--coral); }
#cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
}
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 60px 0 30px;
    color: rgba(255, 255, 255, 0.6);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1.5fr 1.5fr 2fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand .footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.footer-brand .footer-logo .highlight { color: var(--coral); }
.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 320px;
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.5);
}
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
}
.footer-social a:hover {
    background: var(--coral);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 64, 64, 0.25);
}
.footer-col h6 {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 16px;
}
.footer-col a {
    display: block;
    font-size: 14px;
    padding: 5px 0;
    transition: color 0.3s, padding-left 0.3s;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Inter', sans-serif;
}
.footer-col a:hover {
    color: var(--coral);
    padding-left: 6px;
}
.footer-newsletter p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}
.footer-newsletter .input-group {
    display: flex;
    gap: 8px;
}
.footer-newsletter .input-group input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s;
}
.footer-newsletter .input-group input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}
.footer-newsletter .input-group input:focus {
    border-color: var(--coral);
}
.footer-newsletter .input-group button {
    padding: 12px 24px;
    border-radius: 50px;
    background: var(--coral);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Orbitron', sans-serif;
    transition: background 0.3s, transform 0.3s;
    white-space: nowrap;
}
.footer-newsletter .input-group button:hover {
    background: var(--coral-hover);
    transform: scale(1.02);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
}
.footer-bottom a {
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s;
}
.footer-bottom a:hover { color: var(--coral); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    nav { padding: 10px 24px; top: 42px !important; }
    #top-ribbon .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 4px 20px;
    }
    #top-ribbon .left { gap: 12px; flex-wrap: wrap; }
    #top-ribbon .left a { font-size: 14px; }
    #hero { margin-top: 80px; }
    .fleet-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .coverage-grid { grid-template-columns: 1fr; gap: 40px; }
    .coverage-grid .map-wrap { aspect-ratio: 4/3; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .hero-stats .hs-item .hs-number { font-size: 24px; }
    .service-card .img-wrap { height: 240px; }
    .fleet-item { flex-direction: row; padding: 24px 28px; gap: 20px; }
    .fleet-item .img-wrap { flex: 0 0 140px; height: 130px; }
    .fleet-item .content h4 { font-size: 19px; }
    .fleet-item .content p { font-size: 14px; }
    .about-hero { grid-template-columns: 1fr; gap: 40px; }
    .about-hero .img-wrap { aspect-ratio: 4/3; }
    .about-why-grid { grid-template-columns: repeat(2, 1fr); }
    .about-vm { grid-template-columns: 1fr; }
    .founder-grid { grid-template-columns: 1fr; gap: 40px; }
    .founder-grid .img-wrap { aspect-ratio: 4/3; max-height: 400px; }
    .founder-stats { gap: 24px; flex-wrap: wrap; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-details { grid-template-columns: 1fr 1fr; }
    .search-form .form-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 992px) {
    .how-steps { flex-direction: row; flex-wrap: wrap; justify-content: center; }
    .how-step { flex: 0 0 calc(50% - 20px); min-width: unset; }
    .step-arrow { display: none; }
}
@media (max-width: 768px) {
    #top-ribbon .left a { font-size: 13px; }
    nav { padding: 8px 16px; top: 40px !important; }
    #hero { margin-top: 78px; min-height: 600px; }
    .hero-content { padding: 0 20px; }
    .hero-content h1 { font-size: 38px; letter-spacing: -1px; }
    .hero-content .hero-sub { font-size: 16px; }
    .btn-primary, .btn-secondary { padding: 14px 28px; font-size: 14px; }
    .services-grid { grid-template-columns: 1fr; gap: 24px; }
    .service-card .img-wrap { height: 260px; }
    .service-card .body h3 { font-size: 22px; }
    .service-card .body p { font-size: 15px; }
    .fleet-grid { display: flex !important; flex-direction: column !important; gap: 32px !important; }
    .fleet-item { display: flex !important; flex-direction: column !important; padding: 20px; gap: 16px; overflow: hidden !important; align-items: stretch !important; width: 100% !important; position: relative !important; break-inside: avoid !important; page-break-inside: avoid !important; margin-bottom: 0 !important; }
    .fleet-item .img-wrap { flex: 0 0 auto !important; width: 100% !important; height: 200px !important; position: relative !important; z-index: 1 !important; }
    .fleet-item .img-wrap img { object-fit: cover; object-position: center; }
    .fleet-item .content { display: flex !important; flex-direction: column !important; width: 100% !important; padding: 12px 0 4px 0 !important; flex: 1 1 auto !important; overflow: visible !important; position: relative !important; z-index: 2 !important; }
    .fleet-item::before { position: absolute !important; inset: -2px !important; z-index: 0 !important; pointer-events: none !important; }
    .fleet-item .content .icon-row, .fleet-item .content h4, .fleet-item .content p, .fleet-item .content .meta, .fleet-item .content .btn-fleet { display: block !important; visibility: visible !important; opacity: 1 !important; max-height: none !important; overflow: visible !important; }
    .fleet-item .content h4 { font-size: 20px; }
    .fleet-item .content p { font-size: 15px; }
    .fleet-item .content .meta { font-size: 13px; }
    .fleet-item .content .btn-fleet { font-size: 14px; margin-top: 10px; }
    .how-steps { flex-direction: column; align-items: stretch; }
    .step-arrow { transform: rotate(90deg); padding: 6px 0; }
    .how-step { min-width: unset; }
    .stats-grid { gap: 24px; grid-template-columns: 1fr 1fr; }
    .stat-item .number { font-size: 38px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid .g-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
    .gallery-grid .g-item:nth-child(6) { grid-column: span 2; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .floating-buttons { bottom: 20px; }
    .floating-buttons.left { left: 12px; }
    .floating-buttons.right { right: 12px; }
    .floating-btn { width: 40px; height: 40px; font-size: 16px; }
    .coverage-list { grid-template-columns: 1fr 1fr; }
    .hero-stats { gap: 16px; }
    .hero-stats .hs-item .hs-number { font-size: 20px; }
    .footer-newsletter .input-group { flex-direction: column; }
    .footer-newsletter .input-group button { width: 100%; justify-content: center; }
    .about-hero .content h3 { font-size: 28px; }
    .about-why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .about-why-item { padding: 20px 16px; }
    .about-why-item .icon { font-size: 28px; }
    .about-why-item h5 { font-size: 14px; }
    .about-why-item p { font-size: 13px; }
    .about-vm .vm-card { padding: 28px 20px; }
    .about-vm .vm-card h4 { font-size: 20px; }
    .founder-content h2 { font-size: 28px; }
    .founder-content .founder-title { font-size: 16px; }
    .founder-content p { font-size: 15px; }
    .founder-stats { gap: 16px; }
    .founder-stats div strong { font-size: 22px; }
    .contact-details { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 28px 20px; }
    .contact-item { padding: 14px 16px; }
    .contact-map iframe { height: 180px; }
    .social-icons { gap: 12px; }
    .social-icon { width: 42px; height: 42px; }
    .social-icon svg { width: 18px; height: 18px; }
    .contact-social { padding: 16px 18px; }
    .search-form { padding: 24px 16px; }
    .search-form .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-grid .g-item:nth-child(1) { grid-column: span 1; }
    .gallery-grid .g-item:nth-child(6) { grid-column: span 1; }
    .coverage-list { grid-template-columns: 1fr; }
    .hero-stats { gap: 12px; flex-direction: column; }
    .service-card .img-wrap { height: 200px; }
    .service-card .body { padding: 20px 22px 24px; }
    .service-card .body h3 { font-size: 20px; }
    .service-card .body p { font-size: 14px; }
    .service-card .body .btn-detail { font-size: 13px; }
    .fleet-item { padding: 16px; gap: 12px; }
    .fleet-item .img-wrap { height: 150px; }
    .fleet-item .content h4 { font-size: 18px; }
    .fleet-item .content p { font-size: 14px; }
    .fleet-item .content .meta { font-size: 12px; gap: 10px; }
    .fleet-item .content .btn-fleet { font-size: 13px; margin-top: 8px; }
    .about-why-grid { grid-template-columns: 1fr; }
    .about-hero .content h3 { font-size: 24px; }
    .about-vm .vm-card h4 { font-size: 18px; }
    .founder-content h2 { font-size: 24px; }
    .founder-stats { flex-direction: column; gap: 12px; }
    .founder-grid .img-wrap { aspect-ratio: 4/3; max-height: 300px; }
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--coral); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--coral-hover); }

/* ============================================================
   ENGAGEMENT POPUP
   ============================================================ */
.popup-overlay {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 9998;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    max-width: 380px;
    width: 100%;
}
.popup-overlay.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}
.popup-container {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius);
    padding: 32px 28px 28px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    animation: popupSlideIn 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes popupSlideIn {
    0% { opacity: 0; transform: translateY(20px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
.popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--gray);
    cursor: pointer;
    transition: color 0.3s;
    padding: 4px 8px;
}
.popup-close:hover { color: var(--coral); }
.popup-icon {
    font-size: 44px;
    display: block;
    margin-bottom: 8px;
    text-align: center;
}
.popup-container h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
    text-align: center;
}
.popup-container p {
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.7;
    text-align: center;
    margin-bottom: 18px;
    font-family: 'Inter', sans-serif;
}
.popup-container p strong { color: var(--coral); }
.popup-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.popup-btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Orbitron', sans-serif;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.popup-btn.primary {
    background: var(--coral);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 64, 64, 0.25);
}
.popup-btn.primary:hover {
    background: var(--coral-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 64, 64, 0.35);
}
.popup-btn.secondary {
    background: rgba(0, 0, 0, 0.04);
    color: var(--dark);
    border: 1px solid rgba(0, 0, 0, 0.06);
}
.popup-btn.secondary:hover {
    background: rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}
.popup-timer {
    font-size: 12px !important;
    color: var(--gray) !important;
    margin-top: 12px !important;
    margin-bottom: 0 !important;
}
.popup-timer span {
    font-weight: 700;
    color: var(--coral);
}
@media (max-width: 768px) {
    .popup-overlay { bottom: 80px; right: 16px; left: 16px; max-width: 100%; }
    .popup-container { padding: 24px 20px 20px; }
    .popup-container h3 { font-size: 18px; }
    .popup-container p { font-size: 14px; }
    .popup-btn { padding: 8px 18px; font-size: 13px; }
}

/* ============================================================
   SCROLL TO TOP BUTTON
   ============================================================ */
.scroll-top-btn {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    z-index: 997;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--coral);
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(255, 64, 64, 0.35);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}
.scroll-top-btn:hover {
    background: var(--coral-hover);
    transform: translateX(-50%) scale(1.08);
    box-shadow: 0 12px 40px rgba(255, 64, 64, 0.45);
}
.scroll-top-btn:active { transform: translateX(-50%) scale(0.95); }
.scroll-top-btn svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}
.scroll-top-btn:hover svg { transform: translateY(-3px); }
@media (max-width: 768px) {
    .scroll-top-btn { width: 48px; height: 48px; bottom: 80px; }
    .scroll-top-btn svg { width: 20px; height: 20px; }
}

/* ============================================================
   ENQUIRY MODAL
   ============================================================ */
.enquiry-modal {
    display: none; /* hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
}
.enquiry-modal.active {
    display: flex; /* shown when active class is added */
}
.enquiry-modal-content {
    background: #1a1f26;
    padding: 40px 36px;
    border-radius: 24px;
    max-width: 480px;
    width: 90%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.enquiry-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 28px;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: 0.3s;
}
.enquiry-close:hover {
    color: #fff;
}
.enquiry-modal-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    margin-bottom: 8px;
    color: #fff;
}
.enquiry-modal-content p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}
.enquiry-modal-content .form-group {
    margin-bottom: 16px;
}
.enquiry-modal-content .form-group label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}
.enquiry-modal-content .form-group input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 15px;
}
.enquiry-modal-content .form-group input:focus {
    border-color: #FF4040;
    outline: none;
}
.enquiry-modal-content .btn-primary {
    width: 100%;
    justify-content: center;
}

/* ============================================================
   FLEET FILTER BAR (Min / Max Tonnage)
   ============================================================ */
.fleet-filter-bar {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(8px);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: var(--shadow-sm);
}
.filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 120px;
}
.filter-group label {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: 'Orbitron', sans-serif;
}
.filter-group select {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.8);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--dark);
    outline: none;
    transition: 0.3s;
    cursor: pointer;
}
.filter-group select:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(255,64,64,0.08);
}
.filter-btn {
    padding: 10px 28px;
    font-size: 14px;
    height: 44px;
    white-space: nowrap;
}
.filter-btn.btn-secondary {
    color: var(--dark);
    border-color: rgba(0,0,0,0.1);
}
.filter-btn.btn-secondary:hover {
    background: rgba(0,0,0,0.05);
    border-color: var(--dark);
}

/* ============================================================
   FLEET CARDS – HORIZONTAL LAYOUT (2 per row) – ENHANCED
   ============================================================ */
.fleet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.fleet-item {
    display: flex;
    gap: 24px;
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    padding: 22px 24px;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    align-items: stretch;
    min-height: 200px;
}
.fleet-item.visible {
    opacity: 1;
    transform: translateY(0);
}
.fleet-item::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--teal), var(--coral), var(--teal));
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: shimmerGlow 3s ease infinite;
}
.fleet-item:hover::before {
    opacity: 1;
}
.fleet-item:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 24px 64px rgba(6, 148, 148, 0.15), 0 0 60px rgba(255, 64, 64, 0.08);
    border-color: var(--teal);
    transform: translateY(-4px) scale(1.01);
}

/* Image – left side (square) – LARGER */
.fleet-item .img-wrap {
    flex: 0 0 180px;
    width: 180px;
    height: 180px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--teal);
    flex-shrink: 0;
}
.fleet-item .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s;
}
.fleet-item:hover .img-wrap img {
    transform: scale(1.05);
}

/* Content – right side */
.fleet-item .content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
    min-width: 0;
}
.fleet-item .content .icon-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}
.fleet-item .content .icon-row .icon {
    font-size: 18px;
    flex-shrink: 0;
}
.fleet-item .content .icon-row .cat {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--coral);
    font-family: 'Orbitron', sans-serif;
}
.fleet-item .content h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
    color: var(--dark);
}
.fleet-item .content p {
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fleet-item:hover .content p {
    color: var(--dark);
}
.fleet-item .content .meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 8px;
}
.fleet-item .content .meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}
.fleet-item .content .meta span strong {
    color: var(--dark);
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
}
.fleet-item .content .card-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 8px;
}
.fleet-item .content .btn-fleet {
    font-weight: 700;
    font-size: 14px;
    color: var(--coral);
    background: none;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s, color 0.3s;
    font-family: 'Orbitron', sans-serif;
    cursor: pointer;
    border: none;
}
.fleet-item .content .btn-fleet:hover {
    gap: 16px;
    color: var(--coral-hover);
}
.fleet-item .content .btn-detail-popup {
    font-weight: 600;
    font-size: 14px;
    color: var(--teal);
    background: none;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s, color 0.3s;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    border: none;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.fleet-item .content .btn-detail-popup:hover {
    gap: 12px;
    color: var(--teal-dark);
}

/* Tonnage highlight */
.tonnage-highlight {
    color: var(--coral) !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    font-family: 'Orbitron', sans-serif;
}

/* Load More Button */
.fleet-load-more {
    text-align: center;
    margin-top: 40px;
}
.fleet-load-more .btn-secondary {
    padding: 14px 48px;
    font-size: 15px;
    font-family: 'Orbitron', sans-serif;
    border-color: rgba(0,0,0,0.1);
    color: var(--dark);
}
.fleet-load-more .btn-secondary:hover {
    background: rgba(0,0,0,0.05);
    border-color: var(--dark);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .fleet-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .fleet-item .img-wrap {
        flex: 0 0 150px;
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .fleet-item {
        flex-direction: column;
        padding: 18px;
        gap: 16px;
        min-height: auto;
    }
    .fleet-item .img-wrap {
        flex: 0 0 auto;
        width: 100%;
        height: 200px;
    }
    .fleet-item .content p {
        -webkit-line-clamp: 3;
    }
    .fleet-filter-bar {
        padding: 16px;
        gap: 12px;
        flex-direction: column;
        align-items: stretch;
    }
    .filter-group {
        min-width: auto;
    }
    .filter-btn {
        width: 100%;
        justify-content: center;
    }
    .fleet-item .content h4 {
        font-size: 18px;
    }
    .fleet-item .content .meta {
        font-size: 12px;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .fleet-item .img-wrap {
        height: 160px;
    }
    .fleet-item .content h4 {
        font-size: 16px;
    }
    .fleet-item .content p {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }
    .fleet-item .content .card-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .fleet-load-more .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   DETAIL MODAL (Full View)
   ============================================================ */
.detail-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}
.detail-modal.active {
    display: flex;
}

.detail-modal-content {
    background: #1a1f26;
    padding: 40px 36px;
    border-radius: 24px;
    max-width: 640px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.06);
    animation: modalFadeIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes modalFadeIn {
    0% { opacity: 0; transform: scale(0.95) translateY(20px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.detail-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 32px;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
}
.detail-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

.detail-modal-content .detail-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    background: var(--teal);
}

.detail-modal-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 6px;
}

.detail-modal-content .detail-badge {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.detail-modal-content .detail-badge.type {
    background: rgba(6, 148, 148, 0.2);
    color: var(--teal);
    margin-right: 8px;
}
.detail-modal-content .detail-badge.fuel {
    background: rgba(255, 64, 64, 0.15);
    color: var(--coral);
}

.detail-modal-content .detail-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin: 16px 0;
}

.detail-modal-content .detail-meta {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    border-left: 3px solid var(--coral);
}

.detail-modal-content .detail-meta strong {
    color: #fff;
    font-weight: 700;
}

.detail-modal-content .detail-cta {
    margin-top: 24px;
}

@media (max-width: 768px) {
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .fleet-item .img-wrap {
        flex: 0 0 180px;
        height: 180px;
    }
    .detail-modal-content {
        padding: 24px 20px;
    }
}

/* ============================================================
   FINAL HERO OVERRIDE
   V LIFT RENTAL
   Premium / Wide / Responsive Hero
   ============================================================ */


/* ============================================================
   HERO BASE
   ============================================================ */

#hero {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 76px);

    margin-top: 76px;
    padding: 70px 0 60px;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 82% 28%,
            rgba(255, 64, 64, 0.055),
            transparent 34%
        ),
        #2f343a;

    overflow: hidden;
}


/* ============================================================
   TECHNICAL BACKGROUND GRID
   ============================================================ */

#hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.018) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image:
        linear-gradient(
            to right,
            black,
            transparent 82%
        );

    -webkit-mask-image:
        linear-gradient(
            to right,
            black,
            transparent 82%
        );

    pointer-events: none;
    opacity: 0.55;
}


/* ============================================================
   MAIN HERO GRID
   ============================================================ */

#hero .hero-grid {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1600px;

    margin: 0 auto;
    padding: 0 32px;

    box-sizing: border-box;

    display: grid;

    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(0, 1.08fr);

    gap: 52px;

    align-items: center;
}


/* ============================================================
   LEFT CONTENT
   ============================================================ */

#hero .hero-content-left {
    width: 100%;
    max-width: 690px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    box-sizing: border-box;
}


/* ============================================================
   BADGE
   ============================================================ */

#hero .hero-badge {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    width: fit-content;
    max-width: 100%;

    margin-bottom: 22px;
    padding: 8px 16px;

    border-radius: 999px;

    background: rgba(255,64,64,0.08);
    border: 1px solid rgba(255,64,64,0.28);

    color: var(--coral);

    font-family: 'Orbitron', sans-serif;
    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;

    white-space: nowrap;
}


/* ============================================================
   PULSE DOT
   ============================================================ */

#hero .pulse-dot {
    width: 7px;
    height: 7px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--coral);

    animation:
        heroPulse 2s
        ease-in-out
        infinite;
}


/* ============================================================
   MAIN HEADING
   ============================================================ */

#hero .hero-heading {
    width: 100%;
    max-width: 680px;

    margin: 0;
    padding: 0;

    font-family: 'Orbitron', sans-serif;

    font-size:
        clamp(
            38px,
            3.05vw,
            54px
        );

    font-weight: 900;

    line-height: 1.07;

    letter-spacing: -1.7px;

    color: #ffffff;
}


/*
   IMPORTANT:
   We are NOT forcing the heading to remain on one line.
*/

#hero .hero-heading-line {
    display: block;

    white-space: normal;

    margin: 0;
}


#hero .hero-heading-highlight {
    display: block;

    margin-top: 5px;

    color: var(--coral);

    white-space: normal;
}


/* ============================================================
   ACCENT LINE
   ============================================================ */

#hero .hero-accent-line {
    width: 48px;
    height: 3px;

    margin-top: 18px;

    border-radius: 10px;

    background: var(--coral);
}


/* ============================================================
   DESCRIPTION
   ============================================================ */

#hero .hero-desc {
    width: 100%;
    max-width: 620px;

    margin: 21px 0 0;

    color: rgba(255,255,255,0.64);

    font-family:
        'Inter',
        Arial,
        sans-serif;

    font-size: 18px;
    line-height: 1.72;

    font-weight: 400;
}


#hero .hero-desc strong {
    color: #ffffff;
    font-weight: 650;
}


/* ============================================================
   CTA GROUP
   ============================================================ */

#hero .hero-cta-group {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-top: 27px;
}


/* ============================================================
   HERO BUTTONS
   ============================================================ */

#hero .hero-btn {
    height: 54px;

    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    border-radius: 999px;

    font-family: 'Orbitron', sans-serif;
    font-size: 17px;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}


#hero .hero-btn-primary {
    color: #ffffff;

    background: var(--coral);

    border: 1px solid var(--coral);

    box-shadow:
        0 12px 30px
        rgba(255,64,64,0.18);
}


#hero .hero-btn-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 38px
        rgba(255,64,64,0.25);
}


#hero .hero-btn-secondary {
    color: #ffffff;

    background:
        rgba(255,255,255,0.035);

    border:
        1px solid
        rgba(255,255,255,0.18);

    backdrop-filter: blur(10px);
}


#hero .hero-btn-secondary:hover {
    transform: translateY(-3px);

    border-color:
        rgba(255,255,255,0.55);

    background:
        rgba(255,255,255,0.07);
}


/* ============================================================
   STATS
   ============================================================ */

#hero .hero-stats-row {
    display: flex;
    align-items: stretch;

    gap: 21px;

    margin-top: 31px;
}


#hero .stat-block {
    display: flex;
    flex-direction: column;

    min-width: 68px;
}


#hero .stat-number {
    font-family: 'Orbitron', sans-serif;

    font-size: 22px;
    font-weight: 900;

    line-height: 1.1;

    color: var(--coral);

    letter-spacing: -0.5px;
}


#hero .stat-label {
    margin-top: 5px;

    color:
        rgba(255,255,255,0.44);

    font-size: 9px;
    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.9px;
}


#hero .stat-divider {
    width: 1px;

    min-height: 42px;

    align-self: center;

    background:
        rgba(255,255,255,0.14);
}


/* ============================================================
   RIGHT VISUAL AREA
   ============================================================ */

#hero .hero-visual-right {
    position: relative;

    width: 100%;
    min-width: 0;

    display: flex;

    justify-content: center;
    align-items: center;

    transform: translateY(-10px);
}


/* ============================================================
   IMAGE CAPTION
   ============================================================ */

#hero .hero-visual-caption {
    position: absolute;

    top: -51px;
    left: 0;

    display: flex;
    align-items: center;

    gap: 10px;

    font-family: 'Orbitron', sans-serif;

    z-index: 5;
}


#hero .caption-line {
    width: 28px;
    height: 2px;

    flex-shrink: 0;

    background: var(--coral);

    border-radius: 10px;
}


#hero .caption-content {
    display: flex;
    flex-direction: column;

    gap: 3px;
}


#hero .caption-content strong {
    color:
        rgba(255,255,255,0.92);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1px;
}


#hero .caption-content span {
    color: var(--coral);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 1.2px;
}


/* ============================================================
   IMAGE CARD
   ============================================================ */

#hero .hero-image-wrapper {
    position: relative;

    width: 100%;
    max-width: 820px;

    border-radius: 22px;

    overflow: hidden;

    background: #111820;

    border:
        1px solid
        rgba(255,255,255,0.08);

    box-shadow:
        0 35px 90px
        rgba(0,0,0,0.55);
}


/* ============================================================
   HERO IMAGE
   ============================================================ */

#hero .hero-image-wrapper img {
    display: block;

    width: 100%;

    aspect-ratio: 16 / 10;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.8s
        cubic-bezier(.2,.8,.2,1);
}


#hero .hero-image-wrapper:hover img {
    transform: scale(1.025);
}


/* ============================================================
   IMAGE GRADIENT
   ============================================================ */

#hero .hero-image-wrapper::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    z-index: 1;

    background:
        linear-gradient(
            to bottom,
            transparent 48%,
            rgba(0,0,0,0.58) 100%
        );
}


/* ============================================================
   EQUIPMENT BAR
   ============================================================ */

#hero .hero-equipment-bar {
    position: absolute;

    z-index: 4;

    left: 0;
    right: 0;
    bottom: 0;

    min-height: 82px;

    padding: 12px 16px;

    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        rgba(14,17,20,0.91);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-top:
        1px solid
        rgba(255,255,255,0.11);
}



/* ============================================================
   EQUIPMENT ITEM
   ============================================================ */

#hero .hero-equipment-item {
    flex: 0 1 auto;

    min-width: 0;

    padding: 0 16px;

    display: flex;
    align-items: center;

    gap: 8px;

    border-right:
        1px solid
        rgba(255,255,255,0.13);
}


#hero .hero-equipment-item:last-child {
    border-right: none;
}


/* ============================================================
   EQUIPMENT ICON
   ============================================================ */

#hero .equipment-icon {
    width: 30px;
    height: 30px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255,64,64,0.42);

    border-radius: 8px;

    background:
        rgba(255,64,64,0.06);

    color: var(--coral);

    font-size: 15px;
}


/* ============================================================
   EQUIPMENT TEXT
   ============================================================ */

#hero .equipment-info {
    min-width: 0;
}


#hero .equipment-info strong {
    display: block;
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 640;
    line-height: 1.3;
    letter-spacing: 1.0px;
    white-space: nowrap;
}


#hero .equipment-info span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.46);
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
}


/* ============================================================
   DESKTOP — LARGE SCREENS
   ============================================================ */

@media (min-width: 1601px) {

    #hero .hero-grid {
        max-width: 1700px;
        padding-left: 30px;
        padding-right: 30px;

        gap: 60px;
    }

    #hero .hero-heading {
        font-size: clamp(
            44px,
            3vw,
            56px
        );
    }

    #hero .hero-image-wrapper {
        max-width: 860px;
    }

}


/* ============================================================
   LAPTOP — 1200px
   ============================================================ */

@media (max-width: 1200px) {

    #hero {
        padding:
            65px 0 55px;
    }


    #hero .hero-grid {
        max-width: 1200px;

        padding:
            0 30px;

        gap: 40px;
    }


    #hero .hero-heading {
        font-size:
            clamp(
                35px,
                3.5vw,
                48px
            );
    }


    #hero .hero-image-wrapper {
        max-width: 760px;
    }


    #hero .hero-equipment-item {
        padding: 0 8px;
        gap: 7px;
    }


    #hero .equipment-icon {
        width: 28px;
        height: 28px;

        font-size: 14px;
    }


    #hero .equipment-info strong {
        font-size: 8px;
    }


    #hero .equipment-info span {
        font-size: 8px;
    }

}


/* ============================================================
   TABLET — 992px
   ============================================================ */

@media (max-width: 992px) {

    #hero {
        min-height: auto;

        padding:
            70px 0 60px;

        margin-top: 72px;
    }


    #hero .hero-grid {
        grid-template-columns: 1fr;

        gap: 72px;

        padding:
            0 30px;

        max-width: 900px;
    }


    #hero .hero-content-left {
        max-width: 720px;

        margin: 0 auto;

        align-items: center;

        text-align: center;
    }


    #hero .hero-heading {
        font-size:
            clamp(
                38px,
                6vw,
                54px
            );

        max-width: 720px;
    }


    #hero .hero-accent-line {
        margin-left: auto;
        margin-right: auto;
    }


    #hero .hero-desc {
        max-width: 700px;
    }


    #hero .hero-cta-group {
        justify-content: center;
    }


    #hero .hero-stats-row {
        justify-content: center;
    }


    #hero .hero-visual-right {
        width: 100%;

        transform:
            translateY(0);
    }


    #hero .hero-image-wrapper {
        width: 100%;
        max-width: 850px;
    }


    #hero .hero-visual-caption {
        top: -48px;
        left: 0;
    }

}


/* ============================================================
   MOBILE — 768px
   ============================================================ */

@media (max-width: 768px) {

    #hero {
        padding:
            58px 0 45px;

        margin-top: 68px;
    }


    #hero .hero-grid {
        padding:
            0 20px;

        gap: 58px;

        max-width: 100%;
    }


    #hero .hero-badge {
        max-width: 100%;

        white-space: normal;

        text-align: center;

        justify-content: center;

        font-size: 8px;

        padding:
            8px 13px;
    }


    #hero .hero-heading {
        font-size:
            clamp(
                29px,
                7vw,
                42px
            );

        line-height: 1.08;

        letter-spacing: -0.8px;
    }


    #hero .hero-heading-line,
    #hero .hero-heading-highlight {
        white-space: normal;
    }


    #hero .hero-desc {
        font-size: 14px;

        line-height: 1.7;

        margin-top: 19px;
    }


    #hero .hero-cta-group {
        width: 100%;

        max-width: 360px;

        flex-direction: column;

        gap: 10px;
    }


    #hero .hero-btn {
        width: 100%;

        height: 52px;
    }


    #hero .hero-stats-row {
        width: 100%;

        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 15px;

        margin-top: 28px;
    }


    #hero .stat-block {
        align-items: center;

        text-align: center;

        padding: 6px;
    }


    #hero .stat-divider {
        display: none;
    }


    #hero .stat-number {
        font-size: 21px;
    }


    #hero .stat-label {
        font-size: 8px;
    }


    #hero .hero-visual-right {
        transform:
            translateY(0);
    }


    /*
       Caption becomes part of the normal flow on mobile.
    */

    #hero .hero-visual-caption {
        position: relative;

        top: auto;
        left: auto;

        margin-bottom: 14px;

        justify-content: center;
    }


    #hero .hero-image-wrapper {
        border-radius: 18px;
    }


    /*
       Equipment panel becomes a proper 2 x 2 grid
       instead of four cramped columns.
    */

    #hero .hero-equipment-bar {
        position: relative;

        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        min-height: auto;

        padding: 9px;

        gap: 7px;

        background:
            rgba(15,18,21,0.97);
    }


    #hero .hero-equipment-item {
        padding: 9px;

        border-right: none;

        border-bottom:
            1px solid
            rgba(255,255,255,0.10);
    }


    #hero .hero-equipment-item:nth-child(3),
    #hero .hero-equipment-item:nth-child(4) {
        border-bottom: none;
    }

}


/* ============================================================
   SMALL MOBILE — 480px
   ============================================================ */

@media (max-width: 480px) {

    #hero {
        padding:
            48px 0 35px;
    }


    #hero .hero-grid {
        padding:
            0 15px;

        gap: 48px;
    }


    #hero .hero-heading {
        font-size:
            clamp(
                26px,
                8vw,
                34px
            );

        letter-spacing: -0.6px;
    }


    #hero .hero-desc {
        font-size: 13px;
    }


    #hero .hero-stats-row {
        gap: 8px;
    }


    #hero .stat-number {
        font-size: 19px;
    }


    #hero .stat-label {
        font-size: 7px;

        letter-spacing: 0.6px;
    }


    /*
       Single column equipment panel on very small screens.
    */

    #hero .hero-equipment-bar {
        grid-template-columns: 1fr;
    }


    #hero .hero-equipment-item {
        border-bottom:
            1px solid
            rgba(255,255,255,0.10) !important;
    }


    #hero .hero-equipment-item:last-child {
        border-bottom:
            none !important;
    }


    #hero .caption-content strong {
        font-size: 9px;
    }


    #hero .caption-content span {
        font-size: 7px;
    }

}


/* ============================================================
   HERO ANIMATIONS
   ============================================================ */

@keyframes heroPulse {

    0%,
    100% {
        box-shadow:
            0 0 0 0
            rgba(255,64,64,0.45);
    }

    70% {
        box-shadow:
            0 0 0 7px
            rgba(255,64,64,0);
    }

}

/* ============================================================
   V LIFT RENTAL — GLOBAL CONTENT WIDTH
   Expands main website sections on large screens
   Header / Top Ribbon / Modals remain untouched
   ============================================================ */


/* ============================================================
   MAIN SITE CONTAINERS
   ============================================================ */

main .container,
section .container,
footer .container {

    width: 100%;

    max-width: 1500px;

    margin-left: auto;
    margin-right: auto;

    padding-left: 32px;
    padding-right: 32px;

    box-sizing: border-box;
}


/* ============================================================
   LARGE DESKTOP
   ============================================================ */

@media (min-width: 1600px) {

    main .container,
    section .container,
    footer .container {

        max-width: 1700px;

        padding-left: 35px;
        padding-right: 35px;
    }

}


/* ============================================================
   EXTRA LARGE SCREENS
   ============================================================ */

@media (min-width: 1900px) {

    main .container,
    section .container,
    footer .container {

        max-width: 1800px;

        padding-left: 40px;
        padding-right: 40px;
    }

}


/* ============================================================
   LAPTOP
   ============================================================ */

@media (max-width: 1400px) {

    main .container,
    section .container,
    footer .container {

        max-width: 1320px;

        padding-left: 30px;
        padding-right: 30px;
    }

}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 992px) {

    main .container,
    section .container,
    footer .container {

        max-width: 100%;

        padding-left: 25px;
        padding-right: 25px;
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 768px) {

    main .container,
    section .container,
    footer .container {

        padding-left: 20px;
        padding-right: 20px;
    }

}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 480px) {

    main .container,
    section .container,
    footer .container {

        padding-left: 15px;
        padding-right: 15px;
    }

}