* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    background: #ffffff;

    border-bottom: 1px solid #e8eee6;

    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 8px 30px rgba(20, 50, 20, 0.08);
}


/* =========================
   CONTAINER
========================= */

.header-container {
    width: min(1240px, 92%);
    min-height: 82px;

    margin: auto;

    display: flex;
    align-items: center;

    gap: 30px;
}


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

.site-logo {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    text-decoration: none;
}

.site-logo img {
    width: 175px;
    height: auto;

    display: block;
}


/* =========================
   NAVIGATION
========================= */

.main-navigation {
    display: flex;
    align-items: center;

    gap: 28px;

    margin-left: auto;
}

.nav-item,
.dropdown-toggle {
    position: relative;

    border: none;
    background: transparent;

    color: #1c2d1c;

    font-family: inherit;

    font-size: 16px;
    font-weight: 600;

    text-decoration: none;

    cursor: pointer;

    white-space: nowrap;

    padding: 31px 0;

    transition: color 0.25s ease;
}

.nav-item:hover,
.nav-item.active,
.dropdown-toggle:hover {
    color: #4f8f35;
}


/* Active Line */

.nav-item::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 21px;

    width: 0;
    height: 2px;

    background: #4f8f35;

    transition: width 0.25s ease;
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}


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

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;

    gap: 7px;
}

.dropdown-toggle span {
    font-size: 15px;

    transition: transform 0.25s ease;
}

.nav-dropdown:hover .dropdown-toggle span {
    transform: rotate(180deg);
}


.dropdown-menu {
    position: absolute;

    top: 74px;
    left: -20px;

    width: 260px;

    padding: 10px;

    background: #ffffff;

    border: 1px solid #e7eee4;

    border-radius: 12px;

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: all 0.25s ease;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.dropdown-menu a {
    display: block;

    padding: 11px 13px;

    color: #344234;

    text-decoration: none;

    font-size: 16px;
    font-weight: 500;

    border-radius: 7px;

    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    color: #4f8f35;

    background: #f1f7ee;

    padding-left: 18px;
}


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

.header-right {
    display: flex;
    align-items: center;

    gap: 18px;

    flex-shrink: 0;
}


/* Phone */

.header-phone {
    display: flex;
    align-items: center;

    gap: 9px;

    color: #1c2d1c;

    text-decoration: none;
}

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

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

    border-radius: 50%;

    background: #edf7e9;

    color: #4f8f35;

    font-size: 15px;
}

.phone-content small {
    display: block;

    color: #7b8779;

    font-size: 14px;

    margin-bottom: 2px;
}

.phone-content strong {
    display: block;

    font-size: 16px;

    white-space: nowrap;
}


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

.header-cta {
    display: inline-flex;

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

    gap: 9px;

    padding: 13px 19px;

    background: #4f8f35;

    color: #ffffff;

    text-decoration: none;

    border-radius: 8px;

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

    box-shadow: 0 7px 18px rgba(79, 143, 53, 0.22);

    transition: all 0.3s ease;
}

.header-cta span {
    font-size: 17px;

    transition: transform 0.3s ease;
}

.header-cta:hover {
    background: #3d7628;

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(79, 143, 53, 0.30);
}

.header-cta:hover span {
    transform: translateX(4px);
}


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

.mobile-menu-btn {
    display: none;

    width: 42px;
    height: 42px;

    padding: 9px;

    border: 1px solid #dfe8dc;

    border-radius: 8px;

    background: #ffffff;

    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;

    width: 100%;
    height: 2px;

    margin: 5px 0;

    background: #1c2d1c;

    transition: all 0.3s ease;
}


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

@media (max-width: 1150px) {

    .main-navigation {
        gap: 18px;
    }

    .header-phone {
        display: none;
    }

}


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

@media (max-width: 850px) {

    .header-container {
        min-height: 72px;

        width: 92%;
    }

    .site-logo img {
        width: 155px;
    }


    .header-right {
        margin-left: auto;
    }

    .header-cta {
        display: none;
    }


    /* Mobile Navigation */

    .main-navigation {
        position: absolute;

        top: 72px;
        left: 4%;

        width: 92%;

        margin: 0;

        padding: 10px;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 2px;

        background: #ffffff;

        border-radius: 12px;

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

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        transition: all 0.3s ease;
    }

    .main-navigation.open {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }


    .nav-item,
    .dropdown-toggle {
        width: 100%;

        padding: 14px;

        text-align: left;

        border-radius: 7px;
    }

    .nav-item::after {
        display: none;
    }

    .nav-item:hover,
    .dropdown-toggle:hover {
        background: #f1f7ee;
    }


    /* Mobile Dropdown */

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;

        width: 100%;

        display: none;

        padding: 5px 10px;

        border: none;

        box-shadow: none;

        opacity: 1;
        visibility: visible;

        transform: none;
    }

    .nav-dropdown.open .dropdown-menu {
        display: block;
    }


    /* Menu Button */

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

}


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

@media (max-width: 480px) {

    .header-container {
        width: 90%;
    }

    .site-logo img {
        width: 140px;
    }

}
.hero-section {
    position: relative;

    min-height: 720px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(8, 28, 13, 0.96) 0%,
            rgba(8, 28, 13, 0.88) 42%,
            rgba(8, 28, 13, 0.52) 72%,
            rgba(8, 28, 13, 0.25) 100%
        ),
        url("../images/pest-control-mumbai-hero.jpg")
        center center / cover no-repeat;

    padding-top: 82px;
}


/* =========================
   OVERLAY
========================= */

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 80% 45%,
            rgba(111, 174, 62, 0.18),
            transparent 30%
        );

    pointer-events: none;
}


/* =========================
   CONTAINER
========================= */

.hero-container {
    position: relative;
    z-index: 2;

    width: min(1240px, 92%);

    margin: auto;

    display: grid;

    grid-template-columns: 1.15fr 0.85fr;

    align-items: center;

    gap: 70px;

    padding: 70px 0 100px;
}


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

.hero-content {
    max-width: 700px;

    color: #ffffff;
}


.hero-badge {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 9px 15px;

    margin-bottom: 24px;

    border: 1px solid rgba(255,255,255,0.18);

    border-radius: 50px;

    background: rgba(255,255,255,0.08);

    color: #dcebd7;

    font-size: 16px;

    font-weight: 600;

    backdrop-filter: blur(10px);
}


.badge-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #82c957;

    box-shadow:
        0 0 0 5px rgba(130, 201, 87, 0.13);
}


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

.hero-content h1 {
    margin: 0 0 22px;

    max-width: 720px;

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

    line-height: 1.04;

    letter-spacing: -2px;

    font-weight: 800;

    color: #ffffff;
}


.hero-content h1 span {
    display: block;

    color: #88d15d;
}


/* =========================
   DESCRIPTION
========================= */

.hero-description {
    max-width: 620px;

    margin-bottom: 30px;

    color: rgba(255,255,255,0.78);

    font-size: 17px;

    line-height: 1.7;
}


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

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 30px;

    flex-wrap: wrap;
}


.hero-btn {
    display: inline-flex;

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

    gap: 9px;

    min-height: 52px;

    padding: 0 21px;

    border-radius: 8px;

    text-decoration: none;

    font-size: 16px;

    font-weight: 700;

    transition: all 0.3s ease;
}


.hero-btn-primary {
    background: #73b84c;

    color: #ffffff;

    box-shadow:
        0 10px 30px rgba(115,184,76,0.25);
}


.hero-btn-primary:hover {
    background: #5c9e39;

    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(115,184,76,0.35);
}


.hero-btn-primary span {
    font-size: 18px;

    transition: transform 0.3s ease;
}


.hero-btn-primary:hover span {
    transform: translateX(4px);
}


.hero-btn-call {
    color: #ffffff;

    border: 1px solid rgba(255,255,255,0.25);

    background: rgba(255,255,255,0.08);

    backdrop-filter: blur(8px);
}


.hero-btn-call:hover {
    background: #ffffff;

    color: #1c301c;

    transform: translateY(-3px);
}


.call-icon {
    width: 31px;
    height: 31px;

    display: flex;

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

    border-radius: 50%;

    background: rgba(255,255,255,0.14);
}


/* =========================
   TRUST
========================= */

.hero-trust {
    display: flex;

    align-items: center;

    gap: 20px;

    flex-wrap: wrap;
}


.trust-item {
    display: flex;

    align-items: center;

    gap: 7px;

    color: rgba(255,255,255,0.78);

    font-size: 16px;
}


.trust-item span {
    width: 20px;
    height: 20px;

    display: flex;

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

    border-radius: 50%;

    background: rgba(115,184,76,0.16);

    color: #8bd15f;

    font-size: 14px;

    font-weight: 800;
}


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

.hero-card {
    width: 100%;
    max-width: 390px;

    justify-self: end;

    padding: 22px;

    border-radius: 18px;

    background: rgba(255,255,255,0.96);

    box-shadow:
        0 30px 80px rgba(0,0,0,0.28);

    backdrop-filter: blur(15px);

    animation: heroFloat 5s ease-in-out infinite;
}


.hero-card-top {
    display: flex;

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

    padding-bottom: 17px;

    margin-bottom: 5px;

    border-bottom: 1px solid #edf1eb;
}


.hero-card-top small {
    display: block;

    margin-bottom: 5px;

    color: #779070;

    font-size: 14px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: .6px;
}


.hero-card-top h3 {
    color: #1b2b1b;

    font-size: 20px;

    font-weight: 800;
}


.card-check {
    width: 40px;
    height: 40px;

    display: flex;

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

    border-radius: 50%;

    background: #eaf6e5;

    color: #579b37;

    font-size: 17px;

    font-weight: 800;
}


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

.hero-services {
    display: grid;

    gap: 7px;

    padding: 12px 0;
}


.hero-service {
    display: grid;

    grid-template-columns: 42px 1fr 20px;

    align-items: center;

    gap: 11px;

    padding: 10px;

    border-radius: 9px;

    text-decoration: none;

    transition: all 0.25s ease;
}


.hero-service:hover {
    background: #f1f7ee;

    transform: translateX(-4px);
}


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

    display: flex;

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

    border-radius: 9px;

    background: #edf6e9;

    font-size: 19px;
}


.hero-service strong {
    display: block;

    margin-bottom: 3px;

    color: #263426;

    font-size: 16px;
}


.hero-service small {
    color: #879285;

    font-size: 14px;
}


.hero-service > span {
    color: #579b37;

    font-size: 16px;

    transition: transform .25s ease;
}


.hero-service:hover > span {
    transform: translateX(3px);
}


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

.hero-card-footer {
    display: flex;

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

    padding-top: 15px;

    border-top: 1px solid #edf1eb;
}


.rating strong {
    display: block;

    color: #e4a326;

    font-size: 16px;

    letter-spacing: 1px;
}


.rating span {
    color: #7b8779;

    font-size: 14px;
}


.mumbai-tag {
    padding: 7px 11px;

    border-radius: 20px;

    background: #f0f7ed;

    color: #579b37;

    font-size: 14px;

    font-weight: 700;
}


/* =========================
   BOTTOM SHAPE
========================= */

.hero-bottom-shape {
    position: absolute;

    left: 0;
    bottom: -1px;

    width: 100%;
    height: 65px;

    background: #ffffff;

    clip-path: ellipse(68% 65% at 50% 100%);
}


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

@keyframes heroFloat {

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

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

}


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

@media (max-width: 950px) {

    .hero-section {
        min-height: auto;

        background:
            linear-gradient(
                90deg,
                rgba(8,28,13,.94),
                rgba(8,28,13,.76)
            ),
            url("../images/pest-control-mumbai-hero.jpg")
            center / cover no-repeat;
    }


    .hero-container {
        grid-template-columns: 1fr;

        gap: 45px;

        padding: 80px 0 100px;
    }


    .hero-content {
        max-width: 700px;
    }


    .hero-card {
        justify-self: start;
    }

}


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

@media (max-width: 600px) {

    .hero-section {
        padding-top: 72px;
    }


    .hero-container {
        width: 90%;

        padding: 65px 0 85px;

        gap: 35px;
    }


    .hero-content h1 {
        font-size: 42px;

        line-height: 1.07;

        letter-spacing: -1.2px;
    }


    .hero-description {
        font-size: 15px;

        line-height: 1.65;
    }


    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }


    .hero-btn {
        width: 100%;
    }


    .hero-trust {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 12px;
    }


    .trust-item {
        font-size: 14px;
    }


    .hero-card {
        max-width: 100%;

        padding: 16px;
    }


    .hero-card-top h3 {
        font-size: 18px;
    }


    .hero-bottom-shape {
        height: 35px;
    }

}
/* =========================
   WHY VENUS SECTION
========================= */

.why-venus-section {
    position: relative;

    padding: 100px 0;

    background: #ffffff;
}


.why-venus-container {
    width: min(1240px, 92%);

    margin: auto;
}


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

.why-venus-heading {
    max-width: 720px;

    margin: 0 auto 55px;

    text-align: center;
}


.section-badge {
    display: inline-block;

    margin-bottom: 14px;

    color: #579b37;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.why-venus-heading h2 {
    margin-bottom: 18px;

    color: #172617;

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.12;

    letter-spacing: -1px;

    font-weight: 800;
}


.why-venus-heading h2 span {
    color: #579b37;
}


.why-venus-heading p {
    max-width: 650px;

    margin: auto;

    color: #718070;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================
   FEATURE GRID
========================= */

.why-venus-grid {
    display: grid;

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

    gap: 18px;
}


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

.why-card {
    padding: 28px 23px;

    border: 1px solid #e9efe7;

    border-radius: 14px;

    background: #ffffff;

    transition: all 0.3s ease;
}


.why-card:hover {
    transform: translateY(-7px);

    border-color: #cfe3c7;

    box-shadow:
        0 18px 45px rgba(34, 72, 27, 0.09);
}


.why-icon {
    width: 50px;
    height: 50px;

    display: flex;

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

    margin-bottom: 20px;

    border-radius: 12px;

    background: #edf7e9;

    color: #579b37;
}


.why-icon span {
    font-size: 21px;

    font-weight: 800;
}


.why-card h3 {
    margin-bottom: 10px;

    color: #203020;

    font-size: 16px;

    line-height: 1.4;
}


.why-card p {
    color: #788378;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================
   TRUST STRIP
========================= */

.why-trust-strip {
    display: grid;

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

    align-items: center;

    margin-top: 55px;

    padding: 25px 35px;

    border-radius: 14px;

    background: #f3f8f0;
}


.trust-stat {
    text-align: center;
}


.trust-stat strong {
    display: block;

    margin-bottom: 4px;

    color: #315c25;

    font-size: 25px;

    font-weight: 800;
}


.trust-stat span {
    color: #71806d;

    font-size: 14px;

    font-weight: 600;
}


.trust-divider {
    width: 1px;

    height: 40px;

    background: #d8e5d3;
}


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

@media (max-width: 1000px) {

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

}


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

@media (max-width: 600px) {

    .why-venus-section {
        padding: 70px 0;
    }


    .why-venus-container {
        width: 90%;
    }


    .why-venus-heading {
        margin-bottom: 35px;
    }


    .why-venus-heading h2 {
        font-size: 34px;
    }


    .why-venus-heading p {
        font-size: 16px;
    }


    .why-venus-grid {
        grid-template-columns: 1fr;

        gap: 13px;
    }


    .why-card {
        display: flex;

        gap: 16px;

        padding: 20px;
    }


    .why-icon {
        flex-shrink: 0;

        width: 45px;
        height: 45px;

        margin-bottom: 0;
    }


    .why-card h3 {
        font-size: 15px;
    }


    .why-card p {
        font-size: 16px;
    }


    .why-trust-strip {
        grid-template-columns: 1fr 1fr;

        gap: 25px;

        padding: 25px 15px;

        margin-top: 35px;
    }


    .trust-divider {
        display: none;
    }


    .trust-stat strong {
        font-size: 21px;
    }

}
.services-section {
    padding: 105px 0;

    background: #f7faf5;
}


.services-container {
    width: min(1240px, 92%);

    margin: auto;
}


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

.services-heading {
    max-width: 720px;

    margin: 0 auto 55px;

    text-align: center;
}


.services-badge {
    margin-bottom: 13px;

    color: #579b37;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 1.6px;
}


.services-heading h2 {
    margin-bottom: 17px;

    color: #172617;

    font-size: clamp(34px, 4vw, 50px);

    line-height: 1.1;

    letter-spacing: -1.2px;

    font-weight: 800;
}


.services-heading h2 span {
    color: #579b37;
}


.services-heading p {
    max-width: 650px;

    margin: auto;

    color: #738071;

    font-size: 15px;

    line-height: 1.8;
}


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

.services-grid {
    display: grid;

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

    gap: 20px;
}


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

.service-card {
    overflow: hidden;

    display: block;

    background: #ffffff;

    border: 1px solid #e6ede3;

    border-radius: 15px;

    text-decoration: none;

    transition: all 0.35s ease;
}


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

    border-color: #cfe2c8;

    box-shadow:
        0 20px 45px rgba(31, 70, 25, 0.10);
}


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

.service-image {
    position: relative;

    height: 190px;

    overflow: hidden;

    background: #eaf1e7;
}


.service-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}


.service-card:hover .service-image img {
    transform: scale(1.07);
}


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

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent 55%,
            rgba(10, 30, 10, 0.38)
        );
}


/* Number */

.service-number {
    position: absolute;

    z-index: 2;

    top: 13px;
    right: 13px;

    width: 34px;
    height: 34px;

    display: flex;

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

    border-radius: 50%;

    background: rgba(255,255,255,0.92);

    color: #579b37;

    font-size: 14px;

    font-weight: 800;
}


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

.service-content {
    position: relative;

    padding: 24px 20px 22px;
}


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

    display: flex;

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

    margin-top: -45px;
    margin-bottom: 16px;

    position: relative;
    z-index: 3;

    border-radius: 10px;

    background: #ffffff;

    box-shadow: 0 7px 18px rgba(0,0,0,0.10);

    font-size: 20px;
}


.service-content h3 {
    margin-bottom: 9px;

    color: #1d2e1d;

    font-size: 16px;

    line-height: 1.35;
}


.service-content p {
    min-height: 65px;

    margin-bottom: 16px;

    color: #788478;

    font-size: 16px;

    line-height: 1.7;
}


.service-link {
    display: inline-block;

    color: #579b37;

    font-size: 14px;

    font-weight: 800;

    transition: transform 0.25s ease;
}


.service-card:hover .service-link {
    transform: translateX(4px);
}


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

.services-bottom {
    display: flex;

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

    gap: 25px;

    margin-top: 45px;

    padding: 24px 30px;

    border-radius: 13px;

    background: #1d341b;

    color: #ffffff;
}


.services-bottom strong {
    display: block;

    margin-bottom: 5px;

    font-size: 15px;
}


.services-bottom span {
    color: rgba(255,255,255,0.65);

    font-size: 16px;
}


.services-bottom a {
    flex-shrink: 0;

    padding: 12px 18px;

    border-radius: 7px;

    background: #78b953;

    color: #ffffff;

    text-decoration: none;

    font-size: 16px;

    font-weight: 700;

    transition: all 0.25s ease;
}


.services-bottom a:hover {
    background: #5e9c3c;

    transform: translateY(-2px);
}


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

@media (max-width: 1050px) {

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

}


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

@media (max-width: 800px) {

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

}


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

@media (max-width: 550px) {

    .services-section {
        padding: 75px 0;
    }


    .services-container {
        width: 90%;
    }


    .services-heading {
        margin-bottom: 35px;
    }


    .services-heading h2 {
        font-size: 34px;
    }


    .services-heading p {
        font-size: 16px;
    }


    .services-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    .service-image {
        height: 210px;
    }


    .service-content {
        padding: 23px 20px;
    }


    .service-content p {
        min-height: auto;
    }


    .services-bottom {
        flex-direction: column;

        align-items: flex-start;

        padding: 22px;
    }


    .services-bottom a {
        width: 100%;

        text-align: center;
    }

}
/* =========================
   ABOUT SECTION
========================= */

.about-section {
    position: relative;

    padding: 110px 0;

    background: #ffffff;

    overflow: hidden;
}


.about-container {
    width: min(1180px, 92%);

    margin: auto;

    display: grid;

    grid-template-columns: 0.92fr 1.08fr;

    align-items: center;

    gap: 80px;
}


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

.about-image-wrap {
    position: relative;

    padding: 0 25px 25px 0;
}


.about-image {
    position: relative;

    height: 570px;

    overflow: hidden;

    border-radius: 18px;

    background: #edf4ea;

    box-shadow:
        0 25px 60px rgba(28, 65, 23, 0.12);
}


.about-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(15, 35, 13, 0.35),
            transparent 45%
        );
}


.about-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}


.about-image-wrap:hover .about-image img {
    transform: scale(1.04);
}


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

.experience-card {
    position: absolute;

    z-index: 3;

    left: -25px;
    bottom: 55px;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 18px 22px;

    border-radius: 12px;

    background: #579b37;

    color: #ffffff;

    box-shadow:
        0 15px 35px rgba(52, 104, 37, 0.25);
}


.experience-card strong {
    font-size: 36px;

    line-height: 1;

    font-weight: 800;
}


.experience-card span {
    font-size: 14px;

    line-height: 1.45;

    font-weight: 600;

    opacity: 0.9;
}


/* =========================
   DECORATIVE SHAPE
========================= */

.about-shape {
    position: absolute;

    z-index: -1;

    right: 0;
    bottom: 0;

    width: 180px;
    height: 180px;

    border-radius: 18px;

    background: #edf6e9;
}


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

.about-content {
    max-width: 620px;
}


.about-badge {
    margin-bottom: 13px;

    color: #579b37;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.about-content h2 {
    margin-bottom: 21px;

    color: #172617;

    font-size: clamp(35px, 4vw, 50px);

    line-height: 1.1;

    letter-spacing: -1.3px;

    font-weight: 800;
}


.about-content h2 span {
    display: block;

    color: #579b37;
}


.about-content > p {
    margin-bottom: 15px;

    color: #758075;

    font-size: 16px;

    line-height: 1.8;
}


.about-content .about-intro {
    color: #4f5e4e;

    font-size: 16px;

    font-weight: 500;

    line-height: 1.75;
}


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

.about-features {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px 25px;

    margin-top: 28px;

    padding-top: 25px;

    border-top: 1px solid #e8eee6;
}


.about-feature {
    display: flex;

    align-items: flex-start;

    gap: 11px;
}


.feature-check {
    flex-shrink: 0;

    width: 27px;
    height: 27px;

    display: flex;

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

    border-radius: 50%;

    background: #edf7e9;

    color: #579b37;

    font-size: 16px;

    font-weight: 800;
}


.about-feature strong {
    display: block;

    margin-bottom: 4px;

    color: #253525;

    font-size: 16px;
}


.about-feature p {
    color: #859085;

    font-size: 14px;

    line-height: 1.6;
}


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

.about-actions {
    display: flex;

    align-items: center;

    gap: 22px;

    margin-top: 32px;
}


.about-btn {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 14px 20px;

    border-radius: 8px;

    background: #579b37;

    color: #ffffff;

    text-decoration: none;

    font-size: 16px;

    font-weight: 700;

    transition: all 0.3s ease;
}


.about-btn:hover {
    background: #437d2b;

    transform: translateY(-2px);
}


.about-btn span {
    font-size: 17px;
}


.about-call {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #253525;

    text-decoration: none;
}


.about-call > span {
    width: 37px;
    height: 37px;

    display: flex;

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

    border-radius: 50%;

    background: #edf7e9;

    color: #579b37;
}


.about-call small {
    display: block;

    margin-bottom: 2px;

    color: #899289;

    font-size: 13px;
}


.about-call strong {
    display: block;

    font-size: 16px;
}


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

@media (max-width: 950px) {

    .about-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .about-image-wrap {
        max-width: 600px;

        width: 100%;

        margin: auto;
    }


    .about-content {
        max-width: 700px;

        margin: auto;
    }

}


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

@media (max-width: 600px) {

    .about-section {
        padding: 75px 0;
    }


    .about-container {
        width: 90%;

        gap: 45px;
    }


    .about-image-wrap {
        padding: 0 15px 18px 0;
    }


    .about-image {
        height: 420px;

        border-radius: 14px;
    }


    .experience-card {
        left: -5px;

        bottom: 35px;

        padding: 14px 16px;
    }


    .experience-card strong {
        font-size: 28px;
    }


    .experience-card span {
        font-size: 13px;
    }


    .about-content h2 {
        font-size: 34px;
    }


    .about-content .about-intro {
        font-size: 16px;
    }


    .about-features {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    .about-actions {
        flex-direction: column;

        align-items: stretch;

        gap: 15px;
    }


    .about-btn {
        justify-content: center;
    }


    .about-call {
        justify-content: center;
    }

}
/* =========================
   PROCESS SECTION
========================= */

.process-section {
    padding: 105px 0;

    background: #f4f8f2;
}


.process-container {
    width: min(1240px, 92%);

    margin: auto;
}


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

.process-heading {
    max-width: 720px;

    margin: 0 auto 60px;

    text-align: center;
}


.process-badge {
    margin-bottom: 13px;

    color: #579b37;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 1.6px;
}


.process-heading h2 {
    margin-bottom: 18px;

    color: #172617;

    font-size: clamp(35px, 4vw, 50px);

    line-height: 1.1;

    letter-spacing: -1.2px;

    font-weight: 800;
}


.process-heading h2 span {
    display: block;

    color: #579b37;
}


.process-heading p {
    max-width: 650px;

    margin: auto;

    color: #748074;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================
   PROCESS GRID
========================= */

.process-grid {
    display: grid;

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

    gap: 18px;
}


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

.process-card {
    position: relative;

    min-height: 290px;

    padding: 25px 22px;

    background: #ffffff;

    border: 1px solid #e4ece1;

    border-radius: 15px;

    transition: all 0.3s ease;
}


.process-card:hover {
    transform: translateY(-7px);

    border-color: #c8ddc1;

    box-shadow:
        0 20px 45px rgba(34, 73, 28, 0.09);
}


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

.process-top {
    display: flex;

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

    margin-bottom: 28px;
}


.process-number {
    color: #d6e5d1;

    font-size: 30px;

    line-height: 1;

    font-weight: 800;
}


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

    display: flex;

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

    border-radius: 12px;

    background: #edf7e9;

    font-size: 22px;
}


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

.process-card h3 {
    margin-bottom: 11px;

    color: #203020;

    font-size: 16px;

    line-height: 1.4;
}


.process-card p {
    color: #7b857a;

    font-size: 16px;

    line-height: 1.75;
}


/* =========================
   CONNECTING LINE
========================= */

.process-line {
    position: absolute;

    top: 51px;

    right: -29px;

    width: 40px;

    height: 1px;

    background: #c9dbc3;

    z-index: 2;
}


.process-line::after {
    content: "›";

    position: absolute;

    right: -2px;

    top: -9px;

    color: #579b37;

    font-size: 17px;
}


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

.process-cta {
    display: flex;

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

    gap: 30px;

    margin-top: 55px;

    padding: 27px 30px;

    border-radius: 15px;

    background: #1c3419;

    box-shadow:
        0 18px 40px rgba(20, 50, 17, 0.12);
}


.process-cta-content span {
    display: block;

    margin-bottom: 5px;

    color: #9eb39a;

    font-size: 14px;
}


.process-cta-content strong {
    color: #ffffff;

    font-size: 19px;

    font-weight: 700;
}


.process-cta-buttons {
    display: flex;

    align-items: center;

    gap: 18px;

    flex-shrink: 0;
}


.process-btn {
    display: inline-flex;

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

    padding: 13px 19px;

    border-radius: 7px;

    background: #72b44c;

    color: #ffffff;

    text-decoration: none;

    font-size: 16px;

    font-weight: 700;

    transition: all 0.25s ease;
}


.process-btn:hover {
    background: #5d9b3c;

    transform: translateY(-2px);
}


.process-phone {
    color: #ffffff;

    text-decoration: none;

    font-size: 16px;

    font-weight: 600;
}


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

@media (max-width: 1000px) {

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

        gap: 18px;
    }


    .process-line {
        display: none;
    }

}


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

@media (max-width: 600px) {

    .process-section {
        padding: 75px 0;
    }


    .process-container {
        width: 90%;
    }


    .process-heading {
        margin-bottom: 35px;
    }


    .process-heading h2 {
        font-size: 34px;
    }


    .process-heading p {
        font-size: 16px;
    }


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

        gap: 13px;
    }


    .process-card {
        min-height: auto;

        padding: 21px;
    }


    .process-top {
        margin-bottom: 20px;
    }


    .process-number {
        font-size: 25px;
    }


    .process-icon {
        width: 45px;
        height: 45px;

        font-size: 19px;
    }


    .process-cta {
        flex-direction: column;

        align-items: flex-start;

        margin-top: 35px;

        padding: 22px;
    }


    .process-cta-buttons {
        width: 100%;

        flex-direction: column;

        align-items: stretch;

        gap: 12px;
    }


    .process-btn,
    .process-phone {
        width: 100%;

        text-align: center;
    }

}
/* =========================
   SOLUTIONS SECTION
========================= */

.solutions-section {
    padding: 105px 0;

    background: #ffffff;
}


.solutions-container {
    width: min(1180px, 92%);

    margin: auto;
}


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

.solutions-heading {
    max-width: 720px;

    margin: 0 auto 55px;

    text-align: center;
}


.solutions-badge {
    margin-bottom: 13px;

    color: #579b37;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.solutions-heading h2 {
    margin-bottom: 18px;

    color: #172617;

    font-size: clamp(35px, 4vw, 50px);

    line-height: 1.1;

    letter-spacing: -1.2px;

    font-weight: 800;
}


.solutions-heading h2 span {
    color: #579b37;
}


.solutions-heading p {
    max-width: 650px;

    margin: auto;

    color: #748074;

    font-size: 16px;

    line-height: 1.8;
}


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

.solutions-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;
}


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

.solution-card {
    overflow: hidden;

    border: 1px solid #e5ece2;

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 10px 30px rgba(25, 55, 20, 0.05);

    transition: all 0.35s ease;
}


.solution-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 25px 55px rgba(25, 65, 20, 0.11);
}


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

.solution-image {
    position: relative;

    height: 270px;

    overflow: hidden;
}


.solution-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}


.solution-card:hover .solution-image img {
    transform: scale(1.06);
}


.solution-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(10, 28, 9, 0.6),
            transparent 55%
        );
}


.solution-label {
    position: absolute;

    left: 20px;
    bottom: 18px;

    padding: 8px 12px;

    border-radius: 5px;

    background: #579b37;

    color: #ffffff;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1px;
}


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

.solution-content {
    position: relative;

    padding: 25px 27px 28px;
}


.solution-icon {
    position: absolute;

    top: -25px;
    right: 25px;

    width: 50px;
    height: 50px;

    display: flex;

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

    border-radius: 12px;

    background: #ffffff;

    box-shadow:
        0 8px 20px rgba(0,0,0,0.10);

    font-size: 23px;
}


.solution-content h3 {
    margin-bottom: 10px;

    color: #1d2d1d;

    font-size: 21px;
}


.solution-content > p {
    margin-bottom: 20px;

    color: #788478;

    font-size: 16px;

    line-height: 1.75;
}


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

.solution-content ul {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin: 0 0 23px;

    padding: 0;

    list-style: none;
}


.solution-content li {
    display: flex;

    align-items: center;

    gap: 7px;

    color: #526052;

    font-size: 14px;

    font-weight: 500;
}


.solution-content li span {
    width: 18px;
    height: 18px;

    display: flex;

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

    flex-shrink: 0;

    border-radius: 50%;

    background: #edf7e9;

    color: #579b37;

    font-size: 13px;

    font-weight: 800;
}


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

.solution-btn {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 12px 17px;

    border-radius: 7px;

    background: #579b37;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition: all 0.25s ease;
}


.solution-btn span {
    font-size: 15px;

    transition: transform 0.25s ease;
}


.solution-btn:hover {
    background: #437d2b;
}


.solution-btn:hover span {
    transform: translateX(4px);
}


/* =========================
   PROPERTY TYPES
========================= */

.property-types {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 9px;

    margin-top: 40px;
}


.property-types > span {
    margin-right: 5px;

    color: #637062;

    font-size: 14px;

    font-weight: 700;
}


.property-types a {
    padding: 8px 12px;

    border: 1px solid #e2eae0;

    border-radius: 20px;

    color: #647163;

    background: #f8faf7;

    text-decoration: none;

    font-size: 14px;

    transition: all 0.25s ease;
}


.property-types a:hover {
    border-color: #c6ddbd;

    background: #edf7e9;

    color: #579b37;
}


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

@media (max-width: 800px) {

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

}


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

@media (max-width: 550px) {

    .solutions-section {
        padding: 75px 0;
    }


    .solutions-container {
        width: 90%;
    }


    .solutions-heading {
        margin-bottom: 35px;
    }


    .solutions-heading h2 {
        font-size: 34px;
    }


    .solutions-heading p {
        font-size: 16px;
    }


    .solution-image {
        height: 220px;
    }


    .solution-content {
        padding: 23px 20px 24px;
    }


    .solution-content h3 {
        font-size: 19px;
    }


    .solution-content ul {
        grid-template-columns: 1fr;

        gap: 9px;
    }


    .property-types {
        margin-top: 30px;
    }

}
/* =========================
   AREAS SECTION
========================= */

.areas-section {
    padding: 105px 0;

    background: #f5f9f3;
}


.areas-container {
    width: min(1180px, 92%);

    margin: auto;
}


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

.areas-heading {
    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;
}


.areas-badge {
    margin-bottom: 13px;

    color: #579b37;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 1.6px;
}


.areas-heading h2 {
    margin-bottom: 17px;

    color: #172617;

    font-size: clamp(35px, 4vw, 50px);

    line-height: 1.1;

    letter-spacing: -1.2px;

    font-weight: 800;
}


.areas-heading h2 span {
    color: #579b37;
}


.areas-heading p {
    max-width: 620px;

    margin: auto;

    color: #758075;

    font-size: 16px;

    line-height: 1.8;
}


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

.areas-content {
    display: grid;

    grid-template-columns: 0.72fr 1.28fr;

    gap: 30px;

    align-items: stretch;
}


/* =========================
   INFO BOX
========================= */

.areas-info {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 35px;

    border-radius: 16px;

    background: #1d341a;

    color: #ffffff;

    box-shadow:
        0 18px 40px rgba(25, 60, 20, 0.10);
}


.areas-info-icon {
    width: 52px;
    height: 52px;

    display: flex;

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

    margin-bottom: 22px;

    border-radius: 12px;

    background: rgba(255,255,255,0.10);

    font-size: 22px;
}


.areas-info h3 {
    margin-bottom: 13px;

    color: #ffffff;

    font-size: 24px;

    line-height: 1.25;
}


.areas-info p {
    margin-bottom: 25px;

    color: rgba(255,255,255,0.65);

    font-size: 16px;

    line-height: 1.8;
}


.areas-btn {
    display: inline-flex;

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

    align-self: flex-start;

    padding: 12px 17px;

    border-radius: 7px;

    background: #72b44c;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition: all 0.25s ease;
}


.areas-btn:hover {
    background: #5d993e;

    transform: translateY(-2px);
}


/* =========================
   AREAS GRID
========================= */

.areas-grid {
    display: grid;

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

    gap: 12px;
}


.area-card {
    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: center;

    min-height: 105px;

    padding: 18px 20px 18px 45px;

    border: 1px solid #e0e9dd;

    border-radius: 11px;

    background: #ffffff;

    text-decoration: none;

    transition: all 0.3s ease;
}


.area-card:hover {
    transform: translateY(-3px);

    border-color: #bdd5b6;

    box-shadow:
        0 12px 25px rgba(35, 75, 28, 0.07);
}


.area-card > span {
    position: absolute;

    left: 17px;
    top: 18px;

    color: #d1e1cc;

    font-size: 14px;

    font-weight: 800;
}


.area-card strong {
    margin-bottom: 5px;

    color: #263626;

    font-size: 16px;
}


.area-card small {
    color: #879187;

    font-size: 14px;

    line-height: 1.5;
}


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

.areas-bottom {
    display: flex;

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

    gap: 8px;

    flex-wrap: wrap;

    margin-top: 35px;

    padding: 18px 25px;

    border: 1px solid #dfe9dc;

    border-radius: 10px;

    background: #ffffff;

    color: #718070;

    font-size: 14px;
}


.areas-bottom strong {
    color: #334332;

    font-size: 14px;
}


.areas-bottom a {
    margin-left: 8px;

    color: #579b37;

    text-decoration: none;

    font-weight: 800;
}


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

@media (max-width: 900px) {

    .areas-content {
        grid-template-columns: 1fr;
    }


    .areas-info {
        padding: 30px;
    }

}


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

@media (max-width: 600px) {

    .areas-section {
        padding: 75px 0;
    }


    .areas-container {
        width: 90%;
    }


    .areas-heading {
        margin-bottom: 35px;
    }


    .areas-heading h2 {
        font-size: 34px;
    }


    .areas-heading p {
        font-size: 16px;
    }


    .areas-info {
        padding: 25px;
    }


    .areas-info h3 {
        font-size: 21px;
    }


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


    .area-card {
        min-height: 90px;
    }


    .areas-bottom {
        flex-direction: column;

        text-align: center;

        padding: 20px;
    }


    .areas-bottom a {
        margin-left: 0;
    }

}
/* =========================
   REVIEWS SECTION
========================= */

.reviews-section {
    padding: 105px 0;

    background: #ffffff;
}


.reviews-container {
    width: min(1180px, 92%);

    margin: auto;
}


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

.reviews-heading {
    max-width: 700px;

    margin: 0 auto 50px;

    text-align: center;
}


.reviews-badge {
    margin-bottom: 13px;

    color: #579b37;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.reviews-heading h2 {
    margin-bottom: 16px;

    color: #172617;

    font-size: clamp(35px, 4vw, 50px);

    line-height: 1.1;

    letter-spacing: -1.2px;

    font-weight: 800;
}


.reviews-heading h2 span {
    color: #579b37;
}


.reviews-heading p {
    color: #788378;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================
   SUMMARY
========================= */

.reviews-summary {
    display: grid;

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

    align-items: center;

    gap: 28px;

    margin-bottom: 30px;

    padding: 25px 30px;

    border: 1px solid #e4ece1;

    border-radius: 14px;

    background: #f6faf4;
}


.rating-score {
    text-align: center;
}


.rating-score strong {
    display: block;

    color: #203020;

    font-size: 38px;

    line-height: 1;

    font-weight: 800;
}


.rating-stars {
    margin: 6px 0;

    color: #f2ad2e;

    font-size: 16px;

    letter-spacing: 2px;
}


.rating-score span {
    color: #7c877c;

    font-size: 13px;
}


.rating-divider {
    width: 1px;

    height: 55px;

    background: #dce6d9;
}


.rating-info strong {
    display: block;

    margin-bottom: 5px;

    color: #293929;

    font-size: 16px;
}


.rating-info p {
    max-width: 500px;

    color: #7b867b;

    font-size: 14px;

    line-height: 1.6;
}


.rating-badge {
    display: flex;

    align-items: center;

    gap: 7px;

    padding: 9px 12px;

    border-radius: 20px;

    background: #e9f5e5;

    color: #579b37;

    font-size: 14px;

    font-weight: 700;
}


.rating-badge span {
    width: 17px;
    height: 17px;

    display: flex;

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

    border-radius: 50%;

    background: #579b37;

    color: #ffffff;

    font-size: 13px;
}


/* =========================
   REVIEWS GRID
========================= */

.reviews-grid {
    display: grid;

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

    gap: 18px;
}


.review-card {
    padding: 25px;

    border: 1px solid #e5ece3;

    border-radius: 14px;

    background: #ffffff;

    transition: all 0.3s ease;
}


.review-card:hover {
    transform: translateY(-5px);

    border-color: #cbdcc6;

    box-shadow:
        0 18px 40px rgba(35, 70, 28, 0.08);
}


/* =========================
   USER
========================= */

.review-top {
    display: flex;

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

    gap: 10px;

    margin-bottom: 17px;
}


.review-user {
    display: flex;

    align-items: center;

    gap: 10px;
}


.review-avatar {
    width: 40px;
    height: 40px;

    display: flex;

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

    border-radius: 50%;

    background: #eaf5e6;

    color: #579b37;

    font-size: 16px;

    font-weight: 800;
}


.review-user strong {
    display: block;

    margin-bottom: 3px;

    color: #293629;

    font-size: 16px;
}


.review-user span {
    color: #8a9389;

    font-size: 13px;
}


.review-source {
    color: #7c877c;

    font-size: 13px;

    font-weight: 700;
}


/* =========================
   REVIEW
========================= */

.review-stars {
    margin-bottom: 12px;

    color: #f2ad2e;

    font-size: 16px;

    letter-spacing: 2px;
}


.review-card p {
    min-height: 85px;

    margin-bottom: 17px;

    color: #667166;

    font-size: 16px;

    line-height: 1.75;
}


.review-date {
    padding-top: 13px;

    border-top: 1px solid #edf1eb;

    color: #9aa29a;

    font-size: 13px;
}


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

.reviews-cta {
    display: flex;

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

    gap: 20px;

    margin-top: 35px;

    padding: 23px 27px;

    border-radius: 12px;

    background: #1d341a;
}


.reviews-cta strong {
    display: block;

    margin-bottom: 4px;

    color: #ffffff;

    font-size: 16px;
}


.reviews-cta span {
    color: rgba(255,255,255,0.6);

    font-size: 14px;
}


.review-btn {
    flex-shrink: 0;

    padding: 12px 17px;

    border-radius: 7px;

    background: #72b44c;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition: all 0.25s ease;
}


.review-btn:hover {
    background: #5d993e;

    transform: translateY(-2px);
}


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

@media (max-width: 850px) {

    .reviews-summary {
        grid-template-columns: auto 1px 1fr;
    }


    .rating-badge {
        display: none;
    }


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

}


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

@media (max-width: 600px) {

    .reviews-section {
        padding: 75px 0;
    }


    .reviews-container {
        width: 90%;
    }


    .reviews-heading {
        margin-bottom: 35px;
    }


    .reviews-heading h2 {
        font-size: 34px;
    }


    .reviews-heading p {
        font-size: 16px;
    }


    .reviews-summary {
        display: flex;

        flex-direction: column;

        text-align: center;

        gap: 15px;

        padding: 22px;
    }


    .rating-divider {
        width: 70px;

        height: 1px;
    }


    .rating-info p {
        margin: auto;
    }


    .reviews-grid {
        grid-template-columns: 1fr;

        gap: 13px;
    }


    .review-card p {
        min-height: auto;
    }


    .reviews-cta {
        flex-direction: column;

        align-items: flex-start;

        padding: 22px;
    }


    .review-btn {
        width: 100%;

        text-align: center;
    }

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

.faq-section {
    padding: 105px 0;

    background: #f6faf4;
}


.faq-container {
    width: min(1180px, 92%);

    margin: auto;
}


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

.faq-heading {
    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;
}


.faq-badge {
    margin-bottom: 13px;

    color: #579b37;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 1.6px;
}


.faq-heading h2 {
    margin-bottom: 17px;

    color: #172617;

    font-size: clamp(35px, 4vw, 50px);

    line-height: 1.1;

    letter-spacing: -1.2px;

    font-weight: 800;
}


.faq-heading h2 span {
    color: #579b37;
}


.faq-heading p {
    max-width: 620px;

    margin: auto;

    color: #788378;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================
   LAYOUT
========================= */

.faq-layout {
    display: grid;

    grid-template-columns: 0.72fr 1.28fr;

    gap: 35px;

    align-items: start;
}


/* =========================
   INTRO BOX
========================= */

.faq-intro {
    padding: 35px;

    border-radius: 16px;

    background: #1d341a;

    color: #ffffff;

    box-shadow:
        0 20px 45px rgba(26, 60, 21, 0.10);
}


.faq-intro-icon {
    width: 48px;
    height: 48px;

    display: flex;

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

    margin-bottom: 20px;

    border-radius: 11px;

    background: rgba(255,255,255,0.10);

    color: #8bc66b;

    font-size: 22px;

    font-weight: 800;
}


.faq-intro h3 {
    margin-bottom: 12px;

    color: #ffffff;

    font-size: 22px;
}


.faq-intro > p {
    margin-bottom: 23px;

    color: rgba(255,255,255,0.65);

    font-size: 16px;

    line-height: 1.8;
}


.faq-contact-btn {
    display: inline-flex;

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

    padding: 12px 17px;

    border-radius: 7px;

    background: #72b44c;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition: all 0.25s ease;
}


.faq-contact-btn:hover {
    background: #5d993e;

    transform: translateY(-2px);
}


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

.faq-call {
    display: flex;

    align-items: center;

    gap: 11px;

    margin-top: 28px;

    padding-top: 22px;

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


.faq-call > span {
    width: 35px;
    height: 35px;

    display: flex;

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

    border-radius: 50%;

    background: rgba(255,255,255,0.08);

    color: #8bc66b;
}


.faq-call small {
    display: block;

    margin-bottom: 3px;

    color: rgba(255,255,255,0.5);

    font-size: 13px;
}


.faq-call strong {
    color: #ffffff;

    font-size: 16px;
}


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

.faq-list {
    display: flex;

    flex-direction: column;

    gap: 10px;
}


.faq-item {
    overflow: hidden;

    border: 1px solid #e1e9df;

    border-radius: 11px;

    background: #ffffff;

    transition: all 0.25s ease;
}


.faq-item.active {
    border-color: #c9ddc3;

    box-shadow:
        0 10px 25px rgba(35, 75, 28, 0.05);
}


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

.faq-question {
    width: 100%;

    display: flex;

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

    gap: 20px;

    padding: 19px 20px;

    border: 0;

    outline: none;

    background: transparent;

    color: #263526;

    text-align: left;

    font-family: inherit;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;
}


.faq-question i {
    width: 27px;
    height: 27px;

    display: flex;

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

    flex-shrink: 0;

    border-radius: 50%;

    background: #edf7e9;

    color: #579b37;

    font-size: 17px;

    font-style: normal;

    transition: transform 0.3s ease;
}


.faq-item.active .faq-question i {
    transform: rotate(45deg);
}


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

.faq-answer {
    display: none;

    padding: 0 20px 20px;
}


.faq-item.active .faq-answer {
    display: block;
}


.faq-answer p {
    margin: 0;

    padding-top: 2px;

    color: #778277;

    font-size: 16px;

    line-height: 1.8;
}


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

@media (max-width: 850px) {

    .faq-layout {
        grid-template-columns: 1fr;
    }


    .faq-intro {
        max-width: 100%;
    }

}


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

@media (max-width: 600px) {

    .faq-section {
        padding: 75px 0;
    }


    .faq-container {
        width: 90%;
    }


    .faq-heading {
        margin-bottom: 35px;
    }


    .faq-heading h2 {
        font-size: 34px;
    }


    .faq-heading p {
        font-size: 16px;
    }


    .faq-intro {
        padding: 25px;
    }


    .faq-intro h3 {
        font-size: 20px;
    }


    .faq-question {
        padding: 16px;

        font-size: 16px;
    }


    .faq-answer {
        padding: 0 16px 17px;
    }

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

.contact-section {
    padding: 105px 0;

    background: #1c3419;
}


.contact-container {
    width: min(1180px, 92%);

    margin: auto;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 70px;

    align-items: center;
}


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

.contact-content {
    color: #ffffff;
}


.contact-badge {
    margin-bottom: 14px;

    color: #8ac86b;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 1.6px;
}


.contact-content h2 {
    margin-bottom: 20px;

    color: #ffffff;

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

    line-height: 1.08;

    letter-spacing: -1.4px;

    font-weight: 800;
}


.contact-content h2 span {
    display: block;

    color: #78b954;
}


.contact-content > p {
    max-width: 520px;

    margin-bottom: 30px;

    color: rgba(255,255,255,0.63);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================
   CONTACT OPTIONS
========================= */

.contact-options {
    display: flex;

    flex-direction: column;

    gap: 12px;
}


.contact-option {
    display: flex;

    align-items: center;

    gap: 13px;

    width: fit-content;

    text-decoration: none;
}


.contact-option-icon {
    width: 43px;
    height: 43px;

    display: flex;

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

    border: 1px solid rgba(255,255,255,0.10);

    border-radius: 10px;

    background: rgba(255,255,255,0.07);

    color: #8ac86b;

    font-size: 16px;

    font-weight: 800;
}


.contact-option small {
    display: block;

    margin-bottom: 3px;

    color: rgba(255,255,255,0.45);

    font-size: 13px;
}


.contact-option strong {
    display: block;

    color: #ffffff;

    font-size: 16px;
}


.contact-trust {
    display: flex;

    align-items: center;

    gap: 7px;

    margin-top: 30px;

    padding-top: 20px;

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

    color: rgba(255,255,255,0.55);

    font-size: 14px;
}


.contact-trust span {
    color: #7fbd5c;

    font-weight: 800;
}


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

.contact-form-box {
    padding: 32px;

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 25px 65px rgba(0,0,0,0.18);
}


.form-heading {
    margin-bottom: 25px;
}


.form-heading h3 {
    margin-bottom: 6px;

    color: #1d2d1d;

    font-size: 23px;
}


.form-heading p {
    color: #899189;

    font-size: 14px;
}


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

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}


.form-group {
    margin-bottom: 17px;
}


.form-group label {
    display: block;

    margin-bottom: 7px;

    color: #3b493b;

    font-size: 14px;

    font-weight: 700;
}


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

    box-sizing: border-box;

    padding: 12px 13px;

    border: 1px solid #e1e8df;

    border-radius: 7px;

    outline: none;

    background: #fafcf9;

    color: #273527;

    font-family: inherit;

    font-size: 14px;

    transition: all 0.25s ease;
}


.form-group textarea {
    min-height: 95px;

    resize: vertical;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a4aca3;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #72b44c;

    background: #ffffff;

    box-shadow:
        0 0 0 3px rgba(87,155,55,0.08);
}


/* =========================
   SUBMIT
========================= */

.contact-submit {
    width: 100%;

    display: flex;

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

    gap: 10px;

    padding: 14px 18px;

    border: 0;

    border-radius: 7px;

    background: #579b37;

    color: #ffffff;

    font-family: inherit;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;

    transition: all 0.25s ease;
}


.contact-submit:hover {
    background: #437d2b;

    transform: translateY(-2px);
}


.contact-submit span {
    font-size: 16px;
}


.form-note {
    margin-top: 12px;

    color: #9aa29a;

    font-size: 13px;

    line-height: 1.5;

    text-align: center;
}


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

@media (max-width: 900px) {

    .contact-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .contact-content {
        max-width: 700px;

        margin: auto;
    }

}


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

@media (max-width: 600px) {

    .contact-section {
        padding: 75px 0;
    }


    .contact-container {
        width: 90%;
    }


    .contact-content h2 {
        font-size: 35px;
    }


    .contact-content > p {
        font-size: 16px;
    }


    .contact-form-box {
        padding: 22px 18px;
    }


    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .form-heading h3 {
        font-size: 21px;
    }


    .contact-trust {
        flex-wrap: wrap;
    }

}
/* =========================
   FOOTER
========================= */

.site-footer {
    background: #122510;

    color: #ffffff;
}


/* =========================
   MAIN FOOTER
========================= */

.footer-container {
    width: min(1180px, 92%);

    margin: auto;

    display: grid;

    grid-template-columns: 1.35fr 0.8fr 1.15fr 1fr;

    gap: 55px;

    padding: 75px 0 60px;
}


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

.footer-logo {
    display: inline-block;

    margin-bottom: 18px;
}


.footer-logo img {
    display: block;

    width: 170px;

    height: auto;

    object-fit: contain;
}


.footer-brand p {
    max-width: 290px;

    margin-bottom: 22px;

    color: rgba(255,255,255,0.55);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================
   SOCIAL
========================= */

.footer-social {
    display: flex;

    gap: 8px;
}


.footer-social a {
    width: 33px;
    height: 33px;

    display: flex;

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

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 7px;

    background: rgba(255,255,255,0.04);

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition: all 0.25s ease;
}


.footer-social a:hover {
    border-color: #72b44c;

    background: #579b37;

    transform: translateY(-2px);
}


/* =========================
   COLUMNS
========================= */

.footer-column h3 {
    margin-bottom: 21px;

    color: #ffffff;

    font-size: 16px;

    font-weight: 700;
}


.footer-column ul {
    display: flex;

    flex-direction: column;

    gap: 11px;

    margin: 0;

    padding: 0;

    list-style: none;
}


.footer-column li a {
    color: rgba(255,255,255,0.52);

    text-decoration: none;

    font-size: 14px;

    transition: all 0.2s ease;
}


.footer-column li a:hover {
    color: #82bd65;

    padding-left: 3px;
}


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

.footer-contact {
    display: flex;

    flex-direction: column;
}


.footer-contact-item {
    display: flex;

    align-items: flex-start;

    gap: 11px;

    margin-bottom: 17px;
}


.footer-contact-item > span {
    width: 32px;
    height: 32px;

    display: flex;

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

    flex-shrink: 0;

    border-radius: 7px;

    background: rgba(255,255,255,0.06);

    color: #82bd65;

    font-size: 13px;

    font-weight: 800;
}


.footer-contact-item small {
    display: block;

    margin-bottom: 3px;

    color: rgba(255,255,255,0.35);

    font-size: 13px;
}


.footer-contact-item a,
.footer-contact-item strong {
    display: block;

    color: rgba(255,255,255,0.75);

    text-decoration: none;

    font-size: 14px;

    line-height: 1.5;

    font-weight: 600;
}


.footer-contact-item a:hover {
    color: #82bd65;
}


/* =========================
   AREAS
========================= */

.footer-areas {
    width: min(1180px, 92%);

    margin: auto;

    padding: 25px 0;

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

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


.footer-areas-title {
    margin-bottom: 13px;

    color: rgba(255,255,255,0.75);

    font-size: 14px;

    font-weight: 700;
}


.footer-area-links {
    display: flex;

    flex-wrap: wrap;

    gap: 7px 18px;
}


.footer-area-links a {
    color: rgba(255,255,255,0.40);

    text-decoration: none;

    font-size: 13px;

    transition: color 0.2s ease;
}


.footer-area-links a:hover {
    color: #82bd65;
}


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

.footer-bottom {
    background: #0d1d0c;
}


.footer-bottom-inner {
    width: min(1180px, 92%);

    min-height: 65px;

    margin: auto;

    display: flex;

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

    gap: 20px;
}


.footer-bottom p {
    margin: 0;

    color: rgba(255,255,255,0.35);

    font-size: 13px;
}


.footer-legal {
    display: flex;

    gap: 18px;
}


.footer-legal a {
    color: rgba(255,255,255,0.4);

    text-decoration: none;

    font-size: 13px;
}


.footer-legal a:hover {
    color: #82bd65;
}


.footer-credit a {
    color: #72b44c;

    text-decoration: none;

    font-weight: 700;
}


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

@media (max-width: 950px) {

    .footer-container {
        grid-template-columns: 1fr 1fr;

        gap: 45px;
    }

}


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

@media (max-width: 600px) {

    .footer-container {
        width: 90%;

        grid-template-columns: 1fr;

        gap: 35px;

        padding: 55px 0 40px;
    }


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


    .footer-areas {
        width: 90%;
    }


    .footer-bottom-inner {
        width: 90%;

        padding: 20px 0;

        flex-direction: column;

        text-align: center;

        gap: 12px;
    }


    .footer-area-links {
        gap: 8px 15px;
    }

}
/* =========================
   FLOATING CONTACT BUTTONS
========================= */

.floating-contact {
    position: fixed;

    right: 20px;
    bottom: 22px;

    z-index: 9999;

    display: flex;
    flex-direction: column;

    gap: 10px;
}


/* Button */

.floating-btn {
    display: flex;

    align-items: center;

    min-width: 125px;

    padding: 8px 13px 8px 8px;

    border-radius: 50px;

    text-decoration: none;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.floating-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.25);
}


/* Icon */

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

    display: flex;

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

    flex-shrink: 0;

    border-radius: 50%;

    color: #ffffff;

    font-size: 10px;

    font-weight: 800;
}


/* Text */

.floating-text {
    margin-left: 9px;

    color: #ffffff;

    font-size: 11px;

    font-weight: 700;
}


/* WhatsApp */

.whatsapp-btn {
    background: #25d366;
}

.whatsapp-btn .floating-icon {
    background: rgba(0, 0, 0, 0.12);
}


/* Call */

.call-btn {
    background: #579b37;
}

.call-btn .floating-icon {
    background: rgba(0, 0, 0, 0.12);
}


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

@media (max-width: 600px) {

    .floating-contact {
        right: 14px;
        bottom: 15px;

        gap: 8px;
    }


    .floating-btn {
        min-width: auto;

        width: 48px;
        height: 48px;

        padding: 0;

        justify-content: center;
    }


    .floating-icon {
        width: 100%;
        height: 100%;

        background: transparent !important;

        font-size: 11px;
    }


    .floating-text {
        display: none;
    }

}

/*---thank-Section-Start----*/

.thank {
  text-align: center;
  height: 100vh;
  width: 100%;
  margin-top: 0px;
}

.thank img {
  width: 50%;
}

.thank ul {
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
}

.thank ul li a {
  height: 45px;
  width: 45px;
  background: #fe712b;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  margin: 5px;
  border-radius: 5px;
  justify-content: center;
}

@media screen and (max-width:1024px) {
  .thank {
    margin-top: 80px;
  }
}

@media screen and (max-width:768px) {
  .thank {
    margin: 50px 0px;
    height: auto;
  }

  .thank img {
    width: 80%;
  }
}

@media screen and (max-width:580px) {
  .thank {
    margin: 20px 0px;
  }
}

/*---thank-Section-end----*/
