:root {

    --orange: #E87516;
    --orange-dark: #C95D0C;

    --concrete: #E8E4DC;
    --paper: #F5F2EB;
    --white: #FFFFFF;

    --graphite: #252825;
    --black: #171A18;

    --muted: #747873;
    --line: #D5D1C8;

    --brass: #B99A68;

    --container: 1240px;

}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: "Inter", sans-serif;

    background: var(--paper);

    color: var(--graphite);

    line-height: 1.6;

    overflow-x: hidden;

}


img {
    display: block;
    max-width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea,
select {
    font-family: inherit;
}


/* =========================================
   CONTAINER
========================================= */

.container {

    width: min(
        calc(100% - 50px),
        var(--container)
    );

    margin-inline: auto;

}


/* =========================================
   TOPBAR
========================================= */

.topbar {

    background: var(--graphite);

    color: #C9CCC6;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

}


.topbar-inner {

    min-height: 36px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.topbar-right {

    display: flex;

    gap: 25px;

}


.topbar i {
    color: var(--orange);
    margin-right: 5px;
}


/* =========================================
   HEADER
========================================= */

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background: rgba(
        245,
        242,
        235,
        .95
    );

    backdrop-filter: blur(18px);

    border-bottom:
        1px solid rgba(
            0,
            0,
            0,
            .07
        );

    transition: .3s;

}


.site-header.scrolled {

    box-shadow:
        0 10px 40px rgba(
            20,
            22,
            20,
            .08
        );

}


.nav-container {

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

}


/* =========================================
   LOGO
========================================= */

.logo {

    display: flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;

}


.logo-mark {

    width: 120px;

    height: 120px;

    display: grid;

    place-items: center;

   

    color: white;

    font-family:
        "Barlow Condensed",
        sans-serif;

    font-size: 19px;

    font-weight: 900;

    transform: skew(-8deg);

}


.logo-text {

    display: flex;

    flex-direction: column;

}


.logo-text strong {

    font-family:
        "Barlow Condensed",
        sans-serif;

    font-size: 22px;

    line-height: 1;

    letter-spacing: .5px;

}


.logo-text small {

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1.2px;

    color: var(--muted);

}


/* =========================================
   NAV
========================================= */

.main-nav {

    display: flex;

    align-items: center;

    gap: 23px;

}


.main-nav > a,
.nav-dropdown > a {

    display: flex;

    align-items: center;

    gap: 6px;

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .7px;

    color: #484C48;

    padding: 30px 0;

    position: relative;

}


.main-nav a:hover,
.main-nav a.active {

    color: var(--orange);

}


.main-nav a.active::after {

    content: "";

    position: absolute;

    bottom: 20px;

    left: 0;

    width: 20px;

    height: 2px;

    background: var(--orange);

}


/* =========================================
   DROPDOWN
========================================= */

.nav-dropdown {

    position: relative;

}


.nav-dropdown > a i {

    font-size: 13px;

}


.dropdown-menu {

    position: absolute;

    top: calc(100% - 5px);

    left: -20px;

    width: 220px;

    padding: 10px;

    background: var(--white);

    border: 1px solid var(--line);

    box-shadow:
        0 25px 60px rgba(
            0,
            0,
            0,
            .12
        );

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(10px);

    transition: .25s;

}


.nav-dropdown:hover .dropdown-menu {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);

}


.dropdown-menu a {

    display: block;

    padding: 11px 12px;

    font-size: 9px;

    font-weight: 700;

}


.dropdown-menu a:hover {

    background: var(--concrete);

    color: var(--orange);

}


/* =========================================
   HEADER BUTTON
========================================= */

.header-btn {

    background: var(--orange);

    color: white;

    padding: 13px 18px;

    font-size: 14px;

    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: .8px;

    display: flex;

    align-items: center;

    gap: 10px;

    transition: .3s;

}


.header-btn:hover {

    background: var(--orange-dark);

    transform:
        translateY(-2px);

}


/* =========================================
   MOBILE MENU
========================================= */

.mobile-menu-btn {

    display: none;

    width: 44px;

    height: 44px;

    border: 0;

    background: var(--graphite);

    color: white;

    cursor: pointer;

}


.mobile-menu {

    display: none;

}


/* =========================================
   BUTTONS
========================================= */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-height: 52px;

    padding: 0 24px;

    font-size: 14px;

    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: .8px;

    border: 1px solid transparent;

    transition:
        transform .3s,
        background .3s,
        color .3s;

}


.btn:hover {

    transform:
        translateY(-3px);

}


.btn-orange {

    background: var(--orange);

    color: white;

}


.btn-orange:hover {

    background:
        var(--orange-dark);

}


.btn-light {

    background: rgba(
        255,
        255,
        255,
        .75
    );

    border-color: white;

    color: var(--graphite);

}


.whatsapp-button {

    background: #25A85A;

    color: white;

}


.outline-light-btn {

    border: 1px solid #626761;

    color: white;

    padding: 14px 20px;

    display: inline-flex;

    gap: 10px;

    align-items: center;

    font-size: 14px;

    font-weight: 800;

    text-transform: uppercase;

}



/* =========================================
   HERO
========================================= */

.home-hero {
    min-height: calc(100vh - 118px);
    background: var(--concrete);
    position: relative;
    overflow: hidden;
}


/* =========================================
   BACKGROUND PATTERN
========================================= */

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: .35;

    background-image:
        linear-gradient(
            rgba(37, 40, 37, .06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(37, 40, 37, .06) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    pointer-events: none;
}


/* =========================================
   HERO INNER
========================================= */

.hero-inner {
    min-height: calc(100vh - 118px);

    display: grid;
    grid-template-columns: .9fr 1.1fr;

    align-items: center;

    position: relative;
    z-index: 2;

    padding: 60px 0 120px;
}


/* =========================================
   HERO COPY
========================================= */

.hero-copy {
    position: relative;
    z-index: 4;
}


/* =========================================
   EYEBROW
========================================= */

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;

    color: var(--muted);

    margin-bottom: 25px;
}

.eyebrow span {
    display: block;

    width: 30px;
    height: 2px;

    background: var(--orange);
}


/* =========================================
   HEADING
========================================= */

.hero-copy h1 {
    margin: 0;

    font-family: "Barlow Condensed", sans-serif;

    font-size: clamp(70px, 8vw, 125px);

    line-height: .83;

    text-transform: uppercase;

    letter-spacing: -3px;

    font-weight: 900;

    color: var(--graphite);
}

.hero-copy h1 em {
    color: var(--orange);
    font-style: normal;
}


/* =========================================
   DESCRIPTION
========================================= */

.hero-copy p {
    max-width: 520px;

    margin-top: 28px;

    color: #666A65;

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================
   BUTTONS
========================================= */

.hero-actions {
    display: flex;
    gap: 10px;

    flex-wrap: wrap;

    margin-top: 30px;
}


/* =========================================
   MINI STATS
========================================= */

.hero-mini-stats {
    display: flex;

    gap: 35px;

    margin-top: 55px;
}

.hero-mini-stats div {
    display: flex;

    flex-direction: column;
}

.hero-mini-stats strong {
    font-family: "Barlow Condensed", sans-serif;

    font-size: 30px;

    line-height: 1;

    color: var(--graphite);
}

.hero-mini-stats span {
    margin-top: 5px;

    color: #777B76;

    font-size: 14px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .7px;
}


/* =========================================
   HERO VISUAL
========================================= */

.hero-visual {
    height: 650px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================
   ORANGE CIRCLE
========================================= */

.hero-circle {
    width: 520px;
    height: 520px;

    position: absolute;

    right: 20px;
    top: 60px;

    border-radius: 50%;

    background: var(--orange);

    opacity: .15;

    filter: blur(1px);

    z-index: 1;
}


/* =========================================
   MACHINE IMAGE CONTAINER
========================================= */

.hero-machine {
    position: absolute;

    width: 650px;
    height: 570px;

    right: -50px;
    top: 50px;

    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: visible;
}


/* =========================================
   MACHINE IMAGE
========================================= */

.hero-machine img {
    display: block;

    width: 90%;
    height: 100%;

    /*
       IMPORTANT:
       contain use kar rahe hain taaki
       poori machine visible rahe.
    */

    object-fit: contain;

    object-position: center;

    /*
       Clip-path remove kiya hai.
       Isse image accidentally crop nahi hogi.
    */

    clip-path: none;

    border: none;

    filter:
        saturate(.95)
        contrast(1.05)
        drop-shadow(
            20px 30px 35px rgba(0, 0, 0, .20)
        );
}


/* =========================================
   FLOATING CARD
========================================= */

.hero-floating-card {
    position: absolute;

    bottom: 70px;
    left: 20px;

    z-index: 6;

    width: 220px;

    padding: 20px;

    background: rgba(255, 255, 255, .96);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .14);
}

.hero-floating-card span {
    display: block;

    color: var(--orange);

    font-size: 14px;

    font-weight: 900;

    letter-spacing: 1px;

    margin-bottom: 5px;
}

.hero-floating-card strong {
    display: block;

    font-family: "Barlow Condensed", sans-serif;

    font-size: 25px;

    text-transform: uppercase;

    color: var(--graphite);
}

.hero-floating-card small {
    color: #777;

    font-size: 14px;
}


/* =========================================
   HERO LABEL
========================================= */

.hero-label {
    position: absolute;

    right: 0;
    bottom: 60px;

    z-index: 4;

    font-family: "Barlow Condensed", sans-serif;

    font-size: 30px;

    font-weight: 800;

    line-height: .85;

    color: rgba(37, 40, 37, .18);

    text-align: right;
}

.hero-label span {
    color: var(--orange);

    font-size: 14px;
}


/* =========================================
   BOTTOM STRIP
========================================= */

.hero-bottom-strip {
    position: absolute;

    bottom: 0;
    left: 0;
    right: 0;

    height: 65px;

    background: var(--graphite);

    color: #D6D8D4;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    z-index: 10;
}

.hero-bottom-strip div {
    display: grid;

    place-items: center;

    border-right: 1px solid #3A3E3A;

    font-size: 14px;

    font-weight: 900;

    letter-spacing: 1px;
}

.hero-bottom-strip div:last-child {
    border-right: none;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .hero-inner {
        grid-template-columns: 1fr;

        padding-top: 50px;
    }

    .hero-copy {
        text-align: center;
    }

    .eyebrow {
        justify-content: center;
    }

    .hero-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-mini-stats {
        justify-content: center;
    }

    .hero-visual {
        height: 550px;

        margin-top: 20px;
    }

    .hero-circle {
        width: 430px;
        height: 430px;

        left: 50%;
        right: auto;

        transform: translateX(-50%);

        top: 50px;
    }

    .hero-machine {
        width: 600px;
        height: 500px;

        left: 50%;
        right: auto;

        transform: translateX(-50%);

        top: 40px;
    }

    .hero-floating-card {
        left: 8%;
        bottom: 45px;
    }

    .hero-label {
        right: 8%;
        bottom: 45px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .home-hero {
        min-height: auto;
    }

    .hero-inner {
        min-height: auto;

        width: 92%;

        padding:
            45px 0 100px;
    }

    .hero-copy h1 {
        font-size: 52px;

        letter-spacing: -2px;
    }

    .hero-copy p {
        font-size: 14px;

        line-height: 1.7;
    }

    .hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-mini-stats {
        justify-content: center;

        gap: 22px;

        margin-top: 40px;
    }

    .hero-mini-stats strong {
        font-size: 24px;
    }

    .hero-visual {
        height: 390px;

        margin-top: 10px;
    }

    .hero-circle {
        width: 300px;
        height: 300px;

        top: 35px;
    }

    .hero-machine {
        width: 100%;
        height: 350px;

        top: 20px;
    }

    .hero-floating-card {
        width: 170px;

        left: 0;
        bottom: 10px;

        padding: 14px;
    }

    .hero-floating-card strong {
        font-size: 17px;
    }

    .hero-label {
        display: none;
    }

    .hero-bottom-strip {
        position: relative;

        height: auto;

        grid-template-columns: repeat(2, 1fr);
    }

    .hero-bottom-strip div {
        min-height: 55px;

        padding: 10px;

        font-size: 14px;
    }
}



.section-heading h2,
.center-heading h2,
.why-content h2,
.detail-info-layout h2 {

    font-family:
        "Barlow Condensed",
        sans-serif;

    font-size:
        clamp(
            50px,
            6vw,
            78px
        );

    line-height: .88;

    text-transform: uppercase;

    letter-spacing: -2px;

}


.section-heading h2 span,
.center-heading h2 span,
.why-content h2 span,
.detail-info-layout h2 span {

    color: var(--orange);

}


.section-heading > p {

    max-width: 400px;

    color: #777;

    font-size: 14px;

}


/* =========================================
   KICKER
========================================= */

.section-kicker {

    font-size: 14px;

    font-weight: 900;

    letter-spacing: 1.8px;

    color: #777B76;

    text-transform: uppercase;

    margin-bottom: 12px;

}


.section-kicker.orange {

    color: var(--orange);

}


/* =========================================
   ACTION SECTION
========================================= */

.action-section {

    padding:
        105px 0;

    background:
        var(--paper);

}


.action-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;

}


.action-card {

    min-height: 310px;

    padding: 32px;

    position: relative;

    background: white;

    border:
        1px solid var(--line);

    overflow: hidden;

    transition: .4s;

}


.action-card:hover {

    border-color:
        var(--orange);

    box-shadow:
        0 25px 70px rgba(
            0,
            0,
            0,
            .1
        );

}


.action-card.orange-card {

    background:
        var(--orange);

    color: white;

    border-color:
        var(--orange);

}


.action-number {

    position: absolute;

    top: 20px;

    right: 20px;

    font-family:
        "Barlow Condensed",
        sans-serif;

    font-size: 50px;

    color: rgba(
        0,
        0,
        0,
        .08
    );

}


.orange-card .action-number {

    color: rgba(
        255,
        255,
        255,
        .18
    );

}


.action-card > i {

    font-size: 25px;

    color: var(--orange);

    margin-top: 60px;

}


.orange-card > i {

    color: white;

}


.action-card h3 {

    margin-top: 22px;

    font-family:
        "Barlow Condensed",
        sans-serif;

    font-size: 29px;

    text-transform: uppercase;

}


.action-card p {

    margin-top: 10px;

    color: #7A7E79;

    font-size: 14px;

}


.orange-card p {

    color:
        rgba(
            255,
            255,
            255,
            .8
        );

}


.action-card > span {

    position: absolute;

    bottom: 28px;

    font-size: 14px;

    font-weight: 900;

    text-transform: uppercase;

}


.action-card > span i {

    margin-left: 7px;

}


/* =========================================
   FEATURED
========================================= */

.featured-section {

    padding:
        110px 0;

    background:
        var(--graphite);

    color: white;

}


.featured-grid {

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr;

    grid-template-rows:
        270px 270px;

    gap: 15px;

}


.machine-card {

    position: relative;

    overflow: hidden;

    min-height: 270px;

    background: #333;

    transition:
        transform .35s ease;

}


.machine-card.large {

    grid-row:
        span 2;

}


.machine-image,
.machine-image img {

    width: 100%;

    height: 100%;

}


.machine-image img {

    object-fit: cover;

    transition:
        transform .7s
        cubic-bezier(
            .2,
            .8,
            .2,
            1
        );

}


.machine-card:hover
.machine-image img {

    transform:
        scale(1.08);

}


.machine-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(
                10,
                12,
                11,
                .92
            ),
            transparent 65%
        );

}


.machine-number {

    position: absolute;

    top: 20px;

    left: 20px;

    width: 40px;

    height: 40px;

    display: grid;

    place-items: center;

    border:
        1px solid rgba(
            255,
            255,
            255,
            .4
        );

    font-size: 14px;

    font-weight: 900;

}


.machine-content {

    position: absolute;

    left: 25px;

    bottom: 23px;

}


.machine-content small {

    color: var(--orange);

    font-size: 14px;

    font-weight: 900;

    letter-spacing: 1px;

}


.machine-content h3 {

    margin-top: 4px;

    font-family:
        "Barlow Condensed",
        sans-serif;

    font-size: 35px;

    text-transform: uppercase;

}


.machine-content span {

    display: block;

    margin-top: 8px;

    font-size: 14px;

    font-weight: 800;

    text-transform: uppercase;

}


/* =========================================
   SERVICES
========================================= */

.center-heading {

    max-width: 720px;

    margin:
        0 auto 50px;

    text-align: center;

}


.center-heading p {

    margin-top: 20px;

    color: #777;

    font-size: 14px;

}


.services-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;

}


.service-card {

    padding: 35px;

    min-height: 280px;

    border:
        1px solid var(--line);

    background:
        rgba(
            255,
            255,
            255,
            .45
        );

    position: relative;

    transition: .4s;

}


.service-card:hover {

    background: white;

    border-color:
        var(--orange);

    transform:
        translateY(-8px);

}


.service-icon {

    width: 52px;

    height: 52px;

    display: grid;

    place-items: center;

    background:
        rgba(
            232,
            117,
            22,
            .1
        );

    color:
        var(--orange);

    font-size: 20px;

}


.service-card > span {

    position: absolute;

    top: 30px;

    right: 30px;

    font-size: 14px;

    font-weight: 900;

    color: #aaa;

}


.service-card h3 {

    margin-top: 35px;

    font-family:
        "Barlow Condensed",
        sans-serif;

    font-size: 30px;

    text-transform: uppercase;

}


.service-card p {

    margin-top: 10px;

    color: #777;

    font-size: 14px;

    line-height: 1.8;

}


/* =========================================
   WHY
========================================= */

.why-section {

    padding:
        110px 0;

    background:
        #DEDAD1;

}


.why-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 100px;

    align-items: center;

}


.why-image {

    position: relative;

}


.why-image img {

    width: 100%;

    height: 600px;

    object-fit: cover;

}


.why-badge {

    position: absolute;

    right: -25px;

    bottom: 30px;

    background:
        var(--orange);

    color: white;

    width: 150px;

    height: 150px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 25px;

}


.why-badge strong {

    font-family:
        "Barlow Condensed",
        sans-serif;

    font-size: 60px;

    line-height: .8;

}


.why-badge span {

    margin-top: 12px;

    font-size: 14px;

    font-weight: 900;

    letter-spacing: 1px;

}


.why-content > p {

    margin-top: 25px;

    color: #686C67;

    font-size: 16px;

    line-height: 1.9;

}


.check-list {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 14px;

    margin-top: 30px;

}


.check-list div {

    font-size: 14px;

    font-weight: 700;

}


.check-list i {

    color: var(--orange);

    margin-right: 8px;

}


.text-button {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 35px;

    font-size: 14px;

    font-weight: 900;

    text-transform: uppercase;

    color: var(--graphite);

}


.text-button:hover {

    color: var(--orange);

}


/* =========================================
   GALLERY
========================================= */

.home-gallery {

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr;

    gap: 15px;

}


.gallery-tile {

    height: 350px;

    position: relative;

    overflow: hidden;

}


.gallery-tile img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .6s;

}


.gallery-tile:hover img {

    transform:
        scale(1.08);

}


.gallery-tile::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(
                0,
                0,
                0,
                .6
            ),
            transparent 55%
        );

}


.gallery-tile span {

    position: absolute;

    left: 25px;

    bottom: 20px;

    z-index: 2;

    color: white;

    font-size: 14px;

    font-weight: 900;

    letter-spacing: 1px;

}


/* =========================================
   STATS
========================================= */

.stats-section {

    background:
        var(--orange);

    color: white;

    padding:
        55px 0;

}


.stats-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

}


.stats-grid > div {

    padding: 10px 35px;

    border-right:
        1px solid
        rgba(
            255,
            255,
            255,
            .3
        );

}


.stats-grid > div:last-child {

    border: 0;

}


.stats-grid strong {

    display: block;

    font-family:
        "Barlow Condensed",
        sans-serif;
}

/* =========================================================
   SAI TRADING — COMPLETE WEBSITE STYLES
   Final responsive layer + inner pages + forms + footer
   ========================================================= */

/* --- Missing / continuation styles --- */
.stats-grid strong{font-family:"Barlow Condensed",sans-serif;font-size:55px;line-height:1;letter-spacing:-1px}
.stats-grid span{display:block;margin-top:7px;font-size:14px;font-weight:800;letter-spacing:1px;text-transform:uppercase;opacity:.9}

/* PAGE HERO */
.page-hero{position:relative;overflow:hidden;padding:115px 0 95px;background:var(--graphite);color:#fff}
.page-hero::before{content:"";position:absolute;inset:0;background:linear-gradient(115deg,rgba(255,255,255,.035),transparent 45%),linear-gradient(90deg,transparent 49.8%,rgba(255,255,255,.035) 50%,transparent 50.2%);background-size:auto,80px 80px;opacity:.65}
.page-hero::after{content:"";position:absolute;width:380px;height:380px;right:-150px;top:-180px;border:1px solid rgba(232,117,22,.35);border-radius:50%;box-shadow:0 0 0 45px rgba(232,117,22,.04),0 0 0 90px rgba(232,117,22,.025)}
.page-hero .container{position:relative;z-index:2}
.page-hero h1{max-width:900px;margin-top:12px;font-family:"Barlow Condensed",sans-serif;font-size:clamp(56px,7vw,96px);line-height:.88;letter-spacing:-2.5px;text-transform:uppercase;font-weight:900}
.page-hero h1 span{color:var(--orange);display:inline}
.page-hero p{max-width:590px;margin-top:25px;color:#c4c7c2;font-size:16px;line-height:1.85}

/* INNER CONTENT */
.about-page-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:80px;align-items:center}
.about-page-image{position:relative;overflow:hidden;background:#ddd}
.about-page-image::before{content:"SAI";position:absolute;left:20px;top:18px;z-index:2;color:#fff;font:900 12px/1 "Barlow Condensed";letter-spacing:2px;background:var(--orange);padding:10px 13px}
.about-page-image img{width:100%;height:570px;object-fit:cover;transition:transform .7s ease}
.about-page-image:hover img{transform:scale(1.04)}
.about-page-grid h2{font-family:"Barlow Condensed",sans-serif;font-size:clamp(46px,5vw,70px);line-height:.9;letter-spacing:-2px;text-transform:uppercase}
.about-page-grid h2 span{color:var(--orange)}
.about-page-grid p{margin-top:20px;color:#6f736e;font-size:16px;line-height:1.9}
.big-text{font-size:20px!important;line-height:1.75!important;color:#454944!important}

/* SERVICE CARDS */
.services-large-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.service-large-card{position:relative;min-height:310px;padding:36px;background:#fff;border:1px solid var(--line);overflow:hidden;transition:transform .35s ease,box-shadow .35s ease,border-color .35s ease}
.service-large-card::after{content:"";position:absolute;right:-45px;bottom:-55px;width:170px;height:170px;border:1px solid rgba(37,40,37,.07);border-radius:50%}
.service-large-card:hover{transform:translateY(-7px);border-color:var(--orange);box-shadow:0 22px 55px rgba(25,27,25,.11)}
.service-large-card>span{position:absolute;right:25px;top:22px;font:800 42px/1 "Barlow Condensed",sans-serif;color:#e5e1d8}
.service-large-card>i{display:grid;place-items:center;width:54px;height:54px;background:rgba(232,117,22,.1);color:var(--orange);font-size:20px}
.service-large-card h2{margin-top:42px;font:900 30px/.95 "Barlow Condensed",sans-serif;text-transform:uppercase;letter-spacing:-.4px}
.service-large-card p{max-width:330px;margin-top:13px;color:#737771;font-size:14px;line-height:1.8}
.service-large-card.orange-service{background:var(--orange);border-color:var(--orange);color:#fff}
.service-large-card.orange-service>span{color:rgba(255,255,255,.2)}
.service-large-card.orange-service>i{background:rgba(255,255,255,.16);color:#fff}
.service-large-card.orange-service p{color:rgba(255,255,255,.82)}

/* FEATURE / TWO COLUMN */
.two-column-page{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr);gap:70px;align-items:start}
.feature-panel{background:var(--graphite);color:#fff;padding:36px}
.feature-panel h3{font:900 34px/.95 "Barlow Condensed",sans-serif;text-transform:uppercase}
.feature-panel>p{margin-top:12px;color:#aeb2ad;font-size:14px;line-height:1.8}
.feature-row{display:flex;gap:16px;padding:21px 0;border-bottom:1px solid #3b3f3b}
.feature-row:last-child{border-bottom:0}
.feature-row i{flex:0 0 30px;color:var(--orange);font-size:18px;margin-top:2px}
.feature-row strong{display:block;font:800 19px/1 "Barlow Condensed",sans-serif;text-transform:uppercase}
.feature-row span{display:block;margin-top:6px;color:#9ea39d;font-size:10px;line-height:1.65}
.process-list{display:grid;gap:13px;margin-top:30px}
.process-list>div{display:grid;grid-template-columns:45px 1fr;gap:15px;align-items:start;padding:19px;background:#fff;border:1px solid var(--line)}
.process-list>div>span{display:grid;place-items:center;height:38px;color:#151414;font:900 16px/1 "Barlow Condensed",sans-serif}
.process-list strong{display:block;font:900 22px/1 "Barlow Condensed",sans-serif;text-transform:uppercase}
.process-list p{margin-top:6px;color:#737771;font-size:14px;line-height:1.7}
.sell-points{display:grid;grid-template-columns:1fr 1fr;gap:13px;margin-top:30px}
.sell-points>div{padding:20px;background:#fff;border:1px solid var(--line)}
.sell-points i{color:var(--orange);font-size:20px}
.sell-points strong{display:block;margin-top:14px;font:900 21px/1 "Barlow Condensed",sans-serif;text-transform:uppercase}
.sell-points p{margin-top:7px;color:#737771;font-size:14px;line-height:1.7}

/* DETAIL PAGE */
.detail-hero{padding:70px 0 100px;background:var(--paper)}
.detail-grid{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(380px,.95fr);gap:70px;align-items:center}
.detail-image{position:relative;background:#dedad1;overflow:hidden;min-height:520px}
.detail-image::after{content:"EQUIPMENT";position:absolute;right:20px;top:20px;color:rgba(37,40,37,.16);font:900 10px/1 "Barlow Condensed";letter-spacing:2px}
.detail-image img{width:100%;height:520px;object-fit:cover;transition:transform .7s ease}
.detail-image:hover img{transform:scale(1.035)}
.detail-copy .detail-tag{display:inline-flex;padding:7px 11px;background:rgba(232,117,22,.1);color:var(--orange);font-size:8px;font-weight:900;letter-spacing:1.2px;text-transform:uppercase}
.detail-copy h1{margin-top:15px;font:900 clamp(54px,6vw,82px)/.88 "Barlow Condensed",sans-serif;letter-spacing:-2px;text-transform:uppercase}
.detail-copy>p{margin-top:22px;color:#6f736e;font-size:14px;line-height:1.9}
.detail-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:28px}
.detail-info-layout{padding:90px 0;background:#fff}
.detail-info-layout> .container{display:grid;grid-template-columns:.85fr 1.15fr;gap:70px;align-items:start}
.detail-info-layout h2{font-size:clamp(44px,5vw,66px)}
.detail-info-layout h2 span{color:var(--orange)}
.spec-section{margin-top:35px}
.spec-grid{display:grid;grid-template-columns:1fr 1fr;border:1px solid var(--line)}
.spec-item{padding:18px 20px;border-right:1px solid var(--line);border-bottom:1px solid var(--line)}
.spec-item:nth-child(2n){border-right:0}
.spec-item:nth-last-child(-n+2){border-bottom:0}
.spec-item small{display:block;color:#8a8e89;font-size:14px;font-weight:900;letter-spacing:1px;text-transform:uppercase}
.spec-item strong{display:block;margin-top:6px;font:800 17px/1.2 "Barlow Condensed",sans-serif;text-transform:uppercase}
.related-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:15px}
.related-card{background:#fff;border:1px solid var(--line);overflow:hidden;transition:.35s}
.related-card:hover{border-color:var(--orange);box-shadow:0 18px 45px rgba(0,0,0,.1);transform:translateY(-5px)}
.related-image{height:220px;overflow:hidden;background:#ddd}
.related-image img{width:100%;height:100%;object-fit:cover;transition:.6s}
.related-card:hover .related-image img{transform:scale(1.07)}
.related-content{padding:20px}
.related-content small{color:var(--orange);font-size:14px;font-weight:900;letter-spacing:1px;text-transform:uppercase}
.related-content h3{margin-top:6px;font:900 25px/1 "Barlow Condensed",sans-serif;text-transform:uppercase}
.related-content p{margin-top:8px;color:#777;font-size:14px;line-height:1.7}
.related-content a{display:inline-flex;gap:8px;margin-top:15px;font-size:14px;font-weight:900;text-transform:uppercase}

/* CONTACT */
.contact-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:75px;align-items:start}
.contact-info h2{font:900 clamp(48px,5vw,68px)/.9 "Barlow Condensed",sans-serif;letter-spacing:-1.8px;text-transform:uppercase}
.contact-info h2 span{color:var(--orange)}
.contact-details{display:grid;gap:10px;margin-top:35px}
.contact-details>a,.contact-details>div{display:flex;gap:17px;align-items:center;padding:17px 18px;background:#fff;border:1px solid var(--line);transition:.25s}
.contact-details>a:hover{border-color:var(--orange);transform:translateX(4px)}
.contact-details i{display:grid;place-items:center;width:40px;height:40px;flex:0 0 40px;background:rgba(232,117,22,.1);color:var(--orange)}
.contact-details small{display:block;color:#858983;font-size:14px;font-weight:900;letter-spacing:1px}
.contact-details strong{display:block;margin-top:4px;font-size:14px;line-height:1.45}
.enquiry-box{background:#fff;border:1px solid var(--line);padding:38px;box-shadow:0 20px 55px rgba(25,27,25,.06)}
.enquiry-box h3{margin-top:7px;font:900 38px/.95 "Barlow Condensed",sans-serif;text-transform:uppercase}
.enquiry-box form{margin-top:28px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.form-group{margin-bottom:17px}
.form-group label{display:block;margin-bottom:7px;color:#565b56;font-size:14px;font-weight:900;letter-spacing:.9px;text-transform:uppercase}
.form-group input,.form-group textarea,.form-group select{width:100%;border:1px solid #d8d5cd;background:#faf9f6;color:#303430;padding:13px 14px;outline:none;font-size:12px;border-radius:0;transition:.25s}
.form-group textarea{resize:vertical;min-height:120px}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{border-color:var(--orange);box-shadow:0 0 0 3px rgba(232,117,22,.09);background:#fff}
.form-submit{width:100%;cursor:pointer}

/* GALLERY */
.gallery-filters{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:25px}
.gallery-filter{border:1px solid var(--line);background:#fff;padding:10px 15px;color:#666b65;font-size:14px;font-weight:900;letter-spacing:.8px;text-transform:uppercase;cursor:pointer;transition:.25s}
.gallery-filter:hover,.gallery-filter.active{background:var(--orange);border-color:var(--orange);color:#fff}
.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);grid-auto-rows:270px;gap:15px}
.gallery-item{position:relative;overflow:hidden;background:#ddd}
.gallery-item.large{grid-row:span 2}
.gallery-item img{width:100%;height:100%;object-fit:cover;transition:.65s}
.gallery-item::after{content:"";position:absolute;inset:0;background:linear-gradient(0deg,rgba(0,0,0,.72),transparent 60%);pointer-events:none}
.gallery-item:hover img{transform:scale(1.07)}
.gallery-preview{position:absolute;left:20px;right:20px;bottom:18px;z-index:2;color:#fff;font-size:14px;font-weight:900;text-transform:uppercase;letter-spacing:.7px}
.gallery-preview small{display:block;margin-bottom:5px;color:var(--orange);font-size:14px;letter-spacing:1.2px}

/* FINAL CTA */
.final-cta{padding:75px 0;background:var(--graphite);color:#fff;overflow:hidden}
.final-cta-inner{display:flex;align-items:center;justify-content:space-between;gap:35px}
.final-cta h2{margin-top:5px;font:900 clamp(42px,5vw,65px)/.88 "Barlow Condensed",sans-serif;letter-spacing:-1.5px;text-transform:uppercase}
.final-cta h2 span{color:var(--orange)}
.final-cta-buttons{display:flex;gap:10px;flex-wrap:wrap}
.center-button{display:flex;justify-content:center;margin-top:35px}
.back-link{display:inline-flex;align-items:center;gap:8px;margin-bottom:22px;color:#6d726d;font-size:14px;font-weight:900;text-transform:uppercase}
.back-link:hover{color:var(--orange)}

/* FOOTER */
.site-footer{padding:75px 0 25px;background:#e0e2e0;color:#2a2b2a}
.footer-main{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:55px;padding-bottom:55px;border-bottom:1px solid #303530}
.footer-logo{color:#fff}
.footer-logo .logo-text small{color:#90958f}
.footer-about>p{max-width:350px;margin-top:20px;color:#232423;font-size:14px;line-height:1.85}
.footer-social{display:flex;gap:8px;margin-top:23px}
.footer-social a{display:grid;place-items:center;width:36px;height:36px;border:1px solid #3b403b;color:#aeb3ad;font-size:14px;transition:.25s}
.footer-social a:hover{background:var(--orange);border-color:var(--orange);color:#020202;transform:translateY(-3px)}
.footer-column{display:flex;flex-direction:column;align-items:flex-start}
.footer-column h4{margin-bottom:18px;color:#e87516;font-size:14px;font-weight:900;letter-spacing:1.2px;text-transform:uppercase}
.footer-column a{padding:5px 0;color:#929790;font-size:14px;transition:.2s}
.footer-column a:hover{color:var(--orange);transform:translateX(3px)}
.footer-bottom{display:flex;justify-content:space-between;gap:20px;padding-top:20px;color:##e87516;font-size:14px;letter-spacing:.2px}
.floating-whatsapp{position:fixed;right:24px;bottom:24px;z-index:1200;display:grid;place-items:center;width:54px;height:54px;background:#25a85a;color:#fff;border-radius:50%;font-size:23px;box-shadow:0 12px 30px rgba(0,0,0,.2);transition:.25s}
.floating-whatsapp:hover{transform:translateY(-5px) scale(1.04);background:#1f944f}

/* REVEAL */
.reveal,.reveal-right{opacity:0;transition:opacity .75s ease,transform .75s ease}
.reveal{transform:translateY(25px)}
.reveal-right{transform:translateX(35px)}
.reveal.visible,.reveal-right.visible{opacity:1;transform:none}

/* =========================================================
   FINAL POLISH OVERRIDES
   Keeps the original industrial visual direction but fixes
   oversized spacing, alignment and responsive behavior.
   ========================================================= */
:root{--container:1240px;--radius:2px}
body{font-size:16px;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}
.container{width:min(calc(100% - 48px),var(--container))}

@media (min-width:901px){
  .site-header{height:auto}
  .main-nav{margin-left:auto}
  .header-btn{margin-left:3px}
}

@media (max-width:1100px){
  .main-nav{gap:14px}
  .main-nav>a,.nav-dropdown>a{font-size:8px}
  .header-btn{padding:12px 14px}
  .hero-inner{grid-template-columns:1fr 1fr;gap:20px}
  .hero-copy h1{font-size:clamp(62px,8vw,96px)}
  .hero-visual{height:560px}
  .hero-machine{width:570px;right:-90px}
  .hero-machine img{height:500px}
  .hero-circle{width:420px;height:420px}
  .action-grid{grid-template-columns:repeat(2,1fr)}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .featured-grid{grid-template-columns:1.3fr 1fr;grid-template-rows:270px 270px 270px}
  .machine-card.large{grid-row:span 2}
  .why-grid{gap:55px}
  .home-gallery{grid-template-columns:1.2fr 1fr}
  .home-gallery .gallery-tile:first-child{grid-row:span 2;height:auto}
  .home-gallery .gallery-tile{height:270px}
  .footer-main{gap:30px}
}

@media (max-width:900px){
  .topbar{font-size:14px}
  .topbar-right{gap:12px}
  .topbar-inner{min-height:32px}
  .nav-container{min-height:70px}
  .main-nav,.site-header>.container>.header-btn,.nav-container>.header-btn{display:none}
  .mobile-menu-btn{display:grid;place-items:center}
  .mobile-menu{display:none;padding:0 24px 20px;background:rgba(245,242,235,.98);border-bottom:1px solid var(--line)}
  .mobile-menu.open{display:block}
  .mobile-menu a{display:block;padding:13px 0;border-bottom:1px solid rgba(0,0,0,.07);font-size:14px;font-weight:900;text-transform:uppercase;letter-spacing:.7px}
  .mobile-menu a:hover{color:var(--orange)}
  .home-hero{min-height:auto}
  .hero-inner{grid-template-columns:1fr;min-height:auto;padding:65px 0 115px}
  .hero-copy{max-width:720px}
  .hero-copy h1{font-size:clamp(62px,15vw,110px)}
  .hero-visual{height:470px;margin-top:10px}
  .hero-machine{width:min(680px,100vw);right:-12%;top:0}
  .hero-machine img{height:430px}
  .hero-circle{width:390px;height:390px;right:8%;top:20px}
  .hero-floating-card{left:0;bottom:20px}
  .hero-label{right:0;bottom:18px}
  .hero-bottom-strip{position:relative;height:auto;grid-template-columns:repeat(2,1fr)}
  .hero-bottom-strip div{min-height:50px}
  .section,.action-section,.featured-section,.why-section{padding:80px 0}
  .section-heading{align-items:flex-start;flex-direction:column;margin-bottom:35px;gap:18px}
  .section-heading>p{max-width:600px}
  .featured-grid{grid-template-columns:1fr 1fr;grid-template-rows:260px 260px 260px}
  .machine-card.large{grid-column:span 2;grid-row:span 1}
  .why-grid,.two-column-page,.contact-grid,.detail-grid{grid-template-columns:1fr;gap:45px}
  .why-image img{height:480px}
  .why-badge{right:15px}
  .detail-info-layout> .container{grid-template-columns:1fr;gap:40px}
  .detail-hero{padding:55px 0 75px}
  .detail-image,.detail-image img{min-height:420px;height:420px}
  .services-large-grid{grid-template-columns:repeat(2,1fr)}
  .footer-main{grid-template-columns:1.5fr 1fr 1fr;gap:35px}
  .footer-about{grid-column:span 3}
}

@media (max-width:640px){
  .container{width:min(calc(100% - 30px),var(--container))}
  .topbar-left{display:none}
  .topbar-inner{justify-content:center}
  .topbar-right{width:100%;justify-content:center;gap:15px}
  .logo-mark{width:38px;height:38px;font-size:20px}
  .logo-text strong{font-size:20px}
  .logo-text small{font-size:12px}
  .nav-container{min-height:64px}
  .mobile-menu{padding-left:15px;padding-right:15px}
  .home-hero .container.hero-inner{padding-top:48px;padding-bottom:80px}
  .hero-copy h1{font-size:clamp(55px,17vw,82px);letter-spacing:-2px}
  .hero-copy p{font-size:14px;line-height:1.75}
  .hero-actions{display:grid;grid-template-columns:1fr}
  .hero-actions .btn{width:100%}
  .hero-mini-stats{gap:22px;margin-top:38px}
  .hero-mini-stats strong{font-size:25px}
  .hero-visual{height:340px;margin-top:25px}
  .hero-machine{right:-22%;top:10px;width:125%}
  .hero-machine img{height:320px;clip-path:none}
  .hero-circle{width:280px;height:280px;right:0;top:15px}
  .hero-floating-card{width:190px;padding:15px;bottom:8px}
  .hero-floating-card strong{font-size:22px}
  .hero-label{font-size:21px;bottom:12px}
  .hero-label span{font-size:14px}
  .hero-bottom-strip{grid-template-columns:1fr 1fr}
  .hero-bottom-strip div{padding:10px;font-size:13px;text-align:center}
  .section,.action-section,.featured-section,.why-section{        padding: 73px 0;
        width: 94%;
        margin-left: 11px;}
  .section-heading h2,.center-heading h2,.why-content h2,.detail-info-layout h2{font-size:clamp(43px,13vw,60px)}
  .action-grid,.services-grid,.services-large-grid,.product-list-grid,.related-grid{grid-template-columns:1fr}
  .action-card{min-height:260px;padding:26px}
  .action-card>i{margin-top:45px}
  .featured-grid{grid-template-columns:1fr;grid-template-rows:280px 230px 230px 230px}
  .machine-card.large{grid-column:auto;grid-row:auto}
  .machine-content h3{font-size:27px}
  .why-image img{height:380px}
  .why-badge{width:125px;height:125px;right:10px;bottom:15px;padding:18px}
  .why-badge strong{font-size:45px}
  .check-list{grid-template-columns:1fr}
  .home-gallery{grid-template-columns:1fr}
  .home-gallery .gallery-tile:first-child{grid-row:auto;height:300px}
  .home-gallery .gallery-tile{height:240px}
  .stats-grid{grid-template-columns:1fr 1fr}
  .stats-grid>div{padding:18px 20px;border-right:1px solid rgba(255,255,255,.3);border-bottom:1px solid rgba(255,255,255,.3)}
  .stats-grid>div:nth-child(2n){border-right:0}
  .stats-grid>div:nth-last-child(-n+2){border-bottom:0}
  .stats-grid strong{font-size:42px}
  .page-hero{padding:75px 0 65px}
  .page-hero h1{font-size:clamp(52px,15vw,76px);letter-spacing:-1.8px}
  .page-hero p{font-size:14px}
  .about-page-grid{gap:35px}
  .about-page-image img{height:360px}
  .about-page-grid h2{font-size:50px}
  .big-text{font-size:16px!important}
  .service-large-card{min-height:275px;padding:28px}
  .service-large-card h2{margin-top:32px;font-size:27px}
  .sell-points{grid-template-columns:1fr}
  .process-list>div{grid-template-columns:40px 1fr}
  .detail-grid{gap:30px}
  .detail-image,.detail-image img{height:330px;min-height:330px}
  .detail-copy h1{font-size:clamp(52px,15vw,72px)}
  .detail-actions{display:grid;grid-template-columns:1fr}
  .detail-actions .btn{width:100%}
  .spec-grid{grid-template-columns:1fr}
  .spec-item,.spec-item:nth-child(2n){border-right:0}
  .spec-item:nth-last-child(-n+2){border-bottom:1px solid var(--line)}
  .spec-item:last-child{border-bottom:0}
  .related-image{height:200px}
  .enquiry-box{padding:25px 20px}
  .enquiry-box h3{font-size:32px}
  .form-row{grid-template-columns:1fr}
  .gallery-grid{grid-template-columns:1fr;grid-auto-rows:270px}
  .gallery-item.large{grid-row:span 1}
  .final-cta{padding:60px 0}
  .final-cta-inner{flex-direction:column;align-items:flex-start}
  .final-cta .btn{width:100%}
  .footer-main{grid-template-columns:1fr 1fr;gap:28px}
  .footer-about{grid-column:span 2}
  .footer-bottom{flex-direction:column;gap:8px}
  .floating-whatsapp{right:15px;bottom:15px;width:50px;height:50px;font-size:21px}
}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{scroll-behavior:auto!important;transition-duration:.01ms!important;animation-duration:.01ms!important;animation-iteration-count:1!important}
  .reveal,.reveal-right{opacity:1!important;transform:none!important}
}

/* =========================================================
   SAI TRADING
   SERVICES PAGE - PREMIUM INDUSTRIAL DESIGN
   ========================================================= */


/* =========================================================
   SERVICES PAGE HERO
   ========================================================= */

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 125px 0 95px;
    background:
        linear-gradient(135deg, #171a18 0%, #20231f 55%, #292b27 100%);
    color: #ffffff;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.page-hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -180px;
    top: -250px;
    border: 1px solid rgba(232,117,22,0.20);
    border-radius: 50%;
}

.page-hero::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    right: -100px;
    top: -180px;
    border: 1px solid rgba(232,117,22,0.10);
    border-radius: 50%;
}

.page-hero .container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
}

.page-hero .section-kicker {
    margin-bottom: 18px;
}

.page-hero h1 {
    max-width: 850px;
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(54px, 7vw, 94px);
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -1.5px;
    text-transform: uppercase;
}

.page-hero h1 span {
    display: block;
    color: #e87516;
}

.page-hero p {
    max-width: 620px;
    margin: 28px 0 0;
    color: #c8cbc6;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    line-height: 1.8;
}


/* =========================================================
   SERVICES SECTION
   ========================================================= */

.section {
    position: relative;
}

.services-large-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================================
   SERVICE CARD
   ========================================================= */

.service-large-card {
    position: relative;
    min-height: 340px;
    padding: 42px 42px 40px;
    overflow: hidden;

    background: #f5f2eb;
    border: 1px solid #d5d1c8;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


/* Large background number */

.service-large-card > span:first-child {
    position: absolute;
    top: 22px;
    right: 30px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 88px;
    font-weight: 800;
    line-height: 1;

    color: rgba(37,40,37,0.055);

    pointer-events: none;
    user-select: none;

    transition:
        color 0.35s ease,
        transform 0.35s ease;
}


/* Orange top line */

.service-large-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;

    width: 0;
    height: 4px;

    background: #e87516;

    transition: width 0.4s ease;
}


/* Decorative corner */

.service-large-card::after {
    content: "";
    position: absolute;

    width: 110px;
    height: 110px;

    right: -55px;
    bottom: -55px;

    border: 1px solid rgba(232,117,22,0.12);
    border-radius: 50%;

    transition: transform 0.4s ease;
}


/* =========================================================
   SERVICE ICON
   ========================================================= */

.service-large-card > i {
    position: relative;
    z-index: 2;

    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 30px;

    background: #252825;
    color: #e87516;

    font-size: 23px;

    border: 1px solid #353934;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}


/* =========================================================
   SERVICE TITLE
   ========================================================= */

.service-large-card h2 {
    position: relative;
    z-index: 2;

    margin: 0 0 15px;

    color: #252825;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 39px;
    font-weight: 750;
    line-height: 1;

    text-transform: uppercase;
    letter-spacing: -0.3px;

    transition: color 0.3s ease;
}


/* =========================================================
   SERVICE DESCRIPTION
   ========================================================= */

.service-large-card p {
    position: relative;
    z-index: 2;

    max-width: 520px;
    margin: 0;

    color: #747873;

    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.75;

    transition: color 0.3s ease;
}


/* =========================================================
   CARD HOVER
   ========================================================= */

.service-large-card:hover {
    transform: translateY(-7px);

    background: #252825;
    border-color: #252825;

    box-shadow:
        0 20px 45px rgba(23,26,24,0.16);
}

.service-large-card:hover::before {
    width: 100%;
}

.service-large-card:hover::after {
    transform: scale(1.6);
}

.service-large-card:hover > span:first-child {
    color: rgba(232,117,22,0.13);
    transform: translateY(-5px);
}

.service-large-card:hover > i {
    background: #e87516;
    color: #ffffff;
    border-color: #e87516;

    transform: translateY(-3px);
}

.service-large-card:hover h2 {
    color: #ffffff;
}

.service-large-card:hover p {
    color: #bfc3bd;
}


/* =========================================================
   ORANGE SERVICE CARD
   ========================================================= */

.service-large-card.orange-service {
    background: #e87516;
    border-color: #e87516;
    color: #ffffff;
}

.service-large-card.orange-service::before {
    background: #ffffff;
}

.service-large-card.orange-service::after {
    border-color: rgba(255,255,255,0.18);
}

.service-large-card.orange-service > span:first-child {
    color: rgba(255,255,255,0.14);
}

.service-large-card.orange-service > i {
    background: #252825;
    color: #e87516;
    border-color: #252825;
}

.service-large-card.orange-service h2 {
    color: #ffffff;
}

.service-large-card.orange-service p {
    color: rgba(255,255,255,0.82);
}


/* Orange card hover */

.service-large-card.orange-service:hover {
    background: #c95d0c;
    border-color: #c95d0c;

    box-shadow:
        0 20px 45px rgba(201,93,12,0.25);
}

.service-large-card.orange-service:hover > i {
    background: #ffffff;
    color: #c95d0c;
    border-color: #ffffff;
}

.service-large-card.orange-service:hover p {
    color: #ffffff;
}


/* =========================================================
   SERVICES CARD SMALL DETAILS
   ========================================================= */

.service-large-card h2::after {
    content: "";
    display: block;

    width: 38px;
    height: 3px;

    margin-top: 16px;

    background: #e87516;

    transition: width 0.35s ease;
}

.service-large-card:hover h2::after {
    width: 70px;
}

.service-large-card.orange-service h2::after {
    background: #ffffff;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta {
    position: relative;
    overflow: hidden;

    padding: 82px 0;

    background: #252825;
    color: #ffffff;
}

.final-cta::before {
    content: "";
    position: absolute;

    width: 460px;
    height: 460px;

    right: -220px;
    top: -180px;

    border: 1px solid rgba(232,117,22,0.20);
    border-radius: 50%;
}

.final-cta::after {
    content: "";
    position: absolute;

    width: 300px;
    height: 300px;

    right: -120px;
    top: -100px;

    border: 1px solid rgba(232,117,22,0.12);
    border-radius: 50%;
}

.final-cta-inner {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.final-cta h2 {
    margin: 8px 0 0;

    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(40px, 5vw, 65px);
    font-weight: 800;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.final-cta h2 span {
    display: block;
    color: #e87516;
}

.final-cta .btn {
    flex-shrink: 0;
}


/* =========================================================
   ORANGE KICKER
   ========================================================= */

.section-kicker.orange {
    color: #e87516;
}

.section-kicker.orange::before {
    background: #e87516;
}


/* =========================================================
   BUTTON
   ========================================================= */

.btn-orange {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 30px;

    background: #e87516;
    color: #ffffff;

    border: 1px solid #e87516;

    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.btn-orange:hover {
    background: #c95d0c;
    border-color: #c95d0c;
    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(201,93,12,0.25);
}


/* =========================================================
   DESKTOP LARGE
   ========================================================= */

@media (min-width: 1400px) {

    .services-large-grid {
        max-width: 1240px;
        gap: 26px;
    }

    .service-large-card {
        min-height: 360px;
        padding: 48px;
    }

    .service-large-card h2 {
        font-size: 43px;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .page-hero {
        padding: 105px 0 75px;
    }

    .page-hero h1 {
        font-size: clamp(52px, 9vw, 76px);
    }

    .services-large-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .service-large-card {
        min-height: 320px;
        padding: 34px 30px;
    }

    .service-large-card h2 {
        font-size: 34px;
    }

    .service-large-card > span:first-child {
        font-size: 76px;
        right: 22px;
    }

    .final-cta {
        padding: 70px 0;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .page-hero {
        padding: 90px 0 65px;
    }

    .page-hero h1 {
        font-size: clamp(48px, 14vw, 65px);
        line-height: 0.94;
    }

    .page-hero p {
        margin-top: 22px;
        font-size: 15px;
        line-height: 1.7;
    }


    /* Services */

    .services-large-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-large-card {
        min-height: 300px;
        padding: 32px 27px;
    }

    .service-large-card > span:first-child {
        top: 18px;
        right: 20px;
        font-size: 72px;
    }

    .service-large-card > i {
        width: 56px;
        height: 56px;
        margin-bottom: 25px;
        font-size: 21px;
    }

    .service-large-card h2 {
        font-size: 34px;
        margin-bottom: 13px;
    }

    .service-large-card p {
        font-size: 14px;
        line-height: 1.7;
    }


    /* CTA */

    .final-cta {
        padding: 60px 0;
    }

    .final-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .final-cta h2 {
        font-size: 48px;
    }

    .final-cta .btn {
        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .page-hero {
        padding: 78px 0 55px;
    }

    .page-hero h1 {
        font-size: 46px;
    }

    .page-hero p {
        font-size: 16px;
    }

    .service-large-card {
        min-height: 285px;
        padding: 28px 23px;
    }

    .service-large-card > span:first-child {
        font-size: 64px;
    }

    .service-large-card > i {
        width: 52px;
        height: 52px;
        font-size: 19px;
    }

    .service-large-card h2 {
        font-size: 31px;
    }

    .service-large-card h2::after {
        margin-top: 13px;
    }

    .service-large-card p {
        font-size: 16.5px;
    }

    .final-cta h2 {
        font-size: 42px;
    }

}


/* =========================================================
   VERY SMALL DEVICES
   ========================================================= */

@media (max-width: 360px) {

    .page-hero h1 {
        font-size: 41px;
    }

    .service-large-card h2 {
        font-size: 28px;
    }

    .final-cta h2 {
        font-size: 38px;
    }

}

/* =========================================================
   SAI TRADING - SELL EQUIPMENT PAGE
   PREMIUM INDUSTRIAL DESIGN
   ========================================================= */


/* =========================================================
   SELL PAGE TWO COLUMN
   ========================================================= */

.two-column-page {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    gap: 75px;
    align-items: start;
}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.two-column-page > div:first-child {
    padding-top: 8px;
}

.two-column-page .section-kicker {
    margin-bottom: 18px;
}

.two-column-page h2 {
    max-width: 650px;

    margin: 0 0 25px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 800;
    line-height: 0.95;

    letter-spacing: -0.8px;
    text-transform: uppercase;

    color: #252825;
}

.two-column-page h2 span {
    display: block;
    color: #e87516;
}


/* =========================================================
   BIG TEXT
   ========================================================= */

.two-column-page .big-text {
    max-width: 650px;

    margin: 0 0 35px;

    color: #747873;

    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.85;
}


/* =========================================================
   SELL POINTS
   ========================================================= */

.sell-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    max-width: 650px;

    gap: 13px 18px;

    margin-top: 30px;
}

.sell-points > div {
    display: flex;
    align-items: center;

    min-height: 56px;

    padding: 12px 17px;

    background: #f5f2eb;

    border: 1px solid #d5d1c8;

    color: #252825;

    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 700;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.sell-points > div:hover {
    background: #252825;
    border-color: #252825;
    color: #ffffff;

    transform: translateX(5px);
}

.sell-points i {
    width: 28px;
    height: 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-right: 12px;

    flex-shrink: 0;

    background: #e87516;
    color: #ffffff;

    font-size: 12px;

    border-radius: 50%;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.sell-points > div:hover i {
    background: #ffffff;
    color: #e87516;
}


/* =========================================================
   ENQUIRY FORM
   ========================================================= */

.two-column-page .enquiry-box {
    position: relative;

    padding: 40px 38px 38px;

    background: #252825;

    border: 1px solid #252825;

    box-shadow:
        0 20px 50px rgba(23,26,24,0.12);
}

.two-column-page .enquiry-box::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #e87516;
}

.two-column-page .enquiry-box::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -90px;
    bottom: -90px;

    border: 1px solid rgba(232,117,22,0.15);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   FORM HEADING
   ========================================================= */

.two-column-page .enquiry-box .section-kicker {
    color: #e87516;
}

.two-column-page .enquiry-box h2 {
    margin-bottom: 12px;

    color: #ffffff;

    font-size: 42px;
}

.two-column-page .enquiry-box > p {
    margin: 0 0 28px;

    color: #aeb2ac;

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   FORM ROW
   ========================================================= */

.two-column-page .form-row {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 15px;
}


/* =========================================================
   FORM GROUP
   ========================================================= */

.two-column-page .form-group {
    margin-bottom: 17px;
}

.two-column-page .form-group label {
    display: block;

    margin-bottom: 7px;

    color: #dfe2dd;

    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.4px;
}


/* =========================================================
   FORM INPUTS
   ========================================================= */

.two-column-page .form-group input,
.two-column-page .form-group select,
.two-column-page .form-group textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 14px 15px;

    background: #30332f;

    border: 1px solid #484c47;

    outline: none;

    color: #ffffff;

    font-family: "Inter", sans-serif;
    font-size: 16px;

    border-radius: 0;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.two-column-page .form-group input,
.two-column-page .form-group select {
    height: 50px;
}

.two-column-page .form-group textarea {
    min-height: 125px;

    resize: vertical;
}


/* Placeholder */

.two-column-page .form-group input::placeholder,
.two-column-page .form-group textarea::placeholder {
    color: #858a84;
}


/* Focus */

.two-column-page .form-group input:focus,
.two-column-page .form-group select:focus,
.two-column-page .form-group textarea:focus {
    background: #292c28;

    border-color: #e87516;

    box-shadow:
        0 0 0 2px rgba(232,117,22,0.10);
}


/* Select */

.two-column-page .form-group select {
    cursor: pointer;
}


/* =========================================================
   FORM SUBMIT
   ========================================================= */

.two-column-page .form-submit {
    width: 100%;

    min-height: 54px;

    margin-top: 5px;

    border: 1px solid #e87516;

    background: #e87516;
    color: #ffffff;

    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.5px;

    cursor: pointer;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.two-column-page .form-submit:hover {
    background: #c95d0c;
    border-color: #c95d0c;

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(201,93,12,0.25);
}


/* =========================================================
   FORM FULL WIDTH ROW
   ========================================================= */

.two-column-page .form-row .full-width,
.two-column-page .form-group.full-width {
    grid-column: 1 / -1;
}


/* =========================================================
   SELL PAGE DECORATIVE ELEMENT
   ========================================================= */

.two-column-page > div:first-child {
    position: relative;
}

.two-column-page > div:first-child::after {
    content: "SELL";

    position: absolute;

    right: 0;
    top: 40px;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 130px;
    font-weight: 900;

    line-height: 1;

    color: rgba(37,40,37,0.035);

    pointer-events: none;
}


/* =========================================================
   PAGE HERO
   ========================================================= */

.page-hero {
    position: relative;
    overflow: hidden;

    padding: 125px 0 95px;

    background:
        linear-gradient(
            135deg,
            #171a18 0%,
            #20231f 55%,
            #292b27 100%
        );

    color: #ffffff;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    max-width: 900px;

    margin: 0;

    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(55px, 7vw, 94px);
    font-weight: 800;

    line-height: 0.92;

    letter-spacing: -1.5px;

    text-transform: uppercase;
}

.page-hero h1 span {
    display: block;

    color: #e87516;
}

.page-hero p {
    max-width: 650px;

    margin: 28px 0 0;

    color: #c8cbc6;

    font-family: "Inter", sans-serif;
    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   HERO DECORATION
   ========================================================= */

.page-hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -180px;
    top: -250px;

    border: 1px solid rgba(232,117,22,0.20);

    border-radius: 50%;
}

.page-hero::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -100px;
    top: -175px;

    border: 1px solid rgba(232,117,22,0.10);

    border-radius: 50%;
}


/* =========================================================
   SECTION SPACING
   ========================================================= */

.two-column-page {
    padding-top: 10px;
    padding-bottom: 10px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .two-column-page {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(360px, 0.85fr);

        gap: 45px;
    }

    .two-column-page h2 {
        font-size: 58px;
    }

    .two-column-page .enquiry-box {
        padding: 34px 30px;
    }

}


/* =========================================================
   TABLET / SMALL LAPTOP
   ========================================================= */

@media (max-width: 900px) {

    .page-hero {
        padding: 105px 0 75px;
    }

    .page-hero h1 {
        font-size: clamp(52px, 9vw, 78px);
    }

    .two-column-page {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .two-column-page > div:first-child::after {
        font-size: 110px;
        top: 10px;
    }

    .two-column-page h2 {
        max-width: 750px;
        font-size: clamp(48px, 8vw, 68px);
    }

    .two-column-page .big-text {
        max-width: 720px;
    }

    .sell-points {
        max-width: 720px;
    }

    .two-column-page .enquiry-box {
        max-width: 720px;
        width: 100%;
        box-sizing: border-box;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .page-hero {
        padding: 88px 0 65px;
    }

    .page-hero h1 {
        font-size: clamp(47px, 14vw, 65px);
        line-height: 0.94;
    }

    .page-hero p {
        margin-top: 22px;

        font-size: 15px;
        line-height: 1.7;
    }


    /* Main content */

    .two-column-page {
        gap: 40px;
    }

    .two-column-page > div:first-child::after {
        display: none;
    }

    .two-column-page h2 {
        font-size: 48px;
        line-height: 0.96;
    }

    .two-column-page .big-text {
        font-size: 15px;
        line-height: 1.75;
    }


    /* Sell points */

    .sell-points {
        grid-template-columns: 1fr;

        gap: 10px;

        margin-top: 25px;
    }

    .sell-points > div {
        min-height: 52px;
    }


    /* Form */

    .two-column-page .enquiry-box {
        padding: 32px 22px 25px;
    }

    .two-column-page .enquiry-box h2 {
        font-size: 38px;
    }

    .two-column-page .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .two-column-page .form-group input,
    .two-column-page .form-group select {
        height: 48px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .page-hero {
        padding: 78px 0 55px;
    }

    .page-hero h1 {
        font-size: 45px;
    }

    .page-hero p {
        font-size: 16px;
    }

    .two-column-page {
        gap: 35px;
    }

    .two-column-page h2 {
        font-size: 42px;
    }

    .two-column-page .big-text {
        font-size: 16px;
    }

    .two-column-page .enquiry-box {
        padding: 28px 18px 22px;
    }

    .two-column-page .enquiry-box h2 {
        font-size: 34px;
    }

    .two-column-page .form-group input,
    .two-column-page .form-group select,
    .two-column-page .form-group textarea {
        font-size: 16px;
    }

    .two-column-page .form-submit {
        min-height: 51px;
    }

}

/* =========================================================
   SAI TRADING
   EQUIPMENT / PRODUCTS LISTING PAGE
   PREMIUM INDUSTRIAL DESIGN
   ========================================================= */


/* =========================================================
   PRODUCT LIST GRID
   ========================================================= */

.product-list-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;

    max-width: 1240px;
    margin: 0 auto;
}


/* =========================================================
   LISTING CARD
   ========================================================= */

.listing-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;
    overflow: hidden;

    background: #f5f2eb;

    border: 1px solid #d7d3ca;

    color: #252825;
    text-decoration: none;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease,
        background 0.4s ease;
}

.listing-card:hover {
    transform: translateY(-8px);

    border-color: #252825;

    box-shadow:
        0 22px 50px rgba(23, 26, 24, 0.15);
}


/* =========================================================
   LISTING IMAGE
   ========================================================= */

.listing-image {
    position: relative;

    width: 100%;
    height: 390px;

    overflow: hidden;

    background: #d9d6cf;
}


/* Image */

.listing-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s cubic-bezier(.2,.7,.2,1),
        filter 0.5s ease;
}

.listing-card:hover .listing-image img {
    transform: scale(1.07);

    filter: brightness(0.78);
}


/* =========================================================
   IMAGE DARK OVERLAY
   ========================================================= */

.listing-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.02) 25%,
            rgba(0,0,0,0.62) 100%
        );

    opacity: 0.7;

    pointer-events: none;

    transition: opacity 0.4s ease;
}

.listing-card:hover .listing-image::after {
    opacity: 1;
}


/* =========================================================
   VIEW BADGE
   ========================================================= */

.listing-image > span {
    position: absolute;

    z-index: 3;

    left: 22px;
    bottom: 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 75px;
    height: 34px;

    padding: 0 14px;

    background: #e87516;

    color: #ffffff;

    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.2px;

    opacity: 0;
    transform: translateY(12px);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.listing-card:hover .listing-image > span {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   LISTING BODY
   ========================================================= */

.listing-body {
    position: relative;

    padding: 30px 32px 29px;

    background: #f5f2eb;

    transition:
        background 0.4s ease;
}

.listing-card:hover .listing-body {
    background: #252825;
}


/* =========================================================
   CATEGORY
   ========================================================= */

.listing-body small {
    display: block;

    margin-bottom: 12px;

    color: #e87516;

    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 800;

    letter-spacing: 1.7px;
    text-transform: uppercase;

    transition: color 0.3s ease;
}


/* =========================================================
   PRODUCT TITLE
   ========================================================= */

.listing-body h2 {
    margin: 0 0 14px;

    color: #252825;

    font-family: "Barlow Condensed", sans-serif;
    font-size: 40px;
    font-weight: 800;

    line-height: 0.95;

    letter-spacing: -0.3px;

    text-transform: uppercase;

    transition: color 0.35s ease;
}

.listing-card:hover .listing-body h2 {
    color: #ffffff;
}


/* =========================================================
   PRODUCT DESCRIPTION
   ========================================================= */

.listing-body p {
    max-width: 560px;

    margin: 0;

    color: #747873;

    font-family: "Inter", sans-serif;
    font-size: 16px;

    line-height: 1.75;

    transition: color 0.35s ease;
}

.listing-card:hover .listing-body p {
    color: #bfc3bd;
}


/* =========================================================
   VIEW DETAILS
   ========================================================= */

.listing-link {
    display: inline-flex;
    align-items: center;

    gap: 11px;

    margin-top: 25px;

    color: #252825;

    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 800;

    letter-spacing: 0.8px;

    text-transform: uppercase;

    transition:
        color 0.3s ease,
        gap 0.3s ease;
}

.listing-card:hover .listing-link {
    color: #e87516;

    gap: 16px;
}

.listing-link i {
    font-size: 14px;

    transition:
        transform 0.3s ease;
}

.listing-card:hover .listing-link i {
    transform: translateX(3px);
}


/* =========================================================
   ORANGE ACCENT LINE
   ========================================================= */

.listing-card::before {
    content: "";

    position: absolute;

    z-index: 5;

    left: 0;
    top: 0;

    width: 0;
    height: 4px;

    background: #e87516;

    transition: width 0.45s ease;
}

.listing-card:hover::before {
    width: 100%;
}


/* =========================================================
   PRODUCT CARD CORNER DECORATION
   ========================================================= */

.listing-body::after {
    content: "";

    position: absolute;

    right: -45px;
    bottom: -45px;

    width: 120px;
    height: 120px;

    border: 1px solid rgba(232,117,22,0.10);

    border-radius: 50%;

    pointer-events: none;

    transition:
        transform 0.5s ease,
        border-color 0.4s ease;
}

.listing-card:hover .listing-body::after {
    transform: scale(1.5);

    border-color: rgba(232,117,22,0.18);
}


/* =========================================================
   PAGE HERO
   ========================================================= */

.page-hero {
    position: relative;

    overflow: hidden;

    padding: 125px 0 95px;

    background:
        linear-gradient(
            135deg,
            #171a18 0%,
            #20231f 55%,
            #292b27 100%
        );

    color: #ffffff;
}

.page-hero .container {
    position: relative;

    z-index: 2;
}

.page-hero h1 {
    max-width: 900px;

    margin: 0;

    font-family: "Barlow Condensed", sans-serif;

    font-size: clamp(55px, 7vw, 94px);

    font-weight: 800;

    line-height: 0.92;

    letter-spacing: -1.5px;

    text-transform: uppercase;
}

.page-hero h1 span {
    display: block;

    color: #e87516;
}

.page-hero p {
    max-width: 650px;

    margin: 28px 0 0;

    color: #c8cbc6;

    font-family: "Inter", sans-serif;

    font-size: 18px;

    line-height: 1.8;
}


/* =========================================================
   HERO CIRCLE DECORATION
   ========================================================= */

.page-hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -180px;
    top: -250px;

    border: 1px solid rgba(232,117,22,0.20);

    border-radius: 50%;
}

.page-hero::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -100px;
    top: -175px;

    border: 1px solid rgba(232,117,22,0.10);

    border-radius: 50%;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta {
    position: relative;

    overflow: hidden;

    padding: 82px 0;

    background: #252825;

    color: #ffffff;
}

.final-cta-inner {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}

.final-cta h2 {
    margin: 8px 0 0;

    font-family: "Barlow Condensed", sans-serif;

    font-size: clamp(42px, 5vw, 68px);

    font-weight: 800;

    line-height: 0.95;

    text-transform: uppercase;
}

.final-cta h2 span {
    display: block;

    color: #e87516;
}


/* CTA circles */

.final-cta::before {
    content: "";

    position: absolute;

    width: 460px;
    height: 460px;

    right: -220px;
    top: -180px;

    border: 1px solid rgba(232,117,22,0.20);

    border-radius: 50%;
}

.final-cta::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -120px;
    top: -100px;

    border: 1px solid rgba(232,117,22,0.12);

    border-radius: 50%;
}


/* =========================================================
   ORANGE BUTTON
   ========================================================= */

.btn-orange {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 53px;

    padding: 0 30px;

    background: #e87516;

    border: 1px solid #e87516;

    color: #ffffff;

    font-family: "Inter", sans-serif;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 0.6px;

    text-decoration: none;

    text-transform: uppercase;

    white-space: nowrap;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.btn-orange:hover {
    background: #c95d0c;

    border-color: #c95d0c;

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 12px 28px rgba(201,93,12,0.25);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .product-list-grid {
        gap: 20px;
    }

    .listing-image {
        height: 320px;
    }

    .listing-body {
        padding: 26px 26px 27px;
    }

    .listing-body h2 {
        font-size: 35px;
    }

    .final-cta {
        padding: 70px 0;
    }
}


/* =========================================================
   SMALL TABLET
   ========================================================= */

@media (max-width: 800px) {

    .product-list-grid {
        grid-template-columns: 1fr;

        max-width: 650px;

        gap: 20px;
    }

    .listing-image {
        height: 390px;
    }

    .listing-body h2 {
        font-size: 40px;
    }

    .final-cta-inner {
        align-items: flex-start;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .page-hero {
        padding: 88px 0 65px;
    }

    .page-hero h1 {
        font-size: clamp(48px, 14vw, 66px);

        line-height: 0.94;
    }

    .page-hero p {
        margin-top: 22px;

        font-size: 15px;

        line-height: 1.7;
    }


    /* Product cards */

    .product-list-grid {
        width: 100%;

        grid-template-columns: 1fr;

        gap: 17px;
    }

    .listing-image {
        height: 320px;
    }

    .listing-body {
        padding: 25px 23px 26px;
    }

    .listing-body h2 {
        font-size: 36px;
    }

    .listing-body p {
        font-size: 14.5px;

        line-height: 1.7;
    }

    .listing-link {
        margin-top: 21px;
    }


    /* Always show VIEW badge on touch devices */

    .listing-image > span {
        opacity: 1;

        transform: translateY(0);
    }


    /* CTA */

    .final-cta {
        padding: 60px 0;
    }

    .final-cta-inner {
        flex-direction: column;

        align-items: flex-start;

        gap: 28px;
    }

    .final-cta h2 {
        font-size: 47px;
    }

    .final-cta .btn {
        width: 100%;

        box-sizing: border-box;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .page-hero {
        padding: 78px 0 55px;
    }

    .page-hero h1 {
        font-size: 45px;
    }

    .page-hero p {
        font-size: 14px;
    }

    .listing-image {
        height: 270px;
    }

    .listing-image > span {
        left: 17px;
        bottom: 17px;

        min-width: 67px;

        height: 31px;

        font-size: 10px;
    }

    .listing-body {
        padding: 23px 19px 24px;
    }

    .listing-body small {
        font-size: 9px;

        letter-spacing: 1.4px;
    }

    .listing-body h2 {
        font-size: 32px;
    }

    .listing-body p {
        font-size: 13px;
    }

    .final-cta h2 {
        font-size: 41px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {

    .page-hero h1 {
        font-size: 41px;
    }

    .listing-image {
        height: 240px;
    }

    .listing-body h2 {
        font-size: 29px;
    }

    .final-cta h2 {
        font-size: 37px;
    }
}


/* =========================================================
   BUY EQUIPMENT PAGE
   PREMIUM INDUSTRIAL EQUIPMENT SOURCING
========================================================= */


/* =========================================================
   PAGE HERO
========================================================= */

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 115px 0 105px;
    background:
        radial-gradient(circle at 85% 25%, rgba(232, 117, 22, 0.14), transparent 30%),
        linear-gradient(135deg, #20231f 0%, #292c28 55%, #1d201d 100%);
    color: #fff;
}

.page-hero::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    right: -180px;
    top: -180px;
    border: 1px solid rgba(232, 117, 22, 0.20);
    border-radius: 50%;
}

.page-hero::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -80px;
    top: -80px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero .section-kicker {
    margin-bottom: 20px;
}

.page-hero .section-kicker.orange {
    color: #e87516;
}

.page-hero h1 {
    max-width: 850px;
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(52px, 7vw, 92px);
    line-height: 0.92;
    font-weight: 800;
    letter-spacing: -1.5px;
    text-transform: uppercase;
}

.page-hero h1 span {
    display: block;
    color: #e87516;
}

.page-hero p {
    max-width: 650px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.75;
}


/* =========================================================
   MAIN SECTION
========================================================= */

.section {
    position: relative;
    padding: 105px 0;
    background: #f5f2eb;
}

.section .container {
    position: relative;
}


/* =========================================================
   BUY EQUIPMENT TWO COLUMN LAYOUT
========================================================= */

.two-column-page {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.78fr);
    gap: 90px;
    align-items: start;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.two-column-page > div:first-child {
    padding-top: 8px;
}

.two-column-page .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #555a55;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2.5px;
}

.two-column-page .section-kicker::before {
    content: "";
    width: 34px;
    height: 2px;
    background: #e87516;
}

.two-column-page h2 {
    max-width: 700px;
    margin: 0;
    color: #252825;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(44px, 5vw, 68px);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.two-column-page h2 span {
    display: block;
    color: #e87516;
}

.big-text {
    max-width: 650px;
    margin: 30px 0 42px;
    color: #666b66;
    font-size: 17px;
    line-height: 1.85;
}


/* =========================================================
   PROCESS LIST
========================================================= */

.process-list {
    position: relative;
    max-width: 650px;
    margin-top: 42px;
    padding-left: 0;
}


/* vertical orange line */

.process-list::before {
    content: "";
    position: absolute;
    left: 25px;
    top: 24px;
    bottom: 24px;
    width: 1px;
    background: linear-gradient(
        to bottom,
        rgba(232, 117, 22, 0.65),
        rgba(232, 117, 22, 0.10)
    );
}


/* individual step */

.process-list > div {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 76px;
    margin-bottom: 14px;
    padding: 13px 22px 13px 0;
    border: 1px solid rgba(37, 40, 37, 0.08);
    border-radius: 4px;
    background: #e87516;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.process-list > div:last-child {
    margin-bottom: 0;
}

.process-list > div:hover {
    transform: translateX(8px);
    border-color: rgba(232, 117, 22, 0.35);
    background: #fff;
    box-shadow: 0 14px 35px rgba(37, 40, 37, 0.09);
}


/* number */

.process-list strong {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    margin: 0 22px 0 0;
    border: 1px solid rgba(232, 117, 22, 0.35);
    border-radius: 50%;
    background: #f5f2eb;
    color: #e87516;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 18px;
    font-weight: 800;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.process-list > div:hover strong {
    background: #e87516;
    border-color: #e87516;
    color: #fff;
    transform: scale(1.06);
}


/* step text */

.process-list span {
    color: #30342f;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
}


/* =========================================================
   ENQUIRY BOX
========================================================= */

.enquiry-box {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 4px solid #e87516;
    border-radius: 4px;
    background:
        linear-gradient(
            145deg,
            #252825 0%,
            #1e211e 100%
        );
    box-shadow: 0 28px 70px rgba(31, 34, 30, 0.18);
}

.enquiry-box::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -120px;
    top: -120px;
    border: 1px solid rgba(232, 117, 22, 0.14);
    border-radius: 50%;
}

.enquiry-box::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -55px;
    top: -55px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.enquiry-box > * {
    position: relative;
    z-index: 2;
}


/* =========================================================
   ENQUIRY FORM HEADING
========================================================= */

.enquiry-box h2,
.enquiry-box h3 {
    margin: 0 0 10px;
    color: #fff;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 34px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
}

.enquiry-box p {
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   FORM ROW
========================================================= */

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}


/* =========================================================
   FORM GROUP
========================================================= */

.form-group {
    margin-bottom: 15px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}


/* =========================================================
   FORM INPUTS
========================================================= */

.enquiry-box input,
.enquiry-box select,
.enquiry-box textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 3px;
    outline: none;
    background: rgba(255, 255, 255, 0.055);
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.enquiry-box input,
.enquiry-box select {
    height: 50px;
    padding: 0 15px;
}

.enquiry-box textarea {
    min-height: 125px;
    padding: 14px 15px;
    resize: vertical;
    line-height: 1.6;
}

.enquiry-box input::placeholder,
.enquiry-box textarea::placeholder {
    color: rgba(255, 255, 255, 0.34);
}

.enquiry-box input:focus,
.enquiry-box select:focus,
.enquiry-box textarea:focus {
    border-color: #e87516;
    background: rgba(232, 117, 22, 0.07);
    box-shadow: 0 0 0 3px rgba(232, 117, 22, 0.10);
}


/* =========================================================
   SELECT
========================================================= */

.enquiry-box select {
    cursor: pointer;
}

.enquiry-box select option {
    background: #252825;
    color: #fff;
}


/* =========================================================
   FORM SUBMIT
========================================================= */

.form-submit {
    margin-top: 8px;
}

.form-submit button,
.form-submit input[type="submit"] {
    width: 100%;
    min-height: 54px;
    padding: 0 25px;
    border: 1px solid #e87516;
    border-radius: 3px;
    background: #e87516;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.form-submit button:hover,
.form-submit input[type="submit"]:hover {
    background: #c95f0c;
    border-color: #c95f0c;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(232, 117, 22, 0.22);
}


/* =========================================================
   COMMON BUTTON
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 27px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.btn-orange {
    background: #e87516;
    color: #fff;
    box-shadow: 0 10px 25px rgba(232, 117, 22, 0.18);
}

.btn-orange:hover {
    background: #c95f0c;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(232, 117, 22, 0.25);
}


/* =========================================================
   REVEAL ANIMATION SUPPORT
========================================================= */

.reveal {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .two-column-page {
        grid-template-columns: minmax(0, 1fr) minmax(350px, 0.8fr);
        gap: 55px;
    }

    .page-hero {
        padding: 95px 0 90px;
    }

    .section {
        padding: 85px 0;
    }

    .two-column-page h2 {
        font-size: clamp(42px, 5vw, 60px);
    }

    .enquiry-box {
        padding: 34px;
    }

}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 900px) {

    .two-column-page {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .two-column-page > div:first-child {
        max-width: 760px;
    }

    .big-text {
        max-width: 720px;
    }

    .process-list {
        max-width: 720px;
    }

    .enquiry-box {
        max-width: 720px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .page-hero {
        padding: 78px 0 72px;
    }

    .page-hero h1 {
        font-size: 54px;
        line-height: 0.94;
        letter-spacing: -0.8px;
    }

    .page-hero p {
        margin-top: 22px;
        font-size: 15px;
        line-height: 1.7;
    }

    .section {
        padding: 65px 0;
    }

    .two-column-page {
        gap: 42px;
    }

    .two-column-page h2 {
        font-size: 48px;
        line-height: 0.95;
    }

    .big-text {
        margin: 24px 0 32px;
        font-size: 15px;
        line-height: 1.75;
    }


    /* Process */

    .process-list {
        margin-top: 30px;
    }

    .process-list::before {
        left: 22px;
    }

    .process-list > div {
        min-height: 68px;
        padding: 10px 14px 10px 0;
    }

    .process-list strong {
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
        margin-right: 16px;
        font-size: 15px;
    }

    .process-list span {
        font-size: 14px;
    }


    /* Form */

    .enquiry-box {
        padding: 27px 20px;
    }

    .enquiry-box h2,
    .enquiry-box h3 {
        font-size: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }

    .form-row .form-group {
        margin-bottom: 15px;
    }

    .enquiry-box input,
    .enquiry-box select {
        height: 48px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .page-hero {
        padding: 68px 0 62px;
    }

    .page-hero h1 {
        font-size: 46px;
    }

    .two-column-page h2 {
        font-size: 42px;
    }

    .two-column-page .section-kicker {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .enquiry-box {
        padding: 24px 16px;
    }

    .process-list > div {
        padding-right: 10px;
    }

    .process-list strong {
        flex: 0 0 40px;
        width: 40px;
        height: 40px;
        margin-right: 13px;
        font-size: 14px;
    }

    .process-list span {
        font-size: 12px;
    }

}







/* =========================================
   TESTIMONIAL SECTION
========================================= */

.testimonial-section {
    background: #f5f3ee;
    position: relative;
    overflow: hidden;
}


/* =========================================
   CENTER HEADING
========================================= */

.center-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 55px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--orange);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2px;

    margin-bottom: 16px;
}

.section-kicker::before,
.section-kicker::after {
    content: "";

    width: 25px;
    height: 2px;

    background: var(--orange);
}


.center-heading h2 {
    margin: 0;

    font-family: "Barlow Condensed", sans-serif;

    font-size: clamp(45px, 5vw, 70px);

    line-height: .9;

    font-weight: 900;

    letter-spacing: -1.5px;

    text-transform: uppercase;

    color: var(--graphite);
}

.center-heading h2 span {
    color: var(--orange);
}


/* =========================================
   TESTIMONIAL GRID
========================================= */

.testimonial-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

    max-width: 1150px;

    margin: 0 auto;
}


/* =========================================
   TESTIMONIAL CARD
========================================= */

.testimonial-card {
    position: relative;

    background: #ffffff;

    padding: 35px 32px 32px;

    min-height: 260px;

    border: 1px solid rgba(37, 40, 37, .08);

    box-shadow:
        0 15px 45px rgba(0, 0, 0, .06);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


/* Orange top line */

.testimonial-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 55px;
    height: 3px;

    background: var(--orange);

    transition: width .3s ease;
}


/* Hover */

.testimonial-card:hover {
    transform: translateY(-7px);

    border-color: rgba(245, 130, 32, .25);

    box-shadow:
        0 25px 55px rgba(0, 0, 0, .10);
}

.testimonial-card:hover::before {
    width: 100%;
}


/* =========================================
   STARS
========================================= */

.stars {
    color: var(--orange);

    font-size: 15px;

    letter-spacing: 3px;

    margin-bottom: 22px;
}


/* =========================================
   REVIEW TEXT
========================================= */

.testimonial-card p {
    margin: 0 0 28px;

    color: #5f655f;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================
   CLIENT NAME / TYPE
========================================= */

.testimonial-card strong {
    display: block;

    color: var(--graphite);

    font-family: "Barlow Condensed", sans-serif;

    font-size: 20px;

    line-height: 1.1;

    text-transform: uppercase;

    letter-spacing: .3px;
}


/* =========================================
   LOCATION
========================================= */

.testimonial-card small {
    display: block;

    margin-top: 7px;

    color: #8a8f89;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* =========================================
   DECORATIVE QUOTE
========================================= */

.testimonial-card::after {
    content: "“";

    position: absolute;

    right: 22px;
    bottom: 8px;

    font-family: Georgia, serif;

    font-size: 80px;

    line-height: 1;

    color: rgba(245, 130, 32, .08);

    pointer-events: none;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .testimonial-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .testimonial-card:last-child {
        grid-column: 1 / -1;

        max-width: 500px;

        width: 100%;

        margin: 0 auto;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .testimonial-section {
        padding: 75px 0;
    }

    .center-heading {
        margin-bottom: 40px;
    }

    .section-kicker {
        font-size: 8px;

        letter-spacing: 1.5px;
    }

    .section-kicker::before,
    .section-kicker::after {
        width: 18px;
    }

    .center-heading h2 {
        font-size: 45px;

        letter-spacing: -1px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .testimonial-card,
    .testimonial-card:last-child {
        grid-column: auto;

        max-width: none;

        min-height: auto;

        padding: 28px 24px;
    }

    .stars {
        font-size: 13px;

        margin-bottom: 17px;
    }

    .testimonial-card p {
        font-size: 13px;

        line-height: 1.7;

        margin-bottom: 23px;
    }

    .testimonial-card strong {
        font-size: 18px;
    }
}
/* =========================================================
   PRODUCT DETAIL IMAGE
========================================================= */

.detail-image-click {
    position: relative;

    width: 100%;
    min-height: 420px;

    overflow: hidden;

    cursor: zoom-in;

    background: #f2f2f0;
}


.product-main-image {
    display: block;

    width: 100%;
    height: 420px;

    object-fit: cover;

    cursor: zoom-in;

    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}


.detail-image-click:hover
.product-main-image {
    transform: scale(1.04);

    filter: brightness(0.92);
}


/* =========================================================
   ZOOM HINT
========================================================= */

.image-zoom-hint {
    position: absolute;

    right: 20px;
    bottom: 20px;

    display: flex;
    align-items: center;

    gap: 8px;

    padding: 10px 15px;

    background: rgba(0, 0, 0, 0.82);

    color: #fff;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.7px;

    text-transform: uppercase;

    opacity: 0;

    transform: translateY(10px);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;

    pointer-events: none;

    z-index: 5;
}


.detail-image-click:hover
.image-zoom-hint {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   IMAGE PLACEHOLDER
========================================================= */

.image-placeholder {
    display: none;

    width: 100%;
    height: 420px;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 12px;

    background: #252525;

    color: #f28c28;

    font-size: 20px;
    font-weight: 700;
}


.image-placeholder i {
    font-size: 55px;
}


/* =========================================================
   LIGHTBOX
========================================================= */

.product-image-lightbox {
    position: fixed;

    inset: 0;

    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(0, 0, 0, 0.96);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    z-index: 999999;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


.product-image-lightbox.active {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


/* =========================================================
   LIGHTBOX CONTENT
========================================================= */

.product-lightbox-content {
    width: 100%;
    max-width: 1200px;

    max-height: 90vh;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;
}


/* =========================================================
   LIGHTBOX IMAGE
========================================================= */

.product-lightbox-content img {
    display: block;

    max-width: 92vw;

    max-height: 82vh;

    width: auto;
    height: auto;

    object-fit: contain;

    background: #fff;

    border-radius: 4px;

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.55);
}


/* =========================================================
   LIGHTBOX CAPTION
========================================================= */

.product-lightbox-caption {
    margin-top: 15px;

    color: #fff;

    font-size: 18px;

    font-weight: 700;

    text-align: center;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.product-lightbox-close {
    position: fixed;

    top: 20px;
    right: 25px;

    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.25);

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.12);

    color: #fff;

    font-size: 23px;

    cursor: pointer;

    z-index: 1000000;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.product-lightbox-close:hover {
    background: #f28c28;

    transform: rotate(90deg);
}


/* =========================================================
   BODY SCROLL LOCK
========================================================= */

body.product-lightbox-open {
    overflow: hidden;
}


/* =========================================================
   RELATED IMAGE
========================================================= */

.related-image {
    position: relative;

    overflow: hidden;
}


.related-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.35s ease;
}


.related-card:hover
.related-image img {
    transform: scale(1.05);
}


/* =========================================================
   RELATED IMAGE PLACEHOLDER
========================================================= */

.related-image-placeholder {
    width: 100%;
    height: 100%;

    min-height: 220px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 8px;

    background: #252525;

    color: #f28c28;
}


.related-image-placeholder i {
    font-size: 40px;
}


.related-image-placeholder span {
    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .detail-image-click {
        min-height: 300px;
    }


    .product-main-image {
        height: 300px;
    }


    .image-placeholder {
        height: 300px;
    }


    .image-zoom-hint {
        opacity: 1;

        transform: none;

        right: 10px;
        bottom: 10px;

        padding: 8px 10px;

        font-size: 9px;
    }


    .product-image-lightbox {
        padding: 15px;
    }


    .product-lightbox-content img {
        max-width: 95vw;

        max-height: 75vh;
    }


    .product-lightbox-close {
        top: 12px;
        right: 12px;

        width: 43px;
        height: 43px;

        font-size: 19px;
    }


    .product-lightbox-caption {
        font-size: 15px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .detail-image-click {
        min-height: 240px;
    }


    .product-main-image {
        height: 240px;
    }


    .image-placeholder {
        height: 240px;
    }


    .product-lightbox-content img {
        max-width: 96vw;

        max-height: 68vh;
    }

}



/* =========================================================
   ABOUT PAGE
   ========================================================= */

.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-page-image {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.about-page-image img {
    width: 100%;
    height: 520px;
    display: block;
    object-fit: cover;
}


/* ABOUT / CONTENT SECTIONS */

.about-page-grid h2,
.section h2 {
    margin-top: 10px;
    margin-bottom: 22px;
    line-height: 1.05;
}

.about-page-grid h2 span,
.section h2 span {
    display: block;
}

.about-page-grid p,
.section p {
    max-width: 850px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.big-text {
    font-size: 18px;
    line-height: 1.75;
}


/* EQUIPMENT / SERVICES / WHY CHOOSE US */

.section .big-text {
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 28px;
    margin-bottom: 8px;
}


/* BULLET EQUIPMENT LIST */

.section p:not(.big-text) {
    font-size: 16px;
}


/* STATS */

.stats-section {
    padding: 70px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stats-grid div {
    padding: 20px;
}

.stats-grid strong {
    display: block;
    font-size: 42px;
    line-height: 1;
    margin-bottom: 12px;
    font-weight: 800;
}

.stats-grid span {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}


/* PAGE HERO */

.page-hero {
    padding: 100px 0 80px;
}

.page-hero h1 {
    line-height: 1;
    margin: 15px 0 20px;
}

.page-hero h1 span {
    display: inline-block;
}

.page-hero p {
    max-width: 650px;
    font-size: 18px;
    line-height: 1.7;
}


/* KICKER */

.section-kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-kicker.orange {
    font-weight: 800;
}


/* SPACING BETWEEN ABOUT SECTIONS */

main > .section {
    padding-top: 80px;
    padding-bottom: 80px;
}

main > .section + .section {
    padding-top: 60px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .about-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-page-image img {
        height: 420px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .page-hero {
        padding: 80px 0 60px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .about-page-grid {
        gap: 30px;
    }

    .about-page-image img {
        height: 300px;
    }

    .page-hero {
        padding: 60px 0 45px;
    }

    .page-hero h1 {
        font-size: 42px;
    }

    .page-hero p {
        font-size: 16px;
    }

    main > .section {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .about-page-grid h2,
    .section h2 {
        font-size: 32px;
    }

    .big-text {
        font-size: 16px;
    }

    .section p {
        font-size: 15px;
        line-height: 1.7;
    }

    .stats-section {
        padding: 50px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stats-grid div {
        padding: 15px 5px;
    }

    .stats-grid strong {
        font-size: 32px;
    }

    .stats-grid span {
        font-size: 11px;
        letter-spacing: 1px;
    }

}





/* =========================================================
   PROJECTS & CLIENTS PAGE
========================================================= */

.projects-intro {
    max-width: 950px;
}


/* PROJECT SECTOR SECTION */

.projects-section {
    padding: 80px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 45px;
}

.project-card {
    padding: 35px 30px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #fff;
    transition: transform 0.25s ease,
                box-shadow 0.25s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);
}

.project-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 24px;
}

.project-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.2;
}

.project-card p {
    margin: 0;
    line-height: 1.7;
}


/* CLIENTS */

.clients-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.clients-intro {
    max-width: 800px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 45px;
}

.client-box {
    padding: 32px 28px;
    border: 1px solid rgba(0, 0, 0, 0.10);
}

.client-box > i {
    font-size: 26px;
    margin-bottom: 18px;
}

.client-box h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.client-box p {
    margin: 0;
    line-height: 1.7;
}


/* CTA */

.projects-cta {
    text-align: left;
}

.projects-cta p {
    max-width: 750px;
}

.projects-cta .header-btn {
    display: inline-flex;
    margin-top: 15px;
    text-decoration: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .projects-section,
    .clients-section {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .projects-grid,
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 30px;
    }

    .project-card {
        padding: 28px 22px;
    }

    .client-box {
        padding: 28px 22px;
    }

    .project-card h3,
    .client-box h3 {
        font-size: 18px;
    }

}


/* =========================================================
   OUR EQUIPMENT PAGE
========================================================= */

.equipment-page-hero {
    position: relative;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.equipment-page .section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
    margin-bottom: 55px;
}

.equipment-page .section-heading > div {
    max-width: 700px;
}

.equipment-page .section-heading > p {
    max-width: 430px;
    margin: 0;
    color: #777;
    line-height: 1.8;
}


/* =========================================================
   MACHINERY CATEGORY GRID
========================================================= */

.machinery-categories-section {
    background: #f5f5f3;
}

.machinery-main-heading {
    margin-bottom: 60px !important;
}

.machinery-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}


.machinery-category-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 30px;
    min-height: 290px;
    transition: all 0.3s ease;
    overflow: hidden;
}


.machinery-category-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: #f47b20;
    transition: height 0.3s ease;
}


.machinery-category-card:hover {
    transform: translateY(-7px);
    border-color: #ddd;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}


.machinery-category-card:hover::before {
    height: 100%;
}


/* =========================================================
   CATEGORY TOP
========================================================= */

.machinery-category-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}


.machinery-number {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #aaa;
}


.machinery-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #181818;
    color: #f47b20;
    font-size: 20px;
    transition: all 0.3s ease;
}


.machinery-category-card:hover .machinery-icon {
    background: #f47b20;
    color: #fff;
}


.machinery-category-card h3 {
    margin: 0 0 20px;
    font-size: 21px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.3px;
}


.machinery-category-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}


.machinery-category-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}


.machinery-category-card li i {
    color: #f47b20;
    font-size: 10px;
}


/* =========================================================
   WHAT WE OFFER
========================================================= */

.what-we-offer-section {
    background: #fff;
}


.offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}


.offer-card {
    display: flex;
    gap: 25px;
    padding: 35px;
    border: 1px solid #e4e4e4;
    background: #fff;
    transition: all 0.3s ease;
}


.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}


.offer-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #181818;
    color: #f47b20;
    font-size: 21px;
}


.offer-card > div:last-child {
    flex: 1;
}


.offer-card span {
    display: block;
    margin-bottom: 5px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #aaa;
}


.offer-card h3 {
    margin: 0 0 10px;
    font-size: 26px;
    letter-spacing: 1px;
}


.offer-card p {
    margin: 0 0 18px;
    color: #666;
    line-height: 1.7;
    font-size: 14px;
}


.offer-card a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #181818;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .5px;
}


.offer-card a i {
    color: #f47b20;
    transition: transform .2s ease;
}


.offer-card a:hover i {
    transform: translateX(5px);
}


/* =========================================================
   SPECIFIC MACHINE
========================================================= */

.specific-machine-section {
    padding: 100px 0;
    background: #181818;
}


.specific-machine-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}


.specific-machine-content {
    max-width: 700px;
}


.specific-machine-content .section-kicker {
    margin-bottom: 18px;
}


.specific-machine-content h2 {
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(38px, 5vw, 64px);
    line-height: .95;
    letter-spacing: -2px;
}


.specific-machine-content h2 span {
    color: #f47b20;
}


.specific-machine-content p {
    margin: 0;
    max-width: 650px;
    color: #aaa;
    line-height: 1.8;
    font-size: 16px;
}


.specific-machine-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 260px;
}


.specific-machine-actions .btn {
    justify-content: center;
    text-align: center;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .machinery-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 900px) {

    .equipment-page .section-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .specific-machine-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .specific-machine-actions {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }

}


@media (max-width: 700px) {

    .machinery-category-grid {
        grid-template-columns: 1fr;
    }

    .offer-grid {
        grid-template-columns: 1fr;
    }

    .offer-card {
        padding: 25px;
    }

    .machinery-category-card {
        min-height: auto;
    }

    .specific-machine-section {
        padding: 70px 0;
    }

    .specific-machine-actions {
        flex-direction: column;
        width: 100%;
    }

    .specific-machine-actions .btn {
        width: 100%;
    }

}


@media (max-width: 480px) {

    .machinery-category-card {
        padding: 24px;
    }

    .offer-card {
        flex-direction: column;
    }

    .offer-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
    }

}