
    :root {
        --gb-black: #051876;
        --gb-black-soft: #07145a;
        --gb-dark: #050d39;
        --gb-orange: #ffa600;
        --gb-orange-dark: #eb8f00;
        --gb-white: #ffffff;
        --gb-light: #f6f6f6;
        --gb-text: #050d39;
        --gb-muted: #747474;
        --gb-line: rgba(255, 255, 255, .14);
        --gb-shadow: 0 25px 65px rgba(0, 0, 0, .22);
    }


    /* =========================================================
       TOP INFO BAR
    ========================================================= */

    .gb-topbar {
        background: var(--gb-black);
        color: rgba(255, 255, 255, .83);
        min-height: 34px;
        font-size: 12px;
        position: relative;
        z-index: 50;
    }

    .gb-topbar-inner {
        min-height: 34px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .gb-topbar-item {
        display: flex;
        align-items: center;
        gap: 8px;
        white-space: nowrap;
    }

    .gb-mini-icon {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: var(--gb-orange);
        color: var(--gb-black);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        font-weight: 900;
    }



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

    .gb-hero {
        position: relative;
        min-height: 720px;
        overflow: hidden;
        background:
    linear-gradient(
        90deg,
        rgba(3, 9, 48, .96) 0%,
        rgba(5, 14, 65, .90) 29%,
        rgba(7, 20, 90, .65) 53%,
        rgba(7, 20, 90, .15) 100%
    ),
    url("../images/garage-door-baytown-services-bg.webp")
    center right / cover no-repeat;
    }


    /* subtle texture */

    .gb-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        opacity: .14;
        background-image:
            repeating-linear-gradient(
                45deg,
                rgba(255,255,255,.045) 0,
                rgba(255,255,255,.045) 1px,
                transparent 1px,
                transparent 12px
            );
    }


    /* orange lower line */

    .gb-hero::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 43%;
        height: 18px;
        background: var(--gb-orange);
        z-index: 8;
        clip-path: polygon(0 0, 94% 0, 100% 100%, 0 100%);
    }



    /* =========================================================
       NAVBAR
    ========================================================= */

    .gb-navbar-wrap {
        position: relative;
        z-index: 30;
        padding-top: 0;
    }

    .gb-navbar {
        background: var(--gb-white);
        min-height: 82px;
        padding: 0 26px;
        box-shadow: 0 9px 35px rgba(0, 0, 0, .11);
        position: relative;
    }

    .gb-navbar::after {
        content: "";
        position: absolute;
        right: -32px;
        top: 0;
        height: 100%;
        width: 34px;
        background: var(--gb-white);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 55% 100%);
    }


    .gb-brand {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
    }

    .gb-brand-mark {
        width: 43px;
        height: 43px;
        background: var(--gb-orange);
        color: var(--gb-black);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 23px;
        font-weight: 900;
        clip-path: polygon(
            16% 0,
            100% 0,
            100% 76%,
            78% 100%,
            0 100%,
            0 17%
        );
    }

    .gb-brand-text strong {
        color: var(--gb-black);
        display: block;
        font-size: 18px;
        line-height: 1;
        font-weight: 900;
    }

    .gb-brand-text span {
        display: block;
        color: #999;
        font-size: 9px;
        margin-top: 4px;
        letter-spacing: .5px;
        text-transform: uppercase;
    }



    .gb-navbar .navbar-nav {
        gap: 4px;
    }

    .gb-navbar .nav-link {
        color: #191919;
        font-size: 13px;
        font-weight: 800;
        padding: 30px 13px !important;
        position: relative;
        transition: .3s ease;
    }

    .gb-navbar .nav-link::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 20px;
        width: 0;
        height: 2px;
        background: var(--gb-orange);
        transform: translateX(-50%);
        transition: .3s ease;
    }

    .gb-navbar .nav-link:hover {
        color: var(--gb-orange-dark);
    }

    .gb-navbar .nav-link:hover::after,
    .gb-navbar .nav-link.active::after {
        width: 25px;
    }



    .gb-nav-call {
        text-decoration: none;
        background: var(--gb-orange);
        color: var(--gb-black);
        padding: 14px 21px;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .3px;
        text-transform: uppercase;
        transition: .3s ease;
        clip-path: polygon(
            7px 0,
            100% 0,
            100% calc(100% - 7px),
            calc(100% - 7px) 100%,
            0 100%,
            0 7px
        );
    }

    .gb-nav-call:hover {
        background: var(--gb-black);
        color: var(--gb-white);
        transform: translateY(-2px);
    }


    .gb-navbar .navbar-toggler {
        border: none;
        box-shadow: none !important;
        width: 44px;
        height: 44px;
        background: var(--gb-orange);
        border-radius: 0;
        position: relative;
    }

    .gb-navbar .navbar-toggler-icon {
        background-image: none;
        position: relative;
        width: 22px;
        height: 2px;
        background: #000;
    }

    .gb-navbar .navbar-toggler-icon::before,
    .gb-navbar .navbar-toggler-icon::after {
        content: "";
        position: absolute;
        left: 0;
        width: 22px;
        height: 2px;
        background: #000;
    }

    .gb-navbar .navbar-toggler-icon::before {
        top: -7px;
    }

    .gb-navbar .navbar-toggler-icon::after {
        top: 7px;
    }



    /* =========================================================
       DECORATIVE ORANGE SHAPES
    ========================================================= */

    .gb-shape-top {
        position: absolute;
        z-index: 10;
        top: 116px;
        left: 44%;
        width: 92px;
        height: 46px;
        background: var(--gb-orange);
        transform: skewX(28deg);
    }

    .gb-shape-line {
        position: absolute;
        z-index: 9;
        width: 4px;
        height: 340px;
        background: var(--gb-orange);
        left: 52%;
        top: 140px;
        transform: rotate(-27deg);
        transform-origin: top;
    }

    .gb-shape-bottom {
        position: absolute;
        z-index: 10;
        width: 76px;
        height: 76px;
        left: 59%;
        bottom: 113px;
        background: var(--gb-orange);
        transform: skewX(24deg);
    }



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

    .gb-hero-inner {
        position: relative;
        z-index: 15;
        min-height: 595px;
        display: flex;
        align-items: center;
    }

    .gb-hero-content {
        max-width: 670px;
        padding: 80px 0 110px;
        position: relative;
    }

    .gb-eyebrow {
        color: var(--gb-orange);
        text-transform: uppercase;
        font-weight: 900;
        font-size: 13px;
        letter-spacing: 1px;
        margin-bottom: 13px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .gb-eyebrow::before {
        content: "";
        width: 26px;
        height: 3px;
        background: var(--gb-orange);
    }



    .gb-title {
        font-size: clamp(46px, 5vw, 78px);
        line-height: .98;
        color: var(--gb-white);
        font-weight: 900;
        margin: 0 0 22px;
        letter-spacing: -2.2px;
        max-width: 690px;
    }

    .gb-title span {
        color: var(--gb-orange);
    }



    .gb-description {
        max-width: 625px;
        color: rgba(255, 255, 255, .84);
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 27px;
    }



    .gb-hero-actions {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 18px;
    }


    .gb-primary-btn {
        min-height: 53px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 0 24px;
        background: var(--gb-orange);
        color: var(--gb-black);
        text-decoration: none;
        text-transform: uppercase;
        font-size: 12px;
        font-weight: 900;
        transition: .35s ease;
        position: relative;
        overflow: hidden;
    }

    .gb-primary-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -120%;
        width: 80%;
        height: 100%;
        background:
            linear-gradient(
                90deg,
                transparent,
                rgba(255,255,255,.42),
                transparent
            );
        transform: skewX(-20deg);
        transition: .7s ease;
    }

    .gb-primary-btn:hover::before {
        left: 145%;
    }

    .gb-primary-btn:hover {
        background: var(--gb-white);
        color: var(--gb-black);
        transform: translateY(-3px);
    }



    .gb-phone-box {
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--gb-white);
        text-decoration: none;
    }

    .gb-phone-icon {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--gb-white);
        color: var(--gb-black);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        box-shadow: 0 0 0 6px rgba(255,255,255,.1);
        transition: .3s ease;
    }

    .gb-phone-box:hover .gb-phone-icon {
        background: var(--gb-orange);
        transform: scale(1.08);
    }

    .gb-phone-text small {
        display: block;
        font-size: 9px;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        color: rgba(255, 255, 255, .63);
        margin-bottom: 2px;
    }

    .gb-phone-text strong {
        display: block;
        color: var(--gb-white);
        font-size: 38px;
        line-height: 1;
        font-weight: 900;
    }



    /* =========================================================
       SIDE LABELS
    ========================================================= */

    .gb-side-left {
        position: absolute;
        left: 0;
        top: 48%;
        z-index: 25;
        transform: translateY(-50%);
    }

    .gb-side-left a {
        width: 34px;
        min-height: 158px;
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        background: var(--gb-orange);
        color: var(--gb-black);
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 10px;
        font-weight: 900;
        letter-spacing: .6px;
    }



    .gb-side-right {
        position: absolute;
        z-index: 25;
        right: 0;
        top: 180px;
        display: flex;
        flex-direction: column;
        background: var(--gb-orange);
    }

    .gb-side-right a {
        color: var(--gb-black);
        text-decoration: none;
        width: 38px;
        min-height: 89px;
        writing-mode: vertical-rl;
        display: flex;
        align-items: center;
        justify-content: center;
        border-bottom: 1px solid rgba(0,0,0,.23);
        text-transform: uppercase;
        font-size: 9px;
        font-weight: 900;
        transition: .3s ease;
    }

    .gb-side-right a:hover {
        background: var(--gb-white);
    }



    /* =========================================================
       FEATURE STRIP
    ========================================================= */

    .gb-feature-strip-wrap {
        position: absolute;
        z-index: 20;
        right: 0;
        bottom: 0;
        width: 58%;
    }

    .gb-feature-strip {
        background: var(--gb-white);
        min-height: 82px;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, .08);
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .gb-feature {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 17px 26px;
        border-right: 1px solid #e7e7e7;
    }

    .gb-feature:last-child {
        border-right: 0;
    }

    .gb-feature-icon {
        flex: 0 0 45px;
        width: 45px;
        height: 45px;
        background: var(--gb-orange);
        color: var(--gb-black);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        font-weight: 900;
    }

    .gb-feature strong {
        color: var(--gb-black);
        display: block;
        line-height: 1.15;
        font-size: 13px;
        font-weight: 900;
    }

    .gb-feature span {
        display: block;
        color: #8a8a8a;
        font-size: 9px;
        margin-top: 4px;
        text-transform: uppercase;
        letter-spacing: .6px;
    }



    /* =========================================================
       FLOATING GARAGE DOOR LINE DETAIL
    ========================================================= */

    .gb-garage-detail {
        position: absolute;
        z-index: 6;
        right: 13%;
        bottom: 96px;
        width: 238px;
        height: 118px;
        opacity: .22;
        border: 2px solid var(--gb-white);
        pointer-events: none;
    }

    .gb-garage-detail::before {
        content: "";
        position: absolute;
        inset: 15px 20px;
        border: 2px solid var(--gb-white);
        background:
            repeating-linear-gradient(
                to bottom,
                transparent 0 17px,
                var(--gb-white) 17px 19px
            );
    }



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

    @media (max-width: 1199.98px) {

        .gb-title {
            font-size: 59px;
        }

        .gb-navbar .nav-link {
            font-size: 11px;
            padding-left: 9px !important;
            padding-right: 9px !important;
        }

        .gb-nav-call {
            padding-left: 14px;
            padding-right: 14px;
        }

        .gb-shape-top,
        .gb-shape-line,
        .gb-shape-bottom {
            opacity: .65;
        }
    }


    @media (max-width: 991.98px) {

        .gb-topbar {
            display: none;
        }

        .gb-hero {
            min-height: auto;
            background:
                linear-gradient(
                    90deg,
                    rgba(0,0,0,.92),
                    rgba(0,0,0,.68)
                ),
                url("images/garage-door-baytown-services-bg.webp")
                65% center / cover no-repeat;
        }

        .gb-navbar-wrap {
            padding-top: 0;
        }

        .gb-navbar {
            margin: 0;
            padding: 12px 15px;
            min-height: 72px;
        }

        .gb-navbar::after {
            display: none;
        }

        .gb-navbar-collapse {
            background: #fff;
            margin: 12px -15px -12px;
            padding: 8px 15px 18px;
        }

        .gb-navbar .nav-link {
            padding: 12px 7px !important;
            border-bottom: 1px solid #eeeeee;
        }

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

        .gb-nav-call {
            margin-top: 13px;
            display: inline-flex;
        }

        .gb-hero-inner {
            min-height: 590px;
        }

        .gb-hero-content {
            max-width: 690px;
            padding: 90px 30px 165px 35px;
        }

        .gb-title {
            font-size: 56px;
        }

        .gb-feature-strip-wrap {
            width: calc(100% - 50px);
        }

        .gb-shape-top {
            left: 75%;
        }

        .gb-shape-line,
        .gb-shape-bottom {
            display: none;
        }

        .gb-side-right {
            display: none;
        }

        .gb-garage-detail {
            display: none;
        }
    }



    @media (max-width: 767.98px) {

        .gb-hero {
            background:
                linear-gradient(
                    rgba(0,0,0,.81),
                    rgba(0,0,0,.81)
                ),
                url("images/garage-door-baytown-services-bg.webp")
                67% center / cover no-repeat;
        }

        .gb-brand-mark {
            width: 38px;
            height: 38px;
            font-size: 20px;
        }

        .gb-brand-text strong {
            font-size: 15px;
        }

        .gb-brand-text span {
            font-size: 7px;
        }

        .gb-hero-inner {
            min-height: auto;
        }

        .gb-hero-content {
            padding: 80px 21px 185px 25px;
        }

        .gb-eyebrow {
            font-size: 10px;
        }

        .gb-title {
            font-size: 45px;
            letter-spacing: -1.4px;
            line-height: 1.02;
        }

        .gb-description {
            font-size: 13px;
            line-height: 1.65;
        }

        .gb-phone-text strong {
            font-size: 17px;
        }

        .gb-feature-strip-wrap {
            width: calc(100% - 25px);
        }

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

        .gb-feature {
            padding: 14px 12px;
            gap: 10px;
        }

        .gb-feature-icon {
            width: 38px;
            height: 38px;
            flex-basis: 38px;
            font-size: 16px;
        }

        .gb-feature strong {
            font-size: 11px;
        }

        .gb-feature span {
            font-size: 7px;
        }

        .gb-side-left {
            display: none;
        }

        .gb-hero::after {
            width: 100%;
            height: 9px;
        }

        .gb-shape-top {
            width: 50px;
            height: 24px;
            right: 8%;
            left: auto;
            top: 105px;
        }
    }



    @media (max-width: 575.98px) {

        .gb-navbar {
            padding-left: 12px;
            padding-right: 12px;
        }

        .gb-brand-text span {
            display: none;
        }

        .gb-hero-content {
            padding-top: 68px;
            padding-left: 22px;
            padding-right: 18px;
            padding-bottom: 200px;
        }

        .gb-title {
            font-size: 39px;
        }

        .gb-description {
            margin-bottom: 22px;
        }

        .gb-hero-actions {
            gap: 16px;
        }

        .gb-primary-btn {
            width: 100%;
        }

        .gb-phone-box {
            width: 100%;
        }

        .gb-feature-strip-wrap {
            left: 12px;
            right: 12px;
            width: auto;
            bottom: 20px;
        }

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

        .gb-feature {
            min-height: 65px;
            border-right: 0;
            border-bottom: 1px solid #e8e8e8;
        }

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

    /* =========================================================
   HERO MOBILE FIX
   Phone visible clearly without scrolling
========================================================= */

@media (max-width: 767.98px) {

    .gb-hero {
        min-height: 620px;

        background:
            linear-gradient(
                90deg,
                rgba(0,0,0,.90) 0%,
                rgba(0,0,0,.76) 55%,
                rgba(0,0,0,.48) 100%
            ),
            url("images/garage-door-baytown-services-bg.webp")
            68% center / cover no-repeat;
    }


    /* NAV */

    .gb-navbar {
        min-height: 66px;
        padding: 9px 13px;
    }

    .gb-brand-mark {
        width: 38px;
        height: 38px;
    }

    .gb-brand-text strong {
        font-size: 14px;
    }


    /* HERO HEIGHT */

    .gb-hero-inner {
        min-height: 545px;
        align-items: flex-start;
    }


    .gb-hero-content {
        padding:
            52px
            18px
            115px
            20px;

        max-width: 100%;
    }


    /* SMALL TITLE */

    .gb-eyebrow {
        font-size: 10px;
        margin-bottom: 10px;
    }


    /* MAIN TITLE */

    .gb-title {
        font-size: clamp(34px, 10vw, 45px);
        line-height: 1.02;
        letter-spacing: -1px;
        margin-bottom: 15px;
        max-width: 500px;
    }


    /* DESCRIPTION */

    .gb-description {
        font-size: 12px;
        line-height: 1.55;
        margin-bottom: 18px;
        max-width: 520px;
    }


    /* hide second paragraph on phone */

    .gb-description:nth-of-type(2) {
        display: none;
    }


    /* ACTION AREA */

    .gb-hero-actions {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }


    /* BUTTON */

    .gb-primary-btn {
        width: auto;
        min-height: 45px;
        padding: 0 19px;
        font-size: 10px;
    }


    /* ==========================
       BIG PHONE NUMBER
    ========================== */

    .gb-phone-box {
        width: auto;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        margin-top: 2px;
    }


    .gb-phone-icon {
        width: 48px;
        height: 48px;
        flex: 0 0 48px;

        background: var(--gb-orange);
        color: #000;

        box-shadow:
            0 0 0 5px rgba(255,166,0,.15);
    }


    .gb-phone-text small {
        color: var(--gb-orange);
        font-size: 9px;
        font-weight: 800;
        letter-spacing: .7px;
        margin-bottom: 5px;
    }


    .gb-phone-text strong {
        color: #fff;

        font-size: clamp(25px, 7vw, 34px);
        line-height: 1;

        font-weight: 900;
        letter-spacing: -.5px;
    }


    /* REMOVE DECORATIONS THAT TAKE MOBILE SPACE */

    .gb-shape-top,
    .gb-shape-line,
    .gb-shape-bottom,
    .gb-garage-detail,
    .gb-side-left,
    .gb-side-right {
        display: none;
    }


    /* FEATURE BAR SMALLER */

    .gb-feature-strip-wrap {
        left: 14px;
        right: 14px;
        bottom: 13px;
        width: auto;
    }


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


    .gb-feature {
        min-height: 63px;
        padding: 10px;
        border-bottom: 0;
    }


    .gb-feature-icon {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
        font-size: 14px;
    }


    .gb-feature strong {
        font-size: 9px;
    }


    .gb-feature span {
        display: none;
    }

}



  .gb-about-services {
        position: relative;
        padding: 90px 0 105px;
        background: #fff;
        overflow: hidden;
    }

    .gb-about-services .container {
        position: relative;
        z-index: 2;
    }

    .gb-about-label {
        display: inline-block;
        color: var(--gb-orange-dark);
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .gb-about-title {
        font-size: clamp(38px, 4vw, 58px);
        line-height: 1.02;
        font-weight: 900;
        color: var(--gb-black);
        letter-spacing: -1.5px;
        margin-bottom: 20px;
        max-width: 620px;
    }

    .gb-about-text {
        color: #777;
        font-size: 13px;
        line-height: 1.8;
        max-width: 650px;
        margin-bottom: 17px;
    }

    .gb-about-points {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 22px;
    }

    .gb-about-point {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #1d1d1d;
        font-size: 11px;
        font-weight: 800;
    }

    .gb-about-point span {
        width: 7px;
        height: 7px;
        background: var(--gb-orange);
        border-radius: 50%;
        flex: 0 0 7px;
    }

    .gb-about-contact {
        display: flex;
        align-items: center;
        gap: 13px;
        margin-top: 25px;
    }

    .gb-about-phone-icon {
        width: 44px;
        height: 44px;
        border: 2px solid var(--gb-orange);
        color: var(--gb-orange-dark);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        border-radius: 50%;
    }

    .gb-about-contact small {
        display: block;
        color: #999;
        font-size: 8px;
        text-transform: uppercase;
        letter-spacing: .8px;
        margin-bottom: 2px;
    }

    .gb-about-contact strong {
        display: block;
        color: var(--gb-black);
        font-size: 17px;
        font-weight: 900;
    }


    /* COUNTERS */

    .gb-about-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        max-width: 430px;
        margin-left: auto;
    }

    .gb-stat-item {
        min-height: 145px;
        padding: 28px 24px;
        display: flex;
        align-items: flex-start;
        gap: 13px;
        border-right: 1px solid #eee;
        border-bottom: 1px solid #eee;
        position: relative;
    }

    .gb-stat-item:nth-child(2n) {
        border-right: 0;
    }

    .gb-stat-item:nth-child(3),
    .gb-stat-item:nth-child(4) {
        border-bottom: 0;
    }

    .gb-stat-number {
        font-size: 34px;
        line-height: 1;
        color: var(--gb-black);
        font-weight: 900;
        letter-spacing: -1px;
        min-width: 70px;
    }

    .gb-stat-number span {
        color: var(--gb-orange);
        font-size: 21px;
    }

    .gb-stat-text {
        padding-top: 4px;
    }

    .gb-stat-text strong {
        display: block;
        font-size: 11px;
        color: #222;
        font-weight: 900;
        text-transform: uppercase;
        margin-bottom: 5px;
    }

    .gb-stat-text span {
        color: #999;
        font-size: 9px;
        line-height: 1.5;
    }


    /* BOTTOM BUTTON */

    .gb-about-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: var(--gb-orange);
        color: #000;
        text-decoration: none;
        min-height: 44px;
        padding: 0 20px;
        font-size: 10px;
        font-weight: 900;
        text-transform: uppercase;
        margin-top: 25px;
        transition: .3s ease;
    }

    .gb-about-btn:hover {
        background: var(--gb-black);
        color: #fff;
        transform: translateY(-2px);
    }


    @media (max-width: 991.98px) {

        .gb-about-services {
            padding: 70px 0;
        }

        .gb-about-stats {
            margin: 40px 0 0;
            max-width: 100%;
        }

    }


    @media (max-width: 575.98px) {

        .gb-about-services {
            padding: 55px 0;
        }

        .gb-about-title {
            font-size: 36px;
        }

        .gb-about-text {
            font-size: 12px;
        }

        .gb-about-stats {
            grid-template-columns: 1fr 1fr;
        }

        .gb-stat-item {
            padding: 20px 13px;
            min-height: 125px;
            gap: 8px;
        }

        .gb-stat-number {
            font-size: 27px;
            min-width: 53px;
        }

        .gb-stat-number span {
            font-size: 17px;
        }

        .gb-stat-text strong {
            font-size: 9px;
        }

        .gb-stat-text span {
            font-size: 8px;
        }

    }



   .gb-service-showcase {
        position: relative;
        padding: 95px 0;
        background:
    linear-gradient(
        rgba(7, 20, 90, .95),
        rgba(7, 20, 90, .95)
    ),
    repeating-linear-gradient(
        45deg,
        rgba(255,255,255,.045) 0,
        rgba(255,255,255,.045) 1px,
        transparent 1px,
        transparent 11px
    );
        overflow: hidden;
    }

    .gb-service-showcase::before {
        content: "";
        position: absolute;
        width: 320px;
        height: 320px;
        border: 1px solid rgba(255,166,0,.12);
        border-radius: 50%;
        top: -170px;
        right: -80px;
    }

    .gb-service-showcase::after {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        border: 1px solid rgba(255,255,255,.06);
        border-radius: 50%;
        left: -100px;
        bottom: -110px;
    }

    .gb-service-showcase .container {
        position: relative;
        z-index: 2;
    }


    /* ==============================
       HEADING
    ============================== */

    .gb-service-heading {
        text-align: center;
        max-width: 760px;
        margin: 0 auto 50px;
    }

    .gb-service-subtitle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        color: var(--gb-orange);
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .gb-service-subtitle::before,
    .gb-service-subtitle::after {
        content: "";
        width: 25px;
        height: 2px;
        background: var(--gb-orange);
    }

    .gb-service-heading h2 {
        color: #fff;
        font-size: clamp(38px, 4.5vw, 60px);
        line-height: 1.02;
        font-weight: 900;
        letter-spacing: -1.5px;
        margin-bottom: 18px;
    }

    .gb-service-heading h2 span {
        color: var(--gb-orange);
    }

    .gb-service-heading p {
        color: rgba(255,255,255,.58);
        font-size: 13px;
        line-height: 1.8;
        margin: 0 auto;
        max-width: 650px;
    }


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

    .gb-service-box {
        position: relative;
        min-height: 315px;
        padding: 32px 28px 28px;
        background: rgba(255,255,255,.055);
        border: 1px solid rgba(255,255,255,.10);
        overflow: hidden;
        height: 100%;
        transition:
            transform .35s ease,
            background .35s ease,
            border-color .35s ease;
        animation: gbServiceFade 0.8s ease both;
    }

    .gb-service-box:nth-child(1) {
        animation-delay: .05s;
    }

    .gb-service-box:nth-child(2) {
        animation-delay: .15s;
    }

    .gb-service-box:nth-child(3) {
        animation-delay: .25s;
    }

    @keyframes gbServiceFade {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .gb-service-box::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 70px;
        height: 4px;
        background: var(--gb-orange);
        transition: width .35s ease;
    }

    .gb-service-box::after {
        content: "";
        position: absolute;
        right: -55px;
        bottom: -55px;
        width: 145px;
        height: 145px;
        border: 1px solid rgba(255,166,0,.12);
        border-radius: 50%;
        transition: .35s ease;
    }

    .gb-service-box:hover {
        transform: translateY(-8px);
        background: rgba(255,255,255,.08);
        border-color: rgba(255,166,0,.35);
    }

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

    .gb-service-box:hover::after {
        transform: scale(1.12);
    }


    /* ==============================
       TOP ROW
    ============================== */

    .gb-service-box-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        margin-bottom: 28px;
    }

    .gb-service-icon {
        width: 62px;
        height: 62px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--gb-orange);
        color: #111;
        font-size: 28px;
        font-weight: 900;
        transition: transform .35s ease;
    }

    .gb-service-box:hover .gb-service-icon {
        transform: rotate(-5deg) scale(1.05);
    }

    .gb-service-number {
        color: rgba(255,255,255,.09);
        font-size: 58px;
        line-height: 1;
        font-weight: 900;
        letter-spacing: -3px;
    }


    /* ==============================
       CONTENT
    ============================== */

    .gb-service-box h3 {
        color: #fff;
        font-size: 21px;
        font-weight: 900;
        margin-bottom: 13px;
    }

    .gb-service-box p {
        color: rgba(255,255,255,.52);
        font-size: 12px;
        line-height: 1.75;
        margin-bottom: 22px;
    }

    .gb-service-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #fff;
        text-decoration: none;
        font-size: 10px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .8px;
        transition: color .3s ease;
    }

    .gb-service-link span {
        color: var(--gb-orange);
        font-size: 16px;
        transition: transform .3s ease;
    }

    .gb-service-link:hover {
        color: var(--gb-orange);
    }

    .gb-service-link:hover span {
        transform: translateX(5px);
    }


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

    .gb-service-bottom {
        margin-top: 45px;
        padding-top: 28px;
        border-top: 1px solid rgba(255,255,255,.10);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .gb-service-bottom p {
        color: rgba(255,255,255,.55);
        font-size: 12px;
        margin: 0;
    }

    .gb-service-bottom strong {
        color: #fff;
    }

    .gb-service-call {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 46px;
        padding: 0 22px;
        background: var(--gb-orange);
        color: #111;
        text-decoration: none;
        font-size: 11px;
        font-weight: 900;
        white-space: nowrap;
        transition: .3s ease;
    }

    .gb-service-call:hover {
        background: #fff;
        color: #111;
        transform: translateY(-3px);
    }


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

    @media (max-width: 991.98px) {
        .gb-service-showcase {
            padding: 75px 0;
        }

        .gb-service-bottom {
            align-items: flex-start;
            flex-direction: column;
        }
    }

    @media (max-width: 767.98px) {
        .gb-service-showcase {
            padding: 60px 0;
        }

        .gb-service-heading {
            margin-bottom: 35px;
        }

        .gb-service-heading h2 {
            font-size: 38px;
        }

        .gb-service-box {
            min-height: auto;
            padding: 27px 22px;
        }

        .gb-service-number {
            font-size: 46px;
        }

        .gb-service-icon {
            width: 54px;
            height: 54px;
            font-size: 24px;
        }
    }



        .gb-explore {
        position: relative;
        background:
    linear-gradient(
        90deg,
        rgba(3, 9, 48, .88) 0%,
        rgba(5, 14, 65, .78) 50%,
        rgba(7, 20, 90, .60) 100%
    ),
    url("../images/garage-door-baytown-services-bg.webp")
    center / cover no-repeat;
        padding: 95px 0 155px;
        overflow: visible;
    }

    /* subtle background detail */
    .gb-explore::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            radial-gradient(
                circle at 12% 20%,
                rgba(255,255,255,.025),
                transparent 32%
            ),
            repeating-linear-gradient(
                45deg,
                rgba(255,255,255,.012) 0,
                rgba(255,255,255,.012) 1px,
                transparent 1px,
                transparent 13px
            );
        pointer-events: none;
    }

    .gb-explore .container {
        position: relative;
        z-index: 3;
    }


    /* =====================================================
       LEFT CONTENT
    ====================================================== */

    .gb-explore-content {
        padding-top: 50px;
        max-width: 500px;
    }

    .gb-explore-label {
        display: inline-block;
        color: var(--gb-orange);
        font-size: 11px;
        line-height: 1;
        text-transform: uppercase;
        font-weight: 900;
        letter-spacing: .4px;
        margin-bottom: 18px;
    }

    .gb-explore-title {
        color: #fff;
        font-size: clamp(42px, 4vw, 64px);
        line-height: 1.05;
        font-weight: 900;
        letter-spacing: -1.6px;
        margin-bottom: 27px;
    }

    .gb-explore-text {
        max-width: 465px;
        color: rgba(255,255,255,.58);
        font-size: 14px;
        line-height: 1.85;
        margin-bottom: 31px;
    }

    .gb-explore-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 18px;
        min-height: 56px;
        padding: 0 24px;
        color: #111;
        background: var(--gb-orange);
        text-decoration: none;
        text-transform: uppercase;
        font-size: 11px;
        font-weight: 900;
        transition: .35s ease;
    }

    .gb-explore-btn span {
        font-size: 18px;
        transition: transform .35s ease;
    }

    .gb-explore-btn:hover {
        background: #fff;
        color: #111;
        transform: translateY(-3px);
    }

    .gb-explore-btn:hover span {
        transform: translateX(5px);
    }


    /* =====================================================
       RIGHT IMAGE
    ====================================================== */

    .gb-explore-media {
        position: relative;
        min-height: 520px;
    }

    .gb-explore-image {
        position: absolute;
        top: 0;
        right: 0;
        width: 92%;
        height: 515px;
        overflow: hidden;
        border-radius: 7px;
    }

    .gb-explore-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        transition: transform 1s ease;
    }

    .gb-explore-image::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
            linear-gradient(
                180deg,
                transparent 45%,
                rgba(0,0,0,.12) 100%
            );
        pointer-events: none;
    }

    .gb-explore-media:hover .gb-explore-image img {
        transform: scale(1.035);
    }


    /* =====================================================
       TESTIMONIAL FLOATING BOX
    ====================================================== */

    .gb-explore-review {
        position: absolute;
        left: -48px;
        bottom: 5px;
        width: 610px;
        max-width: calc(100% + 15px);
        min-height: 150px;
        display: grid;
        grid-template-columns: 235px 1fr;
        background: #fff;
        z-index: 5;
        border-radius: 7px;
        overflow: visible;
        box-shadow: 0 18px 45px rgba(0,0,0,.18);
        animation: gbReviewFloat 4s ease-in-out infinite;
    }

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

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


    /* reviewer */

    .gb-review-person {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: #ededed;
        padding: 20px 25px;
    }

    .gb-review-avatar {
        width: 68px;
        height: 68px;
        border-radius: 50%;
        overflow: hidden;
        border: 4px solid #fff;
        margin-bottom: 9px;
    }

    .gb-review-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .gb-review-person strong {
        color: #111;
        font-size: 14px;
        font-weight: 900;
        margin-bottom: 2px;
    }

    .gb-review-person small {
        color: #777;
        font-size: 9px;
        font-weight: 700;
    }


    /* review content */

    .gb-review-copy {
        position: relative;
        display: flex;
        align-items: center;
        padding: 30px 30px 25px;
    }

    .gb-review-copy::before {
        content: "“";
        position: absolute;
        top: -25px;
        left: 12px;
        color: var(--gb-orange);
        font-size: 78px;
        line-height: 1;
        font-family: Georgia, serif;
        font-weight: 900;
    }

    .gb-review-copy p {
        margin: 0;
        color: #555;
        font-size: 13px;
        line-height: 1.8;
        max-width: 300px;
    }


    /* arrows */

    .gb-review-arrow {
        position: absolute;
        top: 50%;
        width: 42px;
        height: 42px;
        border: 0;
        border-radius: 50%;
        transform: translateY(-50%);
        background: #f2f2f2;
        color: #111;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: .3s ease;
    }

    .gb-review-arrow:hover {
        background: var(--gb-orange);
    }

    .gb-review-arrow-left {
        left: -23px;
    }

    .gb-review-arrow-right {
        right: -23px;
    }


    /* =====================================================
       BOTTOM SERVICE STRIP
    ====================================================== */

    .gb-explore-strip-wrap {
        position: absolute;
        left: 50%;
        bottom: -60px;
        transform: translateX(-50%);
        width: min(1120px, calc(100% - 40px));
        z-index: 20;
    }

    .gb-explore-strip {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        background: #fff;
        border-radius: 7px;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(0,0,0,.13);
    }

    .gb-explore-service {
        min-height: 120px;
        display: flex;
        align-items: center;
        gap: 17px;
        padding: 23px 28px;
        border-right: 1px solid #e8e8e8;
        position: relative;
        transition:
            background .35s ease,
            transform .35s ease;
    }

    .gb-explore-service:last-child {
        border-right: 0;
    }

    .gb-explore-service::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 4px;
        background: var(--gb-orange);
        transition: width .35s ease;
    }

    .gb-explore-service:hover {
        background: #fafafa;
    }

    .gb-explore-service:hover::after {
        width: 100%;
    }


    /* icon */

    .gb-explore-service-icon {
        flex: 0 0 52px;
        width: 52px;
        height: 52px;
        color: var(--gb-orange);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        font-weight: 900;
        transition: transform .35s ease;
    }

    .gb-explore-service:hover .gb-explore-service-icon {
        transform: translateY(-4px);
    }

    .gb-explore-service-copy span {
        display: block;
        color: var(--gb-orange);
        font-size: 9px;
        font-weight: 800;
        margin-bottom: 3px;
    }

    .gb-explore-service-copy strong {
        display: block;
        color: #141414;
        font-size: 14px;
        line-height: 1.25;
        font-weight: 900;
    }


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

    @media (max-width: 1199.98px) {

        .gb-explore-review {
            left: -25px;
            width: 540px;
            grid-template-columns: 205px 1fr;
        }

        .gb-explore-strip-wrap {
            width: calc(100% - 50px);
        }

        .gb-explore-service {
            padding-left: 18px;
            padding-right: 18px;
        }
    }


    @media (max-width: 991.98px) {

        .gb-explore {
            padding: 70px 0 195px;
        }

        .gb-explore-content {
            padding-top: 0;
            max-width: 680px;
            margin-bottom: 45px;
        }

        .gb-explore-media {
            min-height: 600px;
        }

        .gb-explore-image {
            position: relative;
            width: 100%;
            height: 500px;
        }

        .gb-explore-review {
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            width: 88%;
            max-width: 650px;
            animation: none;
        }

        .gb-explore-strip {
            grid-template-columns: repeat(2, 1fr);
        }

        .gb-explore-service:nth-child(2) {
            border-right: 0;
        }

        .gb-explore-service:nth-child(1),
        .gb-explore-service:nth-child(2) {
            border-bottom: 1px solid #e8e8e8;
        }
    }


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

    @media (max-width: 767.98px) {

        .gb-explore {
            padding: 58px 0 260px;
        }

        .gb-explore-title {
            font-size: 40px;
        }

        .gb-explore-text {
            font-size: 12px;
        }

        .gb-explore-media {
            min-height: 520px;
        }

        .gb-explore-image {
            height: 360px;
        }

        .gb-explore-review {
            bottom: 0;
            width: calc(100% - 20px);
            grid-template-columns: 1fr;
        }

        .gb-review-person {
            flex-direction: row;
            justify-content: flex-start;
            text-align: left;
            gap: 12px;
            padding: 15px 20px;
        }

        .gb-review-avatar {
            width: 50px;
            height: 50px;
            margin: 0;
        }

        .gb-review-copy {
            padding: 28px 22px 22px;
        }

        .gb-review-copy::before {
            font-size: 55px;
            top: -18px;
        }

        .gb-review-copy p {
            font-size: 11px;
        }

        .gb-review-arrow {
            display: none;
        }

        .gb-explore-strip-wrap {
            bottom: -210px;
            width: calc(100% - 28px);
        }

        .gb-explore-strip {
            grid-template-columns: 1fr 1fr;
        }

        .gb-explore-service {
            min-height: 103px;
            padding: 16px 13px;
            gap: 8px;
        }

        .gb-explore-service-icon {
            width: 38px;
            flex: 0 0 38px;
            font-size: 21px;
        }

        .gb-explore-service-copy strong {
            font-size: 11px;
        }

        .gb-explore-service-copy span {
            font-size: 7px;
        }
    }


    @media (max-width: 430px) {

        .gb-explore-title {
            font-size: 37px;
        }

        .gb-explore-image {
            height: 310px;
        }

        .gb-explore-media {
            min-height: 490px;
        }
    }


      .gb-residential {
        position: relative;
        padding: 100px 0;
        background: #f7f8fb;
        overflow: hidden;
    }

    .gb-residential::before {
        content: "";
        position: absolute;
        top: -150px;
        right: -150px;
        width: 360px;
        height: 360px;
        border: 55px solid rgba(7, 20, 90, .035);
        border-radius: 50%;
    }

    .gb-residential .container {
        position: relative;
        z-index: 2;
    }


    /* =========================================
       LEFT CONTENT
    ========================================== */

    .gb-residential-label {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 14px;
        color: #f5a000;
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 1.3px;
        text-transform: uppercase;
    }

    .gb-residential-label::before {
        content: "";
        width: 28px;
        height: 3px;
        background: #f5a000;
    }

    .gb-residential-title {
        max-width: 610px;
        margin: 0 0 27px;
        color: #07145a;
        font-size: clamp(38px, 4vw, 58px);
        line-height: 1.03;
        font-weight: 900;
        letter-spacing: -1.6px;
    }

    .gb-residential-text {
        max-width: 700px;
        margin-bottom: 18px;
        color: #68707c;
        font-size: 14px;
        line-height: 1.9;
    }


    /* =========================================
       SMALL VISUAL DETAIL
    ========================================== */

    .gb-residential-line {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 30px;
    }

    .gb-residential-line span:nth-child(1) {
        width: 52px;
        height: 4px;
        background: #f5a000;
    }

    .gb-residential-line span:nth-child(2) {
        width: 12px;
        height: 4px;
        background: #07145a;
    }

    .gb-residential-line span:nth-child(3) {
        width: 6px;
        height: 4px;
        background: rgba(7,20,90,.3);
    }


    /* =========================================
       RIGHT COMPONENT PANEL
    ========================================== */

    .gb-component-panel {
        position: relative;
        padding: 45px 40px;
        background: #07145a;
        overflow: hidden;
        box-shadow: 0 25px 60px rgba(7,20,90,.16);
    }

    .gb-component-panel::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 85px;
        height: 5px;
        background: #f5a000;
    }

    .gb-component-panel::after {
        content: "";
        position: absolute;
        right: -80px;
        bottom: -80px;
        width: 220px;
        height: 220px;
        border: 1px solid rgba(255,255,255,.07);
        border-radius: 50%;
        box-shadow:
            0 0 0 35px rgba(255,255,255,.018),
            0 0 0 70px rgba(255,255,255,.012);
    }

    .gb-component-number {
        display: block;
        margin-bottom: 27px;
        color: rgba(255,255,255,.10);
        font-size: 70px;
        line-height: .8;
        font-weight: 900;
        letter-spacing: -4px;
    }

    .gb-component-title {
        position: relative;
        z-index: 2;
        max-width: 400px;
        margin-bottom: 25px;
        color: #fff;
        font-size: clamp(27px, 3vw, 39px);
        line-height: 1.08;
        font-weight: 900;
        letter-spacing: -1px;
    }

    .gb-component-text {
        position: relative;
        z-index: 2;
        margin-bottom: 20px;
        color: rgba(255,255,255,.65);
        font-size: 13px;
        line-height: 1.9;
    }

    .gb-component-text:last-child {
        margin-bottom: 0;
    }


    /* =========================================
       COMPONENT LABELS
    ========================================== */

    .gb-component-tags {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1px;
        margin-top: 30px;
        background: rgba(255,255,255,.10);
        border: 1px solid rgba(255,255,255,.10);
    }

    .gb-component-tag {
        min-height: 55px;
        display: flex;
        align-items: center;
        gap: 9px;
        padding: 12px 14px;
        background: #0b1a67;
        color: #fff;
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .4px;
    }

    .gb-component-tag span {
        width: 7px;
        height: 7px;
        flex: 0 0 7px;
        background: #f5a000;
        border-radius: 50%;
    }


    /* =========================================
       ANIMATION
    ========================================== */

    .gb-residential-content {
        animation: gbResidentialLeft .8s ease both;
    }

    .gb-component-panel {
        animation: gbResidentialRight .8s .12s ease both;
    }

    @keyframes gbResidentialLeft {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes gbResidentialRight {
        from {
            opacity: 0;
            transform: translateY(22px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


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

    @media (max-width: 991.98px) {
        .gb-residential {
            padding: 75px 0;
        }

        .gb-component-panel {
            margin-top: 15px;
        }
    }

    @media (max-width: 767.98px) {
        .gb-residential {
            padding: 58px 0;
        }

        .gb-residential-title {
            font-size: 38px;
        }

        .gb-residential-text {
            font-size: 13px;
            line-height: 1.75;
        }

        .gb-component-panel {
            padding: 32px 24px;
        }

        .gb-component-number {
            font-size: 55px;
        }

        .gb-component-title {
            font-size: 29px;
        }

        .gb-component-text {
            font-size: 12px;
            line-height: 1.75;
        }
    }

    @media (max-width: 430px) {
        .gb-component-tags {
            grid-template-columns: 1fr;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .gb-residential-content,
        .gb-component-panel {
            animation: none;
        }
    }



       .gb-gallery {
        position: relative;
        padding: 90px 0;
        background: #ffffff;
        overflow: hidden;
    }

    .gb-gallery .container {
        position: relative;
        z-index: 2;
    }


    /* =========================
       HEADING
    ========================= */

    .gb-gallery-head {
        max-width: 720px;
        margin: 0 auto 45px;
        text-align: center;
    }

    .gb-gallery-label {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        margin-bottom: 12px;
        color: #f5a000;
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 1.3px;
        text-transform: uppercase;
    }

    .gb-gallery-label::before,
    .gb-gallery-label::after {
        content: "";
        width: 24px;
        height: 2px;
        background: #f5a000;
    }

    .gb-gallery-title {
        color: #07145a;
        font-size: clamp(38px, 4vw, 56px);
        line-height: 1.03;
        font-weight: 900;
        letter-spacing: -1.4px;
        margin-bottom: 14px;
    }

    .gb-gallery-head p {
        margin: 0;
        color: #737b86;
        font-size: 13px;
        line-height: 1.8;
    }


    /* =========================
       IMAGE ITEM
    ========================= */

    .gb-gallery-item {
        position: relative;
        overflow: hidden;
        height: 300px;
        background: #07145a;
        animation: gbGalleryFade .7s ease both;
    }

    .gb-gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .6s ease;
    }


    /* overlay */

    .gb-gallery-item::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
            linear-gradient(
                180deg,
                rgba(7,20,90,.03) 20%,
                rgba(7,20,90,.78) 100%
            );
        opacity: 0;
        transition: opacity .4s ease;
    }


    /* content */

    .gb-gallery-info {
        position: absolute;
        left: 22px;
        right: 22px;
        bottom: 18px;
        z-index: 3;
        transform: translateY(15px);
        opacity: 0;
        transition: .4s ease;
    }

    .gb-gallery-info span {
        display: block;
        color: #f5a000;
        font-size: 9px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 4px;
    }

    .gb-gallery-info strong {
        color: #fff;
        font-size: 17px;
        font-weight: 900;
    }


    /* hover */

    .gb-gallery-item:hover img {
        transform: scale(1.06);
    }

    .gb-gallery-item:hover::after {
        opacity: 1;
    }

    .gb-gallery-item:hover .gb-gallery-info {
        transform: translateY(0);
        opacity: 1;
    }


    /* simple entry animation */

    @keyframes gbGalleryFade {
        from {
            opacity: 0;
            transform: translateY(15px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


    /* different slight delays */

    .gb-gallery-col:nth-child(1) .gb-gallery-item {
        animation-delay: .05s;
    }

    .gb-gallery-col:nth-child(2) .gb-gallery-item {
        animation-delay: .10s;
    }

    .gb-gallery-col:nth-child(3) .gb-gallery-item {
        animation-delay: .15s;
    }

    .gb-gallery-col:nth-child(4) .gb-gallery-item {
        animation-delay: .20s;
    }

    .gb-gallery-col:nth-child(5) .gb-gallery-item {
        animation-delay: .25s;
    }

    .gb-gallery-col:nth-child(6) .gb-gallery-item {
        animation-delay: .30s;
    }


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

    @media (max-width: 991.98px) {

        .gb-gallery {
            padding: 70px 0;
        }

        .gb-gallery-item {
            height: 270px;
        }

    }

    @media (max-width: 767.98px) {

        .gb-gallery {
            padding: 58px 0;
        }

        .gb-gallery-title {
            font-size: 38px;
        }

        .gb-gallery-item {
            height: 250px;
        }

    }

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

        .gb-gallery-item,
        .gb-gallery-item img,
        .gb-gallery-info {
            animation: none;
            transition: none;
        }

    }





       .gb-system-services {
        position: relative;
        padding: 95px 0;
        background: #f7f8fb;
        overflow: hidden;
    }

    .gb-system-services::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        top: -240px;
        right: -170px;
        border-radius: 50%;
        border: 60px solid rgba(7, 20, 90, .035);
    }

    .gb-system-services .container {
        position: relative;
        z-index: 2;
    }


    /* =========================================
       HEADING
    ========================================== */

    .gb-system-head {
        max-width: 720px;
        margin-bottom: 48px;
    }

    .gb-system-label {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #f5a000;
        font-size: 10px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        margin-bottom: 12px;
    }

    .gb-system-label::before {
        content: "";
        width: 30px;
        height: 3px;
        background: #f5a000;
    }

    .gb-system-head h2 {
        color: #07145a;
        font-size: clamp(38px, 4vw, 57px);
        line-height: 1.03;
        font-weight: 900;
        letter-spacing: -1.5px;
        margin: 0;
    }


    /* =========================================
       SERVICE BLOCK
    ========================================== */

    .gb-system-block {
        position: relative;
        padding: 40px 0;
        border-top: 1px solid #dde0e8;
    }

    .gb-system-number {
        display: inline-block;
        color: #f5a000;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 1px;
        margin-bottom: 13px;
    }

    .gb-system-title {
        color: #07145a;
        font-size: clamp(27px, 3vw, 39px);
        line-height: 1.08;
        font-weight: 900;
        letter-spacing: -.8px;
        margin: 0;
    }

    .gb-system-copy {
        padding-left: 20px;
        border-left: 3px solid #f5a000;
    }

    .gb-system-copy p {
        color: #68707c;
        font-size: 13px;
        line-height: 1.9;
        margin-bottom: 16px;
    }

    .gb-system-copy p:last-child {
        margin-bottom: 0;
    }


    /* =========================================
       SMALL COMPONENT DECORATION
    ========================================== */

    .gb-system-detail {
        display: flex;
        gap: 6px;
        margin-top: 20px;
    }

    .gb-system-detail span {
        display: block;
        height: 4px;
    }

    .gb-system-detail span:nth-child(1) {
        width: 45px;
        background: #f5a000;
    }

    .gb-system-detail span:nth-child(2) {
        width: 13px;
        background: #07145a;
    }

    .gb-system-detail span:nth-child(3) {
        width: 6px;
        background: rgba(7,20,90,.25);
    }


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

    .gb-system-cta {
        position: relative;
        margin-top: 35px;
        padding: 34px 38px;
        background: #07145a;
        overflow: hidden;
        box-shadow: 0 22px 55px rgba(7,20,90,.16);
    }

    .gb-system-cta::before {
        content: "";
        position: absolute;
        width: 190px;
        height: 190px;
        right: -80px;
        top: -100px;
        border-radius: 50%;
        border: 35px solid rgba(255,255,255,.035);
    }

    .gb-system-cta::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 7px;
        height: 100%;
        background: #f5a000;
    }

    .gb-system-cta-inner {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
    }

    .gb-system-cta-small {
        display: block;
        color: #f5a000;
        font-size: 9px;
        font-weight: 900;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        margin-bottom: 7px;
    }

    .gb-system-cta h3 {
        color: #fff;
        font-size: clamp(23px, 2.5vw, 32px);
        font-weight: 900;
        margin: 0;
    }


    /* CTA ACTIONS */

    .gb-system-actions {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-shrink: 0;
    }

    .gb-system-estimate {
        min-height: 50px;
        padding: 0 22px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #f5a000;
        color: #07145a;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 10px;
        font-weight: 900;
        transition: .3s ease;
    }

    .gb-system-estimate:hover {
        background: #fff;
        color: #07145a;
        transform: translateY(-3px);
    }


    /* PHONE */

    .gb-system-phone {
        min-height: 50px;
        padding: 0 18px;
        display: inline-flex;
        align-items: center;
        gap: 11px;
        border: 1px solid rgba(255,255,255,.25);
        color: #fff;
        text-decoration: none;
        transition: .3s ease;
    }

    .gb-system-phone-icon {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #f5a000;
        color: #07145a;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 900;
    }

    .gb-system-phone small {
        display: block;
        color: rgba(255,255,255,.55);
        font-size: 7px;
        text-transform: uppercase;
        letter-spacing: .7px;
        margin-bottom: 2px;
    }

    .gb-system-phone strong {
        display: block;
        color: #fff;
        font-size: 15px;
        font-weight: 900;
        white-space: nowrap;
    }

    .gb-system-phone:hover {
        border-color: #f5a000;
        transform: translateY(-3px);
    }


    /* =========================================
       SIMPLE ANIMATION
    ========================================== */

    .gb-system-block {
        animation: gbSystemUp .7s ease both;
    }

    .gb-system-block:nth-of-type(2) {
        animation-delay: .08s;
    }

    .gb-system-block:nth-of-type(3) {
        animation-delay: .16s;
    }

    @keyframes gbSystemUp {
        from {
            opacity: 0;
            transform: translateY(18px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


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

    @media (max-width: 991.98px) {

        .gb-system-services {
            padding: 75px 0;
        }

        .gb-system-copy {
            margin-top: 22px;
            padding-left: 17px;
        }

        .gb-system-cta-inner {
            align-items: flex-start;
            flex-direction: column;
        }
    }


    @media (max-width: 767.98px) {

        .gb-system-services {
            padding: 58px 0;
        }

        .gb-system-head {
            margin-bottom: 30px;
        }

        .gb-system-head h2 {
            font-size: 37px;
        }

        .gb-system-block {
            padding: 32px 0;
        }

        .gb-system-title {
            font-size: 29px;
        }

        .gb-system-copy p {
            font-size: 12px;
            line-height: 1.8;
        }

        .gb-system-cta {
            padding: 28px 22px 25px 28px;
        }

        .gb-system-actions {
            width: 100%;
            flex-direction: column;
            align-items: stretch;
        }

        .gb-system-estimate,
        .gb-system-phone {
            width: 100%;
            min-height: 54px;
        }

        .gb-system-phone {
            justify-content: center;
        }

        .gb-system-phone strong {
            font-size: 18px;
        }
    }


    @media (prefers-reduced-motion: reduce) {
        .gb-system-block {
            animation: none;
        }
    }



    /* =========================================================
   BRANDS + LOCATION SERVICES SECTION
========================================================= */

.gb-brands-location {
    position: relative;
    background: #fff;
    overflow: hidden;
}


/* =========================================================
   BRANDS AREA
========================================================= */

.gb-brands-area {
    position: relative;
    padding: 85px 0 75px;
    background: #ffffff;
}

.gb-brands-area::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    right: -150px;
    top: -170px;
    border-radius: 50%;
    border: 50px solid rgba(7,20,90,.035);
}

.gb-brands-area .container {
    position: relative;
    z-index: 2;
}


/* HEADING */

.gb-brands-head {
    max-width: 700px;
    margin: 0 auto 42px;
    text-align: center;
}

.gb-brands-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    color: #f5a000;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;

    margin-bottom: 12px;
}

.gb-brands-label::before,
.gb-brands-label::after {
    content: "";
    width: 25px;
    height: 2px;
    background: #f5a000;
}

.gb-brands-title {
    color: #07145a;

    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -1.4px;

    margin-bottom: 14px;
}

.gb-brands-head p {
    max-width: 600px;
    margin: 0 auto;

    color: #757c88;

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   BRAND GRID
========================================================= */

.gb-brand-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(5, 1fr);

    border-top: 1px solid #e6e8ee;
    border-left: 1px solid #e6e8ee;
}

.gb-brand-item {
    position: relative;

    min-height: 125px;

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

    padding: 22px;

    background: #fff;

    border-right: 1px solid #e6e8ee;
    border-bottom: 1px solid #e6e8ee;

    overflow: hidden;

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

.gb-brand-item::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 0;
    height: 3px;

    background: #f5a000;

    transform: translateX(-50%);

    transition: width .35s ease;
}

.gb-brand-item:hover {
    background: #f7f8fb;
}

.gb-brand-item:hover::after {
    width: 100%;
}

.gb-brand-item img {
    display: block;

    width: auto;
    height: auto;

    max-width: 145px;
    max-height: 62px;

    object-fit: contain;

    filter: grayscale(100%);
    opacity: .62;

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

.gb-brand-item:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.06);
}


/* =========================================================
   LOCATION AREA
========================================================= */

.gb-location-area {
    position: relative;

    padding: 90px 0;

    background:
        linear-gradient(
            90deg,
            rgba(3,10,48,.98) 0%,
            rgba(5,14,62,.97) 45%,
            rgba(7,20,90,.96) 100%
        );

    overflow: hidden;
}

.gb-location-area::before {
    content: "";

    position: absolute;
    inset: 0;

    opacity: .55;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(255,255,255,.08),
            transparent 32%
        ),
        repeating-linear-gradient(
            45deg,
            rgba(255,255,255,.018) 0,
            rgba(255,255,255,.018) 1px,
            transparent 1px,
            transparent 13px
        );

    pointer-events: none;
}

.gb-location-area::after {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    right: -160px;
    bottom: -190px;

    border-radius: 50%;

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

    box-shadow:
        0 0 0 45px rgba(255,255,255,.015),
        0 0 0 90px rgba(255,255,255,.01);
}

.gb-location-area .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   LOCATION LEFT CONTENT
========================================================= */

.gb-location-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #f5a000;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.3px;
    text-transform: uppercase;

    margin-bottom: 14px;
}

.gb-location-label::before {
    content: "";

    width: 28px;
    height: 3px;

    background: #f5a000;
}

.gb-location-title {
    max-width: 620px;

    color: #fff;

    font-size: clamp(38px, 4vw, 56px);
    line-height: 1.03;
    font-weight: 900;
    letter-spacing: -1.5px;

    margin-bottom: 20px;
}

.gb-location-text {
    max-width: 640px;

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

    font-size: 13px;
    line-height: 1.85;

    margin-bottom: 28px;
}


/* =========================================================
   LOCATION FEATURES
========================================================= */

.gb-location-features {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 30px;
}

.gb-location-feature {
    min-height: 54px;

    display: flex;
    align-items: center;
    gap: 11px;

    padding: 10px 16px;

    background: rgba(255,255,255,.05);

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

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease;
}

.gb-location-feature:hover {
    transform: translateY(-3px);

    border-color: rgba(245,160,0,.50);

    background: rgba(255,255,255,.08);
}

.gb-location-feature-icon {
    flex: 0 0 30px;

    width: 30px;
    height: 30px;

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

    border-radius: 50%;

    background: #f5a000;
    color: #07145a;

    font-size: 11px;
    font-weight: 900;
}

.gb-location-feature strong {
    display: block;

    color: #fff;

    font-size: 10px;
    font-weight: 900;
}

.gb-location-feature small {
    display: block;

    margin-top: 2px;

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

    font-size: 8px;
}


/* =========================================================
   CITIES
========================================================= */

.gb-location-cities-title {
    color: #f5a000;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1px;
    text-transform: uppercase;

    margin-bottom: 13px;
}

.gb-location-cities {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}

.gb-location-city {
    padding: 8px 12px;

    background: rgba(255,255,255,.06);

    border: 1px solid rgba(255,255,255,.09);

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

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

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

.gb-location-city:hover {
    background: #f5a000;
    color: #07145a;

    transform: translateY(-2px);
}


/* =========================================================
   LOCATION ACTIONS
========================================================= */

.gb-location-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 28px;
}

.gb-location-btn {
    min-height: 49px;

    padding: 0 21px;

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

    background: #f5a000;
    color: #07145a;

    text-decoration: none;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: .5px;
    text-transform: uppercase;

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

.gb-location-btn:hover {
    background: #fff;
    color: #07145a;

    transform: translateY(-3px);
}

.gb-location-phone {
    min-height: 49px;

    padding: 0 20px;

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

    border: 1px solid rgba(255,255,255,.25);

    color: #fff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 900;

    transition:
        border-color .3s ease,
        color .3s ease,
        transform .3s ease;
}

.gb-location-phone:hover {
    color: #f5a000;

    border-color: #f5a000;

    transform: translateY(-3px);
}


/* =========================================================
   GOOGLE MAP
========================================================= */

.gb-location-map {
    position: relative;

    width: 100%;
    height: 440px;

    background: #fff;

    border: 7px solid rgba(255,255,255,.10);

    overflow: hidden;

    box-shadow:
        0 28px 65px rgba(0,0,0,.25);

    animation: gbMapIn .8s ease both;
}

@keyframes gbMapIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* MAP IFRAME */

.gb-location-map iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;

    filter:
        saturate(.80)
        contrast(.96);
}


/* NAVY OVERLAY */

.gb-location-map::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            135deg,
            rgba(7,20,90,.13),
            transparent 45%
        );

    pointer-events: none;
}


/* =========================================================
   MAP ADDRESS CARD
========================================================= */

.gb-map-address {
    position: absolute;

    right: 18px;
    bottom: 18px;

    z-index: 5;

    max-width: 320px;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 17px 19px;

    background:
        linear-gradient(
            135deg,
            #07145a,
            #0b1b72
        );

    border-left: 4px solid #f5a000;

    box-shadow:
        0 15px 40px rgba(0,0,0,.28);

    animation:
        gbMapFloat 4s ease-in-out infinite;
}

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

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

.gb-map-pin {
    flex: 0 0 43px;

    width: 43px;
    height: 43px;

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

    border-radius: 50%;

    background: #f5a000;
    color: #07145a;

    font-size: 15px;
    font-weight: 900;

    box-shadow:
        0 0 0 7px rgba(245,160,0,.14);
}

.gb-map-address span {
    display: block;

    color: #f5a000;

    font-size: 8px;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: 1px;

    margin-bottom: 2px;
}

.gb-map-address strong {
    display: block;

    color: #fff;

    font-size: 16px;
    line-height: 1.2;
    font-weight: 900;

    margin-bottom: 3px;
}

.gb-map-address small {
    display: block;

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

    font-size: 9px;
    line-height: 1.5;
}


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

@media (max-width: 991.98px) {

    .gb-brands-area {
        padding: 70px 0 65px;
    }

    .gb-location-area {
        padding: 75px 0;
    }

    .gb-brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gb-location-map {
        height: 420px;
        margin-top: 15px;
    }

}


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

@media (max-width: 767.98px) {

    .gb-brands-area {
        padding: 55px 0;
    }

    .gb-location-area {
        padding: 58px 0;
    }

    .gb-brands-head {
        margin-bottom: 30px;
    }

    .gb-brands-title {
        font-size: 38px;
    }

    .gb-brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gb-brand-item {
        min-height: 100px;
        padding: 17px;
    }

    .gb-brand-item img {
        max-width: 115px;
        max-height: 48px;
    }

    .gb-location-title {
        font-size: 38px;
    }

    .gb-location-text {
        font-size: 12px;
        line-height: 1.75;
    }

    .gb-location-features {
        gap: 8px;
    }

    .gb-location-feature {
        width: 100%;
    }

    .gb-location-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .gb-location-btn,
    .gb-location-phone {
        width: 100%;
    }

    .gb-location-map {
        height: 390px;

        border-width: 5px;

        margin-top: 10px;
    }

    .gb-map-address {
        left: 12px;
        right: 12px;
        bottom: 12px;

        max-width: none;

        padding: 14px 15px;
    }

    .gb-map-pin {
        width: 38px;
        height: 38px;

        flex-basis: 38px;
    }

    .gb-map-address strong {
        font-size: 14px;
    }

    .gb-map-address small {
        font-size: 8px;
    }

}


/* =========================================================
   EXTRA SMALL
========================================================= */

@media (max-width: 400px) {

    .gb-brand-item img {
        max-width: 100px;
    }

    .gb-location-map {
        height: 360px;
    }

}


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

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

    .gb-location-map,
    .gb-map-address {
        animation: none;
    }

}




   .gb-count-section {
        position: relative;
        padding: 85px 0;
        background: #ffffff;
        overflow: hidden;
    }

    .gb-count-section::before {
        content: "";
        position: absolute;
        width: 340px;
        height: 340px;
        left: -180px;
        top: -180px;
        border-radius: 50%;
        border: 48px solid rgba(7,20,90,.025);
        pointer-events: none;
    }

    .gb-count-section::after {
        content: "";
        position: absolute;
        width: 280px;
        height: 280px;
        right: -150px;
        bottom: -160px;
        border-radius: 50%;
        border: 1px solid rgba(245,160,0,.12);
        box-shadow:
            0 0 0 45px rgba(245,160,0,.025),
            0 0 0 90px rgba(245,160,0,.015);
        pointer-events: none;
    }

    .gb-count-section .container {
        position: relative;
        z-index: 2;
    }


    /* =========================
       HEADING
    ========================= */

    .gb-count-head {
        max-width: 680px;
        margin: 0 auto 48px;
        text-align: center;
    }

    .gb-count-label {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        margin-bottom: 12px;

        color: #f5a000;
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 1.4px;
        text-transform: uppercase;
    }

    .gb-count-label::before,
    .gb-count-label::after {
        content: "";
        width: 25px;
        height: 2px;
        background: #f5a000;
    }

    .gb-count-head h2 {
        margin: 0 0 13px;
        color: #07145a;

        font-size: clamp(36px, 4vw, 54px);
        line-height: 1.04;
        font-weight: 900;
        letter-spacing: -1.5px;
    }

    .gb-count-head p {
        max-width: 580px;
        margin: auto;

        color: #777d88;
        font-size: 13px;
        line-height: 1.8;
    }


    /* =========================
       COUNTER BOX
    ========================= */

    .gb-count-box {
        position: relative;
        height: 100%;
        min-height: 220px;

        padding: 30px 25px;

        background:
            linear-gradient(
                145deg,
                #ffffff,
                #f7f8fb
            );

        border: 1px solid #e7e9ef;

        overflow: hidden;

        box-shadow:
            0 15px 40px rgba(7,20,90,.06);

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

    .gb-count-box:hover {
        transform: translateY(-10px);

        border-color: rgba(245,160,0,.45);

        box-shadow:
            0 24px 55px rgba(7,20,90,.12);
    }


    /* top line */

    .gb-count-box::before {
        content: "";
        position: absolute;

        left: 0;
        top: 0;

        width: 100%;
        height: 4px;

        background:
            linear-gradient(
                90deg,
                #f5a000 0%,
                #ffbd3b 50%,
                #f5a000 100%
            );

        transform: scaleX(0);
        transform-origin: left;

        animation: gbCountLine 1.2s ease forwards;
    }

    @keyframes gbCountLine {
        to {
            transform: scaleX(1);
        }
    }


    /* decorative number */

    .gb-count-bg {
        position: absolute;

        right: -5px;
        bottom: -22px;

        color: rgba(7,20,90,.035);

        font-size: 110px;
        line-height: 1;
        font-weight: 900;
        letter-spacing: -8px;

        pointer-events: none;

        transition: .4s ease;
    }

    .gb-count-box:hover .gb-count-bg {
        color: rgba(245,160,0,.06);
        transform: translate(-7px, -8px);
    }


    /* =========================
       ICON
    ========================= */

    .gb-count-icon {
        width: 52px;
        height: 52px;

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

        margin-bottom: 25px;

        background: #07145a;
        color: #fff;

        font-size: 18px;
        font-weight: 900;

        position: relative;

        box-shadow:
            0 0 0 7px rgba(7,20,90,.06);

        transition: .35s ease;
    }

    .gb-count-box:hover .gb-count-icon {
        background: #f5a000;
        color: #07145a;
        transform: rotate(-6deg) scale(1.06);
    }


    /* =========================
       NUMBER
    ========================= */

    .gb-count-number-wrap {
        display: flex;
        align-items: flex-start;

        margin-bottom: 13px;
    }

    .gb-count-number {
        display: inline-block;

        color: #07145a;

        font-size: clamp(50px, 5vw, 70px);
        line-height: .9;
        font-weight: 900;
        letter-spacing: -3px;

        font-variant-numeric: tabular-nums;
    }

    .gb-count-symbol {
        display: inline-block;

        margin-left: 4px;

        color: #f5a000;

        font-size: 27px;
        line-height: 1;
        font-weight: 900;
    }


    /* =========================
       TEXT
    ========================= */

    .gb-count-box h3 {
        margin: 0 0 7px;

        color: #07145a;

        font-size: 15px;
        font-weight: 900;
    }

    .gb-count-box p {
        max-width: 215px;
        margin: 0;

        color: #7b808a;

        font-size: 10px;
        line-height: 1.65;
    }


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

    @media (max-width: 991.98px) {

        .gb-count-section {
            padding: 70px 0;
        }

    }

    @media (max-width: 767.98px) {

        .gb-count-section {
            padding: 55px 0;
        }

        .gb-count-head {
            margin-bottom: 32px;
        }

        .gb-count-head h2 {
            font-size: 38px;
        }

        .gb-count-box {
            min-height: 200px;
            padding: 25px 21px;
        }

        .gb-count-number {
            font-size: 54px;
        }

    }

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

        .gb-count-box::before {
            animation: none;
            transform: scaleX(1);
        }

    }


       .gb-zip-marquee {
        position: relative;
        overflow: hidden;
        padding: 20px 0;
        background: #07145a;
        border-top: 4px solid #f5a000;
        border-bottom: 1px solid rgba(255, 255, 255, .10);
    }

    .gb-zip-track {
        display: flex;
        width: max-content;
        animation: gbZipMarquee 22s linear infinite;
    }

    .gb-zip-group {
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }

    .gb-zip-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 0 30px;
        color: #fff;
        white-space: nowrap;
        font-size: 15px;
        font-weight: 800;
        letter-spacing: .4px;
    }

    .gb-zip-item strong {
        color: #f5a000;
        font-size: 18px;
        font-weight: 900;
    }

    .gb-zip-dot {
        width: 7px;
        height: 7px;
        flex: 0 0 7px;
        border-radius: 50%;
        background: #f5a000;
        box-shadow: 0 0 0 5px rgba(245, 160, 0, .10);
    }

    .gb-zip-marquee:hover .gb-zip-track {
        animation-play-state: paused;
    }

    @keyframes gbZipMarquee {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

    @media (max-width: 767.98px) {

        .gb-zip-marquee {
            padding: 16px 0;
        }

        .gb-zip-item {
            padding: 0 20px;
            gap: 9px;
            font-size: 12px;
        }

        .gb-zip-item strong {
            font-size: 15px;
        }

        .gb-zip-track {
            animation-duration: 17s;
        }
    }

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

        .gb-zip-track {
            animation: none;
            flex-wrap: wrap;
            width: 100%;
            justify-content: center;
            gap: 12px;
        }

        .gb-zip-group:nth-child(2) {
            display: none;
        }
    }



       .gb-why {
        position: relative;
        padding: 100px 0;
        background: #f7f8fb;
        overflow: hidden;
    }

    .gb-why::before {
        content: "";
        position: absolute;
        right: -180px;
        top: -180px;
        width: 380px;
        height: 380px;
        border: 55px solid rgba(7, 20, 90, .025);
        border-radius: 50%;
    }

    .gb-why .container {
        position: relative;
        z-index: 2;
    }


    /* =========================
       IMAGE
    ========================= */

    .gb-why-image-wrap {
        position: relative;
        padding: 0 45px 45px 0;
    }

    .gb-why-image {
        position: relative;
        height: 590px;
        overflow: hidden;
        background: #07145a;
        box-shadow: 0 30px 65px rgba(7, 20, 90, .13);
    }

    .gb-why-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform .8s ease;
    }

    .gb-why-image:hover img {
        transform: scale(1.045);
    }


    /* orange shape */

    .gb-why-image::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 85px;
        height: 85px;
        background: #f5a000;
        clip-path: polygon(0 0, 0 100%, 100% 100%);
    }


    /* FLOATING BADGE */

    .gb-why-badge {
        position: absolute;
        z-index: 5;
        right: 0;
        bottom: 0;
        width: 185px;
        min-height: 150px;
        padding: 24px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: #07145a;
        border-top: 5px solid #f5a000;
        box-shadow: 0 20px 45px rgba(7, 20, 90, .22);
        animation: gbWhyFloat 4s ease-in-out infinite;
    }

    .gb-why-badge span {
        display: block;
        color: #f5a000;
        font-size: 10px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 8px;
    }

    .gb-why-badge strong {
        color: #fff;
        font-size: 22px;
        line-height: 1.15;
        font-weight: 900;
    }

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

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


    /* =========================
       CONTENT
    ========================= */

    .gb-why-content {
        padding-left: 30px;
    }

    .gb-why-label {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #f5a000;
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 1.4px;
        text-transform: uppercase;
        margin-bottom: 13px;
    }

    .gb-why-label::before {
        content: "";
        width: 30px;
        height: 3px;
        background: #f5a000;
    }

    .gb-why-title {
        max-width: 610px;
        color: #07145a;
        font-size: clamp(39px, 4vw, 56px);
        line-height: 1.04;
        font-weight: 900;
        letter-spacing: -1.6px;
        margin: 0 0 20px;
    }

    .gb-why-intro {
        max-width: 610px;
        color: #727985;
        font-size: 13px;
        line-height: 1.85;
        margin-bottom: 33px;
    }


    /* =========================
       WHY ITEMS
    ========================= */

    .gb-why-list {
        position: relative;
    }

    .gb-why-item {
        position: relative;
        display: flex;
        gap: 19px;
        padding: 0 0 24px;
    }

    .gb-why-item:not(:last-child)::before {
        content: "";
        position: absolute;
        left: 22px;
        top: 45px;
        bottom: 0;
        width: 1px;
        background: #dfe2ea;
    }

    .gb-why-num {
        position: relative;
        z-index: 2;
        flex: 0 0 45px;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border: 1px solid #e0e3ea;
        color: #07145a;
        font-size: 11px;
        font-weight: 900;
        box-shadow: 0 8px 20px rgba(7, 20, 90, .05);
        transition: .3s ease;
    }

    .gb-why-item:hover .gb-why-num {
        background: #f5a000;
        border-color: #f5a000;
        transform: rotate(-5deg) scale(1.07);
    }

    .gb-why-item h3 {
        color: #07145a;
        font-size: 16px;
        font-weight: 900;
        margin: 1px 0 6px;
    }

    .gb-why-item p {
        max-width: 500px;
        color: #7b818b;
        font-size: 11px;
        line-height: 1.7;
        margin: 0;
    }


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

    .gb-why-actions {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 10px;
    }

    .gb-why-btn {
        min-height: 50px;
        padding: 0 22px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #f5a000;
        color: #07145a;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 9px;
        font-weight: 900;
        letter-spacing: .6px;
        transition: .3s ease;
    }

    .gb-why-btn:hover {
        background: #07145a;
        color: #fff;
        transform: translateY(-3px);
    }

    .gb-why-phone {
        min-height: 50px;
        padding: 0 20px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #dce0e8;
        background: #fff;
        color: #07145a;
        text-decoration: none;
        font-size: 14px;
        font-weight: 900;
        transition: .3s ease;
    }

    .gb-why-phone:hover {
        border-color: #07145a;
        transform: translateY(-3px);
    }


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

    @media (max-width: 991.98px) {

        .gb-why {
            padding: 75px 0;
        }

        .gb-why-image-wrap {
            max-width: 650px;
            margin: 0 auto 35px;
        }

        .gb-why-content {
            padding-left: 0;
        }
    }

    @media (max-width: 767.98px) {

        .gb-why {
            padding: 55px 0;
        }

        .gb-why-image-wrap {
            padding: 0 20px 35px 0;
        }

        .gb-why-image {
            height: 420px;
        }

        .gb-why-badge {
            width: 160px;
            min-height: 125px;
            padding: 18px;
        }

        .gb-why-badge strong {
            font-size: 18px;
        }

        .gb-why-title {
            font-size: 38px;
        }

        .gb-why-actions {
            flex-direction: column;
            align-items: stretch;
        }

        .gb-why-btn,
        .gb-why-phone {
            width: 100%;
        }
    }

    @media (max-width: 480px) {

        .gb-why-image {
            height: 350px;
        }
    }

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

        .gb-why-badge {
            animation: none;
        }

        .gb-why-image img {
            transition: none;
        }
    }



       .gb-offers {
        position: relative;
        padding: 95px 0;
        background: #f6f7fa;
        overflow: hidden;
    }

    .gb-offers::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background:
            radial-gradient(
                circle at 8% 15%,
                rgba(245,160,0,.06),
                transparent 20%
            ),
            radial-gradient(
                circle at 92% 85%,
                rgba(7,20,90,.055),
                transparent 24%
            );
    }

    .gb-offers .container {
        position: relative;
        z-index: 2;
    }


    /* =====================================================
       HEADING
    ====================================================== */

    .gb-offers-head {
        max-width: 760px;
        margin: 0 auto 48px;
        text-align: center;
    }

    .gb-offers-label {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 12px;

        color: #f5a000;
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }

    .gb-offers-label::before,
    .gb-offers-label::after {
        content: "";
        width: 30px;
        height: 2px;
        background: #f5a000;
    }

    .gb-offers-title {
        margin: 0 0 15px;
        color: #07145a;

        font-size: clamp(38px, 4.5vw, 58px);
        line-height: 1.03;
        font-weight: 900;
        letter-spacing: -1.7px;
    }

    .gb-offers-head p {
        max-width: 610px;
        margin: auto;

        color: #747b87;
        font-size: 13px;
        line-height: 1.8;
    }


    /* =====================================================
       COUPON
    ====================================================== */

    .gb-offer {
        position: relative;
        height: 100%;
        min-height: 270px;

        display: flex;

        background: #fff;
        border: 1px solid #e2e5ec;

        overflow: hidden;

        box-shadow:
            0 15px 40px rgba(7,20,90,.06);

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

    .gb-offer:hover {
        transform: translateY(-8px);

        border-color: rgba(245,160,0,.45);

        box-shadow:
            0 25px 55px rgba(7,20,90,.12);
    }


    /* coupon circles */

    .gb-offer::before,
    .gb-offer::after {
        content: "";
        position: absolute;
        z-index: 5;

        left: 151px;

        width: 25px;
        height: 25px;

        border-radius: 50%;

        background: #f6f7fa;

        transform: translateX(-50%);
    }

    .gb-offer::before {
        top: -13px;
    }

    .gb-offer::after {
        bottom: -13px;
    }


    /* =====================================================
       DISCOUNT SIDE
    ====================================================== */

    .gb-offer-discount {
        position: relative;
        flex: 0 0 150px;

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

        padding: 25px 15px;

        text-align: center;

        background:
            linear-gradient(
                145deg,
                #07145a,
                #0b2074
            );

        overflow: hidden;
    }

    .gb-offer-discount::after {
        content: "";

        position: absolute;

        width: 115px;
        height: 115px;

        left: -55px;
        bottom: -55px;

        border-radius: 50%;

        border: 20px solid rgba(255,255,255,.035);
    }

    .gb-offer-amount {
        position: relative;
        z-index: 2;

        color: #fff;

        font-size: 43px;
        line-height: .9;
        font-weight: 900;
        letter-spacing: -2px;
    }

    .gb-offer-off {
        position: relative;
        z-index: 2;

        margin-top: 8px;

        color: #f5a000;

        font-size: 14px;
        font-weight: 900;
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }

    .gb-offer-tag {
        position: relative;
        z-index: 2;

        margin-top: 18px;
        padding-top: 12px;

        width: 100%;

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

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

        font-size: 8px;
        font-weight: 800;
        letter-spacing: .8px;
        text-transform: uppercase;
    }


    /* =====================================================
       PERFORATED LINE
    ====================================================== */

    .gb-offer-divider {
        position: absolute;

        left: 150px;
        top: 22px;
        bottom: 22px;

        width: 1px;

        border-left:
            1px dashed rgba(7,20,90,.20);

        z-index: 3;
    }


    /* =====================================================
       CONTENT
    ====================================================== */

    .gb-offer-content {
        min-width: 0;
        flex: 1;

        padding: 29px 27px;

        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .gb-offer-small {
        display: block;

        color: #f5a000;

        font-size: 8px;
        font-weight: 900;
        letter-spacing: 1.2px;
        text-transform: uppercase;

        margin-bottom: 9px;
    }

    .gb-offer-content h3 {
        color: #07145a;

        font-size: 19px;
        line-height: 1.3;
        font-weight: 900;

        margin: 0 0 12px;
    }

    .gb-offer-content p {
        color: #7a808b;

        font-size: 10px;
        line-height: 1.65;

        margin: 0 0 19px;
    }


    /* BUTTON */

    .gb-offer-btn {
        align-self: flex-start;

        min-height: 38px;

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

        padding: 0 15px;

        background: #f5a000;
        color: #07145a;

        text-decoration: none;

        font-size: 8px;
        font-weight: 900;
        letter-spacing: .5px;
        text-transform: uppercase;

        transition: .3s ease;
    }

    .gb-offer-btn:hover {
        background: #07145a;
        color: #fff;

        transform: translateX(4px);
    }


    /* =====================================================
       FEATURED OFFER
    ====================================================== */

    .gb-offer-featured {
        border-color: rgba(245,160,0,.55);
    }

    .gb-offer-featured .gb-offer-discount {
        background:
            linear-gradient(
                145deg,
                #f5a000,
                #ffb526
            );
    }

    .gb-offer-featured .gb-offer-amount,
    .gb-offer-featured .gb-offer-off {
        color: #07145a;
    }

    .gb-offer-featured .gb-offer-tag {
        color: rgba(7,20,90,.55);
        border-color: rgba(7,20,90,.15);
    }


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

    .gb-offers-bottom {
        position: relative;

        margin-top: 40px;
        padding: 27px 30px;

        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 25px;

        background: #07145a;

        overflow: hidden;
    }

    .gb-offers-bottom::before {
        content: "";

        position: absolute;

        left: 0;
        top: 0;
        bottom: 0;

        width: 5px;

        background: #f5a000;
    }

    .gb-offers-bottom-text {
        position: relative;
        z-index: 2;
    }

    .gb-offers-bottom small {
        display: block;

        color: #f5a000;

        font-size: 8px;
        font-weight: 900;
        letter-spacing: 1px;
        text-transform: uppercase;

        margin-bottom: 5px;
    }

    .gb-offers-bottom strong {
        display: block;

        color: #fff;

        font-size: 20px;
        font-weight: 900;
    }

    .gb-offers-phone {
        position: relative;
        z-index: 2;

        flex-shrink: 0;

        min-height: 49px;

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

        padding: 0 22px;

        background: #f5a000;
        color: #07145a;

        text-decoration: none;

        font-size: 14px;
        font-weight: 900;

        transition: .3s ease;
    }

    .gb-offers-phone:hover {
        background: #fff;
        color: #07145a;

        transform: translateY(-3px);
    }


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

    @media (max-width: 991.98px) {

        .gb-offers {
            padding: 75px 0;
        }

    }


    @media (max-width: 575.98px) {

        .gb-offers {
            padding: 58px 0;
        }

        .gb-offers-head {
            margin-bottom: 32px;
        }

        .gb-offers-title {
            font-size: 38px;
        }

        .gb-offer {
            min-height: 0;
            display: block;
        }

        .gb-offer::before,
        .gb-offer::after,
        .gb-offer-divider {
            display: none;
        }

        .gb-offer-discount {
            min-height: 125px;

            flex-basis: auto;

            flex-direction: row;

            gap: 8px;

            padding: 22px;
        }

        .gb-offer-amount {
            font-size: 45px;
        }

        .gb-offer-off {
            margin-top: 0;
            font-size: 16px;
        }

        .gb-offer-tag {
            position: absolute;

            right: 15px;
            bottom: 12px;

            width: auto;

            border: 0;
            padding: 0;
            margin: 0;
        }

        .gb-offer-content {
            padding: 25px 22px;
        }

        .gb-offers-bottom {
            flex-direction: column;
            align-items: flex-start;

            padding: 25px;
        }

        .gb-offers-phone {
            width: 100%;
        }

    }

        .gb-form-section {
        position: relative;
        padding: 95px 0;
        background: #ffffff;
        overflow: hidden;
    }

    .gb-form-section::before {
        content: "";
        position: absolute;
        width: 340px;
        height: 340px;
        right: -170px;
        top: -170px;
        border-radius: 50%;
        border: 50px solid rgba(7,20,90,.03);
        pointer-events: none;
    }

    .gb-form-section::after {
        content: "";
        position: absolute;
        width: 240px;
        height: 240px;
        left: -130px;
        bottom: -130px;
        border-radius: 50%;
        border: 1px solid rgba(255,166,0,.16);
        box-shadow:
            0 0 0 40px rgba(255,166,0,.025),
            0 0 0 80px rgba(255,166,0,.015);
        pointer-events: none;
    }

    .gb-form-section .container {
        position: relative;
        z-index: 2;
    }

    .gb-form-wrap {
        max-width: 920px;
        margin: 0 auto;
        background: #f7f8fb;
        border: 1px solid #e7e9ef;
        box-shadow: 0 24px 60px rgba(7,20,90,.08);
        overflow: hidden;
    }

    .gb-form-top {
        position: relative;
        padding: 34px 36px;
        background: #07145a;
        overflow: hidden;
    }

    .gb-form-top::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        right: -70px;
        top: -90px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,.08);
        box-shadow:
            0 0 0 30px rgba(255,255,255,.02),
            0 0 0 60px rgba(255,255,255,.015);
    }

    .gb-form-label {
        position: relative;
        z-index: 2;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #ffa600;
        font-size: 10px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 1.4px;
        margin-bottom: 10px;
    }

    .gb-form-label::before {
        content: "";
        width: 28px;
        height: 3px;
        background: #ffa600;
    }

    .gb-form-top h2 {
        position: relative;
        z-index: 2;
        color: #ffffff;
        font-size: clamp(34px, 4vw, 50px);
        line-height: 1.05;
        font-weight: 900;
        margin: 0 0 10px;
    }

    .gb-form-top p {
        position: relative;
        z-index: 2;
        max-width: 610px;
        margin: 0;
        color: rgba(255,255,255,.62);
        font-size: 12px;
        line-height: 1.8;
    }

    .gb-service-form {
        padding: 36px;
    }

    .gb-field {
        position: relative;
    }

    .gb-field label {
        display: block;
        margin-bottom: 8px;
        color: #07145a;
        font-size: 9px;
        font-weight: 900;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .gb-field .form-control,
    .gb-field .form-select {
        min-height: 54px;
        padding: 0 16px;
        border-radius: 0;
        border: 1px solid #dfe2e8;
        background: #ffffff;
        color: #050d39;
        font-size: 12px;
        box-shadow: none;
        transition: .3s ease;
    }

    .gb-field textarea.form-control {
        min-height: 145px;
        padding-top: 15px;
        resize: vertical;
    }

    .gb-field .form-control:focus,
    .gb-field .form-select:focus {
        border-color: #ffa600;
        box-shadow: 0 0 0 3px rgba(255,166,0,.10);
    }

    .gb-field .form-control::placeholder {
        color: #9a9fa8;
    }

    .gb-submit-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        margin-top: 10px;
        padding-top: 24px;
        border-top: 1px solid #e1e4ea;
    }

    .gb-submit-note {
        margin: 0;
        color: #7b8089;
        font-size: 10px;
        line-height: 1.65;
    }

    .gb-submit-note strong {
        color: #07145a;
    }

    .gb-form-submit {
        flex-shrink: 0;
        min-height: 52px;
        padding: 0 26px;
        border: 0;
        background: #ffa600;
        color: #07145a;
        font-size: 10px;
        font-weight: 900;
        letter-spacing: .7px;
        text-transform: uppercase;
        transition: .3s ease;
    }

    .gb-form-submit:hover {
        background: #07145a;
        color: #ffffff;
        transform: translateY(-3px);
    }

    @media (max-width: 767.98px) {
        .gb-form-section {
            padding: 58px 0;
        }

        .gb-form-top,
        .gb-service-form {
            padding: 25px 20px;
        }

        .gb-form-top h2 {
            font-size: 36px;
        }

        .gb-submit-row {
            flex-direction: column;
            align-items: stretch;
        }

        .gb-form-submit {
            width: 100%;
        }
    }




        .gb-faq {
        position: relative;
        padding: 95px 0;
        background: #ffffff;
        overflow: hidden;
    }

    .gb-faq::before {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        right: -190px;
        top: -190px;
        border-radius: 50%;
        border: 50px solid rgba(7, 20, 90, .025);
        pointer-events: none;
    }

    .gb-faq .container {
        position: relative;
        z-index: 2;
    }


    /* =====================================================
       LEFT - FAQ
    ====================================================== */

    .gb-faq-content {
        padding-right: 25px;
    }

    .gb-faq-title {
        color: #07145a;
        font-size: clamp(38px, 4vw, 55px);
        line-height: 1.04;
        font-weight: 900;
        letter-spacing: -1.5px;
        margin: 0 0 35px;
    }


    /* FAQ LIST */

    .gb-faq-list {
        border-top: 1px solid #e4e6ec;
    }

    .gb-faq-item {
        position: relative;
        display: grid;
        grid-template-columns: 52px 1fr;
        gap: 17px;
        padding: 22px 5px;
        border-bottom: 1px solid #e4e6ec;
        transition:
            background .3s ease,
            padding .3s ease;
    }

    .gb-faq-item:hover {
        padding-left: 12px;
        padding-right: 12px;
        background: #f7f8fb;
    }


    /* NUMBER */

    .gb-faq-number {
        width: 44px;
        height: 44px;

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

        background: #07145a;
        color: #ffa600;

        font-size: 11px;
        font-weight: 900;

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

    .gb-faq-item:hover .gb-faq-number {
        background: #ffa600;
        color: #07145a;
        transform: rotate(-5deg);
    }


    /* QUESTION */

    .gb-faq-question {
        color: #07145a;
        font-size: 14px;
        line-height: 1.45;
        font-weight: 900;
        margin: 0 0 7px;
    }


    /* ANSWER */

    .gb-faq-answer {
        color: #747474;
        font-size: 11px;
        line-height: 1.75;
        margin: 0;
    }


    /* =====================================================
       RIGHT IMAGE
    ====================================================== */

    .gb-faq-visual {
        position: relative;
        padding: 0 0 48px 42px;
    }

    .gb-faq-image {
        position: relative;
        height: 660px;
        background: #07145a;
        overflow: hidden;
        box-shadow: 0 30px 65px rgba(7, 20, 90, .14);
    }

    .gb-faq-image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .8s ease;
    }

    .gb-faq-image:hover img {
        transform: scale(1.045);
    }


    /* NAVY DECORATION */

    .gb-faq-visual::before {
        content: "";
        position: absolute;
        left: 15px;
        top: 30px;
        width: 110px;
        height: calc(100% - 30px);
        background: #07145a;
    }


    /* ORANGE CORNER */

    .gb-faq-image::after {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        width: 80px;
        height: 80px;
        background: #ffa600;
        clip-path: polygon(100% 0, 0 0, 100% 100%);
    }


    /* =====================================================
       FLOATING BOX
    ====================================================== */

    .gb-faq-float {
        position: absolute;
        z-index: 5;

        left: 0;
        bottom: 0;

        width: 235px;
        min-height: 135px;

        display: flex;
        align-items: center;
        gap: 15px;

        padding: 22px;

        background: #07145a;

        border-top: 5px solid #ffa600;

        box-shadow:
            0 20px 45px rgba(5, 13, 57, .25);

        animation: gbFaqFloat 4s ease-in-out infinite;
    }

    @keyframes gbFaqFloat {

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

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

    .gb-faq-float-icon {
        flex: 0 0 48px;

        width: 48px;
        height: 48px;

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

        border-radius: 50%;

        background: #ffa600;
        color: #07145a;

        font-size: 22px;
        font-weight: 900;
    }

    .gb-faq-float small {
        display: block;

        color: #ffa600;

        font-size: 8px;
        font-weight: 900;

        letter-spacing: 1px;
        text-transform: uppercase;

        margin-bottom: 5px;
    }

    .gb-faq-float strong {
        display: block;

        color: #ffffff;

        font-size: 16px;
        line-height: 1.25;
        font-weight: 900;
    }


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

    @media (max-width: 991.98px) {

        .gb-faq {
            padding: 75px 0;
        }

        .gb-faq-content {
            padding-right: 0;
        }

        .gb-faq-visual {
            max-width: 650px;
            margin: 35px auto 0;
        }

        .gb-faq-image {
            height: 570px;
        }
    }


    @media (max-width: 767.98px) {

        .gb-faq {
            padding: 58px 0;
        }

        .gb-faq-title {
            font-size: 38px;
            margin-bottom: 28px;
        }

        .gb-faq-item {
            grid-template-columns: 42px 1fr;
            gap: 13px;
            padding: 19px 0;
        }

        .gb-faq-number {
            width: 38px;
            height: 38px;
        }

        .gb-faq-question {
            font-size: 13px;
        }

        .gb-faq-answer {
            font-size: 10px;
        }

        .gb-faq-visual {
            padding:
                0
                0
                38px
                20px;
        }

        .gb-faq-visual::before {
            left: 0;
        }

        .gb-faq-image {
            height: 440px;
        }

        .gb-faq-float {
            width: 210px;
            min-height: 115px;
            padding: 18px;
        }
    }


    @media (max-width: 480px) {

        .gb-faq-image {
            height: 370px;
        }
    }


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

        .gb-faq-float {
            animation: none;
        }

        .gb-faq-image img {
            transition: none;
        }
    }




        .gb-footer {
        position: relative;
        background: #050d39;
        color: #fff;
        overflow: hidden;
    }


    /* =====================================================
       TOP ORANGE LINE
    ====================================================== */

    .gb-footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;

        width: 100%;
        height: 4px;

        background: #ffa600;
    }


    /* =====================================================
       BACKGROUND TEXTURE
    ====================================================== */

    .gb-footer-main {
        position: relative;
        padding: 80px 0 65px;

        background:
            radial-gradient(
                circle at 90% 20%,
                rgba(255,255,255,.055),
                transparent 25%
            ),
            repeating-linear-gradient(
                45deg,
                rgba(255,255,255,.015) 0,
                rgba(255,255,255,.015) 1px,
                transparent 1px,
                transparent 13px
            );
    }


    .gb-footer-main::after {
        content: "";
        position: absolute;

        width: 350px;
        height: 350px;

        right: -180px;
        bottom: -220px;

        border-radius: 50%;

        border: 1px solid rgba(255,255,255,.06);

        box-shadow:
            0 0 0 50px rgba(255,255,255,.012),
            0 0 0 100px rgba(255,255,255,.008);

        pointer-events: none;
    }


    .gb-footer .container {
        position: relative;
        z-index: 2;
    }


    /* =====================================================
       BRAND
    ====================================================== */

    .gb-footer-brand {
        padding-right: 30px;
    }


    .gb-footer-label {
        display: inline-flex;
        align-items: center;
        gap: 9px;

        margin-bottom: 12px;

        color: #ffa600;

        font-size: 9px;
        font-weight: 900;

        letter-spacing: 1.3px;
        text-transform: uppercase;
    }


    .gb-footer-label::before {
        content: "";

        width: 28px;
        height: 3px;

        background: #ffa600;
    }


    .gb-footer-brand h2 {
        margin: 0 0 18px;

        color: #fff;

        font-size: 32px;
        line-height: 1.1;
        font-weight: 900;

        letter-spacing: -1px;
    }


    .gb-footer-brand p {
        max-width: 390px;

        margin: 0 0 22px;

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

        font-size: 11px;
        line-height: 1.8;
    }


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

    .gb-footer-phone {
        display: inline-flex;
        align-items: center;
        gap: 12px;

        padding: 12px 17px;

        background: #ffa600;
        color: #07145a;

        text-decoration: none;

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


    .gb-footer-phone:hover {
        background: #fff;
        color: #07145a;

        transform: translateY(-3px);
    }


    .gb-footer-phone-icon {
        width: 34px;
        height: 34px;

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

        border-radius: 50%;

        background: #07145a;
        color: #fff;

        font-size: 14px;
    }


    .gb-footer-phone small {
        display: block;

        color: rgba(7,20,90,.65);

        font-size: 7px;
        line-height: 1;

        font-weight: 900;
        letter-spacing: .8px;

        text-transform: uppercase;

        margin-bottom: 4px;
    }


    .gb-footer-phone strong {
        display: block;

        color: #07145a;

        font-size: 15px;
        line-height: 1;

        font-weight: 900;
    }


    /* =====================================================
       FOOTER HEADINGS
    ====================================================== */

    .gb-footer-title {
        position: relative;

        margin: 0 0 25px;
        padding-bottom: 13px;

        color: #fff;

        font-size: 15px;
        font-weight: 900;
    }


    .gb-footer-title::after {
        content: "";

        position: absolute;

        left: 0;
        bottom: 0;

        width: 32px;
        height: 3px;

        background: #ffa600;
    }


    /* =====================================================
       CONTACT INFO
    ====================================================== */

    .gb-footer-info {
        margin: 0;
        padding: 0;

        list-style: none;
    }


    .gb-footer-info li {
        position: relative;

        padding: 0 0 17px 21px;

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

        font-size: 10px;
        line-height: 1.65;
    }


    .gb-footer-info li::before {
        content: "";

        position: absolute;

        left: 0;
        top: 6px;

        width: 7px;
        height: 7px;

        border: 2px solid #ffa600;

        transform: rotate(45deg);
    }


    .gb-footer-info a {
        color: rgba(255,255,255,.72);
        text-decoration: none;

        transition: color .3s ease;
    }


    .gb-footer-info a:hover {
        color: #ffa600;
    }


    /* =====================================================
       QUICK LINKS
    ====================================================== */

    .gb-footer-links {
        margin: 0;
        padding: 0;

        list-style: none;
    }


    .gb-footer-links li {
        border-bottom:
            1px solid rgba(255,255,255,.07);
    }


    .gb-footer-links a {
        position: relative;

        display: flex;
        align-items: center;

        min-height: 44px;

        padding-left: 18px;

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

        text-decoration: none;

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

        transition:
            color .3s ease,
            padding-left .3s ease;
    }


    .gb-footer-links a::before {
        content: "›";

        position: absolute;
        left: 0;

        color: #ffa600;

        font-size: 17px;
        font-weight: 900;

        transition: transform .3s ease;
    }


    .gb-footer-links a:hover {
        color: #fff;
        padding-left: 24px;
    }


    .gb-footer-links a:hover::before {
        transform: translateX(5px);
    }


    /* =====================================================
       HOURS
    ====================================================== */

    .gb-footer-hours {
        padding: 20px;

        background: rgba(255,255,255,.045);

        border:
            1px solid rgba(255,255,255,.09);

        border-left:
            3px solid #ffa600;
    }


    .gb-footer-hours-label {
        display: block;

        margin-bottom: 16px;

        color: #ffa600;

        font-size: 8px;
        font-weight: 900;

        letter-spacing: 1px;
        text-transform: uppercase;
    }


    .gb-footer-hour-row {
        display: flex;
        align-items: center;
        justify-content: space-between;

        gap: 15px;

        padding: 11px 0;

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


    .gb-footer-hour-row:last-child {
        border-bottom: 0;
    }


    .gb-footer-hour-row span {
        color: rgba(255,255,255,.52);

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


    .gb-footer-hour-row strong {
        color: #fff;

        font-size: 9px;
        font-weight: 900;

        white-space: nowrap;
    }


    /* =====================================================
       WEBSITE
    ====================================================== */

    .gb-footer-site {
        display: flex;
        align-items: center;
        justify-content: space-between;

        gap: 15px;

        margin-top: 16px;
        padding: 13px 15px;

        border:
            1px solid rgba(255,255,255,.09);

        text-decoration: none;

        transition:
            border-color .3s ease,
            background .3s ease;
    }


    .gb-footer-site span {
        color: rgba(255,255,255,.48);

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

        text-transform: uppercase;
    }


    .gb-footer-site strong {
        color: #ffa600;

        font-size: 9px;
        font-weight: 900;
    }


    .gb-footer-site:hover {
        border-color: #ffa600;
        background: rgba(255,166,0,.05);
    }


    /* =====================================================
       COPYRIGHT
    ====================================================== */

    .gb-footer-bottom {
        position: relative;

        padding: 20px 0;

        background: #030827;

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


    .gb-footer-bottom-wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;

        gap: 20px;
    }


    .gb-footer-bottom p {
        margin: 0;

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

        font-size: 9px;
        line-height: 1.6;
    }


    .gb-footer-bottom strong {
        color: #ffa600;
    }


    .gb-footer-back {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        width: 38px;
        height: 38px;

        flex-shrink: 0;

        background: #ffa600;
        color: #07145a;

        text-decoration: none;

        font-size: 17px;
        font-weight: 900;

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


    .gb-footer-back:hover {
        background: #fff;
        color: #07145a;

        transform: translateY(-4px);
    }


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

    @media (max-width: 991.98px) {

        .gb-footer-main {
            padding: 65px 0 50px;
        }

        .gb-footer-brand {
            padding-right: 0;
        }

    }


    @media (max-width: 767.98px) {

        .gb-footer-main {
            padding: 55px 0 40px;
        }

        .gb-footer-brand h2 {
            font-size: 28px;
        }

        .gb-footer-phone {
            width: 100%;
        }

        .gb-footer-bottom-wrap {
            align-items: flex-start;
        }

    }


       .gb-extra-services {
        position: relative;
        padding: 95px 0;
        background: #ffffff;
        overflow: hidden;
    }

    .gb-extra-services::before {
        content: "";
        position: absolute;
        width: 360px;
        height: 360px;
        right: -200px;
        top: -200px;
        border-radius: 50%;
        border: 55px solid rgba(7, 20, 90, .025);
        pointer-events: none;
    }

    .gb-extra-services .container {
        position: relative;
        z-index: 2;
    }


    /* =====================================================
       HEADER
    ====================================================== */

    .gb-extra-head {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 40px;
        margin-bottom: 50px;
    }

    .gb-extra-head-left {
        max-width: 680px;
    }

    .gb-extra-label {
        display: inline-flex;
        align-items: center;
        gap: 10px;

        margin-bottom: 12px;

        color: #ffa600;

        font-size: 10px;
        font-weight: 900;
        letter-spacing: 1.4px;
        text-transform: uppercase;
    }

    .gb-extra-label::before {
        content: "";
        width: 30px;
        height: 3px;
        background: #ffa600;
    }

    .gb-extra-title {
        margin: 0;

        color: #07145a;

        font-size: clamp(40px, 4.5vw, 58px);
        line-height: 1.02;
        font-weight: 900;
        letter-spacing: -1.7px;
    }

    .gb-extra-intro {
        max-width: 390px;
        margin: 0;

        color: #747474;

        font-size: 11px;
        line-height: 1.8;
    }


    /* =====================================================
       SERVICE DIRECTORY
    ====================================================== */

    .gb-extra-list {
        border-top: 1px solid #dfe2e9;
    }

    .gb-extra-service {
        position: relative;

        display: grid;
        grid-template-columns: 75px 1fr auto;
        align-items: center;
        gap: 20px;

        min-height: 105px;

        padding: 0 25px 0 5px;

        border-bottom: 1px solid #dfe2e9;

        text-decoration: none;

        overflow: hidden;

        transition:
            padding .35s ease,
            background .35s ease;
    }


    /* animated background */

    .gb-extra-service::before {
        content: "";

        position: absolute;
        inset: 0;

        background: #07145a;

        transform: scaleY(0);
        transform-origin: bottom;

        transition: transform .4s cubic-bezier(.2,.8,.2,1);

        z-index: 0;
    }

    .gb-extra-service:hover::before {
        transform: scaleY(1);
    }

    .gb-extra-service:hover {
        padding-left: 22px;
    }


    /* =====================================================
       NUMBER
    ====================================================== */

    .gb-extra-num {
        position: relative;
        z-index: 2;

        color: #aeb3bd;

        font-size: 11px;
        font-weight: 900;
        letter-spacing: 1px;

        transition: color .3s ease;
    }

    .gb-extra-num::after {
        content: "";

        display: block;

        width: 23px;
        height: 2px;

        margin-top: 8px;

        background: #ffa600;

        transition: width .35s ease;
    }

    .gb-extra-service:hover .gb-extra-num {
        color: #ffa600;
    }

    .gb-extra-service:hover .gb-extra-num::after {
        width: 42px;
    }


    /* =====================================================
       NAME
    ====================================================== */

    .gb-extra-name {
        position: relative;
        z-index: 2;

        margin: 0;

        color: #07145a;

        font-size: clamp(20px, 2vw, 29px);
        line-height: 1.15;
        font-weight: 900;

        letter-spacing: -.6px;
        text-transform: uppercase;

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

    .gb-extra-service:hover .gb-extra-name {
        color: #ffffff;
        transform: translateX(7px);
    }


    /* =====================================================
       RIGHT
    ====================================================== */

    .gb-extra-right {
        position: relative;
        z-index: 2;

        display: flex;
        align-items: center;
        gap: 17px;
    }

    .gb-extra-type {
        color: #999fa9;

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

        letter-spacing: 1px;
        text-transform: uppercase;

        transition: color .3s ease;
    }

    .gb-extra-arrow {
        width: 43px;
        height: 43px;

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

        border: 1px solid #d8dbe2;

        color: #07145a;

        font-size: 17px;
        font-weight: 900;

        transition:
            background .3s ease,
            color .3s ease,
            border-color .3s ease,
            transform .3s ease;
    }

    .gb-extra-service:hover .gb-extra-type {
        color: rgba(255,255,255,.50);
    }

    .gb-extra-service:hover .gb-extra-arrow {
        background: #ffa600;
        border-color: #ffa600;
        color: #07145a;

        transform: rotate(-45deg);
    }


    /* =====================================================
       EMERGENCY - FEATURED
    ====================================================== */

    .gb-extra-service.gb-emergency .gb-extra-name {
        color: #eb8f00;
    }

    .gb-extra-service.gb-emergency::after {
        content: "URGENT SERVICE";

        position: absolute;

        right: 95px;
        top: 14px;

        z-index: 3;

        padding: 5px 8px;

        background: rgba(255,166,0,.10);
        color: #eb8f00;

        font-size: 7px;
        font-weight: 900;
        letter-spacing: .8px;
    }

    .gb-extra-service.gb-emergency:hover .gb-extra-name {
        color: #ffa600;
    }


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

    .gb-extra-bottom {
        margin-top: 38px;

        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 25px;

        padding: 24px 27px;

        background: #f6f7fa;

        border-left: 4px solid #ffa600;
    }

    .gb-extra-bottom span {
        display: block;

        color: #ffa600;

        font-size: 8px;
        font-weight: 900;
        letter-spacing: 1px;
        text-transform: uppercase;

        margin-bottom: 5px;
    }

    .gb-extra-bottom strong {
        display: block;

        color: #07145a;

        font-size: 17px;
        font-weight: 900;
    }

    .gb-extra-phone {
        flex-shrink: 0;

        min-height: 48px;

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

        padding: 0 21px;

        background: #07145a;
        color: #ffffff;

        text-decoration: none;

        font-size: 13px;
        font-weight: 900;

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

    .gb-extra-phone:hover {
        background: #ffa600;
        color: #07145a;

        transform: translateY(-3px);
    }


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

    @media (max-width: 991.98px) {

        .gb-extra-services {
            padding: 75px 0;
        }

        .gb-extra-head {
            align-items: flex-start;
            flex-direction: column;
            gap: 18px;
        }

        .gb-extra-intro {
            max-width: 600px;
        }

    }


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

    @media (max-width: 767.98px) {

        .gb-extra-services {
            padding: 58px 0;
        }

        .gb-extra-head {
            margin-bottom: 32px;
        }

        .gb-extra-title {
            font-size: 38px;
        }

        .gb-extra-service {
            grid-template-columns: 42px 1fr 39px;

            min-height: 85px;

            gap: 10px;

            padding: 0 5px;
        }

        .gb-extra-service:hover {
            padding-left: 5px;
        }

        .gb-extra-name {
            font-size: 16px;
            letter-spacing: -.2px;
        }

        .gb-extra-type {
            display: none;
        }

        .gb-extra-arrow {
            width: 37px;
            height: 37px;
        }

        .gb-extra-service.gb-emergency::after {
            display: none;
        }

        .gb-extra-bottom {
            flex-direction: column;
            align-items: stretch;

            padding: 21px;
        }

        .gb-extra-phone {
            width: 100%;
        }

    }


        /* =========================================================
       SECTION
    ========================================================= */

    .gb-about-services {
        position: relative;
        padding: 95px 0;
        background: var(--gb-white);
        overflow: hidden;
    }


    /* DECORATION RIGHT */

    .gb-about-services::before {
        content: "";
        position: absolute;

        width: 400px;
        height: 400px;

        right: -220px;
        top: -220px;

        border-radius: 50%;

        border:
            60px solid rgba(7, 20, 90, .025);

        pointer-events: none;
    }


    /* DECORATION LEFT */

    .gb-about-services::after {
        content: "";
        position: absolute;

        width: 280px;
        height: 280px;

        left: -170px;
        bottom: -170px;

        border-radius: 50%;

        border:
            1px solid rgba(255, 166, 0, .13);

        box-shadow:
            0 0 0 45px rgba(255, 166, 0, .02),
            0 0 0 90px rgba(255, 166, 0, .012);

        pointer-events: none;
    }


    .gb-about-services .container {
        position: relative;
        z-index: 2;
    }


    /* =========================================================
       LEFT CONTENT
    ========================================================= */

    .gb-about-label {
        display: inline-flex;
        align-items: center;
        gap: 10px;

        margin-bottom: 14px;

        color: var(--gb-orange);

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

        letter-spacing: 1.4px;
        text-transform: uppercase;
    }


    .gb-about-label::before {
        content: "";

        width: 30px;
        height: 3px;

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


    /* TITLE */

    .gb-about-title {
        max-width: 580px;

        margin: 0 0 25px;

        color: var(--gb-black-soft);

        font-size:
            clamp(40px, 4.5vw, 58px);

        line-height: 1.04;

        font-weight: 900;

        letter-spacing: -1.6px;
    }


    /* PARAGRAPHS */

    .gb-about-text {
        max-width: 625px;

        margin: 0 0 16px;

        color: var(--gb-muted);

        font-size: 11px;
        line-height: 1.85;
    }


    /* =========================================================
       POINTS
    ========================================================= */

    .gb-about-points {
        display: grid;
        gap: 12px;

        margin-top: 26px;
    }


    .gb-about-point {
        display: flex;
        align-items: center;
        gap: 12px;

        color: var(--gb-black-soft);

        font-size: 11px;
        line-height: 1.5;

        font-weight: 800;
    }


    .gb-about-point > span {
        position: relative;

        width: 22px;
        height: 22px;

        flex: 0 0 22px;

        border-radius: 50%;

        background:
            rgba(255, 166, 0, .13);
    }


    .gb-about-point > span::before {
        content: "";

        position: absolute;

        left: 7px;
        top: 5px;

        width: 6px;
        height: 10px;

        border-right:
            2px solid var(--gb-orange);

        border-bottom:
            2px solid var(--gb-orange);

        transform: rotate(45deg);
    }


    /* =========================================================
       PHONE
    ========================================================= */

    .gb-about-contact {
        display: flex;
        align-items: center;
        gap: 13px;

        margin-top: 28px;
    }


    .gb-about-phone-icon {
        width: 46px;
        height: 46px;

        flex: 0 0 46px;

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

        border-radius: 50%;

        background:
            var(--gb-black-soft);

        color:
            var(--gb-orange);

        font-size: 18px;

        box-shadow:
            0 12px 24px
            rgba(7, 20, 90, .12);
    }


    .gb-about-contact small {
        display: block;

        margin-bottom: 4px;

        color: #9a9da4;

        font-size: 8px;
        font-weight: 900;

        letter-spacing: .8px;
        text-transform: uppercase;
    }


    .gb-about-contact strong {
        display: block;

        color:
            var(--gb-black-soft);

        font-size: 19px;
        line-height: 1;

        font-weight: 900;
    }


    /* =========================================================
       BUTTON
    ========================================================= */

    .gb-about-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 14px;

        min-height: 50px;

        margin-top: 25px;
        padding: 0 22px;

        background:
            var(--gb-orange);

        color:
            var(--gb-black-soft);

        text-decoration: none;

        font-size: 9px;
        font-weight: 900;

        letter-spacing: .7px;
        text-transform: uppercase;

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


    .gb-about-btn span {
        font-size: 16px;

        transition:
            transform .3s ease;
    }


    .gb-about-btn:hover {
        background:
            var(--gb-black-soft);

        color:
            var(--gb-white);

        transform:
            translateY(-3px);
    }


    .gb-about-btn:hover span {
        transform:
            translateX(4px);
    }


    /* =========================================================
       RIGHT WRAPPER

       IMPORTANT:
       IMAGE + STATS USE EXACTLY SAME WRAPPER WIDTH
    ========================================================= */

    .gb-about-right {
        position: relative;

        display: block;

        width: 100%;
        max-width: none;

        margin: 0;
        padding: 0;

        box-sizing: border-box;
    }


    /* =========================================================
       BEFORE / AFTER IMAGE
    ========================================================= */

    .gb-about-image {
        position: relative;

        display: block;

        width: 100%;
        max-width: none;

        height: 390px;

        margin: 0;
        padding: 0;

        background:
            var(--gb-black-soft);

        overflow: hidden;

        box-sizing: border-box;

        box-shadow:
            0 25px 55px
            rgba(5, 13, 57, .15);
    }


    .gb-about-image img {
        display: block;

        width: 100%;
        height: 100%;

        margin: 0;
        padding: 0;

        object-fit: cover;

        transition:
            transform .8s
            cubic-bezier(.2,.8,.2,1);
    }


    .gb-about-image:hover img {
        transform:
            scale(1.04);
    }


    /* SMALL DARK OVERLAY */

    .gb-about-image::before {
        content: "";

        position: absolute;
        inset: 0;

        z-index: 1;

        background:
            linear-gradient(
                180deg,
                rgba(5, 13, 57, 0) 55%,
                rgba(5, 13, 57, .22) 100%
            );

        pointer-events: none;
    }


    /* ORANGE TOP CORNER */

    .gb-about-image::after {
        content: "";

        position: absolute;

        z-index: 2;

        right: 0;
        top: 0;

        width: 75px;
        height: 75px;

        background:
            var(--gb-orange);

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

        pointer-events: none;
    }


    /* =========================================================
       STATS WRAPPER

       SAME EXACT WIDTH AS IMAGE
    ========================================================= */

    .gb-about-right .gb-about-stats {
        position: relative;

        display: grid !important;

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

        width: 100% !important;
        max-width: none !important;

        margin:
            12px 0 0 0 !important;

        padding: 0 !important;

        gap: 10px;

        box-sizing: border-box;
    }


    /* =========================================================
       STAT ITEM
    ========================================================= */

    .gb-about-right
    .gb-about-stats
    .gb-stat-item {

        position: relative;

        display: flex;
        align-items: center;

        gap: 14px;

        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;

        min-height: 108px;

        margin: 0 !important;

        padding: 17px 16px;

        box-sizing: border-box;

        background:
            var(--gb-light);

        border:
            1px solid #e8eaf0;

        overflow: hidden;

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


    /* ORANGE LEFT LINE */

    .gb-stat-item::before {
        content: "";

        position: absolute;

        left: 0;
        top: 0;

        width: 4px;
        height: 100%;

        background:
            var(--gb-orange);

        transform:
            scaleY(.35);

        transform-origin: center;

        transition:
            transform .35s ease;
    }


    /* HOVER */

    .gb-stat-item:hover {
        background:
            var(--gb-black-soft);

        border-color:
            var(--gb-black-soft);

        transform:
            translateY(-4px);

        box-shadow:
            0 17px 35px
            rgba(7, 20, 90, .13);
    }


    .gb-stat-item:hover::before {
        transform:
            scaleY(1);
    }


    /* =========================================================
       STAT NUMBER
    ========================================================= */

    .gb-stat-number {
        position: relative;

        flex:
            0 0 50px;

        min-width: 0;

        color:
            var(--gb-black-soft);

        font-size: 28px;
        line-height: 1;

        font-weight: 900;

        letter-spacing: -1px;

        transition:
            color .3s ease;
    }


    .gb-stat-number span {
        color:
            var(--gb-orange);

        font-size: 14px;

        vertical-align: top;

        margin-left: 1px;
    }


    /* =========================================================
       STAT TEXT
    ========================================================= */

    .gb-stat-text {
        position: relative;

        flex: 1;

        min-width: 0;
    }


    .gb-stat-text strong {
        display: block;

        margin-bottom: 6px;

        color:
            var(--gb-black-soft);

        font-size: 12px;
        line-height: 1.2;

        font-weight: 900;

        transition:
            color .3s ease;
    }


    .gb-stat-text span {
        display: block;

        color:
            var(--gb-muted);

        font-size: 9px;
        line-height: 1.55;

        transition:
            color .3s ease;
    }


    /* HOVER TEXT */

    .gb-stat-item:hover
    .gb-stat-number {
        color:
           #142062;
    }


    .gb-stat-item:hover
    .gb-stat-text strong {
        color:
           #142062;
    }


    .gb-stat-item:hover
    .gb-stat-text span {
        color:
           #142062;
    }


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

    @media (max-width: 991.98px) {

        .gb-about-services {
            padding: 75px 0;
        }

        .gb-about-right {
            width: 100%;
        }

        .gb-about-image {
            width: 100%;
            height: 450px;
        }

        .gb-about-right
        .gb-about-stats {
            width: 100% !important;
        }

    }


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

    @media (max-width: 767.98px) {

        .gb-about-services {
            padding: 58px 0;
        }

        .gb-about-title {
            font-size: 38px;
            letter-spacing: -1px;
        }

        .gb-about-image {
            height: 330px;
        }

        .gb-about-right
        .gb-about-stats {
            grid-template-columns:
                repeat(2, minmax(0, 1fr)) !important;
        }

        .gb-about-right
        .gb-about-stats
        .gb-stat-item {
            min-height: 105px;

            padding:
                15px 13px;

            gap: 10px;
        }

        .gb-stat-number {
            flex:
                0 0 42px;

            font-size: 24px;
        }

    }


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

    @media (max-width: 575.98px) {

        .gb-about-image {
            height: 270px;
        }

        .gb-about-right
        .gb-about-stats {
            grid-template-columns:
                1fr !important;

            gap: 8px;
        }

        .gb-about-right
        .gb-about-stats
        .gb-stat-item {
            width: 100% !important;

            min-height: 88px;

            padding: 15px;
        }

        .gb-stat-number {
            flex:
                0 0 45px;

            font-size: 25px;
        }

    }


       /* RESET */
*, *::before, *::after {
    box-sizing: border-box;
}

/* FORM WRAPPER */
form.CUS {
    max-width: 900px;
    width: 100%;
    margin: 20px auto;
    padding: 20px;
    background: #f9fafb;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: system-ui, sans-serif;
}

/* FLEX FIELDSET */
form.CUS fieldset {
    display: flex;
    flex-wrap: wrap;
    border: none;
    padding: 0;
    margin: 0;
}

/* BASE BLOCK STYLE */
form.CUS fieldset > p {
    width: 100%;
    padding: 10px;
    margin: 0;
    font-size: 0.95rem;
    color: #444;
}

/* Universal input/select styling */
form.CUS input,
form.CUS select,
form.CUS textarea {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

/* ===============================
   ROW 1: Name, Phone, Address
=============================== */
form.CUS fieldset > p:nth-of-type(1),
form.CUS fieldset > p:nth-of-type(2),
form.CUS fieldset > p:nth-of-type(3) {
    width: 33.333%;
}

/* ===============================
   ROW 2: City, State, Zip Code
=============================== */
form.CUS fieldset > p:nth-of-type(4),
form.CUS fieldset > p:nth-of-type(5),
form.CUS fieldset > p:nth-of-type(6) {
    width: 33.333%;
}

/* ===============================
   SERVICE NEEDED TEXTAREA
=============================== */
form.CUS fieldset > p:nth-of-type(7) {
    width: 100%;
}

/* ===============================
   SERVICE DATE (Month, Day, Year)
   Ã¢â€ â€™ ALL 3 IN ONE ROW
=============================== */

/* Make the 8th <p> (Service Date block) a flex row */
form.CUS fieldset > p:nth-of-type(8) {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: flex-start;
}

/* Month, Day, Year = 3 equal flex columns */
form.CUS fieldset > p:nth-of-type(8) select#service_date,
form.CUS fieldset > p:nth-of-type(8) select#service_day,
form.CUS fieldset > p:nth-of-type(8) input#service_year {
    flex: 1 1 0;
    width: auto;          /* flex handles width */
    margin-top: 6px;
}

/* ===============================
   SERVICE TIME (Full width)
=============================== */
form.CUS fieldset > p:nth-of-type(9) {
    width: 100%;
}

/* ===============================
   SUBMIT BUTTON (Full width)
=============================== */
form.CUS fieldset > p:nth-of-type(10) {
    width: 100%;
}

form.CUS input[type="submit"] {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

form.CUS input[type="submit"]:hover {
    background: #030827;
}

/* Hide honeypot */
form.CUS input.subject {
    display: none;
}

/* ===============================
   MOBILE RESPONSIVE (stack fields)
=============================== */
@media (max-width: 600px) {

    form.CUS fieldset > p {
        width: 100%;
        padding: 6px 0;
    }

    /* Month, Day, Year full width stacked on mobile */
    form.CUS fieldset > p:nth-of-type(8) {
        flex-direction: column;
        gap: 6px;
    }

    form.CUS fieldset > p:nth-of-type(8) select#service_date,
    form.CUS fieldset > p:nth-of-type(8) select#service_day,
    form.CUS fieldset > p:nth-of-type(8) input#service_year {
        flex: none;
        width: 100% !important;
    }
/* ===============================
   ROW 1: Name, Phone, Address
=============================== */
form.CUS fieldset > p:nth-of-type(1),
form.CUS fieldset > p:nth-of-type(2),
form.CUS fieldset > p:nth-of-type(3) {
    width: 100%;
}

/* ===============================
   ROW 2: City, State, Zip Code
=============================== */
form.CUS fieldset > p:nth-of-type(4),
form.CUS fieldset > p:nth-of-type(5),
form.CUS fieldset > p:nth-of-type(6) {
    width: 100%;
}
}



.blogbox{text-align:justify;padding:20px;background-color:#FFF;box-sizing:border-box;clear:both;overflow:hidden;margin-bottom:15px;box-shadow:3px 3px 7px rgba(0,0,0,0.2)}
.blogbox .blogimg img {float: right; width: 35%; height: auto; margin: 15px;box-shadow: 0 0 3px rgba(0,0,0,0.8)}
.blogbox .read-more a{background-color:#ccc;color:#2D2D2D;padding:10px;border-radius:5px;border:1px solid #2D2D2D}
.blogbox .read-more a:hover {background-color:#2D2D2D;color:#FFF;letter-spacing: 2px;padding:10px 15px}
.blogpost {text-align: justify;padding:20px;background-color: #FFF;box-sizing: border-box}
.blogpost h1, .blogbox h1 {margin:0;font-size:28px;color:#222;}
.blogpost h2, .blogbox h2 {margin:0;font-size:24px;color:#222;}
.blogpost .blog_wrapper img {float: right; max-width: 35%; height: auto; margin: 15px;box-shadow: 0 0 3px rgba(0,0,0,0.8)}
.socialbox{overflow:hidden;position:relative;text-align:center;width:100%;}
.social-share-btns{display:inline-block;overflow:hidden}
.social-share-btns .share-btn{float:left;margin:0 5px;padding:8px 16px;border-radius:3px;color:#fff;font-size:14px;line-height:18px;vertical-align:middle;transition:background .2s ease-in-out;display:flex;align-items:center;}
.social-share-btns .share-btn svg {fill:currentColor;height:1rem;width:1rem;margin-right:10px;}
.share-btn{background-color:#95a5a6}
.share-btn:hover{background-color:#798d8f}
.share-btn-twitter{background-color:#00aced}
.share-btn-twitter:hover{background-color:#0087ba}
.share-btn-facebook{background-color:#3b5998}
.share-btn-facebook:hover{background-color:#2d4373}
.share-btn-linkedin{background-color:#007bb6}
.share-btn-linkedin:hover{background-color:#005983}
@media only screen and (max-width:700px){
.blogbox .blogimg img{max-width:90%;width:auto}
}