/* =========================================================
   HOLS-FIELD SERVICES PAGE
========================================================= */

:root {
    --services-orange: #ff7200;
    --services-orange-light: #ff8a24;
    --services-black: #050505;
    --services-dark: #0b0d0e;
    --services-panel: #101314;
    --services-border: rgba(255,255,255,.10);
    --services-text: #f5f5f5;
    --services-muted: #a7abad;
}


/* =========================================================
   PAGE
========================================================= */

body {
    background: var(--services-black);
    color: var(--services-text);
}


/* =========================================================
   HERO — CLEAN DESKTOP COMPOSITION
   ========================================================= */

.services-hero {
    position: relative;
    height: 650px;
    min-height: 650px;
    overflow: hidden;
    background: #030607;
}

/* RIGHT-SIDE HERO IMAGE */
.services-hero-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;

    width: 52%;
    height: 100%;

    background-image: url("../images/services-hero.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;

    transform: none !important;
    z-index: 0;

    clip-path: polygon(
        15% 0,
        100% 0,
        100% 100%,
        0 100%
    );
}

/* SOFT DARK BLEND WHERE IMAGE MEETS TEXT */
.services-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            #030607 0%,
            rgba(3,6,7,.82) 12%,
            rgba(3,6,7,.35) 30%,
            rgba(3,6,7,.05) 55%,
            transparent 78%
        );
    pointer-events: none;
}

/* OVERALL HERO OVERLAY */
.services-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.16) 0%,
            transparent 45%,
            rgba(0,0,0,.38) 100%
        );
}

/* LEFT CONTENT */
.services-hero-content {
    position: relative;
    z-index: 5;

    width: min(1380px, calc(100% - 120px));
    height: 100%;
    margin: 0 auto;

    padding-top: 118px;
    padding-bottom: 95px;

    display: flex;
    align-items: flex-start;
}

.services-hero-copy {
    width: 46%;
    max-width: 590px;
}

/* KICKER */
.services-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;

    color: var(--services-orange);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
}

.services-kicker span {
    width: 34px;
    height: 1px;
    background: var(--services-orange);
}

/* MAIN HEADING */
.services-hero h1,
.services-hero-copy h1 {
    margin: 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(58px, 4.7vw, 72px);
    line-height: .92;
    font-weight: 800;
    letter-spacing: -2.5px;
    color: #fff;
}

.services-hero h1 em,
.services-hero-copy h1 em {
    color: var(--services-orange);
    font-style: normal;
}

/* DESCRIPTION */
.services-hero-copy > p {
    max-width: 500px;
    margin: 22px 0 22px;

    color: rgba(255,255,255,.70);
    font-size: 13px;
    line-height: 1.65;
}

/* BUTTONS */
.services-hero .hero-buttons {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 20px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 0 21px;

    color: #fff;
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .4px;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}

.service-btn.primary {
    background: var(--services-orange);
    box-shadow: 0 10px 30px rgba(255,114,0,.18);
}

.service-btn i {
    margin-left: 14px;
    transition: transform .3s ease;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(255,114,0,.28);
}

.service-btn:hover i {
    transform: translateX(4px);
}

.intro-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
}

.play-icon {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border: 1px solid var(--services-orange);
    border-radius: 50%;

    color: var(--services-orange);
}

.play-icon i {
    font-size: 10px;
    margin-left: 2px;
}

/* FOUR FEATURES — ALWAYS INSIDE FIRST VIEW */
.services-hero > .hero-feature-strip {
    position: absolute;
    left: 50%;
    bottom: 0;

    transform: translateX(-50%);

    width: min(1380px, calc(100% - 120px));
    height: 78px;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;

    margin: 0;
    padding: 0;

    z-index: 20;

    background: rgba(3,6,7,.90);
    border-top: 1px solid rgba(255,255,255,.14);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.services-hero > .hero-feature-strip > .hero-feature {
    height: 100%;
    min-width: 0;

    display: flex;
    align-items: center;

    padding: 0 22px;

    border-right: 1px solid rgba(255,255,255,.12);
}

.services-hero > .hero-feature-strip > .hero-feature:last-child {
    border-right: none;
}

.services-hero > .hero-feature-strip .feature-icon {
    flex: 0 0 36px;

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 12px;

    border: 1px solid var(--services-orange);
    border-radius: 50%;

    color: var(--services-orange);
    font-size: 13px;
}

.services-hero > .hero-feature-strip .hero-feature h4 {
    margin: 0 0 4px;

    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.15;
    white-space: nowrap;
}

.services-hero > .hero-feature-strip .hero-feature p {
    margin: 0;

    color: rgba(255,255,255,.52);
    font-size: 8px;
    line-height: 1.35;
    white-space: nowrap;
}

/* =========================================================
   HERO RESPONSIVE
   ========================================================= */

@media (min-width: 1440px) {
    .services-hero {
        height: 650px;
        min-height: 650px;
    }

    .services-hero-content {
        padding-top: 120px;
    }

    .services-hero-copy {
        width: 45%;
    }

    .services-hero h1,
    .services-hero-copy h1 {
        font-size: 72px;
    }

    .services-hero > .hero-feature-strip {
        height: 80px;
    }
}

@media (min-width: 1001px) and (max-width: 1439px) {
    .services-hero {
        height: 630px;
        min-height: 630px;
    }

    .services-hero-content {
        width: calc(100% - 90px);
        padding-top: 110px;
    }

    .services-hero-copy {
        width: 47%;
    }

    .services-hero h1,
    .services-hero-copy h1 {
        font-size: 62px;
    }

    .services-hero > .hero-feature-strip {
        width: calc(100% - 90px);
        height: 76px;
    }

    .services-hero > .hero-feature-strip > .hero-feature {
        padding: 0 15px;
    }

    .services-hero > .hero-feature-strip .feature-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
        margin-right: 9px;
    }

    .services-hero > .hero-feature-strip .hero-feature h4 {
        font-size: 10px;
    }

    .services-hero > .hero-feature-strip .hero-feature p {
        font-size: 7px;
    }
}

@media (min-width: 769px) and (max-width: 1000px) {
    .services-hero {
        height: 680px;
        min-height: 680px;
    }

    .services-hero-image {
        width: 58%;
        opacity: .82;
    }

    .services-hero-content {
        width: calc(100% - 50px);
        padding-top: 115px;
    }

    .services-hero-copy {
        width: 55%;
    }

    .services-hero h1,
    .services-hero-copy h1 {
        font-size: 54px;
    }

    .services-hero > .hero-feature-strip {
        width: calc(100% - 50px);
        height: 74px;
    }

    .services-hero > .hero-feature-strip > .hero-feature {
        padding: 0 8px;
    }

    .services-hero > .hero-feature-strip .feature-icon {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
        margin-right: 7px;
    }

    .services-hero > .hero-feature-strip .hero-feature h4 {
        font-size: 8px;
    }

    .services-hero > .hero-feature-strip .hero-feature p {
        font-size: 6px;
    }
}

@media (max-width: 768px) {
    .services-hero {
        height: auto;
        min-height: 0;
        padding-bottom: 0;
    }

    .services-hero-image {
        width: 100%;
        height: 100%;
        opacity: .38;
        clip-path: none;
        background-position: 68% center;
    }

    .services-hero-content {
        width: calc(100% - 36px);
        height: auto;
        min-height: 0;

        padding-top: 105px;
        padding-bottom: 28px;
    }

    .services-hero-copy {
        width: 100%;
        max-width: 100%;
    }

    .services-hero h1,
    .services-hero-copy h1 {
        font-size: clamp(46px, 13vw, 62px);
        letter-spacing: -2px;
    }

    .services-hero-copy > p {
        max-width: 500px;
        margin: 20px 0;
        font-size: 12px;
    }

    .services-hero .hero-buttons {
        gap: 14px;
        flex-wrap: wrap;
    }

    .services-hero > .hero-feature-strip {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;

        width: calc(100% - 36px);
        height: auto;

        margin: 0 auto;

        grid-template-columns: 1fr 1fr;
    }

    .services-hero > .hero-feature-strip > .hero-feature {
        min-height: 72px;
        padding: 12px 9px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.10);
    }

    .services-hero > .hero-feature-strip > .hero-feature:nth-child(odd) {
        border-right: 1px solid rgba(255,255,255,.10);
    }

    .services-hero > .hero-feature-strip .feature-icon {
        width: 31px;
        height: 31px;
        flex-basis: 31px;
        margin-right: 8px;
    }

    .services-hero > .hero-feature-strip .hero-feature h4 {
        font-size: 9px;
    }

    .services-hero > .hero-feature-strip .hero-feature p {
        font-size: 7px;
        white-space: normal;
    }
}

@media (max-width: 430px) {
    .services-hero h1,
    .services-hero-copy h1 {
        font-size: 45px;
    }

    .services-hero > .hero-feature-strip {
        grid-template-columns: 1fr;
    }

    .services-hero > .hero-feature-strip > .hero-feature,
    .services-hero > .hero-feature-strip > .hero-feature:nth-child(odd) {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.10);
    }

    .services-hero > .hero-feature-strip > .hero-feature:last-child {
        border-bottom: none;
    }
}
/* =========================================================
   SERVICE PORTFOLIO
========================================================= */

.service-portfolio {
    width: min(1200px, 90%);

    margin: 0 auto;

    padding: 60px 0 45px;
}


.service-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr
        1fr;

    gap: 18px;
}


/* =========================================================
   SERVICE CARDS
========================================================= */

.service-category {
    position: relative;

    min-height: 510px;

    padding: 26px 25px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(25,29,30,.96),
            rgba(10,12,13,.97)
        );

    border: 1px solid var(--services-border);

    border-radius: 10px;

    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}


.service-category:hover {
    transform: translateY(-7px);

    border-color:
        rgba(255,114,0,.40);

    box-shadow:
        0 25px 55px rgba(0,0,0,.35);
}


/* subtle background texture */

.service-category::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            120deg,
            transparent 60%,
            rgba(255,114,0,.04)
        );

    pointer-events: none;
}


.service-card-top {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: space-between;
    align-items: center;
}


.service-number {
    font-size: 38px;
    font-weight: 800;

    line-height: 1;
}


.energy-card .service-number,
.energy-card .service-list i {
    color: #55c83b;
}


.electrical-card .service-number,
.electrical-card .service-list i {
    color: var(--services-orange);
}


.engineering-card .service-number,
.engineering-card .service-list i {
    color: #3198ff;
}


.service-icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    border: 1px solid currentColor;

    border-radius: 50%;

    font-size: 20px;
}


.energy-card .service-icon {
    color: #55c83b;
}


.electrical-card .service-icon {
    color: var(--services-orange);
}


.engineering-card .service-icon {
    color: #3198ff;
}


.service-category h2 {
    position: relative;
    z-index: 2;

    margin: 12px 0 9px;

    color: #f4f4f4;

    font-size: 19px;

    line-height: 1.15;

    font-weight: 800;
}


.orange-line {
    width: 30px;
    height: 2px;

    margin-bottom: 20px;

    background: var(--services-orange);
}


.service-list {
    position: relative;
    z-index: 2;

    list-style: none;

    margin: 0;
    padding: 0;
}


.service-list li {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    padding: 11px 0;

    border-bottom:
        1px solid rgba(255,255,255,.07);

    color: #d2d4d5;

    font-size: 11px;

    line-height: 1.45;
}


.service-list li:last-child {
    border-bottom: 0;
}


.service-list i {
    width: 17px;

    flex-shrink: 0;

    margin-top: 2px;

    font-size: 11px;
}


/* =========================================================
   HOW WE DELIVER
========================================================= */

.delivery-section {
    width: min(1200px, 90%);

    margin: 0 auto;

    padding: 20px 0 55px;
}


.delivery-process {
    position: relative;

    display: grid;

    grid-template-columns:
        1fr 35px
        1fr 35px
        1fr 35px
        1fr 35px
        1fr;

    align-items: center;

    padding: 28px 30px;

    background:
        linear-gradient(
            145deg,
            #111516,
            #090b0c
        );

    border: 1px solid var(--services-border);

    border-radius: 10px;
}


.delivery-step {
    position: relative;

    text-align: center;
}


.step-number {
    margin-bottom: 10px;

    font-size: 24px;
    font-weight: 800;

    color: var(--services-orange);
}


.step-icon {
    width: 34px;
    height: 34px;

    margin: 0 auto 12px;

    display: grid;
    place-items: center;

    border: 1px solid #85898c;

    border-radius: 50%;

    color: #aeb1b3;

    font-size: 12px;
}


.delivery-step h3 {
    margin: 0 0 7px;

    font-size: 12px;
    font-weight: 700;
}


.delivery-step p {
    max-width: 145px;

    margin: 0 auto;

    color: #8e9396;

    font-size: 9px;

    line-height: 1.5;
}


.delivery-connector {
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--services-orange),
            rgba(255,114,0,.15)
        );
}


/* =========================================================
   CTA
========================================================= */

.services-cta {
    position: relative;

    width: min(1200px, 90%);

    min-height: 170px;

    margin: 0 auto 45px;

    overflow: hidden;

    display: flex;
    align-items: center;

    border-radius: 8px;

    background:
        linear-gradient(
            105deg,
            #171919 0%,
            #171919 31%,
            var(--services-orange) 31%
        );
}


.cta-image {
    position: absolute;
    inset: 0;

    width: 35%;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.2),
            rgba(0,0,0,.05)
        ),
        url("../images/services-cta.jpg")
        center / cover no-repeat;

    clip-path:
        polygon(
            0 0,
            100% 0,
            78% 100%,
            0 100%
        );
}


.cta-content {
    position: relative;
    z-index: 2;

    width: 69%;

    margin-left: 32%;

    padding: 30px 45px;

    display: grid;

    grid-template-columns: 1fr auto;

    align-items: center;

    gap: 30px;
}


.cta-content h2 {
    margin: 0;

    color: #fff;

    font-size: 27px;

    line-height: 1.05;
}


.cta-content h2 span {
    color: #111;
}


.cta-content p {
    grid-column: 1;

    max-width: 570px;

    margin: 0;

    color: rgba(255,255,255,.85);

    font-size: 11px;

    line-height: 1.6;
}


.cta-button {
    grid-column: 2;
    grid-row: 1 / span 2;

    display: inline-flex;
    align-items: center;
    gap: 18px;

    padding: 15px 23px;

    background: #090909;

    color: #fff;

    text-decoration: none;

    font-size: 10px;
    font-weight: 700;

    white-space: nowrap;

    transition:
        transform .3s ease,
        background .3s ease;
}


.cta-button i {
    color: var(--services-orange);
}


.cta-button:hover {
    transform: translateY(-3px);

    background: #181818;
}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-float {
    position: fixed;

    right: 24px;
    bottom: 24px;

    z-index: 999;

    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #25d366;

    color: #fff;

    text-decoration: none;

    font-size: 22px;

    box-shadow:
        0 8px 30px rgba(37,211,102,.28);

    transition:
        transform .3s ease;
}


.whatsapp-float:hover {
    transform: scale(1.1);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .services-hero {
        min-height: 750px;
    }

    .services-hero-copy {
        width: 390px;
    }

    .services-hero h1 {
        font-size: 58px;
    }

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

    .engineering-card {
        grid-column: 1 / -1;
    }

    .delivery-process {
        grid-template-columns:
            repeat(5, 1fr);

        gap: 15px;
    }

    .delivery-connector {
        display: none;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .services-hero {
        min-height: auto;

        padding-bottom: 30px;
    }


    .services-hero-image {
        background-position: 67% center;

        min-height: 720px;
    }


    .services-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(3,5,6,.96),
                rgba(3,5,6,.68)
            );
    }


    .services-hero-content {
        min-height: 620px;

        align-items: flex-start;

        padding-top: 115px;
    }


    .services-hero-copy {
        width: 100%;

        padding-top: 30px;
    }


    .services-hero h1 {
        font-size: clamp(48px, 14vw, 65px);

        letter-spacing: -2px;
    }


    .services-hero-copy > p {
        max-width: 500px;

        font-size: 13px;
    }


    .hero-buttons {
        flex-wrap: wrap;
    }


    .hero-feature-strip {
        position: relative;

        left: auto;
        bottom: auto;

        width: 90%;

        transform: none;

        margin: -15px auto 0;

        grid-template-columns: 1fr 1fr;

        row-gap: 20px;
    }


    .hero-feature {
        padding: 0 12px;
    }


    .hero-feature:nth-child(2) {
        border-right: 0;
    }


    .hero-feature h4 {
        font-size: 10px;
    }


    .hero-feature p {
        font-size: 8px;
    }


    .service-portfolio,
    .delivery-section {
        width: 92%;
    }


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


    .engineering-card {
        grid-column: auto;
    }


    .service-category {
        min-height: auto;

        padding: 24px 20px;
    }


    .service-category h2 {
        font-size: 18px;
    }


    .service-list li {
        font-size: 11px;
    }


    .delivery-process {
        grid-template-columns: 1fr;

        gap: 25px;

        padding: 28px 20px;
    }


    .delivery-step p {
        max-width: 240px;
    }


    .services-cta {
        width: 92%;

        min-height: 360px;

        display: block;

        background:
            linear-gradient(
                160deg,
                #171919 0%,
                #171919 32%,
                var(--services-orange) 32%
            );
    }


    .cta-image {
        width: 100%;
        height: 125px;

        clip-path:
            polygon(
                0 0,
                100% 0,
                100% 75%,
                0 100%
            );
    }


    .cta-content {
        width: auto;

        margin-left: 0;

        padding: 150px 25px 30px;

        display: block;
    }


    .cta-content h2 {
        font-size: 25px;

        margin-bottom: 15px;
    }


    .cta-content p {
        margin-bottom: 22px;
    }


    .cta-button {
        display: inline-flex;
    }


    .whatsapp-float {
        right: 16px;
        bottom: 16px;

        width: 44px;
        height: 44px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .services-hero h1 {
        font-size: 45px;
    }


    .services-hero-copy > p {
        font-size: 12px;
    }


    .hero-feature-strip {
        grid-template-columns: 1fr;
    }


    .hero-feature {
        border-right: 0;

        border-bottom:
            1px solid rgba(255,255,255,.08);

        padding-bottom: 12px;
    }


    .hero-feature:last-child {
        border-bottom: 0;
    }


    .section-heading {
        font-size: 9px;

        letter-spacing: 3px;
    }


    .service-number {
        font-size: 32px;
    }


    .service-list li {
        font-size: 10px;
    }

}
/* =========================================================
   SCROLL REVEAL
========================================================= */

.service-category {
    opacity: 0;
    transform: translateY(25px);
}

.service-category.revealed {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   DELIVERY REVEAL
========================================================= */

.delivery-step {
    opacity: .35;
    transform: translateY(8px);

    transition:
        opacity .5s ease,
        transform .5s ease;
}

.delivery-step.active {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .service-category,
    .delivery-step {
        opacity: 1;
        transform: none;
    }

}
/* =========================================================
/* =========================================================
   SERVICES HERO — KEEP IMAGE BELOW NAVBAR
   ========================================================= */

/* Desktop */
@media (min-width: 769px) {

    .services-hero {
        position: relative;
        overflow: hidden;
    }

    .services-hero-image {
        top: 80px !important;
        height: calc(100% - 80px) !important;
    }

    /* Keep the dark background above the image */
    .services-hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 80px;
        background: #030607;
        z-index: 1;
        pointer-events: none;
    }

    .services-hero-overlay {
        z-index: 2 !important;
    }

    .services-hero-content {
        z-index: 5 !important;
    }

    .services-hero > .hero-feature-strip {
        z-index: 20 !important;
    }
}
/* =========================================================
   SERVICE PORTFOLIO — IMPROVE LIST READABILITY
========================================================= */

.service-card .service-list li {
    font-size: 13px !important;
    line-height: 1.55 !important;
    color: rgba(255, 255, 255, 0.82) !important;

    padding: 9px 0 !important;
}


/* Make the icons slightly more visible */
.service-card .service-list li i,
.service-card .service-list li svg {
    font-size: 13px !important;
}


/* Keep the card headings strong */
.service-card h3 {
    font-size: 20px !important;
    line-height: 1.2 !important;
}


/* Numbers */
.service-card .service-number {
    font-size: 34px !important;
}


/* Better spacing between list items */
.service-card .service-list {
    margin-top: 18px !important;
}
/* =========================================================
   PREMIUM SERVICE LIST TYPOGRAPHY
   CSS ONLY — NO HTML CHANGES
========================================================= */

.service-category .service-list li {
    font-family:
        "Segoe UI",
        "Helvetica Neue",
        Arial,
        sans-serif !important;

    font-size: 14px !important;
    font-weight: 400 !important;

    line-height: 1.6 !important;
    letter-spacing: 0.15px !important;

    color: #dfe2e4 !important;

    padding: 10px 0 !important;
}


/* SERVICE ICONS */

.service-category .service-list li i {
    width: 20px !important;
    min-width: 20px !important;

    font-size: 13px !important;

    margin-top: 4px !important;
}


/* SUBTLE PREMIUM HOVER */

.service-category .service-list li {
    transition:
        color .25s ease,
        transform .25s ease;
}

.service-category .service-list li:hover {
    color: #ffffff !important;
    transform: translateX(3px);
}
/* =========================================================
   SERVICES — PREMIUM PORTFOLIO CARD POLISH
========================================================= */

/* ---------------------------------------------------------
   CARD BASE
--------------------------------------------------------- */

.service-category {
    position: relative !important;

    overflow: hidden !important;

    border:
        1px solid rgba(255,255,255,.10) !important;

    border-radius: 2px !important;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.012) 55%,
            rgba(0,0,0,.12)
        ) !important;

    box-shadow:
        0 18px 45px rgba(0,0,0,.28) !important;

    transition:
        transform .45s cubic-bezier(.2,.7,.2,1),
        border-color .45s ease,
        box-shadow .45s ease,
        background .45s ease !important;
}


/* ---------------------------------------------------------
   ELEGANT TOP ACCENT
--------------------------------------------------------- */

.service-category::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 2px;

    background: var(--services-orange);

    transition:
        width .5s cubic-bezier(.2,.7,.2,1);
}


/* ---------------------------------------------------------
   HOVER
--------------------------------------------------------- */

.service-category:hover {
    transform: translateY(-7px) !important;

    border-color:
        rgba(255,114,0,.32) !important;

    box-shadow:
        0 28px 65px rgba(0,0,0,.42),
        0 0 35px rgba(255,114,0,.055) !important;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.065),
            rgba(255,255,255,.018)
        ) !important;
}


.service-category:hover::before {
    width: 100%;
}


/* ---------------------------------------------------------
   CARD TOP
--------------------------------------------------------- */

.service-card-top {
    margin-bottom: 4px !important;
}


/* ---------------------------------------------------------
   SERVICE NUMBER
--------------------------------------------------------- */

.service-category .service-number {
    font-size: 40px !important;

    font-weight: 700 !important;

    line-height: 1 !important;

    letter-spacing: -1px !important;

    opacity: .92;

    transition:
        transform .4s ease,
        opacity .4s ease;
}


.service-category:hover .service-number {
    transform: translateX(4px);

    opacity: 1;
}


/* ---------------------------------------------------------
   SERVICE ICON
--------------------------------------------------------- */

.service-category .service-icon {
    width: 54px !important;
    height: 54px !important;

    border-radius: 50% !important;

    background: rgba(255,255,255,.025) !important;

    transition:
        transform .45s cubic-bezier(.2,.7,.2,1),
        background .35s ease,
        box-shadow .35s ease !important;
}


.service-category:hover .service-icon {
    transform:
        translateY(-3px)
        rotate(4deg);

    background: rgba(255,114,0,.08) !important;

    box-shadow:
        0 8px 25px rgba(255,114,0,.12);
}


/* ---------------------------------------------------------
   HEADINGS
--------------------------------------------------------- */

.service-category h2 {
    margin-top: 17px !important;

    margin-bottom: 11px !important;

    font-size: 21px !important;

    font-weight: 700 !important;

    line-height: 1.2 !important;

    letter-spacing: -.35px !important;

    color: #f7f7f7 !important;
}


/* ---------------------------------------------------------
   ORANGE DIVIDER
--------------------------------------------------------- */

.service-category .orange-line {
    width: 38px !important;

    height: 2px !important;

    margin-bottom: 18px !important;

    background: var(--services-orange) !important;

    transition:
        width .4s ease;
}


.service-category:hover .orange-line {
    width: 65px !important;
}


/* ---------------------------------------------------------
   SERVICE LIST
--------------------------------------------------------- */

.service-category .service-list {
    margin-top: 2px !important;
}


/* ---------------------------------------------------------
   LIST ITEMS
--------------------------------------------------------- */

.service-category .service-list li {
    position: relative;

    font-size: 14px !important;

    font-weight: 400 !important;

    line-height: 1.6 !important;

    color: #dfe2e4 !important;

    padding: 10px 0 !important;

    border-bottom:
        1px solid rgba(255,255,255,.055) !important;

    transition:
        color .25s ease,
        padding-left .25s ease !important;
}


.service-category .service-list li:hover {
    color: #ffffff !important;

    padding-left: 4px !important;
}


/* ---------------------------------------------------------
   LIST ICONS
--------------------------------------------------------- */

.service-category .service-list li i {
    width: 20px !important;

    min-width: 20px !important;

    font-size: 13px !important;

    margin-top: 4px !important;

    transition:
        transform .25s ease,
        filter .25s ease;
}


.service-category .service-list li:hover i {
    transform: translateX(2px);

    filter:
        drop-shadow(0 0 5px currentColor);
}


/* ---------------------------------------------------------
   DIFFERENT CARD PERSONALITIES
--------------------------------------------------------- */

/* ENERGY */

.energy-card {
    background:
        linear-gradient(
            145deg,
            rgba(85,200,59,.045),
            rgba(255,255,255,.012) 55%
        ) !important;
}


/* ELECTRICAL */

.electrical-card {
    background:
        linear-gradient(
            145deg,
            rgba(255,114,0,.045),
            rgba(255,255,255,.012) 55%
        ) !important;
}


/* ENGINEERING */

.engineering-card {
    background:
        linear-gradient(
            145deg,
            rgba(49,152,255,.045),
            rgba(255,255,255,.012) 55%
        ) !important;
}


/* ---------------------------------------------------------
   CARD HOVER GLOW — VERY SUBTLE
--------------------------------------------------------- */

.energy-card:hover {
    box-shadow:
        0 28px 65px rgba(0,0,0,.42),
        0 0 35px rgba(85,200,59,.06) !important;
}


.electrical-card:hover {
    box-shadow:
        0 28px 65px rgba(0,0,0,.42),
        0 0 35px rgba(255,114,0,.07) !important;
}


.engineering-card:hover {
    box-shadow:
        0 28px 65px rgba(0,0,0,.42),
        0 0 35px rgba(49,152,255,.06) !important;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .service-category,
    .service-category *,
    .service-category::before {
        transition: none !important;
    }

}
/* =========================================================
   SERVICES HERO — FINAL PREMIUM POLISH
========================================================= */


/* =========================================================
   HERO IMAGE — CINEMATIC PREMIUM TREATMENT
========================================================= */

.services-hero-image {
    filter:
        saturate(.88)
        contrast(1.08)
        brightness(.82) !important;

    transition:
        transform 1.2s cubic-bezier(.2,.7,.2,1),
        filter .8s ease !important;
}


/* Very subtle depth on hover */

.services-hero:hover .services-hero-image {
    transform: scale(1.018) !important;

    filter:
        saturate(.94)
        contrast(1.08)
        brightness(.86) !important;
}


/* Refined image edge */

.services-hero-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3,5,6,.98) 0%,
            rgba(3,5,6,.70) 8%,
            rgba(3,5,6,.18) 25%,
            transparent 48%
        ),

        linear-gradient(
            180deg,
            rgba(0,0,0,.20) 0%,
            transparent 35%,
            rgba(0,0,0,.35) 100%
        );

    pointer-events: none;
}


/* =========================================================
   EXPLORE OUR SERVICES — PREMIUM BUTTON
========================================================= */

.services-hero .service-btn.primary {
    position: relative;

    min-height: 52px !important;

    padding:
        0 23px 0 25px !important;

    border: 1px solid
        rgba(255,114,0,.85) !important;

    background:
        linear-gradient(
            135deg,
            #ff7a0a,
            #ed6500
        ) !important;

    color: #fff !important;

    font-size: 11px !important;

    font-weight: 700 !important;

    letter-spacing: 1px !important;

    box-shadow:
        0 12px 30px rgba(255,114,0,.14) !important;

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease !important;
}


/* Light sweep */

.services-hero .service-btn.primary::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 80%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.18),
            transparent
        );

    transform: skewX(-20deg);

    transition:
        left .65s ease;
}


.services-hero .service-btn.primary:hover::before {
    left: 140%;
}


.services-hero .service-btn.primary:hover {
    transform: translateY(-3px) !important;

    border-color:
        rgba(255,255,255,.45) !important;

    box-shadow:
        0 18px 40px rgba(255,114,0,.22) !important;
}


/* Arrow */

.services-hero .service-btn.primary i {
    margin-left: 18px !important;

    transition:
        transform .3s ease;
}


.services-hero .service-btn.primary:hover i {
    transform: translateX(5px);
}


/* =========================================================
   PLAY INTRO — ELEGANT SECONDARY ACTION
========================================================= */

.services-hero .intro-link {
    position: relative;

    gap: 12px !important;

    color: rgba(255,255,255,.82) !important;

    font-size: 10px !important;

    font-weight: 700 !important;

    letter-spacing: 1.5px !important;

    text-decoration: none;

    transition:
        color .3s ease;
}


.services-hero .intro-link:hover {
    color: #fff !important;
}


/* Play circle */

.services-hero .intro-link .play-icon {
    position: relative;

    width: 42px !important;
    height: 42px !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    border:
        1px solid rgba(255,255,255,.30) !important;

    border-radius: 50% !important;

    background:
        rgba(255,255,255,.035) !important;

    color: #fff !important;

    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease,
        box-shadow .35s ease !important;
}


.services-hero .intro-link .play-icon::after {
    content: "";

    position: absolute;

    inset: -6px;

    border:
        1px solid rgba(255,114,0,.20);

    border-radius: 50%;

    opacity: 0;

    transform: scale(.8);

    transition:
        opacity .3s ease,
        transform .35s ease;
}


.services-hero .intro-link:hover .play-icon {
    transform: scale(1.06);

    border-color:
        rgba(255,114,0,.75) !important;

    background:
        rgba(255,114,0,.08) !important;

    box-shadow:
        0 0 25px rgba(255,114,0,.12);
}


.services-hero .intro-link:hover .play-icon::after {
    opacity: 1;

    transform: scale(1);
}


/* =========================================================
   FOUR HERO FEATURES — PREMIUM TRUST BAR
========================================================= */

.services-hero > .hero-feature-strip {
    background:
        linear-gradient(
            90deg,
            rgba(4,7,8,.97),
            rgba(7,10,11,.94),
            rgba(4,7,8,.97)
        ) !important;

    border-top:
        1px solid rgba(255,255,255,.13) !important;

    box-shadow:
        0 -15px 40px rgba(0,0,0,.18) !important;
}


/* Individual feature */

.services-hero > .hero-feature-strip
> .hero-feature {
    position: relative;

    transition:
        background .35s ease !important;
}


/* Vertical divider */

.services-hero > .hero-feature-strip
> .hero-feature:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 22px;
    right: 0;

    width: 1px;
    height: 34px;

    background:
        linear-gradient(
            transparent,
            rgba(255,255,255,.13),
            transparent
        );
}


/* Hover background */

.services-hero > .hero-feature-strip
> .hero-feature:hover {
    background:
        rgba(255,114,0,.035) !important;
}


/* =========================================================
   FEATURE ICONS
========================================================= */

.services-hero > .hero-feature-strip
.feature-icon {
    position: relative;

    width: 40px !important;
    height: 40px !important;

    flex: 0 0 40px !important;

    margin-right: 14px !important;

    border:
        1px solid rgba(255,114,0,.55) !important;

    background:
        radial-gradient(
            circle,
            rgba(255,114,0,.08),
            transparent 70%
        ) !important;

    color: #ff7a0a !important;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease !important;
}


.services-hero > .hero-feature-strip
> .hero-feature:hover .feature-icon {
    transform:
        translateY(-2px)
        scale(1.05);

    border-color:
        rgba(255,114,0,.9) !important;

    box-shadow:
        0 0 20px rgba(255,114,0,.12);
}


/* =========================================================
   FEATURE HEADINGS
========================================================= */

.services-hero > .hero-feature-strip
.hero-feature h4 {
    margin-bottom: 5px !important;

    color: #f5f6f6 !important;

    font-size: 12px !important;

    font-weight: 700 !important;

    letter-spacing: .25px !important;

    line-height: 1.15 !important;

    transition:
        color .25s ease;
}


.services-hero > .hero-feature-strip
> .hero-feature:hover h4 {
    color: #fff !important;
}


/* =========================================================
   FEATURE DESCRIPTIONS
========================================================= */

.services-hero > .hero-feature-strip
.hero-feature p {
    color:
        rgba(255,255,255,.48) !important;

    font-size: 8px !important;

    font-weight: 400 !important;

    letter-spacing: .15px !important;

    line-height: 1.4 !important;
}


/* =========================================================
   DESKTOP — A LITTLE MORE BREATHING ROOM
========================================================= */

@media (min-width: 1200px) {

    .services-hero > .hero-feature-strip {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .services-hero > .hero-feature-strip
    > .hero-feature {
        padding-left: 26px !important;
        padding-right: 26px !important;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .services-hero .service-btn.primary {
        min-height: 48px !important;

        padding: 0 18px !important;

        font-size: 10px !important;
    }

    .services-hero .intro-link .play-icon {
        width: 38px !important;
        height: 38px !important;
    }

    .services-hero > .hero-feature-strip
    .hero-feature h4 {
        font-size: 10px !important;
    }

    .services-hero > .hero-feature-strip
    .hero-feature p {
        font-size: 7px !important;
    }

}
/* =========================================================
   HOLS-FIELD SERVICES
   FINAL TABLET + MOBILE RESPONSIVE SYSTEM
========================================================= */


/* =========================================================
   TABLET — 769px to 1100px
========================================================= */

@media (min-width: 769px) and (max-width: 1100px) {

    /* -----------------------------------------------------
       HERO
    ----------------------------------------------------- */

    .services-hero {
        min-height: 700px !important;
        height: 700px !important;
    }

    .services-hero-content {
        width: calc(100% - 60px) !important;
        min-height: 0 !important;

        padding-top: 145px !important;
        padding-bottom: 110px !important;
    }

    .services-hero-copy {
        width: 50% !important;
        max-width: 470px !important;
    }

    .services-hero h1 {
        font-size: clamp(48px, 6vw, 64px) !important;
        line-height: .94 !important;
        letter-spacing: -2px !important;
    }

    .services-hero-copy > p {
        max-width: 430px !important;

        margin-top: 22px !important;

        font-size: 13px !important;
        line-height: 1.6 !important;
    }


    /* -----------------------------------------------------
       HERO IMAGE
    ----------------------------------------------------- */

    .services-hero-image {
        width: 55% !important;

        background-position: center center !important;
    }


    /* -----------------------------------------------------
       HERO BUTTONS
    ----------------------------------------------------- */

    .services-hero .hero-buttons {
        gap: 18px !important;

        margin-top: 24px !important;
    }

    .services-hero .service-btn.primary {
        min-height: 48px !important;

        padding: 0 18px !important;

        font-size: 9px !important;
    }

    .services-hero .intro-link {
        font-size: 9px !important;
    }

    .services-hero .intro-link .play-icon {
        width: 38px !important;
        height: 38px !important;
    }


    /* -----------------------------------------------------
       FOUR HERO FEATURES
    ----------------------------------------------------- */

    .services-hero > .hero-feature-strip {
        width: calc(100% - 60px) !important;

        height: 82px !important;

        grid-template-columns:
            repeat(4, minmax(0, 1fr)) !important;
    }

    .services-hero > .hero-feature-strip
    > .hero-feature {
        padding: 0 10px !important;
    }

    .services-hero > .hero-feature-strip
    .feature-icon {
        width: 32px !important;
        height: 32px !important;

        flex-basis: 32px !important;

        margin-right: 8px !important;

        font-size: 11px !important;
    }

    .services-hero > .hero-feature-strip
    .hero-feature h4 {
        font-size: 9px !important;
    }

    .services-hero > .hero-feature-strip
    .hero-feature p {
        font-size: 6.5px !important;

        white-space: normal !important;
    }


    /* -----------------------------------------------------
       SERVICE PORTFOLIO
    ----------------------------------------------------- */

    .service-portfolio {
        padding-top: 85px !important;
        padding-bottom: 85px !important;
    }

    .service-grid {
        width: calc(100% - 60px) !important;

        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        gap: 22px !important;
    }

    /*
       Third card gets full width.
    */

    .service-category:last-child {
        grid-column: 1 / -1 !important;
    }


    .service-category {
        padding: 28px !important;
    }

    .service-category .service-list li {
        font-size: 13px !important;

        line-height: 1.55 !important;
    }


    /* -----------------------------------------------------
       HOW WE DELIVER
    ----------------------------------------------------- */

    .delivery-section {
        padding-top: 85px !important;
        padding-bottom: 90px !important;
    }

    .delivery-process {
        width: calc(100% - 50px) !important;
    }

    .delivery-step {
        padding: 0 7px !important;
    }

    .delivery-step .step-icon {
        width: 62px !important;
        height: 62px !important;

        font-size: 17px !important;
    }

    .delivery-step h3 {
        font-size: 10px !important;

        letter-spacing: 1px !important;
    }

    .delivery-step p {
        max-width: 130px !important;

        font-size: 9px !important;
    }


    /* -----------------------------------------------------
       CTA
    ----------------------------------------------------- */

    .services-cta {
        min-height: 430px !important;
    }

    .cta-content {
        width: calc(100% - 60px) !important;
    }

    .cta-content h2 {
        font-size: clamp(42px, 5vw, 58px) !important;
    }

}


/* =========================================================
   MOBILE — UP TO 768px
========================================================= */

@media (max-width: 768px) {


    /* -----------------------------------------------------
       GENERAL
    ----------------------------------------------------- */

    html,
    body {
        overflow-x: hidden !important;
    }


    /* =====================================================
       HERO
    ===================================================== */

    .services-hero {
        height: auto !important;
        min-height: 0 !important;

        overflow: hidden !important;
    }


    /* -----------------------------------------------------
       HERO IMAGE
    ----------------------------------------------------- */

    .services-hero-image {
        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;

        width: 100% !important;
        height: 100% !important;

        opacity: .38 !important;

        clip-path: none !important;

        background-size: cover !important;

        background-position:
            65% center !important;

        transform: none !important;
    }


    .services-hero-image::after {
        background:
            linear-gradient(
                90deg,
                rgba(3,5,6,.97) 0%,
                rgba(3,5,6,.78) 48%,
                rgba(3,5,6,.42) 100%
            ) !important;
    }


    /* -----------------------------------------------------
       HERO OVERLAY
    ----------------------------------------------------- */

    .services-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(3,5,6,.25),
                rgba(3,5,6,.25) 45%,
                rgba(3,5,6,.82) 100%
            ) !important;
    }


    /* -----------------------------------------------------
       HERO CONTENT
    ----------------------------------------------------- */

    .services-hero-content {
        width: calc(100% - 36px) !important;

        min-height: 0 !important;

        margin: 0 auto !important;

        display: block !important;

        padding-top: 125px !important;
        padding-bottom: 30px !important;
    }


    .services-hero-copy {
        width: 100% !important;

        max-width: 100% !important;

        padding-top: 0 !important;
    }


    /* -----------------------------------------------------
       KICKER
    ----------------------------------------------------- */

    .services-kicker {
        margin-bottom: 20px !important;

        gap: 9px !important;

        font-size: 9px !important;

        letter-spacing: 2.5px !important;
    }

    .services-kicker span {
        width: 25px !important;
    }


    /* -----------------------------------------------------
       HERO HEADING
    ----------------------------------------------------- */

    .services-hero h1 {
        font-size:
            clamp(46px, 13vw, 64px) !important;

        line-height: .93 !important;

        letter-spacing: -2px !important;
    }


    /* -----------------------------------------------------
       HERO DESCRIPTION
    ----------------------------------------------------- */

    .services-hero-copy > p {
        max-width: 100% !important;

        margin-top: 23px !important;
        margin-bottom: 24px !important;

        font-size: 13px !important;

        line-height: 1.65 !important;

        color: rgba(255,255,255,.72) !important;
    }


    /* -----------------------------------------------------
       HERO BUTTONS
    ----------------------------------------------------- */

    .services-hero .hero-buttons {
        display: flex !important;

        align-items: center !important;

        flex-wrap: wrap !important;

        gap: 15px !important;

        margin-top: 20px !important;
    }


    .services-hero .service-btn.primary {
        min-height: 48px !important;

        padding: 0 17px !important;

        font-size: 9px !important;

        letter-spacing: .8px !important;
    }


    .services-hero .intro-link {
        gap: 9px !important;

        font-size: 9px !important;

        letter-spacing: 1.2px !important;
    }


    .services-hero .intro-link .play-icon {
        width: 38px !important;
        height: 38px !important;
    }


    /* =====================================================
       HERO FEATURE BAR
    ===================================================== */

    .services-hero > .hero-feature-strip {
        position: relative !important;

        left: auto !important;
        right: auto !important;
        bottom: auto !important;

        transform: none !important;

        width: calc(100% - 36px) !important;

        height: auto !important;

        margin: 10px auto 0 !important;

        display: grid !important;

        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        background:
            rgba(3,6,7,.94) !important;

        border-top:
            1px solid rgba(255,255,255,.12) !important;
    }


    .services-hero > .hero-feature-strip
    > .hero-feature {
        min-height: 74px !important;

        height: auto !important;

        padding: 13px 10px !important;

        border-right: none !important;

        border-bottom:
            1px solid rgba(255,255,255,.08) !important;
    }


    .services-hero > .hero-feature-strip
    > .hero-feature:nth-child(odd) {
        border-right:
            1px solid rgba(255,255,255,.08) !important;
    }


    .services-hero > .hero-feature-strip
    > .hero-feature:nth-last-child(-n+2) {
        border-bottom: none !important;
    }


    .services-hero > .hero-feature-strip
    > .hero-feature::after {
        display: none !important;
    }


    .services-hero > .hero-feature-strip
    .feature-icon {
        width: 32px !important;
        height: 32px !important;

        flex-basis: 32px !important;

        margin-right: 8px !important;

        font-size: 10px !important;
    }


    .services-hero > .hero-feature-strip
    .hero-feature h4 {
        margin-bottom: 4px !important;

        font-size: 9px !important;

        line-height: 1.2 !important;
    }


    .services-hero > .hero-feature-strip
    .hero-feature p {
        font-size: 7px !important;

        line-height: 1.35 !important;

        white-space: normal !important;
    }


    /* =====================================================
       SERVICE PORTFOLIO
    ===================================================== */

    .service-portfolio {
        padding-top: 75px !important;
        padding-bottom: 75px !important;
    }


    .section-heading {
        margin-bottom: 40px !important;

        font-size: 9px !important;

        letter-spacing: 2.5px !important;
    }


    .service-grid {
        width: calc(100% - 36px) !important;

        display: grid !important;

        grid-template-columns: 1fr !important;

        gap: 18px !important;
    }


    .service-category,
    .service-category:last-child {
        grid-column: auto !important;

        width: 100% !important;

        padding: 25px 21px !important;
    }


    .service-category .service-number {
        font-size: 34px !important;
    }


    .service-category .service-icon {
        width: 48px !important;
        height: 48px !important;

        font-size: 18px !important;
    }


    .service-category h2 {
        font-size: 19px !important;

        line-height: 1.2 !important;

        margin-top: 15px !important;
    }


    .service-category .service-list {
        margin-top: 4px !important;
    }


    .service-category .service-list li {
        font-size: 14px !important;

        line-height: 1.55 !important;

        padding: 10px 0 !important;
    }


    .service-category .service-list li i {
        width: 19px !important;

        min-width: 19px !important;

        font-size: 12px !important;
    }


    /* Disable excessive card movement on touch */
    .service-category:hover {
        transform: none !important;
    }


    /* =====================================================
       HOW WE DELIVER
    ===================================================== */

    .delivery-section {
        padding-top: 75px !important;

        padding-bottom: 80px !important;
    }


    .delivery-section .section-heading {
        margin-bottom: 50px !important;
    }


    .delivery-process {
        width: calc(100% - 40px) !important;

        display: flex !important;

        flex-direction: column !important;

        align-items: center !important;

        gap: 42px !important;
    }


    .delivery-process::before {
        top: 35px !important;

        bottom: 35px !important;

        left: 50% !important;

        right: auto !important;

        width: 1px !important;

        height: auto !important;
    }


    .delivery-step {
        width: 100% !important;

        padding: 0 !important;
    }


    .delivery-step .step-number {
        top: -20px !important;

        font-size: 9px !important;
    }


    .delivery-step .step-icon {
        width: 68px !important;
        height: 68px !important;

        font-size: 19px !important;
    }


    .delivery-step h3 {
        margin-top: 19px !important;

        font-size: 12px !important;

        letter-spacing: 1.5px !important;
    }


    .delivery-step p {
        max-width: 250px !important;

        font-size: 10px !important;

        line-height: 1.55 !important;
    }


    /* Remove hover movement on touch */
    .delivery-step:hover {
        transform: none !important;
    }


    /* =====================================================
       CTA
    ===================================================== */

    .services-cta {
        min-height: 460px !important;

        padding: 75px 18px !important;
    }


    .cta-content {
        width: 100% !important;

        max-width: 100% !important;
    }


    .cta-content h2 {
        font-size:
            clamp(38px, 11vw, 54px) !important;

        line-height: .98 !important;
    }


    .cta-content p {
        max-width: 100% !important;

        font-size: 12px !important;

        line-height: 1.65 !important;
    }


    .cta-button {
        min-height: 48px !important;

        padding: 0 20px !important;

        font-size: 9px !important;
    }

}


/* =========================================================
   SMALL PHONES — 480px AND BELOW
========================================================= */

@media (max-width: 480px) {


    /* HERO */

    .services-hero-content {
        width: calc(100% - 28px) !important;

        padding-top: 115px !important;
    }


    .services-hero h1 {
        font-size:
            clamp(42px, 13vw, 55px) !important;

        letter-spacing: -1.7px !important;
    }


    .services-hero-copy > p {
        font-size: 12px !important;

        line-height: 1.6 !important;
    }


    /* BUTTONS */

    .services-hero .hero-buttons {
        align-items: flex-start !important;

        gap: 12px !important;
    }


    .services-hero .service-btn.primary {
        min-height: 46px !important;

        padding: 0 14px !important;

        font-size: 8px !important;
    }


    .services-hero .intro-link {
        font-size: 8px !important;
    }


    .services-hero .intro-link .play-icon {
        width: 34px !important;
        height: 34px !important;
    }


    /* FEATURES */

    .services-hero > .hero-feature-strip {
        width: calc(100% - 28px) !important;
    }


    .services-hero > .hero-feature-strip
    > .hero-feature {
        min-height: 70px !important;

        padding: 11px 7px !important;
    }


    .services-hero > .hero-feature-strip
    .feature-icon {
        width: 28px !important;
        height: 28px !important;

        flex-basis: 28px !important;

        margin-right: 6px !important;
    }


    .services-hero > .hero-feature-strip
    .hero-feature h4 {
        font-size: 8px !important;
    }


    .services-hero > .hero-feature-strip
    .hero-feature p {
        font-size: 6.5px !important;
    }


    /* SERVICE CARDS */

    .service-grid {
        width: calc(100% - 28px) !important;
    }


    .service-category,
    .service-category:last-child {
        padding: 22px 17px !important;
    }


    .service-category .service-list li {
        font-size: 13px !important;

        line-height: 1.55 !important;
    }


    /* DELIVERY */

    .delivery-process {
        width: calc(100% - 28px) !important;
    }


    /* CTA */

    .services-cta {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

}


/* =========================================================
   VERY SMALL PHONES — 380px AND BELOW
========================================================= */

@media (max-width: 380px) {

    .services-hero h1 {
        font-size: 40px !important;
    }

    .services-hero .hero-buttons {
        flex-direction: column !important;

        align-items: flex-start !important;
    }

    .services-hero > .hero-feature-strip
    .hero-feature p {
        font-size: 6px !important;
    }

    .service-category .service-list li {
        font-size: 12.5px !important;
    }

}
/* =========================================================
   SERVICE CARDS — SOFT PREMIUM HOVER
========================================================= */

/* Remove the aggressive movement */
.service-category {
    transform: translateY(0) !important;

    transition:
        border-color .45s ease,
        box-shadow .45s ease,
        background .45s ease,
        transform .45s ease !important;
}


/* Gentle lift only */
.service-category:hover {
    transform: translateY(-3px) !important;

    border-color:
        rgba(255,114,0,.28) !important;

    box-shadow:
        0 18px 42px rgba(0,0,0,.32),
        0 0 28px rgba(255,114,0,.07) !important;
}


/* Keep the top accent subtle */
.service-category::before {
    height: 2px !important;

    transition:
        width .55s ease !important;
}

.service-category:hover::before {
    width: 55% !important;
}


/* =========================================================
   SOFT ICON RESPONSE
========================================================= */

.service-category .service-icon {
    transition:
        transform .45s ease,
        background .45s ease,
        box-shadow .45s ease,
        border-color .45s ease !important;
}

.service-category:hover .service-icon {
    transform: scale(1.035) !important;

    box-shadow:
        0 0 20px rgba(255,114,0,.09) !important;
}


/* =========================================================
   NUMBER — VERY SUBTLE
========================================================= */

.service-category .service-number {
    transition:
        opacity .4s ease,
        color .4s ease !important;
}

.service-category:hover .service-number {
    transform: none !important;

    opacity: 1 !important;
}


/* =========================================================
   LIST — NO SLIDING
========================================================= */

.service-category .service-list li {
    transition:
        color .3s ease !important;

    padding-left: 0 !important;
}

.service-category .service-list li:hover {
    padding-left: 0 !important;

    color: #ffffff !important;
}


/* =========================================================
   ORANGE DIVIDER — GENTLE
========================================================= */

.service-category .orange-line {
    transition:
        width .45s ease !important;
}

.service-category:hover .orange-line {
    width: 52px !important;
}


/* =========================================================
   ENERGY — WARM GREEN/GOLD
========================================================= */

.energy-card {
    background:
        linear-gradient(
            145deg,
            rgba(181,150,72,.045),
            rgba(255,255,255,.012) 55%
        ) !important;
}

.energy-card:hover {
    border-color:
        rgba(196,164,76,.30) !important;

    box-shadow:
        0 18px 42px rgba(0,0,0,.32),
        0 0 28px rgba(196,164,76,.075) !important;
}


/* =========================================================
   ELECTRICAL — WARM ORANGE
========================================================= */

.electrical-card {
    background:
        linear-gradient(
            145deg,
            rgba(255,114,0,.045),
            rgba(255,255,255,.012) 55%
        ) !important;
}

.electrical-card:hover {
    border-color:
        rgba(255,114,0,.32) !important;

    box-shadow:
        0 18px 42px rgba(0,0,0,.32),
        0 0 28px rgba(255,114,0,.08) !important;
}


/* =========================================================
   ENGINEERING — WARM BRONZE
   Replaces the cold blue
========================================================= */

.engineering-card {
    background:
        linear-gradient(
            145deg,
            rgba(190,116,55,.045),
            rgba(255,255,255,.012) 55%
        ) !important;
}

.engineering-card:hover {
    border-color:
        rgba(196,126,63,.32) !important;

    box-shadow:
        0 18px 42px rgba(0,0,0,.32),
        0 0 28px rgba(190,116,55,.075) !important;
}


/* =========================================================
   ENGINEERING ICON / ACCENT
========================================================= */

.engineering-card .service-icon {
    color: #c47e3f !important;
}

.engineering-card .orange-line {
    background: #c47e3f !important;
}


/* =========================================================
   TOUCH DEVICES — NO HOVER LIFT
========================================================= */

@media (hover: none) {

    .service-category:hover {
        transform: none !important;
    }

    .service-category:hover .service-icon {
        transform: none !important;
    }

}