   /* =========================================================
           GARAGE DOOR OF HUMBLE
           HERO + NAVIGATION
        ========================================================= */

        :root {

            --gh-black: #090a08;
            --gh-black-soft: #11120f;
            --gh-dark: #161712;

            --gh-lime: #ddf800;
            --gh-lime-dark: #c9e000;

            --gh-green: #4d6500;
            --gh-green-dark: #344600;

            --gh-white: #ffffff;
            --gh-off-white: #f6f6f2;

            --gh-text: #12130f;
            --gh-muted: #6d7067;

            --gh-border: rgba(18, 19, 15, .18);

            --gh-radius: 24px;

            --gh-shadow:
                0 20px 50px rgba(0, 0, 0, .10);

        }


        * {
            box-sizing: border-box;
        }


        html {
            scroll-behavior: smooth;
        }


        body {

            margin: 0;

            background: var(--gh-off-white);

            color: var(--gh-text);

            font-family:
                Arial,
                Helvetica,
                sans-serif;

            overflow-x: hidden;

        }


        a {
            text-decoration: none;
        }


        /* =========================================================
           HEADER
        ========================================================= */

        .gh-header {

            position: relative;

            z-index: 1000;

            background: #fff;

        }


        .gh-nav {

            min-height: 92px;

            background: #fff;

        }


        .gh-nav-inner {

            display: flex;

            align-items: center;

            justify-content: space-between;

            gap: 35px;

            min-height: 92px;

        }


        /* =========================================================
           LOGO
        ========================================================= */

        .gh-logo {

            display: inline-flex;

            align-items: center;

            gap: 11px;

            color: var(--gh-black);

            flex-shrink: 0;

        }


        .gh-logo-mark {

            position: relative;

            width: 47px;

            height: 34px;

            display: flex;

            align-items: center;

            justify-content: center;

        }


        .gh-logo-mark::before {

            content: "";

            position: absolute;

            width: 38px;

            height: 25px;

            border: 4px solid var(--gh-green);

            border-top: 0;

            bottom: 0;

        }


        .gh-logo-mark::after {

            content: "";

            position: absolute;

            width: 34px;

            height: 34px;

            border-left: 4px solid var(--gh-green);

            border-top: 4px solid var(--gh-green);

            transform: rotate(45deg);

            top: 1px;

        }


        .gh-logo-icon {

            position: relative;

            z-index: 3;

            width: 20px;

            height: 15px;

            background: var(--gh-black);

            border-radius: 2px;

        }


        .gh-logo-icon::before,
        .gh-logo-icon::after {

            content: "";

            position: absolute;

            left: 2px;

            right: 2px;

            height: 2px;

            background: var(--gh-lime);

        }


        .gh-logo-icon::before {
            top: 4px;
        }


        .gh-logo-icon::after {
            bottom: 4px;
        }


        .gh-logo-text {

            font-size: 22px;

            font-weight: 900;

            letter-spacing: -1px;

            line-height: 1;

        }


        /* =========================================================
           DESKTOP NAV
        ========================================================= */

        .gh-menu {

            display: flex;

            align-items: center;

            justify-content: center;

            gap: 32px;

            margin: 0;

            padding: 0;

            list-style: none;

        }


        .gh-menu > li {

            position: relative;

        }


        .gh-menu > li > a {

            position: relative;

            display: inline-flex;

            align-items: center;

            gap: 7px;

            color: var(--gh-black);

            font-size: 15px;

            font-weight: 600;

            padding: 34px 0;

            transition: .3s ease;

        }


        .gh-menu > li > a::after {

            content: "";

            position: absolute;

            left: 0;

            bottom: 25px;

            width: 0;

            height: 2px;

            border-radius: 10px;

            background: var(--gh-lime);

            transition: .3s ease;

        }


        .gh-menu > li > a:hover,
        .gh-menu > li > a.active {

            color: var(--gh-green);

        }


        .gh-menu > li > a:hover::after,
        .gh-menu > li > a.active::after {

            width: 100%;

        }


        /* =========================================================
           SERVICES DROPDOWN
        ========================================================= */

        .gh-dropdown {

            position: absolute;

            top: calc(100% - 8px);

            left: 50%;

            transform:
                translateX(-50%)
                translateY(15px);

            width: 310px;

            padding: 12px;

            background: #fff;

            border: 1px solid rgba(0, 0, 0, .08);

            border-radius: 18px;

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

            list-style: none;

            opacity: 0;

            visibility: hidden;

            pointer-events: none;

            transition: .3s ease;

        }


        .gh-dropdown-parent:hover .gh-dropdown {

            opacity: 1;

            visibility: visible;

            pointer-events: auto;

            transform:
                translateX(-50%)
                translateY(0);

        }


        .gh-dropdown li a {

            display: flex;

            align-items: center;

            gap: 12px;

            width: 100%;

            padding: 12px 14px;

            border-radius: 12px;

            color: var(--gh-text);

            font-size: 14px;

            font-weight: 600;

            transition: .25s ease;

        }


        .gh-dropdown li a i {

            display: flex;

            align-items: center;

            justify-content: center;

            width: 31px;

            height: 31px;

            border-radius: 50%;

            background: rgba(221, 248, 0, .25);

            color: var(--gh-green-dark);

            transition: .25s ease;

        }


        .gh-dropdown li a:hover {

            background: var(--gh-black);

            color: #fff;

            transform: translateX(3px);

        }


        .gh-dropdown li a:hover i {

            background: var(--gh-lime);

            color: var(--gh-black);

        }


        /* =========================================================
           HEADER RIGHT
        ========================================================= */

        .gh-nav-actions {

            display: flex;

            align-items: center;

            gap: 14px;

            flex-shrink: 0;

        }


        .gh-call {

            min-height: 47px;

            padding: 5px 15px 5px 6px;

            display: flex;

            align-items: center;

            gap: 9px;

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

            border-radius: 50px;

            color: var(--gh-black);

            background: #fff;

            font-size: 13px;

            font-weight: 700;

            transition: .3s ease;

        }


        .gh-call-icon {

            width: 34px;

            height: 34px;

            border-radius: 50%;

            display: flex;

            align-items: center;

            justify-content: center;

            background: var(--gh-green-dark);

            color: #fff;

            transition: .3s ease;

        }


        .gh-call:hover {

            color: var(--gh-black);

            border-color: var(--gh-lime);

            transform: translateY(-2px);

        }


        .gh-call:hover .gh-call-icon {

            background: var(--gh-lime);

            color: var(--gh-black);

        }


        .gh-book-btn {

            min-height: 47px;

            display: inline-flex;

            align-items: center;

            gap: 13px;

            padding: 5px 6px 5px 18px;

            background: var(--gh-lime);

            border-radius: 50px;

            color: var(--gh-black);

            font-size: 13px;

            font-weight: 800;

            transition: .3s ease;

        }


        .gh-book-btn span {

            width: 35px;

            height: 35px;

            border-radius: 50%;

            background: #fff;

            display: flex;

            align-items: center;

            justify-content: center;

            transition: .3s ease;

        }


        .gh-book-btn:hover {

            background: var(--gh-black);

            color: #fff;

            transform: translateY(-2px);

        }


        .gh-book-btn:hover span {

            background: var(--gh-lime);

            color: var(--gh-black);

            transform: rotate(-35deg);

        }


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

        .gh-mobile-toggle {

            display: none;

            width: 48px;

            height: 48px;

            border: 0;

            border-radius: 50%;

            background: var(--gh-black);

            color: #fff;

            align-items: center;

            justify-content: center;

            font-size: 20px;

        }


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

        .gh-hero-wrap {

            padding:
                0 12px
                12px;

            background: #fff;

        }


        .gh-hero {

            position: relative;

            min-height: 790px;

            overflow: hidden;

            display: flex;

            align-items: stretch;

            border-radius: var(--gh-radius);

            isolation: isolate;

            background:
                linear-gradient(
                    90deg,
                    rgba(4, 5, 4, .97) 0%,
                    rgba(7, 8, 7, .92) 32%,
                    rgba(8, 9, 8, .65) 58%,
                    rgba(8, 9, 8, .12) 100%
                ),
                url("../images/garage-door-humble-hero.webp")
                center right / cover
                no-repeat;

        }


        .gh-hero::before {

            content: "";

            position: absolute;

            inset: 0;

            z-index: -1;

            pointer-events: none;

            background:
                linear-gradient(
                    rgba(255, 255, 255, .025) 1px,
                    transparent 1px
                );

            background-size:
                100% 78px;

            opacity: .75;

        }


        .gh-hero::after {

            content: "";

            position: absolute;

            width: 600px;

            height: 600px;

            left: 24%;

            bottom: -420px;

            background:
                radial-gradient(
                    circle,
                    rgba(221, 248, 0, .11),
                    transparent 67%
                );

            pointer-events: none;

        }


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

        .gh-hero-container {

            position: relative;

            z-index: 3;

            width: 100%;

        }


        .gh-hero-content {

            position: relative;

            min-height: 690px;

            display: flex;

            flex-direction: column;

            justify-content: center;

            padding-top: 58px;

            padding-bottom: 135px;

        }


        /* =========================================================
           RATING
        ========================================================= */

        .gh-rating {

            display: flex;

            align-items: center;

            flex-wrap: wrap;

            gap: 9px;

            margin-bottom: 17px;

            color: #fff;

            font-size: 12px;

            font-weight: 700;

        }


        .gh-rating-avatars {

            display: flex;

            align-items: center;

        }


        .gh-rating-avatar {

            width: 27px;

            height: 27px;

            margin-left: -7px;

            display: flex;

            align-items: center;

            justify-content: center;

            border-radius: 50%;

            background: #fff;

            color: var(--gh-black);

            border: 2px solid #fff;

            font-size: 11px;

            overflow: hidden;

        }


        .gh-rating-avatar:first-child {
            margin-left: 0;
        }


        .gh-stars {

            display: flex;

            align-items: center;

            gap: 2px;

            color: var(--gh-lime);

            font-size: 11px;

        }


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

        .gh-title {

            max-width: 780px;

            margin: 0;

            color: #fff;

            font-size: clamp(40px, 5vw, 112px);

            line-height: .88;

            letter-spacing: -5px;

            text-transform: uppercase;

            font-weight: 900;

        }


        .gh-title-main {

            display: block;

        }


        .gh-title-line {

            display: flex;

            align-items: center;

            flex-wrap: wrap;

            gap: 16px;

        }


        .gh-title-outline {

            color: transparent;

            -webkit-text-stroke:
                2px rgba(255, 255, 255, .92);

            text-stroke:
                2px rgba(255, 255, 255, .92);

            font-weight: 800;

        }


        .gh-title-lime {

            color: var(--gh-lime);

        }


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

        .gh-description {

            max-width: 650px;

            margin:
                27px 0
                0;

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

            font-size: 15px;

            line-height: 1.8;

        }


        /* =========================================================
           BUTTONS
        ========================================================= */

        .gh-hero-actions {

            display: flex;

            align-items: center;

            flex-wrap: wrap;

            gap: 15px;

            margin-top: 27px;

        }


        .gh-primary-btn,
        .gh-outline-btn {

            min-height: 50px;

            padding: 5px 6px 5px 18px;

            display: inline-flex;

            align-items: center;

            gap: 14px;

            border-radius: 50px;

            font-size: 20px;

            font-weight: 800;

            transition: .3s ease;

        }


        .gh-primary-btn {

            background: var(--gh-lime);

            color: var(--gh-black);

            border: 1px solid var(--gh-lime);

        }


        .gh-outline-btn {

            color: #fff;

            background: transparent;

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

        }


        .gh-btn-arrow {

            width: 37px;

            height: 37px;

            border-radius: 50%;

            display: flex;

            align-items: center;

            justify-content: center;

            background: #fff;

            color: var(--gh-black);

            transition: .3s ease;

        }


        .gh-primary-btn:hover {

            color: #fff;

            background: var(--gh-green-dark);

            border-color: var(--gh-green-dark);

            transform: translateY(-3px);

        }


        .gh-outline-btn:hover {

            color: var(--gh-black);

            background: var(--gh-lime);

            border-color: var(--gh-lime);

            transform: translateY(-3px);

        }


        .gh-primary-btn:hover .gh-btn-arrow,
        .gh-outline-btn:hover .gh-btn-arrow {

            transform: rotate(-35deg);

        }


        /* =========================================================
           HERO SIDE BADGE
        ========================================================= */

        .gh-service-badge {

            position: absolute;

            z-index: 5;

            top: 50%;

            right: 28%;

            transform: translateY(-50%);

            width: 80px;

            height: 80px;

            border-radius: 50%;

            display: flex;

            align-items: center;

            justify-content: center;

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

            border: 9px solid rgba(255, 255, 255, .15);

            background-clip: padding-box;

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

            color: var(--gh-green-dark);

            font-size: 23px;

            animation:
                ghPulse 2.8s ease-in-out
                infinite;

        }


        @keyframes ghPulse {

            0%,
            100% {
                box-shadow:
                    0 0 0 0 rgba(221, 248, 0, .28),
                    0 15px 40px rgba(0, 0, 0, .25);
            }

            50% {
                box-shadow:
                    0 0 0 16px rgba(221, 248, 0, 0),
                    0 15px 40px rgba(0, 0, 0, .25);
            }

        }


        /* =========================================================
           STATS
        ========================================================= */

        .gh-stats {

            position: absolute;

            z-index: 4;

            left: 0;

            right: 0;

            bottom: 0;

            min-height: 112px;

            display: flex;

            align-items: center;

            background:
                rgba(9, 10, 8, .74);

            backdrop-filter: blur(8px);

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

        }


        .gh-stat-grid {

            display: grid;

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

            gap: 0;

        }


        .gh-stat {

            position: relative;

            min-height: 70px;

            display: flex;

            align-items: center;

            gap: 14px;

            padding: 10px 28px;

        }


        .gh-stat:not(:last-child)::after {

            content: "";

            position: absolute;

            top: 16px;

            bottom: 16px;

            right: 0;

            width: 1px;

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

        }


        .gh-stat-number {

            color: #fff;

            font-size: 39px;

            line-height: 1;

            font-weight: 800;

            letter-spacing: -2px;

        }


        .gh-stat-number span {

            color: var(--gh-lime);

        }


        .gh-stat-label {

            max-width: 100px;

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

            font-size: 11px;

            line-height: 1.55;

            text-transform: uppercase;

        }


        /* =========================================================
           HOURS FLOATING STRIP
        ========================================================= */

        .gh-hours-strip {

            background: var(--gh-black);

            color: #fff;

        }


        .gh-hours-inner {

            min-height: 46px;

            display: flex;

            align-items: center;

            justify-content: center;

            gap: 42px;

            font-size: 12px;

            letter-spacing: .2px;

        }


        .gh-hours-item {

            display: flex;

            align-items: center;

            gap: 9px;

        }


        .gh-hours-item i {

            color: var(--gh-lime);

        }


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

        .gh-rating,
        .gh-title,
        .gh-description,
        .gh-hero-actions {

            opacity: 0;

            animation:
                ghFadeUp .8s
                forwards;

        }


        .gh-title {
            animation-delay: .15s;
        }


        .gh-description {
            animation-delay: .30s;
        }


        .gh-hero-actions {
            animation-delay: .45s;
        }


        @keyframes ghFadeUp {

            from {
                opacity: 0;
                transform: translateY(24px);
            }

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

        }


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

        @media (max-width: 1199px) {

            .gh-menu {
                gap: 20px;
            }


            .gh-menu > li > a {
                font-size: 14px;
            }


            .gh-book-btn {
                display: none;
            }


            .gh-service-badge {
                right: 18%;
            }


            .gh-title {
                max-width: 720px;
            }

        }


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

        @media (max-width: 991px) {

            .gh-nav {

                min-height: 78px;

            }


            .gh-nav-inner {

                min-height: 78px;

            }


            .gh-menu {

                position: absolute;

                top: 78px;

                left: 20px;

                right: 20px;

                display: none;

                padding: 14px;

                flex-direction: column;

                align-items: stretch;

                gap: 4px;

                background: #fff;

                border-radius: 18px;

                box-shadow:
                    0 22px 60px
                    rgba(0, 0, 0, .15);

            }


            .gh-header:hover .gh-menu {

                display: flex;

            }


            .gh-menu > li > a {

                width: 100%;

                padding: 13px;

                border-radius: 10px;

            }


            .gh-menu > li > a::after {

                display: none;

            }


            .gh-menu > li > a:hover {

                background:
                    rgba(221, 248, 0, .25);

            }


            .gh-dropdown {

                position: static;

                width: 100%;

                margin-top: 5px;

                padding: 4px;

                transform: none;

                opacity: 1;

                visibility: visible;

                pointer-events: auto;

                display: none;

                box-shadow: none;

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

            }


            .gh-dropdown-parent:hover .gh-dropdown {

                display: block;

                transform: none;

            }


            .gh-mobile-toggle {

                display: flex;

            }


            .gh-call {

                margin-left: auto;

            }


            .gh-hero {

                min-height: 730px;

                background:
                    linear-gradient(
                        90deg,
                        rgba(5, 6, 5, .97),
                        rgba(6, 7, 6, .87),
                        rgba(6, 7, 6, .56)
                    ),
                    url("images/garage-door-humble-hero.webp")
                    65% center / cover
                    no-repeat;

            }


            .gh-hero-content {

                min-height: 730px;

                padding-bottom: 200px;

            }


            .gh-service-badge {
                display: none;
            }


            .gh-stat-grid {

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

            }


            .gh-stats {

                min-height: 170px;

            }


            .gh-stat {

                min-height: 75px;

            }


            .gh-stat:nth-child(2)::after {
                display: none;
            }

        }


        /* =========================================================
           PHONE
        ========================================================= */

        @media (max-width: 767px) {

            .gh-nav {

                padding: 0 4px;

            }


            .gh-logo-text {

                font-size: 18px;

            }


            .gh-logo-mark {

                width: 39px;

                transform: scale(.82);

                transform-origin: left center;

                margin-right: -7px;

            }


            .gh-call {

                width: 44px;

                height: 44px;

                min-height: 44px;

                padding: 5px;

                border: 0;

            }


            .gh-call > span:last-child {

                display: none;

            }


            .gh-call-icon {

                width: 34px;

                height: 34px;

            }


            .gh-mobile-toggle {

                width: 44px;

                height: 44px;

            }


            .gh-hero-wrap {

                padding:
                    0 7px
                    7px;

            }


            .gh-hero {

                border-radius: 18px;

                min-height: 720px;

            }


            .gh-hero-content {

                min-height: 720px;

                padding:
                    45px 8px
                    220px;

                justify-content: center;

            }


            .gh-rating {

                margin-bottom: 15px;

            }


            .gh-title {

                font-size:
                    clamp(47px, 16vw, 76px);

                letter-spacing: -3px;

                line-height: .91;

            }


            .gh-title-line {

                gap: 8px;

            }


            .gh-title-outline {

                -webkit-text-stroke:
                    1.3px #fff;

            }


            .gh-description {

                max-width: 100%;

                margin-top: 23px;

                font-size: 14px;

                line-height: 1.7;

            }


            .gh-hero-actions {

                align-items: stretch;

            }


            .gh-primary-btn,
            .gh-outline-btn {

                justify-content:
                    space-between;

            }


            .gh-stats {

                min-height: 196px;

            }


            .gh-stat {

                padding:
                    10px 12px;

                gap: 9px;

            }


            .gh-stat-number {

                font-size: 30px;

            }


            .gh-stat-label {

                font-size: 9px;

            }


            .gh-hours-inner {

                justify-content:
                    flex-start;

                overflow-x: auto;

                gap: 28px;

                padding-top: 12px;

                padding-bottom: 12px;

                white-space: nowrap;

            }

        }


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

        @media (max-width: 430px) {

            .gh-logo-text {

                max-width: 116px;

                line-height: 1.05;

            }


            .gh-title {

                font-size: 49px;

            }


            .gh-stat-number {

                font-size: 26px;

            }


            .gh-stat-label {

                max-width: 80px;

            }

        }

        /* =========================================================
   FLOATING SOCIAL ICONS
========================================================= */

.gh-social-side {

    position: absolute;

    z-index: 20;

    top: 50%;

    left: 22px;

    transform: translateY(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 9px;

}


/* line above */

.gh-social-side::before {

    content: "";

    width: 1px;

    height: 42px;

    margin-bottom: 5px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(255, 255, 255, .5)
        );

}


/* line below */

.gh-social-side::after {

    content: "";

    width: 1px;

    height: 42px;

    margin-top: 5px;

    background:
        linear-gradient(
            to bottom,
            rgba(255, 255, 255, .5),
            transparent
        );

}


.gh-social-link {

    position: relative;

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #fff;

    background:
        rgba(10, 11, 9, .72);

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

    backdrop-filter: blur(8px);

    font-size: 15px;

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

}


.gh-social-link:hover {

    background: var(--gh-lime);

    color: var(--gh-black);

    border-color: var(--gh-lime);

    transform:
        translateX(5px)
        rotate(5deg);

}


/* =========================================================
   TOOLTIP
========================================================= */

.gh-social-tooltip {

    position: absolute;

    left: calc(100% + 12px);

    top: 50%;

    transform:
        translateY(-50%)
        translateX(-8px);

    min-width: max-content;

    padding: 7px 12px;

    border-radius: 50px;

    background: var(--gh-lime);

    color: var(--gh-black);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .2px;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition: .3s ease;

    box-shadow:
        0 10px 25px
        rgba(0, 0, 0, .20);

}


/* tooltip arrow */

.gh-social-tooltip::before {

    content: "";

    position: absolute;

    top: 50%;

    right: 100%;

    transform: translateY(-50%);

    border-top: 5px solid transparent;

    border-bottom: 5px solid transparent;

    border-right: 6px solid var(--gh-lime);

}


.gh-social-link:hover
.gh-social-tooltip {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(-50%)
        translateX(0);

}


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

@media (max-width: 1199px) {

    .gh-social-side {

        left: 15px;

    }

}


@media (max-width: 767px) {

    .gh-social-side {

        top: auto;

        left: 50%;

        bottom: 205px;

        transform: translateX(-50%);

        flex-direction: row;

    }


    .gh-social-side::before,
    .gh-social-side::after {

        width: 32px;

        height: 1px;

        margin: 0;

        background:
            linear-gradient(
                to right,
                transparent,
                rgba(255, 255, 255, .5)
            );

    }


    .gh-social-side::after {

        background:
            linear-gradient(
                to right,
                rgba(255, 255, 255, .5),
                transparent
            );

    }


    .gh-social-link {

        width: 39px;

        height: 39px;

    }


    /* Hide tooltip on small screens */

    .gh-social-tooltip {

        display: none;

    }

}


/* =========================================================
   GARAGE DOOR ISSUE / SERVICES SECTION
========================================================= */

.gh-issues-section {

    padding: 100px 0 110px;

    background: #ffffff;

}


/* =========================================================
   SECTION HEAD
========================================================= */

.gh-issues-head {

    margin-bottom: 48px;

}


.gh-issues-title {

    margin: 0;

    color: var(--gh-black);

    font-size: clamp(38px, 4vw, 62px);

    line-height: 1.03;

    letter-spacing: -2.5px;

    font-weight: 800;

}


.gh-issues-intro {

    max-width: 500px;

    margin: 0 0 6px auto;

    color: #63675e;

    font-size: 15px;

    line-height: 1.7;

}


/* =========================================================
   CARD STACK
========================================================= */

.gh-issue-stack {

    height: 100%;

    display: flex;

    flex-direction: column;

    gap: 22px;

}


.gh-issue-card {

    position: relative;

    flex: 1;

    min-height: 155px;

    padding: 24px 20px 20px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    overflow: hidden;

    color: var(--gh-black);

    background: #ffffff;

    border: 1px solid #dcded7;

    border-radius: 17px;

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

}


/* subtle lime accent */
.gh-issue-card::before {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 100%;

    height: 0;

    background:
        linear-gradient(
            180deg,
            rgba(221, 248, 0, 0),
            rgba(221, 248, 0, .15)
        );

    transition: height .35s ease;

}


.gh-issue-card:hover {

    color: var(--gh-black);

    border-color: rgba(77, 101, 0, .35);

    transform: translateY(-6px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, .08);

}


.gh-issue-card:hover::before {

    height: 100%;

}


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

.gh-issue-number {

    position: relative;

    z-index: 2;

    display: block;

    color: #d9d9d6;

    font-size: 29px;

    line-height: 1;

    font-weight: 800;

    transition: color .3s ease;

}


.gh-issue-card:hover
.gh-issue-number {

    color: var(--gh-green);

}


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

.gh-issue-card-bottom {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 15px;

}


.gh-issue-card h3 {

    margin: 0 0 11px;

    color: var(--gh-black);

    font-size: 20px;

    line-height: 1.2;

    letter-spacing: -.6px;

    font-weight: 800;

}


.gh-issue-link-text {

    display: inline-block;

    color: var(--gh-green);

    font-size: 11px;

    line-height: 1.4;

    font-weight: 700;

}


.gh-issue-arrow {

    flex-shrink: 0;

    width: 30px;

    height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: var(--gh-green);

    font-size: 11px;

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

}


.gh-issue-card:hover
.gh-issue-arrow {

    background: var(--gh-lime);

    color: var(--gh-black);

    transform:
        translateX(4px)
        rotate(-25deg);

}


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

.gh-issues-image {

    position: relative;

    height: 100%;

    min-height: 335px;

    overflow: hidden;

    border-radius: 17px;

    background: var(--gh-black);

}


.gh-issues-image img {

    width: 100%;

    height: 100%;

    min-height: 335px;

    object-fit: cover;

    display: block;

    transition: transform .7s ease;

}


.gh-issues-image:hover img {

    transform: scale(1.045);

}


.gh-issues-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(7, 8, 6, .55) 100%
        );

    pointer-events: none;

}


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

.gh-image-badge {

    position: absolute;

    left: 20px;

    bottom: 20px;

    display: flex;

    align-items: center;

    gap: 11px;

    max-width: calc(100% - 40px);

    padding: 9px 14px 9px 9px;

    color: #fff;

    background:
        rgba(8, 9, 7, .72);

    backdrop-filter: blur(9px);

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

    border-radius: 50px;

}


.gh-image-badge-icon {

    width: 37px;

    height: 37px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--gh-lime);

    color: var(--gh-black);

    font-size: 14px;

}


.gh-image-badge strong {

    display: block;

    margin-bottom: 2px;

    font-size: 12px;

    line-height: 1.2;

}


.gh-image-badge small {

    display: block;

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

    font-size: 9px;

}


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

@media (max-width: 991px) {

    .gh-issues-section {

        padding:
            80px 0;

    }


    .gh-issues-head {

        margin-bottom: 35px;

    }


    .gh-issues-intro {

        margin:
            20px 0 0;

    }


    .gh-issue-stack {

        display: grid;

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

        gap: 18px;

    }


    .gh-issue-card {

        min-height: 165px;

    }


    .gh-issues-image {

        min-height: 440px;

    }


    .gh-issues-image img {

        min-height: 440px;

    }

}


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

@media (max-width: 767px) {

    .gh-issues-section {

        padding:
            65px 0;

    }


    .gh-issues-title {

        font-size:
            clamp(36px, 11vw, 50px);

        letter-spacing: -1.8px;

    }


    .gh-issues-intro {

        font-size: 14px;

    }


    .gh-issue-stack {

        grid-template-columns: 1fr;

    }


    .gh-issue-card {

        min-height: 150px;

    }


    .gh-issues-image {

        min-height: 330px;

    }


    .gh-issues-image img {

        min-height: 330px;

    }

}



/* =========================================================
   MAIN SECTION
========================================================= */

.gh-info-section {
    padding: 100px 0;
    background: #ffffff;
}


/* =========================================================
   HEADER
========================================================= */

.gh-info-label {
    display: inline-block;

    margin-bottom: 15px;

    color: var(--gh-green);

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

    text-transform: uppercase;
    letter-spacing: 1.4px;
}


.gh-info-title {
    max-width: 760px;

    margin: 0;

    color: var(--gh-black);

    font-size: clamp(42px, 4vw, 64px);

    line-height: 1;

    font-weight: 800;

    letter-spacing: -2.5px;
}


/* =========================================================
   ROW ITEM
========================================================= */

.gh-info-item {
    padding: 60px 0;

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


.gh-info-item:last-child {
    border-bottom:
        1px solid rgba(0, 0, 0, .12);
}


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

.gh-info-number {
    color: #dededb;

    font-size: 64px;

    line-height: 1;

    font-weight: 900;

    letter-spacing: -3px;

    transition: .3s ease;
}


.gh-info-item:hover .gh-info-number {
    color: var(--gh-lime);

    transform: translateX(5px);
}


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

.gh-info-content {
    position: relative;

    padding-left: 28px;
}


/* lime line */

.gh-info-content::before {
    content: "";

    position: absolute;

    left: 0;
    top: 4px;

    width: 3px;
    height: 58px;

    border-radius: 20px;

    background: var(--gh-lime);
}


.gh-info-content h3 {
    margin: 0 0 22px;

    color: var(--gh-black);

    font-size: clamp(30px, 2.7vw, 44px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1.6px;
}


.gh-info-content p {
    margin: 0 0 17px;

    color: #676b62;

    font-size: 15px;

    line-height: 1.8;
}


.gh-info-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   LIST
========================================================= */

.gh-info-list {
    margin: 25px 0;

    padding: 0;

    list-style: none;
}


.gh-info-list li {
    position: relative;

    margin-bottom: 11px;

    padding-left: 34px;

    color: #34372f;

    font-size: 14px;

    line-height: 1.65;
}


.gh-info-list li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 1px;

    width: 22px;
    height: 22px;

    display: flex;

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

    border-radius: 50%;

    background: var(--gh-lime);

    color: var(--gh-black);

    font-size: 10px;

    font-weight: 900;
}


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

.gh-info-image {
    position: relative;

    width: 100%;

    height: 390px;

    overflow: hidden;

    border-radius: 22px;

    background: #111;
}


.gh-info-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .6s ease;
}


.gh-info-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, .20),
            transparent 45%
        );

    pointer-events: none;
}


.gh-info-item:hover .gh-info-image img {
    transform: scale(1.04);
}


/* lime decoration */

.gh-info-image::before {
    content: "";

    position: absolute;

    z-index: 2;

    top: 18px;
    right: 18px;

    width: 14px;
    height: 14px;

    border-radius: 50%;

    background: var(--gh-lime);

    box-shadow:
        0 0 0 7px rgba(221, 248, 0, .16);
}


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

@media (max-width: 991px) {

    .gh-info-section {
        padding: 75px 0;
    }


    .gh-info-item {
        padding: 45px 0;
    }


    .gh-info-number {
        font-size: 52px;
    }


    .gh-info-image {
        height: 360px;
    }


    .gh-info-content {
        padding-left: 22px;
    }

}


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

@media (max-width: 767px) {

    .gh-info-section {
        padding: 60px 0;
    }


    .gh-info-title {
        font-size: 39px;

        letter-spacing: -1.6px;
    }


    .gh-info-item {
        padding: 38px 0;
    }


    .gh-info-number {
        font-size: 45px;
    }


    .gh-info-content {
        padding-left: 18px;
    }


    .gh-info-content::before {
        width: 2px;

        height: 48px;
    }


    .gh-info-content h3 {
        font-size: 29px;

        letter-spacing: -1px;
    }


    .gh-info-content p {
        font-size: 14px;

        line-height: 1.75;
    }


    .gh-info-image {
        height: 290px;

        border-radius: 17px;
    }

}


/* =========================================================
   GARAGE DOOR GALLERY SECTION
========================================================= */

.gh-gallery-section {
    padding: 100px 0 110px;
    background: #f2f3ef;
}


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

.gh-gallery-head {
    margin-bottom: 52px;
}


.gh-gallery-title {
    margin: 0;

    color: var(--gh-black);

    font-size: clamp(42px, 4.4vw, 66px);

    line-height: 1.02;

    letter-spacing: -3px;

    font-weight: 800;
}


.gh-gallery-head-right {
    max-width: 480px;
    margin-left: auto;

    text-align: right;
}


.gh-gallery-head-right p {
    margin: 0 0 22px;

    color: #62675e;

    font-size: 15px;
    line-height: 1.7;
}


/* BUTTON */

.gh-gallery-btn {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 5px 6px 5px 18px;

    border-radius: 50px;

    background: var(--gh-black);

    color: #ffffff;

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

    transition: .3s ease;
}


.gh-gallery-btn span {
    width: 34px;
    height: 34px;

    display: flex;

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

    border-radius: 50%;

    background: #ffffff;

    color: var(--gh-black);

    transition: .3s ease;
}


.gh-gallery-btn:hover {
    background: var(--gh-lime);
    color: var(--gh-black);

    transform: translateY(-2px);
}


.gh-gallery-btn:hover span {
    background: var(--gh-black);
    color: #ffffff;

    transform: rotate(-35deg);
}


/* =========================================================
   CARD
========================================================= */

.gh-gallery-card {
    position: relative;

    width: 100%;
    height: 390px;

    display: block;

    overflow: hidden;

    border-radius: 14px;

    background: #080a07;

    color: #ffffff;
}


.gh-gallery-card img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform .7s ease,
        filter .5s ease;
}


/* DARK OVERLAY */

.gh-gallery-overlay {
    position: absolute;

    z-index: 1;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(5, 7, 5, .12) 0%,
            rgba(5, 7, 5, .18) 35%,
            rgba(5, 7, 5, .92) 100%
        );

    transition: .4s ease;
}


/* NUMBER */

.gh-gallery-number {
    position: absolute;

    z-index: 3;

    top: 28px;
    left: 28px;

    color: #ffffff;

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .2px;
}


/* CONTENT */

.gh-gallery-content {
    position: absolute;

    z-index: 3;

    left: 28px;
    right: 28px;
    bottom: 26px;

    transform: translateY(22px);

    transition: transform .4s ease;
}


.gh-gallery-content h3 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: 25px;

    line-height: 1.1;

    letter-spacing: -1px;

    font-weight: 800;
}


.gh-gallery-content p {
    margin: 0;

    max-width: 330px;

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

    font-size: 13px;

    line-height: 1.6;
}


/* VIEW PROJECT */

.gh-gallery-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 15px;

    color: var(--gh-lime);

    font-size: 12px;

    font-weight: 800;

    opacity: 0;

    transform: translateY(12px);

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


.gh-gallery-link i {
    font-size: 10px;

    transition: transform .3s ease;
}


/* =========================================================
   HOVER
========================================================= */

.gh-gallery-card:hover {
    color: #ffffff;
}


.gh-gallery-card:hover img {
    transform: scale(1.07);
}


.gh-gallery-card:hover .gh-gallery-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(5, 7, 5, .10) 0%,
            rgba(5, 7, 5, .24) 30%,
            rgba(5, 7, 5, .96) 100%
        );
}


.gh-gallery-card:hover .gh-gallery-content {
    transform: translateY(0);
}


.gh-gallery-card:hover .gh-gallery-link {
    opacity: 1;

    transform: translateY(0);
}


.gh-gallery-card:hover .gh-gallery-link i {
    transform: translateX(4px);
}


/* lime top accent */

.gh-gallery-card::before {
    content: "";

    position: absolute;

    z-index: 4;

    top: 0;
    left: 0;

    width: 0;
    height: 4px;

    background: var(--gh-lime);

    transition: width .45s ease;
}


.gh-gallery-card:hover::before {
    width: 100%;
}


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

@media (max-width: 991px) {

    .gh-gallery-section {
        padding: 80px 0;
    }


    .gh-gallery-head-right {
        margin:
            25px 0 0;

        text-align: left;
    }


    .gh-gallery-card {
        height: 380px;
    }

}


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

@media (max-width: 767px) {

    .gh-gallery-section {
        padding: 65px 0;
    }


    .gh-gallery-head {
        margin-bottom: 35px;
    }


    .gh-gallery-title {
        font-size: 40px;

        letter-spacing: -1.8px;
    }


    .gh-gallery-head-right p {
        font-size: 14px;
    }


    .gh-gallery-card {
        height: 360px;

        border-radius: 12px;
    }


    .gh-gallery-number {
        top: 22px;
        left: 22px;
    }


    .gh-gallery-content {
        left: 22px;
        right: 22px;
        bottom: 22px;

        transform: none;
    }


    .gh-gallery-content h3 {
        font-size: 23px;
    }


    .gh-gallery-link {
        opacity: 1;

        transform: none;
    }

}


/* =========================================================
   TEXT ONLY SERVICE SECTION
========================================================= */

.gh-text-service-section {
    padding: 105px 0;
    background: #f4f5f1;
}


/* WRAPPER */

.gh-text-service-wrap {
    position: relative;

    display: grid;
    grid-template-columns: 130px 1fr;

    gap: 45px;

    padding: 55px;

    border-radius: 24px;

    background: #ffffff;

    border:
        1px solid rgba(0, 0, 0, .08);
}


/* NUMBER */

.gh-text-service-number {
    color: #dedfd9;

    font-size: 82px;
    line-height: .9;

    font-weight: 900;

    letter-spacing: -5px;

    transition: .3s ease;
}


.gh-text-service-wrap:hover
.gh-text-service-number {
    color: var(--gh-lime);
}


/* CONTENT */

.gh-text-service-content {
    position: relative;

    padding-left: 32px;
}


.gh-text-service-content::before {
    content: "";

    position: absolute;

    left: 0;
    top: 4px;

    width: 3px;
    height: 65px;

    border-radius: 10px;

    background: var(--gh-lime);
}


.gh-text-service-content h2 {
    max-width: 820px;

    margin: 0 0 26px;

    color: var(--gh-black);

    font-size: clamp(36px, 4vw, 58px);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -2.2px;
}


.gh-text-service-content p {
    max-width: 900px;

    margin: 0 0 18px;

    color: #666a61;

    font-size: 15px;

    line-height: 1.85;
}


.gh-text-service-content p:last-child {
    margin-bottom: 0;
}


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

@media (max-width: 991px) {

    .gh-text-service-section {
        padding: 80px 0;
    }


    .gh-text-service-wrap {
        grid-template-columns: 1fr;

        gap: 20px;

        padding: 40px;
    }


    .gh-text-service-number {
        font-size: 58px;
    }

}


@media (max-width: 767px) {

    .gh-text-service-section {
        padding: 60px 0;
    }


    .gh-text-service-wrap {
        padding: 28px 22px;

        border-radius: 18px;
    }


    .gh-text-service-number {
        font-size: 47px;
    }


    .gh-text-service-content {
        padding-left: 20px;
    }


    .gh-text-service-content::before {
        width: 2px;
        height: 50px;
    }


    .gh-text-service-content h2 {
        font-size: 32px;

        letter-spacing: -1.2px;
    }


    .gh-text-service-content p {
        font-size: 14px;

        line-height: 1.75;
    }

}


/* =========================================================
   HUMBLE LOCATION MARQUEE
========================================================= */

.gh-location-marquee {
    position: relative;

    padding: 85px 0 0;

    overflow: hidden;

    background: var(--gh-black);

    color: #fff;
}


/* =========================================================
   HEADER
========================================================= */

.gh-location-top {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 50px;
}


.gh-location-label {
    display: inline-block;

    margin-bottom: 13px;

    color: var(--gh-lime);

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

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.gh-location-top h2 {
    max-width: 720px;

    margin: 0;

    color: #fff;

    font-size: clamp(42px, 5vw, 70px);

    line-height: .98;

    letter-spacing: -3px;

    font-weight: 800;
}


.gh-location-top h2 span {
    color: transparent;

    -webkit-text-stroke:
        1.3px rgba(255, 255, 255, .8);
}


.gh-location-pin {
    width: 68px;
    height: 68px;

    flex-shrink: 0;

    display: flex;

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

    border-radius: 50%;

    background: var(--gh-lime);

    color: var(--gh-black);

    font-size: 23px;

    box-shadow:
        0 0 0 10px rgba(221, 248, 0, .08);
}


/* =========================================================
   MARQUEE
========================================================= */

.gh-marquee-row {
    position: relative;

    width: 100%;

    overflow: hidden;

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

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


/* fading edges */

.gh-marquee-row::before,
.gh-marquee-row::after {
    content: "";

    position: absolute;

    z-index: 5;

    top: 0;
    bottom: 0;

    width: 100px;

    pointer-events: none;
}


.gh-marquee-row::before {
    left: 0;

    background:
        linear-gradient(
            to right,
            var(--gh-black),
            transparent
        );
}


.gh-marquee-row::after {
    right: 0;

    background:
        linear-gradient(
            to left,
            var(--gh-black),
            transparent
        );
}


/* TRACK */

.gh-marquee-track {
    width: max-content;

    display: flex;

    align-items: center;

    animation:
        ghLocationMove 30s linear infinite;
}


.gh-marquee-track-reverse {
    animation:
        ghLocationReverse 26s linear infinite;
}


/* pause on hover */

.gh-marquee-row:hover
.gh-marquee-track {
    animation-play-state: paused;
}


/* =========================================================
   LOCATION ITEM
========================================================= */

.gh-marquee-item {
    min-height: 105px;

    display: flex;

    align-items: center;

    gap: 17px;

    padding: 0 45px;

    color: #fff;

    font-size: 30px;

    line-height: 1;

    font-weight: 700;

    letter-spacing: -1px;

    white-space: nowrap;

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

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


.gh-marquee-item i {
    color: var(--gh-lime);

    font-size: 17px;
}


.gh-marquee-item:hover {
    color: var(--gh-lime);

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


/* =========================================================
   ZIP ROW
========================================================= */

.gh-marquee-zip {
    background: var(--gh-lime);

    border: 0;
}


.gh-marquee-zip::before {
    background:
        linear-gradient(
            to right,
            var(--gh-lime),
            transparent
        );
}


.gh-marquee-zip::after {
    background:
        linear-gradient(
            to left,
            var(--gh-lime),
            transparent
        );
}


.gh-zip-item {
    min-height: 70px;

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 0 40px;

    color: var(--gh-black);

    font-size: 23px;

    font-weight: 800;

    white-space: nowrap;

    border-right:
        1px solid rgba(0, 0, 0, .15);
}


.gh-zip-item span {
    padding: 5px 8px;

    border-radius: 50px;

    background: var(--gh-black);

    color: #fff;

    font-size: 8px;

    letter-spacing: 1px;
}


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

@keyframes ghLocationMove {

    from {
        transform: translateX(0);
    }

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

}


@keyframes ghLocationReverse {

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

    to {
        transform: translateX(0);
    }

}


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

@media (max-width: 991px) {

    .gh-location-marquee {
        padding-top: 70px;
    }


    .gh-location-top {
        margin-bottom: 40px;
    }


    .gh-marquee-item {
        min-height: 90px;

        padding: 0 35px;

        font-size: 25px;
    }

}


@media (max-width: 767px) {

    .gh-location-marquee {
        padding-top: 60px;
    }


    .gh-location-top {
        align-items: flex-start;

        margin-bottom: 35px;
    }


    .gh-location-top h2 {
        font-size: 41px;

        letter-spacing: -2px;
    }


    .gh-location-pin {
        width: 52px;
        height: 52px;

        font-size: 18px;
    }


    .gh-marquee-row::before,
    .gh-marquee-row::after {
        width: 45px;
    }


    .gh-marquee-item {
        min-height: 80px;

        gap: 12px;

        padding: 0 27px;

        font-size: 21px;
    }


    .gh-zip-item {
        min-height: 62px;

        padding: 0 25px;

        font-size: 19px;
    }

}


/* accessibility */

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

    .gh-marquee-track {
        animation-play-state: paused;
    }

}



/* =========================================================
   FAQ SECTION
========================================================= */

.gh-faq-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background: #f3f4f0;
}


/* decorative glow */

.gh-faq-section::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    left: -250px;
    bottom: -250px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(221, 248, 0, .18),
            transparent 68%
        );

    pointer-events: none;
}


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

.gh-faq-left {
    position: sticky;
    top: 120px;

    max-width: 470px;
}


.gh-faq-label {
    display: inline-flex;
    align-items: center;

    margin-bottom: 18px;

    color: var(--gh-green);

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

    letter-spacing: 1.5px;
    text-transform: uppercase;
}


.gh-faq-label::before {
    content: "";

    width: 28px;
    height: 2px;

    margin-right: 10px;

    background: var(--gh-lime);
}


.gh-faq-title {
    margin: 0;

    color: var(--gh-black);

    font-size: clamp(45px, 4.8vw, 70px);

    line-height: .97;

    letter-spacing: -3.5px;

    font-weight: 800;
}


.gh-faq-title span {
    display: block;

    color: var(--gh-green);
}


.gh-faq-intro {
    max-width: 430px;

    margin: 28px 0 32px;

    color: #666a61;

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


/* =========================================================
   CALL BOX
========================================================= */

.gh-faq-help {
    display: inline-flex;

    align-items: center;

    gap: 13px;

    padding: 7px 18px 7px 7px;

    border-radius: 50px;

    background: var(--gh-black);

    color: #ffffff;
}


.gh-faq-help-icon {
    width: 44px;
    height: 44px;

    display: flex;

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

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--gh-lime);

    color: var(--gh-black);

    font-size: 14px;
}


.gh-faq-help small {
    display: block;

    margin-bottom: 2px;

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

    font-size: 8px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .8px;
}


.gh-faq-help a {
    display: block;

    color: #ffffff;

    font-size: 14px;

    font-weight: 800;
}


/* =========================================================
   ACCORDION
========================================================= */

.gh-faq-accordion {
    display: flex;

    flex-direction: column;

    gap: 13px;
}


.gh-faq-item {
    overflow: hidden;

    border:
        1px solid rgba(8, 10, 7, .11) !important;

    border-radius: 17px !important;

    background: #ffffff;

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


.gh-faq-item:hover {
    border-color:
        rgba(77, 101, 0, .3) !important;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, .055);
}


/* =========================================================
   QUESTION
========================================================= */

.gh-faq-button {
    position: relative;

    min-height: 100px;

    display: flex;

    align-items: center;

    gap: 22px;

    padding: 24px 70px 24px 25px;

    border: 0 !important;

    background: #ffffff !important;

    box-shadow: none !important;

    color: var(--gh-black) !important;
}


.gh-faq-number {
    flex-shrink: 0;

    color: #d4d6d0;

    font-size: 25px;

    line-height: 1;

    font-weight: 900;

    transition: color .3s ease;
}


.gh-faq-question {
    max-width: 570px;

    color: var(--gh-black);

    font-size: 19px;

    line-height: 1.35;

    letter-spacing: -.45px;

    font-weight: 800;
}


/* =========================================================
   CUSTOM PLUS
========================================================= */

.gh-faq-button::after {
    position: absolute;

    right: 22px;

    width: 38px;
    height: 38px;

    margin: 0;

    display: flex;

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

    border-radius: 50%;

    background-image: none !important;

    background: #f1f2ed;

    color: var(--gh-black);

    content: "+";

    font-size: 23px;

    font-weight: 400;

    line-height: 38px;

    text-align: center;

    transform: none !important;

    transition: .3s ease;
}


/* OPEN FAQ */

.gh-faq-button:not(.collapsed)::after {
    content: "−";

    background: var(--gh-lime);

    color: var(--gh-black);

    transform: rotate(180deg) !important;
}


.gh-faq-button:not(.collapsed)
.gh-faq-number {
    color: var(--gh-green);
}


/* =========================================================
   ANSWER
========================================================= */

.gh-faq-answer {
    position: relative;

    padding:
        0 70px
        28px 72px;
}


.gh-faq-answer::before {
    content: "";

    position: absolute;

    left: 35px;
    top: 4px;
    bottom: 30px;

    width: 2px;

    border-radius: 10px;

    background: var(--gh-lime);
}


.gh-faq-answer p {
    max-width: 610px;

    margin: 0;

    color: #686c63;

    font-size: 14px;

    line-height: 1.8;
}


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

@media (max-width: 991px) {

    .gh-faq-section {
        padding: 80px 0;
    }


    .gh-faq-left {
        position: static;

        max-width: 650px;

        margin-bottom: 15px;
    }


    .gh-faq-title {
        max-width: 600px;
    }

}


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

@media (max-width: 767px) {

    .gh-faq-section {
        padding: 65px 0;
    }


    .gh-faq-title {
        font-size: 43px;

        letter-spacing: -2px;
    }


    .gh-faq-intro {
        margin-top: 22px;

        font-size: 14px;
    }


    .gh-faq-button {
        min-height: 90px;

        gap: 13px;

        padding:
            20px 60px
            20px 18px;
    }


    .gh-faq-number {
        font-size: 20px;
    }


    .gh-faq-question {
        font-size: 16px;
    }


    .gh-faq-button::after {
        right: 15px;

        width: 34px;
        height: 34px;

        line-height: 34px;
    }


    .gh-faq-answer {
        padding:
            0 20px
            23px 45px;
    }


    .gh-faq-answer::before {
        left: 22px;
    }


    .gh-faq-answer p {
        font-size: 13px;

        line-height: 1.75;
    }

}

/* =========================================================
   WHY CHOOSE US + COUPON
========================================================= */

.gh-why-coupon {
    padding: 105px 0;
    background: #ffffff;
}


/* =========================================================
   WHY CHOOSE BOX
========================================================= */

.gh-why-box {
    height: 100%;
    padding: 48px;

    border-radius: 26px;

    background: #f3f4ef;

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


.gh-section-label {
    display: inline-block;

    margin-bottom: 15px;

    color: var(--gh-green);

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

    letter-spacing: 1.4px;
    text-transform: uppercase;
}


.gh-why-title {
    max-width: 690px;

    margin: 0;

    color: var(--gh-black);

    font-size: clamp(39px, 4vw, 60px);

    line-height: 1.02;

    font-weight: 800;

    letter-spacing: -2.5px;
}


.gh-why-intro {
    max-width: 680px;

    margin: 24px 0 0;

    color: #676b62;

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


/* =========================================================
   WHY ITEM
========================================================= */

.gh-why-item {
    height: 100%;

    display: flex;

    gap: 15px;

    padding: 18px;

    border-radius: 15px;

    background: #ffffff;

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

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


.gh-why-item:hover {
    transform: translateY(-4px);

    border-color:
        rgba(77, 101, 0, .25);

    box-shadow:
        0 15px 32px rgba(0, 0, 0, .06);
}


.gh-why-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

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

    border-radius: 50%;

    background: var(--gh-lime);

    color: var(--gh-black);

    font-size: 14px;
}


.gh-why-item h3 {
    margin: 2px 0 7px;

    color: var(--gh-black);

    font-size: 17px;
    font-weight: 800;
}


.gh-why-item p {
    margin: 0;

    color: #6a6e65;

    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
   BOTTOM TAGS
========================================================= */

.gh-why-bottom {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 27px;
}


.gh-why-bottom span {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 8px 13px;

    border-radius: 50px;

    background: var(--gh-black);

    color: #ffffff;

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


.gh-why-bottom i {
    color: var(--gh-lime);
}


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

.gh-coupon {
    position: relative;

    height: 100%;
    min-height: 570px;

    padding: 42px;

    overflow: hidden;

    display: flex;
    flex-direction: column;

    border-radius: 26px;

    background:
        linear-gradient(
            145deg,
            #11130e,
            #050604
        );

    color: #ffffff;
}


.gh-coupon::before {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    top: -150px;
    right: -130px;

    border-radius: 50%;

    background:
        rgba(221, 248, 0, .12);
}


.gh-coupon::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    left: -100px;
    bottom: -80px;

    border-radius: 50%;

    background:
        rgba(221, 248, 0, .08);
}


/* TOP */

.gh-coupon-top {
    position: relative;
    z-index: 2;

    display: inline-flex;

    align-self: flex-start;

    padding: 8px 13px;

    border-radius: 50px;

    background: var(--gh-lime);

    color: var(--gh-black);

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

    letter-spacing: .7px;

    text-transform: uppercase;
}


/* MAIN */

.gh-coupon-main {
    position: relative;
    z-index: 2;

    margin-top: 55px;
}


.gh-coupon-save {
    display: block;

    margin-bottom: -3px;

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

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

    letter-spacing: 2px;
}


.gh-coupon-price {
    display: flex;

    align-items: flex-start;

    margin-bottom: 18px;
}


.gh-dollar {
    margin-top: 15px;
    margin-right: 3px;

    color: var(--gh-lime);

    font-size: 31px;
    font-weight: 800;
}


.gh-coupon-price strong {
    color: #ffffff;

    font-size: clamp(88px, 8vw, 125px);

    line-height: .9;

    letter-spacing: -8px;

    font-weight: 900;
}


.gh-off {
    align-self: flex-end;

    margin:
        0 0
        12px 13px;

    color: var(--gh-lime);

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


.gh-coupon-main h3 {
    max-width: 360px;

    margin: 0 0 15px;

    color: #ffffff;

    font-size: 29px;
    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -1px;
}


.gh-coupon-main p {
    max-width: 360px;

    margin: 0;

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

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


/* =========================================================
   DASHED DIVIDER
========================================================= */

.gh-coupon-divider {
    position: relative;

    z-index: 2;

    margin: auto 0 25px;

    border-top:
        1px dashed rgba(255, 255, 255, .25);
}


.gh-coupon-divider::before,
.gh-coupon-divider::after {
    content: "";

    position: absolute;

    top: 50%;

    width: 28px;
    height: 28px;

    border-radius: 50%;

    background: #ffffff;

    transform: translateY(-50%);
}


.gh-coupon-divider::before {
    left: -57px;
}


.gh-coupon-divider::after {
    right: -57px;
}


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

.gh-coupon-bottom {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;
}


.gh-coupon-data small {
    display: block;

    margin-bottom: 3px;

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

    font-size: 8px;

    letter-spacing: 1px;

    font-weight: 700;
}


.gh-coupon-data a {
    color: #ffffff;

    font-size: 16px;
    font-weight: 800;
}


/* BUTTON */

.gh-coupon-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 5px 6px 5px 15px;

    border-radius: 50px;

    background: var(--gh-lime);

    color: var(--gh-black);

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

    transition: .3s ease;
}


.gh-coupon-btn span {
    width: 32px;
    height: 32px;

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

    border-radius: 50%;

    background: #ffffff;

    transition: .3s ease;
}


.gh-coupon-btn:hover {
    background: #ffffff;
    color: var(--gh-black);

    transform: translateY(-2px);
}


.gh-coupon-btn:hover span {
    background: var(--gh-lime);

    transform: rotate(-35deg);
}


.gh-coupon-note {
    position: relative;
    z-index: 2;

    display: block;

    margin-top: 17px;

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

    font-size: 8px;
}


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

@media (max-width: 991px) {

    .gh-why-coupon {
        padding: 80px 0;
    }


    .gh-why-box,
    .gh-coupon {
        padding: 38px;
    }


    .gh-coupon {
        min-height: 520px;
    }

}


@media (max-width: 767px) {

    .gh-why-coupon {
        padding: 65px 0;
    }


    .gh-why-box,
    .gh-coupon {
        padding: 28px 22px;

        border-radius: 19px;
    }


    .gh-why-title {
        font-size: 38px;

        letter-spacing: -1.6px;
    }


    .gh-coupon {
        min-height: 500px;
    }


    .gh-coupon-price strong {
        font-size: 92px;
    }


    .gh-coupon-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

}


/* =========================================================
   CONTACT SECTION
========================================================= */

.gh-contact-section {
    position: relative;

    padding: 110px 0;

    overflow: hidden;

    background: #f3f4ef;
}


/* =========================================================
   MAIN BOX
========================================================= */

.gh-contact-box {
    position: relative;

    padding: 55px;

    overflow: hidden;

    border-radius: 28px;

    background: var(--gh-black);

    color: #ffffff;
}


.gh-contact-box::before {
    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    top: -190px;
    right: -150px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(221, 248, 0, .16),
            transparent 70%
        );

    pointer-events: none;
}


/* =========================================================
   HEADER
========================================================= */

.gh-contact-head {
    position: relative;
    z-index: 2;

    max-width: 720px;

    margin-bottom: 42px;
}


.gh-contact-label {
    display: inline-block;

    margin-bottom: 15px;

    color: var(--gh-lime);

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

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.gh-contact-head h2 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: clamp(42px, 4.5vw, 66px);

    line-height: 1;

    letter-spacing: -3px;

    font-weight: 800;
}


.gh-contact-head p {
    max-width: 620px;

    margin: 0;

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

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   FORM
========================================================= */

.gh-contact-form {
    position: relative;
    z-index: 2;
}


.gh-form-group {
    display: flex;

    flex-direction: column;

    gap: 8px;
}


.gh-form-group label {
    color: rgba(255, 255, 255, .7);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .5px;
}


.gh-form-group input,
.gh-form-group select,
.gh-form-group textarea {
    width: 100%;

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

    outline: none;

    border-radius: 13px;

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

    color: #ffffff;

    font-size: 14px;

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


.gh-form-group input,
.gh-form-group select {
    height: 54px;

    padding: 0 17px;
}


.gh-form-group textarea {
    min-height: 135px;

    padding: 16px 17px;

    resize: vertical;
}


.gh-form-group input::placeholder,
.gh-form-group textarea::placeholder {
    color: rgba(255, 255, 255, .35);
}


.gh-form-group select {
    cursor: pointer;
}


.gh-form-group select option {
    color: #111;

    background: #ffffff;
}


.gh-form-group input:focus,
.gh-form-group select:focus,
.gh-form-group textarea:focus {
    border-color: var(--gh-lime);

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

    box-shadow:
        0 0 0 3px rgba(221, 248, 0, .08);
}


/* =========================================================
   BUTTON
========================================================= */

.gh-contact-submit {
    display: inline-flex;

    align-items: center;

    gap: 14px;

    margin-top: 8px;

    padding: 6px 7px 6px 20px;

    border: 0;

    border-radius: 50px;

    background: var(--gh-lime);

    color: var(--gh-black);

    font-size: 13px;

    font-weight: 800;

    transition: .3s ease;
}


.gh-contact-submit span {
    width: 38px;
    height: 38px;

    display: flex;

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

    border-radius: 50%;

    background: #ffffff;

    transition: .3s ease;
}


.gh-contact-submit:hover {
    background: #ffffff;

    transform: translateY(-2px);
}


.gh-contact-submit:hover span {
    background: var(--gh-lime);

    transform: rotate(-35deg);
}


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

@media (max-width: 991px) {

    .gh-contact-section {
        padding: 80px 0;
    }


    .gh-contact-box {
        padding: 42px;
    }

}


@media (max-width: 767px) {

    .gh-contact-section {
        padding: 65px 0;
    }


    .gh-contact-box {
        padding: 30px 22px;

        border-radius: 20px;
    }


    .gh-contact-head {
        margin-bottom: 32px;
    }


    .gh-contact-head h2 {
        font-size: 40px;

        letter-spacing: -1.8px;
    }


    .gh-contact-head p {
        font-size: 14px;
    }


    .gh-contact-submit {
        width: 100%;

        justify-content: space-between;
    }

}



/* =========================================================
   SIMPLE FOOTER
========================================================= */

.gh-footer {
    padding: 70px 0 25px;
    background: var(--gh-black);
    color: #ffffff;
}


/* =========================================================
   MAIN GRID
========================================================= */

.gh-footer-main {
    display: grid;

    grid-template-columns:
        1.2fr
        1.15fr
        1.25fr
        .9fr;

    gap: 45px;

    padding-bottom: 45px;
}


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

.gh-footer-brand h3 {
    margin: 0 0 14px;

    color: #ffffff;

    font-size: 26px;
    line-height: 1.1;

    font-weight: 800;
    letter-spacing: -1px;
}


.gh-footer-brand p {
    max-width: 280px;

    margin: 0;

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

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


/* =========================================================
   FOOTER TITLES
========================================================= */

.gh-footer-links h4,
.gh-footer-info h4 {
    position: relative;

    margin: 0 0 20px;
    padding-bottom: 11px;

    color: #ffffff;

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

    letter-spacing: -.2px;
}


.gh-footer-links h4::after,
.gh-footer-info h4::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 28px;
    height: 2px;

    border-radius: 10px;

    background: var(--gh-lime);
}


/* =========================================================
   QUICK LINKS
========================================================= */

.gh-footer-links ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


.gh-footer-links li {
    margin-bottom: 8px;
}


.gh-footer-links a {
    position: relative;

    display: inline-block;

    padding-left: 13px;

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

    font-size: 12px;
    line-height: 1.5;

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


.gh-footer-links a::before {
    content: "";

    position: absolute;

    left: 0;
    top: 8px;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: var(--gh-lime);
}


.gh-footer-links a:hover {
    color: var(--gh-lime);

    transform: translateX(4px);
}


/* =========================================================
   CONTACT + HOURS
========================================================= */

.gh-footer-info {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 11px;
}


.gh-footer-info p {
    margin: 0;

    display: flex;

    align-items: flex-start;

    gap: 9px;

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

    font-size: 12px;
    line-height: 1.6;
}


.gh-footer-info i {
    width: 16px;

    margin-top: 4px;

    flex-shrink: 0;

    color: var(--gh-lime);

    font-size: 11px;
}


.gh-footer-info a {
    color: rgba(255, 255, 255, .68);

    word-break: break-word;

    transition: color .3s ease;
}


.gh-footer-info a:hover {
    color: var(--gh-lime);
}


/* =========================================================
   COPYRIGHT
========================================================= */

.gh-footer-bottom {
    padding-top: 22px;

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


.gh-footer-bottom p {
    margin: 0;

    text-align: center;

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

    font-size: 11px;
    line-height: 1.7;
}


.gh-footer-bottom a {
    color: var(--gh-lime);

    transition: opacity .3s ease;
}


.gh-footer-bottom a:hover {
    opacity: .75;
}


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

@media (max-width: 991px) {

    .gh-footer-main {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 40px 30px;
    }

}


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

@media (max-width: 767px) {

    .gh-footer {
        padding:
            55px 0 22px;
    }


    .gh-footer-main {
        grid-template-columns: 1fr;

        gap: 32px;

        padding-bottom: 35px;
    }


    .gh-footer-brand p {
        max-width: 100%;
    }


    .gh-footer-links h4,
    .gh-footer-info h4 {
        margin-bottom: 16px;
    }


    .gh-footer-bottom p {
        font-size: 10px;
    }

}


/* =========================================================
   BRANDS SECTION
========================================================= */

.gh-brands-section {
    padding: 85px 0;
    background: #ffffff;
}


/* HEADER */

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


.gh-brands-label {
    display: inline-block;
    margin-bottom: 12px;

    color: var(--gh-green);

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

    letter-spacing: 1.4px;
    text-transform: uppercase;
}


.gh-brands-head h2 {
    margin: 0 0 16px;

    color: var(--gh-black);

    font-size: clamp(38px, 4vw, 56px);

    line-height: 1.05;

    font-weight: 800;
    letter-spacing: -2px;
}


.gh-brands-head p {
    max-width: 620px;
    margin: 0 auto;

    color: #676b62;

    font-size: 14px;
    line-height: 1.75;
}


/* BRAND CARD */

.gh-brand-card {
    height: 125px;

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

    padding: 22px;

    border-radius: 16px;

    background: #f5f6f2;

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

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


.gh-brand-card img {
    display: block;

    max-width: 100%;
    max-height: 62px;

    width: auto;
    height: auto;

    object-fit: contain;

    filter: grayscale(100%);

    opacity: .72;

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


/* HOVER */

.gh-brand-card:hover {
    background: #ffffff;

    border-color:
        rgba(77, 101, 0, .25);

    box-shadow:
        0 14px 30px rgba(0, 0, 0, .06);

    transform: translateY(-4px);
}


.gh-brand-card:hover img {
    filter: grayscale(0);

    opacity: 1;

    transform: scale(1.05);
}


/* LIME ACCENT */

.gh-brand-card {
    position: relative;
    overflow: hidden;
}


.gh-brand-card::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 0;
    height: 3px;

    transform: translateX(-50%);

    background: var(--gh-lime);

    transition: width .3s ease;
}


.gh-brand-card:hover::after {
    width: 55%;
}


/* RESPONSIVE */

@media (max-width: 767px) {

    .gh-brands-section {
        padding: 65px 0;
    }


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


    .gh-brands-head h2 {
        font-size: 38px;

        letter-spacing: -1.5px;
    }


    .gh-brand-card {
        height: 105px;
        padding: 18px;
    }


    .gh-brand-card img {
        max-height: 50px;
    }

}
   /* 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: #a1b20f;
}

/* 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}
}






