/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Manrope", sans-serif;

    background: #ffffff;

    color: #07121f;

    overflow-x: hidden;
}


img {
    display: block;
    max-width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}


button {
    font-family: inherit;
}



/* =========================================
   HEADER
========================================= */

.site-header {
    width: 100%;

    background: #ffffff;

    border-top: 1px solid #e4e4e4;

    position: relative;

    z-index: 1000;
}


.header-container {
    width: 100%;

    max-width: 1240px;

    min-height: 120px;

    margin: 0 auto;

    padding: 0 20px;

    display: flex;

    align-items: center;
}



/* =========================================
   LOGO
========================================= */

.logo {
    display: flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}


.logo-icon {
    width: 43px;
    height: 43px;

    border-radius: 50%;

    background: #baf1c9;

    color: #08a34d;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 21px;
}


.logo-text {
    display: flex;

    flex-direction: column;

    line-height: 1;
}


.logo-text strong {
    font-size: 24px;

    font-weight: 800;

    letter-spacing: -1px;
}


.logo-text small {
    margin-top: 5px;

    color: #08a34d;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}



/* =========================================
   DESKTOP NAVIGATION
========================================= */

.main-nav {
    display: flex;

    align-items: center;

    gap: 32px;

    margin-left: auto;

    margin-right: auto;

    padding-left: 50px;
}


.nav-link,
.dropdown-button {
    border: none;

    background: transparent;

    color: #07121f;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    white-space: nowrap;

    transition: color 0.25s ease;
}


.nav-link:hover,
.nav-link.active,
.dropdown-button:hover {
    color: #00a34d;
}



/* =========================================
   DROPDOWNS
========================================= */

.nav-dropdown {
    position: relative;
}


.dropdown-button {
    display: flex;

    align-items: center;

    gap: 7px;
}


.dropdown-button i {
    font-size: 9px;

    transition: transform 0.25s ease;
}


.nav-dropdown:hover .dropdown-button i {
    transform: rotate(180deg);
}


.dropdown-menu {
    position: absolute;

    top: calc(100% + 18px);

    left: -15px;

    min-width: 185px;

    padding: 9px;

    background: #ffffff;

    border-radius: 12px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.10);

    opacity: 0;

    visibility: hidden;

    transform: translateY(8px);

    transition: 0.25s ease;
}


.nav-dropdown:hover .dropdown-menu {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


.dropdown-menu a {
    display: block;

    padding: 11px 13px;

    border-radius: 7px;

    font-size: 13px;

    font-weight: 600;
}


.dropdown-menu a:hover {
    background: #eefaf2;

    color: #00a44b;
}



/* =========================================
   HEADER CTA
========================================= */

.header-cta {
    height: 45px;

    padding: 0 23px;

    border-radius: 30px;

    background: #ffc61b;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    font-size: 13px;

    font-weight: 800;

    white-space: nowrap;

    transition: 0.25s ease;

    flex-shrink: 0;
}


.header-cta:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(255, 198, 27, 0.25);
}


.header-cta i {
    font-size: 12px;
}



/* =========================================
   MOBILE MENU BUTTON
========================================= */

.mobile-menu-button {
    display: none;

    width: 44px;
    height: 44px;

    border: none;

    border-radius: 10px;

    background: #eefaf2;

    color: #07121f;

    font-size: 20px;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    flex-shrink: 0;
}



/* =========================================
   MOBILE NAVIGATION
========================================= */

.mobile-nav {
    display: none;
}



/* =========================================
   HERO SECTION
========================================= */

.hero-section {
    width: calc(100% - 40px);

    max-width: 1240px;

    margin: 12px auto 0;
}


.hero-container {
    width: 100%;

    min-height: 575px;

    padding: 72px 64px;

    background: #cdf5d7;

    border-radius: 36px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 50px;
}



/* =========================================
   HERO CONTENT
========================================= */

.hero-content {
    width: 100%;
}


.hero-eyebrow {
    display: block;

    margin-bottom: 24px;

    color: #214c3b;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3.5px;
}


.hero-content h1 {
    margin-bottom: 25px;

    color: #06121f;

    font-size: clamp(52px, 5vw, 70px);

    font-weight: 800;

    line-height: 1;

    letter-spacing: -3.5px;
}


.hero-content h1 span {
    color: #00a64f;
}



/* =========================================
   HERO FEATURES
========================================= */

.hero-features {
    display: flex;

    align-items: center;

    gap: 20px;

    margin-bottom: 34px;

    flex-wrap: wrap;
}


.hero-feature {
    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 15px;

    font-weight: 600;
}


.check-icon {
    width: 20px;
    height: 20px;

    border-radius: 50%;

    background: #30c475;

    color: #ffffff;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 10px;
}



/* =========================================
   BUTTONS
========================================= */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 40px;
}


.button {
    height: 49px;

    padding: 0 27px;

    border-radius: 9px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 16px;

    font-size: 13px;

    font-weight: 800;

    transition: 0.25s ease;
}


.button:hover {
    transform: translateY(-3px);
}


.button-green {
    min-width: 140px;

    background: #00a34d;

    color: #ffffff;
}


.button-yellow {
    min-width: 180px;

    background: #ffc61b;

    color: #06121f;
}


.button i {
    font-size: 11px;
}



/* =========================================
   REVIEW
========================================= */

.review-area {
    display: flex;

    align-items: center;

    gap: 18px;
}


.review-score {
    display: flex;

    flex-direction: column;

    gap: 6px;
}


.review-score strong {
    font-size: 15px;

    font-weight: 800;
}


.stars {
    display: flex;

    align-items: center;

    gap: 5px;
}


.stars i {
    color: #079d4b;

    font-size: 15px;
}


.stars .star-light {
    color: #65c795;
}


.stars span {
    margin-left: 9px;

    font-size: 14px;

    font-weight: 800;
}


.review-divider {
    width: 1px;

    height: 47px;

    background: rgba(0, 0, 0, 0.18);
}


.review-text {
    color: #60716a;

    font-size: 13px;
}


.review-text strong {
    color: #06121f;
}



/* =========================================
   HERO IMAGE
========================================= */

.hero-image-wrapper {
    width: 100%;

    height: 425px;

    position: relative;
}


.hero-image {
    width: 100%;

    height: 100%;

    object-fit: cover;

    border-radius: 26px;

    background: #b7c7c0;
}



/* =========================================
   CUSTOMER BADGE
========================================= */

.customer-badge {
    position: absolute;

    left: 28px;

    bottom: 28px;

    min-width: 205px;

    height: 70px;

    padding: 10px 18px;

    border-radius: 18px;

    background: #ffffff;

    display: flex;

    align-items: center;

    gap: 12px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.08);
}


.customer-icon {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #d3f7dc;

    color: #00a34d;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 17px;
}


.customer-text {
    display: flex;

    flex-direction: column;

    gap: 2px;
}


.customer-text strong {
    font-size: 14px;

    font-weight: 800;
}


.customer-text span {
    color: #718079;

    font-size: 12px;
}



/* =========================================
   BENEFITS
========================================= */

.benefits-section {
    width: calc(100% - 40px);

    max-width: 1240px;

    margin: 62px auto 45px;
}


.benefits-container {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 35px;
}


.benefit-item {
    display: flex;

    align-items: center;

    gap: 17px;
}


.benefit-icon {
    width: 38px;

    min-width: 38px;

    color: #00a34d;

    font-size: 32px;

    display: flex;

    align-items: center;
    justify-content: center;
}


.benefit-content h3 {
    margin-bottom: 3px;

    font-size: 16px;

    font-weight: 800;
}


.benefit-content p {
    color: #7c8885;

    font-size: 13px;

    font-weight: 500;
}



/* =========================================
   SCROLL ANIMATION
========================================= */

.reveal {
    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}


.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}



/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .header-container {
        max-width: 900px;

        min-height: 95px;
    }


    .main-nav {
        display: none;
    }


    .header-cta {
        margin-left: auto;

        margin-right: 15px;
    }


    .mobile-menu-button {
        display: flex;
    }


    /* MOBILE NAV */

    .mobile-nav {
        width: calc(100% - 40px);

        max-width: 700px;

        margin: 0 auto;

        padding: 15px;

        background: #ffffff;

        border-radius: 15px;

        box-shadow:
            0 15px 40px rgba(0, 0, 0, 0.10);

        display: flex;

        flex-direction: column;

        gap: 3px;

        position: absolute;

        top: 85px;

        left: 20px;

        right: 20px;

        opacity: 0;

        visibility: hidden;

        transform: translateY(-10px);

        pointer-events: none;

        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s ease;
    }


    .mobile-nav.open {
        opacity: 1;

        visibility: visible;

        transform: translateY(0);

        pointer-events: auto;
    }


    .mobile-nav-link {
        width: 100%;

        padding: 13px 15px;

        border-radius: 8px;

        font-size: 15px;

        font-weight: 700;
    }


    .mobile-nav-link:hover,
    .mobile-nav-link.active {
        background: #eefaf2;

        color: #00a34d;
    }


    .mobile-cta {
        width: 100%;

        margin-top: 8px;

        padding: 14px 16px;

        border-radius: 9px;

        background: #ffc61b;

        display: flex;

        align-items: center;

        justify-content: space-between;

        font-size: 13px;

        font-weight: 800;
    }


    /* HERO */

    .hero-container {
        grid-template-columns: 1fr;

        padding: 55px;

        text-align: center;
    }


    .hero-content h1 {
        max-width: 700px;

        margin-left: auto;
        margin-right: auto;
    }


    .hero-features,
    .hero-buttons,
    .review-area {
        justify-content: center;
    }


    .hero-image-wrapper {
        width: 100%;

        max-width: 700px;

        margin: 0 auto;
    }


    /* BENEFITS */

    .benefits-container {
        grid-template-columns: repeat(2, 1fr);

        gap: 30px;
    }

}



/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    /* HEADER */

    .header-container {
        width: 100%;

        min-height: 82px;

        padding: 0 20px;
    }


    .logo-icon {
        width: 40px;
        height: 40px;

        font-size: 18px;
    }


    .logo-text strong {
        font-size: 21px;
    }


    .logo-text small {
        font-size: 8px;

        letter-spacing: 1.5px;
    }


    .header-cta {
        display: none;
    }


    .mobile-menu-button {
        margin-left: auto;

        width: 42px;
        height: 42px;
    }


    /* MOBILE MENU */

    .mobile-nav {
        width: calc(100% - 32px);

        left: 16px;

        right: 16px;

        top: 75px;

        padding: 14px;
    }


    /* HERO */

    .hero-section {
        width: calc(100% - 32px);

        margin-top: 15px;
    }


    .hero-container {
        width: 100%;

        padding: 42px 22px 30px;

        border-radius: 25px;

        gap: 38px;
    }


    .hero-eyebrow {
        margin-bottom: 18px;

        font-size: 9px;

        line-height: 1.7;

        letter-spacing: 2.2px;
    }


    .hero-content h1 {
        margin-bottom: 25px;

        font-size: 43px;

        line-height: 1;

        letter-spacing: -2.2px;
    }


    .hero-features {
        justify-content: center;

        gap: 11px 16px;

        margin-bottom: 28px;
    }


    .hero-feature {
        font-size: 12px;
    }


    .check-icon {
        width: 18px;
        height: 18px;

        font-size: 9px;
    }


    /* BUTTONS */

    .hero-buttons {
        width: 100%;

        flex-direction: column;

        gap: 10px;

        margin-bottom: 32px;
    }


    .button {
        width: 100%;

        height: 49px;
    }


    /* REVIEW */

    .review-area {
        width: 100%;

        justify-content: center;

        gap: 12px;
    }


    .review-score strong {
        font-size: 13px;
    }


    .stars {
        gap: 3px;
    }


    .stars i {
        font-size: 11px;
    }


    .stars span {
        margin-left: 5px;

        font-size: 11px;
    }


    .review-divider {
        height: 40px;
    }


    .review-text {
        font-size: 10px;
    }


    /* IMAGE */

    .hero-image-wrapper {
        height: 290px;
    }


    .hero-image {
        border-radius: 19px;
    }


    /* BADGE */

    .customer-badge {
        left: 13px;

        bottom: 13px;

        min-width: 185px;

        height: 63px;

        padding: 8px 13px;

        border-radius: 14px;
    }


    .customer-icon {
        width: 36px;
        height: 36px;

        font-size: 14px;
    }


    .customer-text strong {
        font-size: 13px;
    }


    .customer-text span {
        font-size: 10px;
    }


    /* BENEFITS */

    .benefits-section {
        width: calc(100% - 40px);

        margin-top: 45px;

        margin-bottom: 45px;
    }


    .benefits-container {
        grid-template-columns: 1fr;

        gap: 28px;
    }


    .benefit-item {
        gap: 15px;
    }


    .benefit-icon {
        width: 37px;

        min-width: 37px;

        font-size: 29px;
    }


    .benefit-content h3 {
        font-size: 15px;
    }


    .benefit-content p {
        font-size: 12px;
    }

}



/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 420px) {

    .hero-container {
        padding-left: 18px;

        padding-right: 18px;
    }


    .hero-content h1 {
        font-size: 38px;
    }


    .hero-image-wrapper {
        height: 260px;
    }


    .review-area {
        flex-wrap: wrap;
    }


    .review-divider {
        display: none;
    }

}



/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;

        animation-duration: 0.01ms !important;
    }

}













/* =========================================
   ABOUT SECTION
========================================= */

.about-section {
    width: calc(100% - 40px);

    max-width: 1240px;

    margin: 100px auto 80px;
}



/* =========================================
   ABOUT MAIN CONTAINER
========================================= */

.about-container {
    width: 100%;

    display: grid;

    grid-template-columns: 1fr 0.91fr;

    align-items: center;

    gap: 55px;
}



/* =========================================
   ABOUT IMAGE
========================================= */

.about-image-wrapper {
    width: 100%;

    height: 448px;

    overflow: hidden;

    border-radius: 21px;
}


.about-image {
    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}


.about-image-wrapper:hover .about-image {
    transform: scale(1.025);
}



/* =========================================
   ABOUT CONTENT
========================================= */

.about-content {
    width: 100%;
}


.about-eyebrow {
    display: block;

    margin-bottom: 22px;

    color: #009e4a;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 4px;
}



/* =========================================
   ABOUT HEADING
========================================= */

.about-content h2 {
    margin-bottom: 24px;

    color: #07121f;

    font-size: clamp(43px, 4vw, 58px);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -2.8px;
}


.about-content h2 span {
    color: #009e4a;
}



/* =========================================
   ABOUT DESCRIPTION
========================================= */

.about-description {
    max-width: 650px;

    margin-bottom: 25px;

    color: #75817f;

    font-size: 15px;

    font-weight: 500;

    line-height: 1.7;
}



/* =========================================
   ABOUT FEATURES
========================================= */

.about-features {
    display: flex;

    flex-direction: column;

    gap: 18px;

    margin-bottom: 29px;
}


.about-feature {
    display: flex;

    align-items: center;

    gap: 18px;
}



/* =========================================
   FEATURE ICON
========================================= */

.about-feature-icon {
    width: 49px;
    height: 49px;

    min-width: 49px;

    border-radius: 11px;

    background: #d1f6da;

    color: #00a34d;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 19px;
}


.about-feature-content h3 {
    margin-bottom: 2px;

    color: #07121f;

    font-size: 16px;

    font-weight: 800;
}


.about-feature-content p {
    color: #75817f;

    font-size: 14px;

    font-weight: 500;
}



/* =========================================
   ABOUT BUTTONS
========================================= */

.about-buttons {
    display: flex;

    align-items: center;

    gap: 13px;
}


.about-button {
    height: 46px;

    padding: 0 25px;

    border-radius: 9px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    font-size: 12px;

    font-weight: 800;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.about-button:hover {
    transform: translateY(-3px);
}


.about-button i {
    font-size: 11px;
}


.about-button-yellow {
    min-width: 134px;

    background: #ffc61b;

    color: #07121f;
}


.about-button-yellow:hover {
    box-shadow:
        0 8px 20px rgba(255, 198, 27, 0.22);
}




/* =========================================
   STATISTICS CONTAINER
========================================= */

.stats-container {
    width: 100%;

    min-height: 142px;

    margin-top: 60px;

    border: 1px solid #e1e4e3;

    border-radius: 20px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    overflow: hidden;

    background: #ffffff;
}



/* =========================================
   STAT ITEM
========================================= */

.stat-item {
    min-height: 140px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 20px;

    border-right: 1px solid #e1e4e3;
}


.stat-item:last-child {
    border-right: none;
}


.stat-item strong {
    margin-bottom: 4px;

    color: #009e4a;

    font-size: 42px;

    font-weight: 800;

    line-height: 1;

    letter-spacing: -1px;
}


.stat-item span {
    color: #596664;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 1px;
}



/* =========================================
   ABOUT SCROLL ANIMATION
========================================= */

.about-image-wrapper,
.about-content,
.stats-container {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}


.about-section.about-visible
.about-image-wrapper,

.about-section.about-visible
.about-content,

.about-section.about-visible
.stats-container {
    opacity: 1;

    transform: translateY(0);
}


.about-section.about-visible
.about-content {
    transition-delay: 0.1s;
}


.about-section.about-visible
.stats-container {
    transition-delay: 0.2s;
}



/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1050px) {

    .about-section {
        width: calc(100% - 50px);

        max-width: 900px;

        margin-top: 85px;
    }


    .about-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .about-image-wrapper {
        height: 480px;

        max-width: 750px;

        margin: 0 auto;
    }


    .about-content {
        max-width: 750px;

        margin: 0 auto;
    }


    .about-content h2 {
        font-size: 52px;
    }


    .about-description {
        max-width: 700px;
    }


    .stats-container {
        margin-top: 55px;
    }

}



/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .about-section {
        width: calc(100% - 32px);

        margin: 70px auto 55px;
    }


    .about-container {
        gap: 35px;
    }



    /* IMAGE */

    .about-image-wrapper {
        width: 100%;

        height: 330px;

        border-radius: 18px;
    }



    /* CONTENT */

    .about-content {
        text-align: left;
    }


    .about-eyebrow {
        margin-bottom: 17px;

        font-size: 10px;

        letter-spacing: 3px;
    }


    .about-content h2 {
        margin-bottom: 20px;

        font-size: 39px;

        line-height: 1.06;

        letter-spacing: -2px;
    }


    .about-description {
        margin-bottom: 27px;

        font-size: 13px;

        line-height: 1.7;
    }



    /* FEATURES */

    .about-features {
        gap: 17px;

        margin-bottom: 28px;
    }


    .about-feature {
        gap: 14px;
    }


    .about-feature-icon {
        width: 46px;
        height: 46px;

        min-width: 46px;

        border-radius: 10px;

        font-size: 17px;
    }


    .about-feature-content h3 {
        font-size: 14px;
    }


    .about-feature-content p {
        font-size: 12px;
    }



    /* BUTTONS */

    .about-buttons {
        width: 100%;

        display: grid;

        grid-template-columns: 1fr 1.45fr;

        gap: 9px;
    }


    .about-button {
        width: 100%;

        padding: 0 12px;

        height: 47px;

        gap: 8px;

        font-size: 10px;
    }


    .about-button-yellow,
    .about-button-green {
        min-width: 0;
    }



    /* STATISTICS */

    .stats-container {
        margin-top: 45px;

        grid-template-columns: repeat(2, 1fr);

        border-radius: 17px;
    }


    .stat-item {
        min-height: 115px;

        padding: 15px;

        border-right: 1px solid #e1e4e3;

        border-bottom: 1px solid #e1e4e3;
    }


    .stat-item:nth-child(2) {
        border-right: none;
    }


    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-bottom: none;
    }


    .stat-item:nth-child(4) {
        border-right: none;
    }


    .stat-item strong {
        font-size: 31px;
    }


    .stat-item span {
        font-size: 8px;

        letter-spacing: 0.8px;
    }

}



/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 420px) {

    .about-section {
        width: calc(100% - 28px);
    }


    .about-image-wrapper {
        height: 270px;
    }


    .about-content h2 {
        font-size: 34px;
    }


    .about-description {
        font-size: 12px;
    }


    .about-button {
        font-size: 9px;
    }


    .stat-item strong {
        font-size: 28px;
    }

}









.services-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #d2f7dc;
    padding: 70px 0 110px;
}


/* =========================
   MAIN CONTAINER
========================= */

.section {
    width: calc(100% - 40px);
    max-width: 1240px;
    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.eyebrow {
    margin: 0 0 22px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #079b4d;
}

.services-header h2 {
    margin: 0;

    font-size: clamp(42px, 5vw, 60px);
    line-height: 1.08;
    letter-spacing: -2px;
    font-weight: 700;
    color: #07101a;
}

.services-header h2 span {
    color: #079b4d;
}


/* =========================
   EXPLORE BUTTON
========================= */

.explore-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    min-width: 143px;
    height: 45px;

    padding: 0 22px;

    border-radius: 9px;
    background: #ffc51c;

    color: #07101a;
    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.explore-btn span {
    font-size: 20px;
    line-height: 1;
}

.explore-btn:hover {
    transform: translateY(-2px);
    background: #ffbd00;
}


/* =========================
   SERVICE GRID
========================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    padding-bottom: 20px;
}


/* =========================
   SERVICE CARD
========================= */

.service-card {
    position: relative;

    height: 358px;

    overflow: hidden;
    border-radius: 17px;

    display: block;

    text-decoration: none;
    color: white;
}

.service-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
}

.service-card:hover img {
    transform: scale(1.05);
}


/* Dark gradient at bottom */

.card-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent 45%,
            rgba(0, 0, 0, 0.5) 100%
        );

    pointer-events: none;
}


/* =========================
   CARD TITLE
========================= */

.service-title {
    position: absolute;

    left: 17px;
    right: 17px;
    bottom: 19px;

    height: 53px;

    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-radius: 15px;

    background: rgba(255, 255, 255, 0.96);

    color: #07101a;

    font-size: 17px;
    font-weight: 600;
}

.card-arrow {
    color: #079b4d;

    font-size: 23px;
    font-weight: 400;

    transition: transform 0.25s ease;
}

.service-card:hover .card-arrow {
    transform: translateX(5px);
}


/* =========================
   MOVING WATERMARK
========================= */

.watermark-wrapper {
    position: absolute;

    padding-bottom: 30px;

    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;

    overflow: hidden;

    pointer-events: none;
}


/*
   The track is wider than the viewport.

   Two identical watermark elements
   allow the animation to loop seamlessly.
*/

.watermark-track {
    display: flex;
    width: max-content;

    animation: watermark-scroll 22s linear infinite;

    will-change: transform;
}


.watermark {
    flex-shrink: 0;

    display: flex;
    align-items: center;

    gap: 55px;

    padding-right: 55px;

    white-space: nowrap;

    font-size: clamp(70px, 8vw, 112px);
    line-height: 0.8;

    font-weight: 800;
    letter-spacing: -5px;

    color: rgba(0, 150, 75, 0.15);
}


/* Small sparkle between words */

.watermark i {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: rgba(0, 170, 85, 0.4);

    font-size: 42px;
    font-style: normal;

    letter-spacing: 0;
}


/*
   Move exactly one watermark width.

   Because the second watermark is identical,
   the transition is completely seamless.
*/

@keyframes watermark-scroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .services-header {
        align-items: flex-start;
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card:last-child {
        grid-column: span 2;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .services-section {
        padding: 50px 0 90px;
    }

    .section {
        width: calc(100% - 30px);
    }

    .services-header {
        flex-direction: column;
        margin-bottom: 32px;
    }

    .services-header h2 {
        font-size: 30px;
        letter-spacing: -1.5px;
    }

    .explore-btn {
        align-self: flex-start;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-card {
        height: 330px;
    }

    .service-card:last-child {
        grid-column: auto;
    }

    .watermark {
        font-size: 70px;
        gap: 35px;
        padding-right: 35px;
    }

    .watermark i {
        font-size: 30px;
    }

}











/* =========================================
   GLOBAL SECTION CONTAINER
========================================= */

.section {
    width: calc(100% - 40px);
    max-width: 1240px;
    margin: 0 auto;
}


/* =========================================
   HOW IT WORKS SECTION
========================================= */

.steps-section {
    position: relative;

    width: 100%;

    min-height: 245px;

    padding: 65px 0;

    overflow: hidden;

    background:
        linear-gradient(
            rgba(28, 38, 58, 0.94),
            rgba(28, 38, 58, 0.94)
        ),
        url("images/cleaning-background.jpg");

    background-size: cover;
    background-position: center;
}


/*
   Subtle decorative background
*/

.steps-section::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            110deg,
            transparent 0%,
            rgba(255,255,255,0.025) 25%,
            transparent 45%,
            rgba(255,255,255,0.02) 70%,
            transparent 100%
        );

    pointer-events: none;
}


/* =========================================
   STEPS GRID
========================================= */

.steps-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


/* =========================================
   STEP CARD
========================================= */

.step-card {
    min-height: 113px;

    padding: 20px 21px;

    border-radius: 15px;

    background: #ffffff;

    display: flex;
    flex-direction: column;

    justify-content: center;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.08);
}


/* =========================================
   STEP NUMBER
========================================= */

.step-number {
    margin: 0 0 12px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.4px;

    color: #009c4d;
}


/* =========================================
   STEP TITLE
========================================= */

.step-card h3 {
    margin: 0 0 8px;

    color: #07101a;

    font-size: 16px;

    line-height: 1.2;

    font-weight: 700;
}


/* =========================================
   STEP DESCRIPTION
========================================= */

.step-description {
    margin: 0;

    color: #687584;

    font-size: 12px;

    line-height: 1.4;
}



/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .steps-section {
        padding: 45px 0;
    }

    .steps-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .step-card {
        min-height: 120px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .section {
        width: calc(100% - 30px);
    }

    .steps-section {
        min-height: auto;

        padding: 35px 0;
    }

    .steps-grid {
        gap: 12px;
    }

    .step-card {
        padding: 20px;

        min-height: 115px;
    }

}




/* =========================
   PRICING SECTION
========================= */

.pricing-section {
    width: 100%;
    background: #ffffff;
    padding: 68px 0 80px;
}


/* =========================
   MAIN CONTAINER
========================= */

.section {
    width: calc(100% - 40px);
    max-width: 1240px;
    margin: 0 auto;
}


/* =========================
   PRICING HEADING
========================= */

.pricing-heading {
    text-align: center;
    margin-bottom: 38px;
}

.pricing-eyebrow {
    margin: 0 0 12px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;

    color: #079b4d;
}

.pricing-heading h2 {
    margin: 0;

    color: #07101a;

    font-size: clamp(38px, 4vw, 47px);
    line-height: 1.1;
    letter-spacing: -1.8px;
    font-weight: 700;
}

.pricing-heading h2 span {
    color: #079b4d;
}


/* =========================
   PRICING GRID
========================= */

.pricing-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    align-items: stretch;
}


/* =========================
   PRICING CARD
========================= */

.pricing-card {
    min-height: 330px;

    padding: 28px 27px 26px;

    border: 1px solid #e4e6e8;

    border-radius: 15px;

    background: #ffffff;

    display: flex;
    flex-direction: column;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(7, 16, 26, 0.08);
}


/* =========================
   FEATURED CARD
========================= */

.pricing-card.featured {
    background: #ccf6d8;

    border-color: #36c878;
}


/* =========================
   PLAN NAME
========================= */

.plan-name {
    margin: 0 0 7px;

    font-size: 11px;
    font-weight: 500;

    letter-spacing: 1.3px;

    color: #526170;
}


/* =========================
   PRICE
========================= */

.price {
    display: flex;
    align-items: baseline;

    margin-bottom: 14px;
}

.price strong {
    font-size: 43px;
    line-height: 1;

    letter-spacing: -1.5px;

    color: #07101a;
}

.price span {
    margin-left: 7px;

    font-size: 12px;

    color: #657282;
}


/* =========================
   FEATURES
========================= */

.features {
    padding: 0;
    margin: 0;

    list-style: none;
}

.features li {
    position: relative;

    margin-bottom: 9px;
    padding-left: 20px;

    font-size: 13px;
    line-height: 1.4;

    color: #43515f;
}


/* Green check */

.features li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 1px;

    width: 14px;
    height: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #32c875;

    color: #ffffff;

    font-size: 9px;
    font-weight: 700;
}


/* =========================
   CHOOSE PLAN BUTTON
========================= */

.choose-plan {
    margin-top: auto;

    width: 100%;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    border-radius: 7px;

    background: #ffc51c;

    color: #07101a;

    text-decoration: none;

    font-size: 10px;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.choose-plan span {
    font-size: 16px;
    line-height: 1;
}

.choose-plan:hover {
    transform: translateY(-2px);

    background: #ffba00;
}


/* Featured button */

.pricing-card.featured .choose-plan {
    background: #009e4f;
    color: #ffffff;
}

.pricing-card.featured .choose-plan:hover {
    background: #008b45;
}






/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        min-height: 300px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 650px) {

    .pricing-section {
        padding: 55px 0 60px;
    }

    .section {
        width: calc(100% - 30px);
    }

    .pricing-heading {
        margin-bottom: 30px;
    }

    .pricing-heading h2 {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .pricing-grid {
        gap: 15px;
    }

    .pricing-card {
        padding: 25px 22px;
    }

    .price strong {
        font-size: 40px;
    }


  
}
















/* =========================================================
   ROOT
========================================================= */

:root {
    --green: #009d4f;
    --green-dark: #008743;
    --green-light: #cdf6d8;
    --green-soft: #e8faed;

    --yellow: #ffc51c;
    --dark: #09111b;
    --dark-2: #111a26;

    --text: #111923;
    --muted: #66717d;

    --white: #ffffff;
    --border: #e2e6e9;

    --radius: 18px;
    --radius-large: 24px;

    --shadow: 0 10px 40px rgba(8, 20, 30, 0.06);
}




img {
    display: block;
    width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
select,
textarea {
    font: inherit;
}


button {
    cursor: pointer;
}


.section {
    width: calc(100% - 40px);
    max-width: 1240px;
    margin: 0 auto;
}


/* =========================================================
   COMMON
========================================================= */

.eyebrow {
    display: inline-block;

    color: var(--green);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 4px;

    margin-bottom: 14px;
}


.section-heading {
    text-align: center;
}


.section-heading h2 {
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -2px;
}


.section-heading h2 span {
    color: var(--green);
}


h1,
h2,
h3 {
    font-weight: 800;
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonials-section {
    padding-top: 90px;
    padding-bottom: 80px;
}


.testimonial-slider {
    max-width: 900px;
    margin: 35px auto 0;
}


.testimonial-card {
    min-height: 300px;

    border: 1px solid var(--border);

    border-radius: 20px;

    padding: 35px 50px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    box-shadow: var(--shadow);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}


.testimonial-card.is-changing {
    opacity: 0;
    transform: translateY(10px);
}


.quote-icon {
    color: var(--green);

    font-size: 35px;

    margin-bottom: 18px;
}


.testimonial-text {
    max-width: 760px;

    font-size: 19px;
    line-height: 1.75;

    font-weight: 500;

    color: #45515e;
}


.testimonial-rating {
    display: flex;
    gap: 4px;

    margin-top: 18px;

    color: var(--yellow);

    font-size: 17px;
}


.testimonial-person {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 15px;
}


.person-avatar {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: var(--green-light);

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--green);

    font-size: 19px;
}


.person-info {
    display: flex;
    flex-direction: column;

    text-align: left;
}


.person-info strong {
    font-size: 15px;
    font-weight: 800;
}


.person-info span {
    color: #89929c;

    font-size: 12px;

    font-weight: 500;
}


.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: 18px;
}


.slider-button {
    width: 44px;
    height: 44px;

    border-radius: 50%;

    border: 1px solid var(--border);

    background: #ffffff;

    color: #59636e;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.25s ease;
}


.slider-button:hover {
    border-color: var(--green);
    color: var(--green);

    transform: translateY(-2px);
}


.slider-button-active {
    background: var(--green);
    border-color: var(--green);

    color: #ffffff;
}


.slider-button-active:hover {
    background: var(--green-dark);
    color: #ffffff;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    background: var(--green-light);

    padding: 90px 0;
}


.contact-wrapper {
    display: grid;

    grid-template-columns: minmax(0, 1fr) minmax(450px, 0.9fr);

    gap: 70px;

    align-items: start;
}


/* LEFT */

.contact-information h2 {
    max-width: 600px;

    font-size: clamp(40px, 4.5vw, 62px);

    line-height: 1.05;

    letter-spacing: -2.5px;

    margin-bottom: 22px;
}


.contact-information h2 span {
    color: var(--green);
}


.contact-intro {
    max-width: 600px;

    color: #4d5d69;

    font-size: 18px;

    line-height: 1.75;

    margin-bottom: 35px;
}


.contact-item {
    display: flex;

    gap: 17px;

    margin-bottom: 23px;
}


.contact-icon {
    width: 50px;
    height: 50px;

    flex: 0 0 50px;

    background: var(--green);

    color: #ffffff;

    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
}


.contact-item strong {
    display: block;

    font-size: 17px;

    font-weight: 800;

    margin-bottom: 3px;
}


.contact-item p {
    color: #53616d;

    font-size: 15px;

    font-weight: 500;
}


.contact-item a {
    transition: color 0.2s ease;
}


.contact-item a:hover {
    color: var(--green);
}


/* SOCIAL */

.social-area {
    margin-top: 30px;
}


.social-area > strong {
    display: block;

    font-size: 17px;

    font-weight: 800;

    margin-bottom: 12px;
}


.social-icons {
    display: flex;

    gap: 9px;
}


.social-icons a {
    width: 42px;
    height: 42px;

    background: #ffffff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--green);

    transition: all 0.25s ease;
}


.social-icons a:hover {
    background: var(--green);

    color: #ffffff;

    transform: translateY(-4px);
}


/* MAP */

.map-wrapper {
    margin-top: 35px;

    width: 100%;

    overflow: hidden;

    border-radius: 18px;

    box-shadow: 0 10px 30px rgba(0, 70, 30, 0.12);
}


.map-wrapper iframe {
    display: block;

    width: 100%;

    min-height: 330px;

    border: 0;
}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form-box {
    background: #ffffff;

    border-radius: 24px;

    padding: 42px;

    box-shadow: 0 20px 60px rgba(0, 60, 30, 0.08);
}


.form-label {
    color: var(--green);

    font-size: 12px;

    letter-spacing: 3px;

    font-weight: 800;
}


.contact-form-box h3 {
    font-size: 34px;

    line-height: 1.15;

    letter-spacing: -1px;

    margin-top: 8px;

    margin-bottom: 8px;
}


.contact-form-box > p {
    color: var(--muted);

    font-size: 15px;

    margin-bottom: 28px;
}


.form-group {
    margin-bottom: 18px;
}


.form-group label {
    display: block;

    font-size: 14px;

    font-weight: 800;

    margin-bottom: 8px;
}


.input-wrapper,
.textarea-wrapper {
    position: relative;
}


.input-wrapper > i,
.textarea-wrapper > i {
    position: absolute;

    left: 16px;
    top: 50%;

    transform: translateY(-50%);

    color: var(--green);

    font-size: 15px;

    pointer-events: none;
}


.textarea-wrapper > i {
    top: 20px;

    transform: none;
}


.input-wrapper input,
.input-wrapper select,
.textarea-wrapper textarea {
    width: 100%;

    border: 1px solid #dfe4e7;

    background: #ffffff;

    border-radius: 12px;

    padding: 14px 16px 14px 45px;

    outline: none;

    color: var(--text);

    font-size: 15px;

    font-weight: 600;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.input-wrapper input:focus,
.input-wrapper select:focus,
.textarea-wrapper textarea:focus {
    border-color: var(--green);

    box-shadow: 0 0 0 4px rgba(0, 157, 79, 0.08);
}


.input-wrapper select {
    appearance: none;

    -webkit-appearance: none;

    cursor: pointer;

    padding-right: 45px;
}


.select-arrow {
    position: absolute !important;

    left: auto !important;

    right: 17px;

    top: 50% !important;

    transform: translateY(-50%) !important;

    color: #64717c !important;
}


.textarea-wrapper textarea {
    resize: vertical;

    min-height: 135px;

    padding-top: 14px;

    line-height: 1.6;
}


.submit-button {
    width: 100%;

    border: 0;

    background: var(--yellow);

    color: #101820;

    border-radius: 12px;

    padding: 16px 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    font-size: 14px;

    font-weight: 800;

    text-transform: uppercase;

    transition: all 0.25s ease;
}


.submit-button:hover {
    background: #ffbd00;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(255, 197, 28, 0.25);
}


.form-message {
    display: none;

    margin-top: 15px;

    padding: 12px;

    border-radius: 10px;

    font-size: 14px;

    font-weight: 700;

    text-align: center;
}


.form-message.success {
    display: block;

    background: #e5f9ec;

    color: var(--green);
}


.form-message.error {
    display: block;

    background: #fff0f0;

    color: #d33;
}


/* =========================================================
   BLOG
========================================================= */

.blog-section {
    padding-top: 100px;
    padding-bottom: 90px;
}


.blog-heading {
    display: flex;

    align-items: end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 35px;
}


.blog-heading h2 {
    font-size: clamp(38px, 4vw, 54px);

    line-height: 1.1;

    letter-spacing: -2px;
}


.blog-heading h2 span {
    color: var(--green);
}


.yellow-button {
    flex-shrink: 0;

    background: var(--yellow);

    padding: 13px 23px;

    border-radius: 9px;

    display: inline-flex;
    align-items: center;

    gap: 10px;

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

    transition: all 0.25s ease;
}


.yellow-button:hover {
    transform: translateY(-3px);

    box-shadow: 0 8px 20px rgba(255, 197, 28, 0.25);
}


.blog-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}


.blog-card {
    border: 1px solid var(--border);

    border-radius: 16px;

    overflow: hidden;

    background: #ffffff;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.blog-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--shadow);
}


.blog-image {
    position: relative;

    height: 210px;

    overflow: hidden;
}


.blog-image img {
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}


.blog-card:hover .blog-image img {
    transform: scale(1.05);
}


.blog-date {
    position: absolute;

    top: 12px;
    left: 12px;

    background: var(--yellow);

    border-radius: 7px;

    padding: 5px 9px;

    font-size: 11px;

    font-weight: 800;
}


.blog-content {
    padding: 22px;
}


.blog-content h3 {
    font-size: 18px;

    line-height: 1.4;

    min-height: 52px;

    margin-bottom: 20px;
}


.read-more {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--green);

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;
}


.read-more i {
    transition: transform 0.2s ease;
}


.read-more:hover i {
    transform: translateX(4px);
}


/* =========================================================
   TRUSTED
========================================================= */

.trusted-section {
    padding-bottom: 80px;
}


.trusted-content {
    border: 1px solid var(--border);

    border-radius: 17px;

    padding: 27px 30px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


.trusted-title {
    display: flex;

    align-items: center;

    gap: 14px;
}


.trusted-icon {
    width: 45px;
    height: 45px;

    background: var(--green-light);

    color: var(--green);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
}


.trusted-title h2 {
    font-size: 23px;

    line-height: 1.3;
}


.trusted-title h2 span {
    color: var(--green);
}


.trust-platforms {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    flex-wrap: wrap;

    gap: 25px;
}


.trust-item {
    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 13px;

    font-weight: 600;
}


.stars {
    display: flex;

    gap: 2px;

    color: var(--green);

    font-size: 12px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: var(--dark);

    color: #ffffff;

    padding: 60px 0 25px;
}


.footer-top {
    padding-bottom: 32px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


.footer-top h2 {
    font-size: clamp(30px, 3vw, 42px);

    line-height: 1.2;

    letter-spacing: -1px;
}


.footer-grid {
    display: grid;

    grid-template-columns: 1.25fr 1fr 0.8fr 1fr;

    gap: 50px;

    padding: 38px 0;
}


.footer-brand-icon {
    width: 43px;
    height: 43px;

    background: #9ff0bd;

    color: var(--green);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 10px;
}


.footer-small-title {
    color: var(--green);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;
}


.footer-company p {
    max-width: 300px;

    margin-top: 13px;

    color: #9aa4af;

    font-size: 14px;

    line-height: 1.7;
}


.footer-socials {
    display: flex;

    gap: 8px;

    margin-top: 20px;
}


.footer-socials a {
    width: 35px;
    height: 35px;

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 50%;

    color: #aeb8c2;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;

    transition: all 0.2s ease;
}


.footer-socials a:hover {
    background: var(--green);

    border-color: var(--green);

    color: #ffffff;
}


.footer-column h3 {
    font-size: 14px;

    margin-bottom: 13px;
}


.footer-column p,
.footer-column a {
    display: block;

    color: #9ca7b1;

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 4px;
}


.footer-column p i {
    width: 20px;

    color: var(--green);

    margin-right: 4px;
}


.footer-column a:hover {
    color: #ffffff;
}


.newsletter p {
    margin-bottom: 14px;
}


.newsletter-form {
    display: flex;

    width: 100%;
}


.newsletter-form input {
    min-width: 0;
    width: 100%;

    border: 0;

    outline: 0;

    background: #202a35;

    color: #ffffff;

    padding: 12px;

    border-radius: 8px 0 0 8px;

    font-size: 13px;
}


.newsletter-form button {
    width: 48px;

    border: 0;

    background: var(--yellow);

    color: var(--dark);

    border-radius: 0 8px 8px 0;
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);

    padding-top: 22px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;
}


.footer-bottom p,
.footer-bottom a {
    color: #78838e;

    font-size: 11px;
}


.footer-bottom div {
    display: flex;

    gap: 20px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .contact-wrapper {
        grid-template-columns: 1fr 1fr;

        gap: 40px;
    }


    .contact-form-box {
        padding: 30px;
    }


    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 850px) {

    body {
        font-size: 16px;
    }


    .testimonials-section {
        padding-top: 65px;
    }


    .testimonial-card {
        padding: 30px 25px;
    }


    .testimonial-text {
        font-size: 17px;
    }


    .contact-wrapper {
        grid-template-columns: 1fr;
    }


    /*
       Form stays after the information on mobile.
       On desktop form is on the right.
    */

    .contact-form-box {
        order: 2;
    }


    .contact-information {
        order: 1;
    }


    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }


    .trusted-content {
        align-items: flex-start;

        flex-direction: column;
    }


    .trust-platforms {
        justify-content: flex-start;
    }

}


@media (max-width: 600px) {

    .section {
        width: calc(100% - 28px);
    }


    .eyebrow {
        font-size: 11px;

        letter-spacing: 3px;
    }


    .section-heading h2,
    .blog-heading h2 {
        font-size: 34px;

        letter-spacing: -1.5px;
    }


    .testimonial-card {
        min-height: 330px;

        padding: 25px 18px;
    }


    .testimonial-text {
        font-size: 16px;

        line-height: 1.65;
    }


    .contact-section {
        padding: 60px 0;
    }


    .contact-information h2 {
        font-size: 40px;
    }


    .contact-form-box {
        padding: 25px 20px;
    }


    .contact-form-box h3 {
        font-size: 29px;
    }


    .blog-section {
        padding-top: 65px;
        padding-bottom: 60px;
    }


    .blog-heading {
        align-items: flex-start;

        flex-direction: column;
    }


    .blog-grid {
        grid-template-columns: 1fr;
    }


    .blog-image {
        height: 230px;
    }


    .trusted-title h2 {
        font-size: 20px;
    }


    .trust-platforms {
        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }


    .footer {
        padding-top: 45px;
    }


    .footer-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 400px) {

    .contact-information h2 {
        font-size: 35px;
    }


    .testimonial-card {
        padding-left: 15px;
        padding-right: 15px;
    }


    .testimonial-person {
        margin-top: 12px;
    }

}


















/* ================= FLOATING BACK TO TOP ================= */

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: black;
    color: #ffffff;

    border-radius: 50%;

    text-decoration: none;
    font-size: 18px;

    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.25);

    /* Hidden at the top */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);

    transition: all 0.3s ease;

    z-index: 9999;
}


/* Show button after scrolling */

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* Hover */

.back-to-top:hover {
    background: #ffffff;
    color: black;

    transform: translateY(-4px);
}

