/* =Import Required styles
========================================================================================*/

:root {
    /* Site global colours */
    --primary: #94a348;
    /* Primary color */
    --secondary: #65721f;

    --body-color: #0a1823;

    /* Body text color */
    --black: #000000;
    /* Black color */
    --white: #ffffff;

    --error-color: #ff0000;

    --text-color: #54595f;
    --heading-color: #54595f;
    --placeholder-color: #666666;

    /* Heading and body font sizes */
    --body-font: 17px;
    --body-lineheight: 1.456;

    --h1: 44px;
    --h2: 36px;
    --h3: 26px;
    --h4: 22px;
    --h5: 19px;
    --h6: 17px;

    /* container (wrap) */
    --wrap: 1140px;
    --wrapspace: 20px;

    /* Site global fonts */
    --font-primary: "Raleway", sans-serif;
    /* For heading font */
    --font-secondary: "Open Sans", sans-serif;
    /* For body font */
}

html {
    scroll-behavior: smooth;
}

/* =Reset CSS

/* =Box Sizing 
========================================================================================*/

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
}

*:before,
*:after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
}


/* =Deafult Tag & General Classes
========================================================================================*/

html,
body {
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -ms-font-smoothing: antialiased;
    font-smoothing: antialiased;
    /* Fix for webkit rendering */
    -webkit-text-size-adjust: 100%;
}

img {
    vertical-align: top;
    border: 0;
}

a,
button {
    transition: all 350ms ease-in-out;
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
    a:active {
        background-color: transparent;
    }
}

strong {
    font-weight: bold;
}

body {
    font: var(--body-font)/var(--body-lineheight) var(--font-secondary) !important;
    color: var(--text-color);
    margin: 0 !important;
}

p {
    margin: 0 0 20px 0;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
    font-family: var(--font-primary);
    line-height: 1.2;
    margin: 0 0 20px;
    font-weight: 400;
    color: var(--heading-color);
}

h1 {
    font-size: var(--h1);
}

h2 {
    font-size: var(--h2);
}


h3 {
    font-size: var(--h3);
}

h4 {
    font-size: var(--h4);
}

h5 {
    font-size: var(--h5);
}

h6 {
    font-size: var(--h6);
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

ul li {
    line-height: 24px;
}

.wrap:after {
    content: "";
    display: table;
    clear: both;
}

:focus {
    outline: none !important;
}

.wrap {
    max-width: calc(var(--wrap) + (var(--wrapspace) * 2));
    width: 100%;
    margin: 0 auto;
    padding-left: var(--wrapspace);
    padding-right: var(--wrapspace);
}

#wpadminbar input[type="submit"] {
    border: 1px solid var(--secondary) !important;
    font-size: 12px !important;
    padding: 4px 14px 4px 14px !important;
}

#wpadminbar>#wp-toolbar>#wp-admin-bar-top-secondary>#wp-admin-bar-search #adminbarsearch input.adminbar-input {
    display: inline-block;
    float: none;
    position: relative;
    z-index: 30;
    font-size: 13px !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
    line-height: 1.84615384 !important;
    text-indent: 0;
    height: 24px !important;
    width: 24px !important;
    max-width: none;
    padding: 0 3px 0 24px !important;
    margin: 0;
    color: #c3c4c7;
    background-color: rgba(255, 255, 255, 0) !important;
    border: none !important;
    outline: 0;
    cursor: pointer;
    box-shadow: none !important;
    box-sizing: border-box;
    transition-duration: .4s;
    transition-property: width, background;
    transition-timing-function: ease;
}


/* =Common button CSS
========================================================================================*/

.button {
    background-color: var(--primary);
    border: 2px solid var(--primary);
    text-transform: uppercase;
    font-size: 15px;
    color: #fff;
    line-height: 1.2;
    padding: 12px 25px 15px;
    text-align: center;
    transition: all 350ms ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    text-decoration: none;
}

.button:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    text-decoration: none;
    color: var(--secondary);
}

.button.btn-small {
    font-size: 12px;
    padding: 8px 22px;
}

.button.btn-white {
    border-color: var(--white);
}

.button.btn-white:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.section-row {
    padding: 50px 0;
}

.section-title {
    margin-bottom: 35px;
}

.section-title h2:last-child {
    margin-bottom: 0;
}

.section-title.center {
    display: table;
    margin: 0 auto 35px !important;
    text-align: center;
}

.center {
    text-align: center;
}

.section-title p:last-child {
    margin-bottom: 0;
}

figure {
    margin: 0;
}


button,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
textarea,
select,
input[type="submit"],
input[type="button"] {
    font-size: 100%;
    margin: 0;
    vertical-align: baseline;
    vertical-align: middle;
}

button,
input[type="text"],
input[type="number"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
textarea,
input[type="submit"],
input[type="button"] {
    -webkit-appearance: none;
    border-radius: 0 !important;
}

button,
input {
    line-height: normal;
}

input[type="text"],
input[type="number"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
textarea,
select {
    padding: 10px 20px !important;
    height: 48px !important;
    font-size: 16px !important;
    line-height: normal !important;
    font-family: var(--font-secondary) !important;
    font-weight: 400 !important;
    border: 1px solid #D4D6D8 !important;
    transition: all 200ms ease-in-out !important;
    width: 100%;
    box-shadow: none !important;
    border-radius: 0 !important;
}

input[type="text"]::placeholder,
input[type="password"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
input[type="number"]::placeholder,
input[type="search"]::placeholder,
input[type="url"]::placeholder,
textarea::placeholder,
select::placeholder {
    color: var(--placeholder-color) !important;
    border-color: var(--primary) !important;
    font-weight: 400;
}

input[type="text"].error,
input[type="password"].error,
input[type="email"].error,
input[type="number"].error,
input[type="tel"].error,
input[type="search"].error,
input[type="url"].error,
textarea.error,
select.error {
    border-color: var(--error-color) !important;
    background: var(--white) !important;
}


input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus {
    color: var(--primary) !important;
    background: var(--white) !important;
    border-color: var(--primary) !important;
}

input::-moz-focus-inner,
button::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input[type="button"],
input[type="submit"],
button {
    cursor: pointer;
    background-color: var(--primary) !important;
    border: 2px solid var(--primary) !important;
    text-transform: uppercase !important;
    font-size: 16px !important;
    color: #fff !important;
    line-height: normal !important;
    padding: 12px 18px !important;
    text-align: center !important;
    transition: all 350ms ease-in-out !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    margin: 0 !important;
}

input[type="button"]:hover,
input[type="submit"]:hover,
button:hover {
    background-color: var(--white) !important;
    text-decoration: none !important;
    color: var(--primary) !important;
}

::-webkit-input-placeholder {
    opacity: 1;
}

::-moz-placeholder {
    opacity: 1;
}

:-ms-input-placeholder {
    opacity: 1;
}

:-moz-placeholder {
    opacity: 1;
}

.gfield_error input,
.gfield_error select,
.gfield_error textarea {
    border-color: #ff0000 !important;
    background: #fff !important;
}

.gform-theme--framework .gform_validation_errors {
    --gf-form-gap-y: 20px;
}

.gfield_label,
.gform-theme--foundation legend {
    font-size: var(--body-font) !important;
}

.gform-loader {
    position: absolute;
    border: 2px solid #C7C8CA !important;
    border-top-color: var(--secondary) !important;
}

textarea {
    width: 100%;
    height: 190px;
    overflow: auto;
    resize: vertical;
    padding: 37px 30px 37px 56px;
}

select {
    padding: 4px 30px 4px 60px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    position: relative;
    z-index: 1;
    background: none;
    line-height: 1.25;
    border-radius: 5px;
    color: #333333;
}

select::-ms-expand {
    display: none;
}

.custom-select {
    display: block;
    margin: 0;
    position: relative;
    background: #fff;
}

.custom-select:after {
    content: '\f107';
    position: absolute;
    color: #999999;
    font-family: "FontAwesome";
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.overlay {
    position: absolute;
    top: 0;
    z-index: 999;
    overflow: hidden;
}

.overlay::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

::selection {
    background-color: var(--primary);
    color: #fff;
}

/* img hover */

.img-hover {
    overflow: hidden;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.img-hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.img-hover:hover::before {
    opacity: 1;
    visibility: visible;
}

.img-hover:hover img {
    transform: scale(1.03);
}

.img-hover img {
    transition: transform 0.3s ease-in-out;
}

.swiper-pagination {
    display: none;
}

.swiper-button-next,
.swiper-button-prev {
    --wh: 60px;
    color: var(--white) !important;
    cursor: pointer;
    transition: all 350ms ease-in-out;
    margin-top: 0 !important;
    transform: translateY(-50%);
    width: var(--wh) !important;
    height: var(--wh) !important;
    aspect-ratio: 1;
    background-color: var(--primary) !important;
    border-radius: 4px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--secondary) !important;
    color: var(--white) !important;
}

.swiper-button-next .swiper-navigation-icon,
.swiper-button-prev .swiper-navigation-icon {
    width: 14px;
}

.swiper-button-next {
    right: 0 !important;
}

.swiper-button-prev {
    left: 0 !important;
}

/* Swiper */

.star {
    display: inline-block;
    width: 110px;
    height: 22px;
    position: relative;
    overflow: hidden;
}

.star::before,
.star::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/star.svg);
    background-repeat: repeat-x;
    background-size: 22px;
}

.star::before {
    width: calc((100% / 5) * var(--rating));
    z-index: 1;
}

.star::after {
    filter: grayscale(1);
    opacity: 1;
}

p.gform_description:empty {
    display: none;
}

.gform_heading .gform_required_legend {
    display: none !important;
}

.custom-header {
    padding: 13px 0px;
}

.custom-footer {
    padding: 60px 0 129px;
    background-color: var(--primary);
    background-repeat: no-repeat;
    background-size: cover;
}

.custom-footer .custom-logo-link {
    max-width: 227px;
    display: flex;
    width: 100%;
    margin: 0 auto;
}

.custom-footer .custom-logo-link img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.custom-nav-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.custom-nav-row.logo-only {
    justify-content: center;
}

.custom-nav-row .custom-logo-link {
    max-width: 224px;
    width: 100%;
    display: flex;
}

.custom-nav-row .custom-logo-link img {
    width: 100%;
    height: auto;
    object-fit: cover;
}


/* ==============================
   Hero Banner Section
============================== */

.hero-banner-section {

    --wrap: 1320px;

    background-color: var(--primary);
    color: var(--white);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0;
    min-height: 653px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(270deg, rgba(148, 163, 72, 0) 0%, rgba(148, 163, 72, 1) 50%);
    pointer-events: none;
}

.banner-title {
    color: var(--white) !important;
    margin-bottom: 8px;
}

.hero-banner-description {
    margin-bottom: 30px;
}

.hero-banner-description p:last-child {
    margin-bottom: 0;
}

.banner-form .gform-footer.gform_footer.top_label {
    margin-top: 32px;
    padding-top: 0;
    padding-bottom: 0;
}

.banner-form .gform-footer.gform_footer.top_label input {
    width: 100%;
}

.banner-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.hero-banner-content {
    max-width: 538px;
    width: 100%;
}

.banner-form {
    max-width: 454px;
    width: 100%;
    padding: 35px 30px;
    background-color: var(--white);
    color: #54595f;
}

.banner-form-title {
    text-align: center;
    margin-bottom: 11px;
}

.banner-form .gform_legacy_markup_wrapper {
    margin-top: 0;
    margin-bottom: 0;
}

.banner-form-title h2,
.banner-form-title h4 {
    margin-bottom: 0;
    color: var(--heading-color);
    font-weight: 600;
    font-family: var(--font-secondary) !important;
}

.form-description {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border: 2px solid #d4d6d8;
    padding: 10px 20px;
    margin-top: 20px;
    background-color: #f7f7f7;
    position: relative;
    z-index: 1;
}

.form-description::before,
.form-description::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
    pointer-events: none;
}

.form-description::before {
    left: -6px;
}

.form-description::after {
    right: -6px;
}

.form-description p:last-child {
    margin-bottom: 0;
}

.gform_wrapper.gravity-theme #field_submit,
.gform_wrapper.gravity-theme .gform_footer {
    justify-content: center;
    padding-bottom: 0 !important;
}

.gform_wrapper.gravity-theme #field_submit input,
.gform_wrapper.gravity-theme .gform_footer input {
    margin-bottom: 0 !important;
}

/* ==============================
   VIDEO SECTION (CLEAN VERSION)
============================== */

.video-sec {
    position: relative;
    width: 100%;
    max-width: 405px;
    background-color: var(--primary);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 ratio */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    overflow: hidden;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    transition: transform 0.3s ease;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-btn img {
    width: auto;
    height: 22px;
}

.video-embed {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.video-embed iframe {
    width: 100%;
    height: 100%;
    /* height: 228px; */
    border: none;
}

.gform-loader {
    display: none !important;
}

body .gform_legacy_markup_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
    max-width: 100% !important;
}

/* Counter Section */

.data-points-main-sec {
    padding-top: 75px;
}

.data-points-row-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.data-points-row-box .data-points-box {
    width: calc(33.33% - 80px/3);
    border-left: 1px solid #dddddd;
    padding-left: 20px;
}

.data-points-box .counter {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.counter.counter--image {
    max-width: 100px;
    width: 100%;
}

.counter.counter--image img {
    width: auto;
    height: auto;
    object-fit: cover;
}

.data-points-box .count {
    margin-bottom: 0;
}

.data-points-box .count,
.data-points-box .suffix {
    color: #999999;
    font-family: var(--font-secondary);
    font-size: 120px;
    font-weight: 400;
    line-height: 0.8334;
}

.counter-info .counter-title {
    font-family: var(--font-secondary);
    margin-bottom: 2px;
    font-weight: 700;
    color: var(--primary);
}

.counter-info p {
    font-size: 15px;
}

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

/* Counter Section */


/* Banner With Form Section */

.banner-with-form-section {
    background-color: var(--primary);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    min-height: 733px;
}

.banner-with-form-section .banner-form {
    margin: 0 auto;
}

section+.banner-with-form-section {
    margin-top: 50px;
}

/* Banner With Form Section */

/* Our Process Section */


.sub-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
}

.icon {
    max-width: 46px;
    width: 100%;
}

.icon img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.sub-title :is(h3, h4, h5, h6) {
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--primary);
    font-family: var(--font-secondary);
}

.our-process-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

.our-process-image {
    max-width: 458px;
    width: 100%;
    background-color: var(--primary);
}

.our-process-image img {
    width: 100%;
}

.our-process-info p:last-child {
    margin-bottom: 0;
}

.our-process-box .process-title {
    margin-bottom: 6px;
    font-family: var(--font-secondary);
}

.gform_legacy_markup_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description {
    padding-left: 16px;
    padding-top: 10px;
}

.gform_legacy_markup_wrapper div.validation_error {
    padding: 10px !important;
}

.our-process-row-box {
    display: flex;
    flex-direction: column;
    gap: 38px;
    max-width: 564px;
    width: 100%;
}

/* Our Process Section */

/* Why Green Maids Section */

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-header .title {
    max-width: 570px;
    width: 100%;
}

.section-header-info {
    max-width: 556px;
    width: 100%;
}

.why-green-maids-section .section-title {
    margin-bottom: 30px;
}

.why-green-maids-row {
    display: flex;
    align-items: flex-start;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.porcess-tabs {
    max-width: 420px;
    width: 100%;
}

.why-green-maids-tab-content {
    max-width: 722px;
    width: 100%;
}

.porcess-tabs .tab-btn {
    width: 100%;
    background-color: var(--white) !important;
    border: 1px solid var(--white) !important;
    border-right-color: #dedede !important;
    color: var(--primary) !important;
    padding: 34px 20px !important;
    font-size: 22px !important;
    text-transform: none !important;
}

.porcess-tabs .tab-btn.active {
    border: 1px solid #dedede !important;
    background-color: #fafafa !important;
    color: var(--heading-color) !important;
    border-right-color: #fafafa !important;
}

.porcess-tabs .tab-btn:hover {
    background-color: #fafafa !important;
    color: var(--heading-color) !important;
}

.tab-content {
    border: 1px solid #dddddd;
    background-color: #fafafa;
    border-left: 0;
}

.process-tabs-row {
    display: flex;
}

.process-tabs-info {
    padding: 37px 51px 64px 41px;
}

.process-tabs-info p:last-child {
    margin-bottom: 0;
}

.process-tabs-image {
    max-width: 263px;
    min-width: 263px;
    width: 100%;
}

.process-tabs-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile accordion */
.mobile-tab-btn {
    cursor: pointer;
    padding: 12px;
    background: #eee;
    margin-bottom: 10px;
}

.mobile-tab-btn.active {
    background: #ccc;
}

/* Why Green Maids Section */


/* Testimonial Section */

.testimonial-row {
    padding: 76px 0;
    background-color: var(--primary);
}

.testimonial-row .swiper-button-prev,
.testimonial-row .swiper-button-next {
    background-color: transparent !important;
}

.testimonial-section .section-title {
    text-align: center;
}

.testimonial-box {
    max-width: 750px;
    margin: 0 auto;
    color: var(--white);
}

.rating-img {
    max-width: 115px;
    margin: 0 auto 10px;
}

.rating-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.testimonial-quote {
    font-size: 50px;
    font-weight: 700;
    font-family: var(--font-primary);
    line-height: 0.96;
    color: var(--white);
    display: inline-block;
    vertical-align: top;
}

.testimonial-info {
    margin-bottom: 34px;
}

.testimonial-info p {
    font-size: 32px;
    line-height: 1.5;
    font-weight: 500;
}

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

.customer-name h6 {
    font-weight: 400;
    margin-bottom: 0;
    color: var(--white);
    font-family: var(--font-secondary);
}

/* Fix equal height */
.swiper-slide {
    height: auto;
}

/* Testimonial Section */

.ct-table {
    overflow-x: auto;
}

.ct {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    border: 0;
    margin-bottom: 0;
}

.ct th {
    padding: 15px;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    width: 25%;
    border-right: 0;
}

.ct td {
    padding: 15px;
    vertical-align: top;
    border-top: 1px solid #dddddd;
    line-height: 1.5;
    font-size: 15px;
    font-weight: 400;
    color: var(--heading-color);
}

.ct td:last-child {
    border-right: 0;
}

.ct tr td:nth-child(2) {
    background-color: #fafafa;
}

.th-feat {
    background-color: var(--heading-color);
    color: #fff;
}

.th-green {
    background: var(--primary);
    color: #fff;
}

.th-mid {
    background-color: var(--heading-color);
    color: #fff;
}

.th-low {
    background-color: var(--heading-color);
    color: #fff;
}

.ct .feat {
    font-weight: 700;
    color: var(--heading-color);
    font-size: 15px;
}



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

@media only screen and (max-width: 1199px) {

    :root {

        --h1: 40px;
        --h2: 34px;
    }

    /* Counter Section */
    .data-points-box .count,
    .data-points-box .suffix {
        font-size: 80px;
    }

    .counter.counter--image {
        max-width: 70px;
    }

    /* Comparison Table */
    .ct th {
        font-size: 15px;
        padding: 12px;
    }

    .ct td {
        padding: 12px;
        font-size: 14px;
    }

    .porcess-tabs .tab-btn {
        padding: 24px 20px !important;
        font-size: 18px !important;
    }

    .porcess-tabs .tab-btn {
        padding: 37px 20px !important;
        font-size: 18px !important;
    }

    .porcess-tabs {
        max-width: 350px;
    }

    .process-tabs-info {
        padding: 30px 20px;
    }
}

@media only screen and (max-width: 1024px) {

    :root {
        --body-font: 16px;

        --h1: 38px;
        --h2: 32px;
        --h3: 24px;
        --h4: 20px;
        --h5: 18px;
        --h6: 16px;
    }

    /* Counter Section */
    .data-points-main-sec {
        padding-top: 50px;
    }

    .data-points-row-box {
        gap: 25px;
    }

    .data-points-row-box .data-points-box {
        width: calc(50% - 25px);
    }

    .data-points-box .count,
    .data-points-box .suffix {
        font-size: 64px;
    }

    /* Our Process */
    .our-process-row {
        flex-direction: column;
        gap: 30px;
    }

    .our-process-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .our-process-row-box {
        max-width: 100%;
        gap: 25px;
    }

    /* Why Green Maids */
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .section-header .title,
    .section-header-info {
        max-width: 100%;
    }

    .why-green-maids-row {
        flex-direction: column;
    }

    .porcess-tabs {
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: row;
        overflow-x: auto;
    }

    .porcess-tabs .tab-btn {
        font-size: 15px !important;
        padding: 16px 20px !important;
        white-space: nowrap;
        border-right-color: #dedede !important;
        border-bottom: 1px solid #dedede !important;
        border-top: 1px solid #dedede !important;
    }

    .porcess-tabs .tab-btn.active {
        border-bottom-color: #fafafa !important;
        border-right-color: #dedede !important;
    }

    .why-green-maids-tab-content {
        max-width: 100%;
        width: 100%;
    }

    .tab-content {
        border: 1px solid #dddddd;
        border-top: 0;
    }

    .process-tabs-info {
        padding: 25px 25px 35px;
    }

    .process-tabs-image {
        max-width: 220px;
        min-width: 220px;
    }

    /* Testimonial */
    .testimonial-info p {
        font-size: 24px;
    }

    /* Banner with Form */
    .banner-with-form-section {
        padding: 70px 0;
        min-height: auto;
    }

    .hero-banner-description {
        margin-bottom: 20px;
    }

    .testimonial-row {
        padding: 60px 0;
    }

    .counter.counter--image {
        max-width: 80px;
    }

    .testimonial-box {
        max-width: 550px;
    }

    .our-process-row-box {
        gap: 30px;
    }

    .banner-with-form-section {
        min-height: auto;
        padding: 60px 0;
    }

    .custom-footer {
        padding: 60px 0;
    }
}

@media only screen and (max-width: 767px) {

    :root {
        --body-font: 14px;

        --h1: 30px;
        --h2: 26px;
        --h3: 22px;
        --h4: 18px;
        --h5: 16px;
        --h6: 15px;
    }

    /* Hero Banner */
    .hero-banner-section {
        min-height: auto;
    }

    .banner-row {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }

    .hero-banner-content {
        max-width: 100%;
    }

    .banner-form {
        max-width: 100%;
        padding: 30px 20px;
    }

    /* Video Section */
    .video-sec {
        max-width: 100%;
        width: 100%;
    }

    /* Counter Section */
    .data-points-main-sec {
        padding-top: 40px;
    }

    .data-points-row-box {
        flex-direction: column;
        gap: 0;
    }

    .data-points-row-box .data-points-box {
        width: 100%;
        border-left: none;
        border-top: 1px solid #dddddd;
        padding-left: 0;
        padding-top: 20px;
        margin-top: 20px;
    }

    .data-points-row-box .data-points-box:first-child {
        border-top: none;
        padding-top: 0;
        margin-top: 0;
    }

    .data-points-box .counter {
        margin-bottom: 10px;
    }

    .data-points-box .count,
    .data-points-box .suffix {
        font-size: 75px;
    }

    /* counter image mode */
    .counter--image img {
        max-height: 80px;
        width: auto;
    }

    /* Hero Banner */
    .hero-banner-section {
        padding: 40px 0;
    }

    .hero-banner-section::before {
        width: 100%;
        background: linear-gradient(180deg, rgba(148, 163, 72, 0.97) 0%, rgba(148, 163, 72, 0.88) 100%);
    }

    .hero-banner-description {
        margin-bottom: 20px;
    }

    /* Our Process */
    .our-process-row-box {
        gap: 20px;
    }

    /* Testimonial */
    .testimonial-row {
        padding: 50px 0;
    }

    .testimonial-info p {
        font-size: 18px;
        line-height: 1.5;
    }

    .testimonial-quote {
        font-size: 40px;
    }

    .ct thead {
        display: none;
    }

    .ct,
    .ct tbody,
    .ct tr,
    .ct td {
        display: block;
        width: 100%;
    }

    .ct tr {
        margin-bottom: 20px;
        border: 1px solid #ddd;
        padding: 0px;
        background: #fff;
    }

    .ct td {
        position: relative;
        padding-left: 45%;
        text-align: left;
        border: none;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .ct td::before {
        position: absolute;
        top: 8px;
        left: 10px;
        width: 40%;
        font-weight: 600;
        white-space: normal;
        content: attr(data-label);
    }

    .ct tr:last-of-type {
        margin-bottom: 0;
    }

    /* Optional: style feature column */
    .ct td.feat {
        font-weight: bold;
        padding-left: 10px;
        background-color: var(--primary);
        color: #fff;
    }

    .ct td.feat::before {
        display: none;
    }

    /* Banner with Form */
    .banner-with-form-section {
        padding: 50px 0;
        min-height: auto;
    }

    section+.banner-with-form-section {
        margin-top: 30px;
    }

    /* Sub title */
    .sub-title {
        gap: 10px;
        margin-bottom: 8px;
    }

    .section-row {
        padding: 40px 0;
    }

    .testimonial-row .swiper-button-prev,
    .testimonial-row .swiper-button-next {
        display: none !important;
    }

    .testimonial-info {
        margin-bottom: 20px;
    }

    .swiper-pagination {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        position: static;
        margin-top: 30px;
        opacity: 1;
    }

    .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        margin-inline: 0 !important;
    }

    .swiper-pagination .swiper-pagination-bullet-active {
        background: var(--white);
    }

    .gform_legacy_markup_wrapper li.hidden_label input {
        margin-top: 0 !important;
    }

    .banner-form .gform-footer.gform_footer.top_label {
        margin-top: 20px;
    }

    .custom-footer .custom-logo-link {
        max-width: 180px;
    }

    .custom-nav-row .custom-logo-link {
        max-width: 150px;
    }

    .custom-footer {
        padding: 40px 0;
    }

    /* Why Green Maids - tabs become horizontal scroll */

    .porcess-tabs.accordion-mode {
        display: flex;
        flex-direction: column;
        overflow: auto;
    }

    .porcess-tabs.accordion-mode [data-accordion-for] {
        /* match your existing .tab-content styles as needed */
        display: none;
        /* slideDown handles show/hide */
    }

    .porcess-tabs .tab-btn {
        font-size: 20px !important;
        padding: 14px 16px !important;
        border-left: 1px solid #dedede !important;
        justify-content: flex-start !important;
        white-space: unset;
        text-align: left !important;
    }

    .accordion-mode .tab-btn {
        position: relative;
        padding-right: 40px !important;
    }

    .accordion-mode .tab-btn::after {
        content: "\f107";
        /* fa-chevron-down */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%) rotate(0deg);
        transition: transform 0.25s ease;
    }

    .accordion-mode .tab-btn.active::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .tab-content:not(:last-of-type),
    .accordion-mode .tab-btn:not(:last-of-type) {
        border-bottom: 0 !important;
    }

    .process-tabs-row {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .process-tabs-image {
        max-width: 100%;
        min-width: unset;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        overflow: hidden;
    }

    .process-tabs-info {
        padding: 0;
    }
}

@media only screen and (max-width: 479px) {

    /* Counter */
    .data-points-box .count,
    .data-points-box .suffix {
        font-size: 60px;
    }

    /* counter image mode */
    .counter--image img {
        max-height: 70px;
    }

    /* Testimonial */
    .testimonial-row {
        padding: 40px 0;
    }

    .testimonial-info p {
        font-size: 16px;
    }

    .testimonial-quote {
        font-size: 32px;
    }

    .rating-img {
        max-width: 90px;
    }

    /* Our Process */
    .our-process-row-box {
        gap: 18px;
    }

    /* Banner with Form */
    .banner-with-form-section {
        padding: 40px 0;
    }

    /* Sub title icon */
    .icon {
        max-width: 36px;
    }

    .form-description {
        font-size: 12px;
    }

    .porcess-tabs .tab-btn {
        font-size: 18px !important;
    }
}