/* =========================================================
   GLOBAL
========================================================= */

:root {
    --parrot-green: #7cb342;
    --dark-green: #4f8a10;
    --light-green: #f1f8e9;
    --soft-green: #e8f5d9;
    --white: #ffffff;
    --black: #222222;
    --gray: #666666;
    --light-gray: #f7f9f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

p {
    color: var(--gray);
    line-height: 1.8;
}

.section-padding {
    padding: 40px 0;
}


/* =========================================================
   TOP CONTACT BAR
========================================================= */

.top-bar {
    background: var(--dark-green);
    color: var(--white);
    padding: 9px 0;
    font-size: 13px;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-contact span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.top-contact i {
    color: #d4f7a8;
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.social-icons a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    color: var(--white);
    font-size: 12px;
    transition: 0.3s ease;
}

.social-icons a:hover {
    background: var(--white);
    color: var(--dark-green);
    transform: translateY(-2px);
}


/* =========================================================
   NAVBAR
========================================================= */

.main-navbar {
    background: var(--white);
    padding: 14px 0;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.06);
    z-index: 1000;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-box {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--parrot-green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text span {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark-green);
}

.logo-text small {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gray);
    margin-top: 5px;
}
.navbar-logo {
    width: 185px;
    height: 55px;
    object-fit: contain;
    display: block;
}

@media (max-width: 767px) {
    .navbar-logo {
        height: 45px;
    }
}

.navbar-nav {
    gap: 5px;
}

.nav-link {
    color: #333 !important;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 13px !important;
    transition: 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--parrot-green) !important;
}

.quote-btn {
    background: var(--parrot-green);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}

.quote-btn:hover {
    background: var(--dark-green);
    color: var(--white);
    transform: translateY(-2px);
}

.navbar-toggler {
    border: none;
    box-shadow: none !important;
}


/* =========================================================
   HERO SECTION
========================================================= */

.hero-section {
    min-height: 680px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(20, 45, 8, 0.88),
            rgba(20, 45, 8, 0.55),
            rgba(20, 45, 8, 0.15)
        ),
        url("../images/hero.png") center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(67, 120, 20, 0.25),
        transparent
    );
        z-index: 0;

}

.min-vh-75 {
    min-height: 680px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 70px 0;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: #e6ffc9;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 13px;
    margin-bottom: 22px;
    backdrop-filter: blur(5px);
}

.hero-content h1 {
    color: var(--white);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 22px;
}

.hero-content h1 span {
    display: block;
    color: #a8dc65;
}

.hero-content p {
    color: rgba(255,255,255,0.88);
    font-size: 17px;
    max-width: 620px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--parrot-green);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-main:hover {
    background: var(--dark-green);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(255,255,255,0.7);
    color: var(--white);
    padding: 13px 23px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--dark-green);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 32px;
}

.hero-trust div {
    color: var(--white);
    font-size: 13px;
}

.hero-trust i {
    color: #a8dc65;
    margin-right: 5px;
}
/* =========================================================
   HERO BACKGROUND SHAPES
========================================================= */

.hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.45;
}


/* Large Shape */

.shape-one {
    width: 320px;
    height: 320px;
    background: #a8dc65;
    right: -100px;
    top: 80px;
}


/* Medium Shape */

.shape-two {
    width: 180px;
    height: 180px;
    background: #7cb342;
    right: 25%;
    bottom: -70px;
}


/* Small Shape */

.shape-three {
    width: 90px;
    height: 90px;
    background: #d9f6b5;
    left: 43%;
    top: 100px;
}


/* Extra Shape */

.shape-four {
    width: 140px;
    height: 140px;
    background: #9ccc60;
    left: -60px;
    bottom: 40px;
}
/* =========================================================
   HERO CONTENT ENTRANCE ANIMATION
========================================================= */

.hero-tag {
    opacity: 0;
    animation: heroFadeUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.hero-content h1 {
    opacity: 0;
    animation: heroFadeUp 0.9s ease forwards;
    animation-delay: 0.4s;
}

.hero-content p {
    opacity: 0;
    animation: heroFadeUp 0.9s ease forwards;
    animation-delay: 0.6s;
}

.hero-buttons {
    opacity: 0;
    animation: heroFadeUp 0.9s ease forwards;
    animation-delay: 0.8s;
}

.hero-trust {
    opacity: 0;
    animation: heroFadeUp 0.9s ease forwards;
    animation-delay: 1s;
}


/* Animation */

@keyframes heroFadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* =========================================================
   STATS SECTION
========================================================= */

.stats-section {
    background: var(--white);
    padding: 0;
    position: relative;
    z-index: 5;
}

.stat-box {
    background: var(--white);
    padding: 28px 15px;
    text-align: center;
    border-right: 1px solid #e8e8e8;
}

.stat-box i {
    font-size: 27px;
    color: var(--parrot-green);
    margin-bottom: 10px;
}

.stat-box h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark-green);
    margin-bottom: 3px;
}

.stat-box p {
    font-size: 13px;
    margin: 0;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
    max-width: 700px;
    margin: auto;
}

.section-heading span,
.about-content > span {
    color: var(--parrot-green);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-heading h2,
.about-content h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.25;
    margin: 12px 0 15px;
}

.section-heading h2 strong,
.about-content h2 strong {
    color: var(--parrot-green);
}

.section-heading p {
    max-width: 600px;
    margin: auto;
    font-size: 14px;
}


/* =========================================================
   SERVICES
========================================================= */
/* =========================================================
   SERVICES STAGGERED ANIMATION
========================================================= */

.service-card {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* Cards one by one */

.service-card:nth-child(1) {
    transition-delay: 0.1s;
}

.service-card:nth-child(2) {
    transition-delay: 0.2s;
}

.service-card:nth-child(3) {
    transition-delay: 0.3s;
}

.service-card:nth-child(4) {
    transition-delay: 0.4s;
}

.service-card:nth-child(5) {
    transition-delay: 0.5s;
}

.service-card:nth-child(6) {
    transition-delay: 0.6s;
}


/* Visible State */

.service-card.show {
    opacity: 1;
    transform: translateY(0);
}
.services-section {
    background: var(--light-gray);
}

.service-card {

box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;    height: 100%;
    background: var(--white);
    border: 1px solid #e8eee1;
    border-radius: 15px;
    padding: 30px 25px;
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    background: var(--light-green);
    border-radius: 50%;
    top: -25px;
    right: -20px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(74, 120, 20, 0.12);
    border-color: var(--parrot-green);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--light-green);
    color: var(--parrot-green);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    margin-bottom: 22px;
    transition: 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--parrot-green);
    color: var(--white);
}

.service-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 13px;
    margin-bottom: 18px;
}

.service-card a {
    color: var(--dark-green);
    font-size: 13px;
    font-weight: 600;
}

.service-card a i {
    margin-left: 5px;
}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-section {
    background: var(--white);
}

.why-image {
    min-height: 500px;
    border-radius: 20px;
    position: relative;

    background:
        linear-gradient(
            rgba(79, 138, 16, 0.1),
            rgba(79, 138, 16, 0.1)
        ),
        url("../images/why_us.png") center/cover no-repeat;
}

.experience-badge {
    position: absolute;
    right: -25px;
    bottom: 35px;
    background: var(--parrot-green);
    color: var(--white);
    padding: 20px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 30px rgba(79, 138, 16, 0.3);
}

.experience-badge strong {
    font-size: 35px;
    line-height: 1;
}

.experience-badge span {
    font-size: 12px;
    line-height: 1.4;
}

.why-section .section-heading {
    margin: 0;
}

.why-section .section-heading p {
    margin: 0;
}

.why-list {
    margin-top: 28px;
}

.why-item {
    display: flex;
    gap: 15px;
    margin-bottom: 23px;
}

.why-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--light-green);
    color: var(--parrot-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.why-item h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.why-item p {
    font-size: 12px;
    margin: 0;
    line-height: 1.6;
}


/* =========================================================
   PROCESS
========================================================= */

.process-section {
    background: var(--light-green);
}

.process-card {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    border-radius: 15px;
    position: relative;
    height: 100%;
    transition: 0.3s ease;
    border-right: 2px solid green;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(79, 138, 16, 0.1);
}

.process-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 38px;
    font-weight: 800;
    color: #e7f3d9;
}

.process-icon {
    display: block;
    font-size: 40px;
    color: var(--parrot-green);
    margin-bottom: 20px;
}

.process-card h4 {
    font-size: 19px;
    font-weight: 700;
}

.process-card p {
    font-size: 13px;
    margin: 10px 0 0;
}


/* =========================================================
   OFFER
========================================================= */

.offer-section {
    padding: 70px 0;
    background: var(--white);
}

.offer-box {
    background: var(--dark-green);
    color: var(--white);
    padding: 45px 50px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.offer-box::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border: 40px solid rgba(255,255,255,0.06);
    border-radius: 50%;
    right: -70px;
    top: -70px;
}

.offer-box span {
    color: #c9ef9c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.offer-box h2 {
    font-size: 35px;
    font-weight: 700;
    margin: 10px 0;
}

.offer-box h2 strong {
    color: #b9ed78;
}

.offer-box p {
    color: rgba(255,255,255,0.75);
    margin: 0;
    font-size: 14px;
}

.offer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--dark-green);
    padding: 14px 23px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    transition: 0.3s ease;
}

.offer-btn:hover {
    background: #e7f7d5;
    color: var(--dark-green);
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    background: var(--light-gray);
}

.about-content {
    max-width: 570px;
}

.about-content p {
    font-size: 14px;
}

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    margin: 25px 0 30px;
}

.about-points div {
    font-size: 13px;
    font-weight: 500;
}

.about-points i {
    color: var(--parrot-green);
    margin-right: 7px;
}

.about-image {
    min-height: 470px;
    border-radius: 20px;
    position: relative;

    background:
        linear-gradient(
            rgba(79, 138, 16, 0.08),
            rgba(79, 138, 16, 0.08)
        ),
        url("../images/about.png") center/cover no-repeat;
}

.about-floating-card {
    position: absolute;
    left: 25px;
    bottom: 25px;
    background: var(--white);
    padding: 17px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.about-floating-card i {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: var(--light-green);
    color: var(--parrot-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.about-floating-card div {
    display: flex;
    flex-direction: column;
}

.about-floating-card strong {
    color: var(--dark-green);
    font-size: 20px;
}

.about-floating-card span {
    font-size: 10px;
    color: var(--gray);
}


/* =========================================================
   CUSTOMER REVIEWS SLIDER
========================================================= */

.reviews-section {
    background: #f7fbf3;
    overflow: hidden;
}

.reviews-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 45px auto 0;

    padding: 0 45px;

    overflow: hidden;
}

.reviews-track {
    display: flex;

    transition: transform 0.7s ease-in-out;

    will-change: transform;
}

.review-slide {
    flex: 0 0 33.333333%;

    padding: 0 10px;

    box-sizing: border-box;
}

.review-card {
    height: 100%;

    background: var(--white);

    border: 1px solid #e1ead9;

    border-radius: 16px;

    padding: 30px 25px;

    text-align: center;

    box-shadow:
        0 8px 25px rgba(40, 80, 20, 0.06);

    transition: 0.3s ease;
}

.review-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 15px 35px rgba(40, 80, 20, 0.10);
}


/* Stars */

.review-stars {
    color: #f5b800;

    font-size: 17px;

    letter-spacing: 3px;

    margin-bottom: 17px;
}


/* Review Text */

.review-card > p {
    color: #555;

    font-size: 14px;

    line-height: 1.7;

    min-height: 95px;

    margin-bottom: 22px;

    font-style: italic;
}


/* Person */

.review-person {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;
}

.review-avatar {
    width: 46px;
    height: 46px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--parrot-green);

    color: var(--white);

    font-size: 13px;

    font-weight: 700;
}

.review-person > div:last-child {
    text-align: left;
}

.review-person h5 {
    margin: 0;

    color: var(--dark-green);

    font-size: 14px;

    font-weight: 700;
}

.review-person span {
    color: #888;

    font-size: 12px;
}


/* =========================================================
   ARROWS
========================================================= */

.review-prev,
.review-next {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 42px;
    height: 42px;

    border: none;

    border-radius: 50%;

    background: var(--parrot-green);

    color: var(--white);

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    z-index: 10;

    transition: 0.3s ease;
}

.review-prev {
    left: 5px;
}

.review-next {
    right: 5px;
}

.review-prev:hover,
.review-next:hover {
    background: var(--dark-green);

    transform: translateY(-50%) scale(1.08);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .review-slide {
        flex: 0 0 50%;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .reviews-wrapper {
        padding: 0 38px;
    }

    .review-slide {
        flex: 0 0 100%;
    }

    .review-card {
        padding: 28px 20px;
    }

    .review-card > p {
        min-height: auto;
    }

}

/* =========================================================
   FAQ
========================================================= */

.faq-section {
    background: var(--light-gray);
}

.faq-accordion {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.accordion-item {
    border: none;
    margin-bottom: 12px;
    border-radius: 10px !important;
    overflow: hidden;
}

.accordion-button {
    background: var(--white);
    color: var(--black);
    font-size: 14px;
    font-weight: 600;
    padding: 20px 22px;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--dark-green);
    background: var(--white);
}

.accordion-button::after {
    background-size: 14px;
}

.accordion-body {
    background: var(--white);
    color: var(--gray);
    font-size: 13px;
    line-height: 1.8;
    padding-top: 0;
}


/* =========================================================
   CONTACT CTA
========================================================= */

.contact-section {
    padding: 40px 0;
    background: var(--white);
}

.contact-box {
    background:
        linear-gradient(
            120deg,
            var(--parrot-green),
            var(--dark-green)
        );
    color: var(--white);
    padding: 50px;
    border-radius: 20px;
}

.contact-box span {
    color: #d8f5b4;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-box h2 {
    font-size: 38px;
    font-weight: 700;
    margin: 10px 0;
}

.contact-box h2 strong {
    color: #d9f6b5;
}

.contact-box p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin: 0;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--dark-green);
    padding: 15px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s ease;
}

.contact-btn:hover {
    background: #eaf8db;
    color: var(--dark-green);
    transform: translateY(-3px);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #1e2b18;
    color: var(--white);
    padding: 70px 0 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-brand .logo-box {
    background: var(--parrot-green);
}

.footer-brand .logo-text span {
    color: var(--white);
}

.footer-brand .logo-text small {
    color: #aebba4;
}

.footer p {
    color: #b9c2b4;
    font-size: 13px;
}

.footer h5 {
    font-size: 15px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #b9c2b4;
    font-size: 12px;
    transition: 0.3s ease;
}

.footer ul li a:hover {
    color: #a8dc65;
    padding-left: 4px;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border: 1px solid #4a5744;
    color: #d4ddcf;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.footer-social a:hover {
    background: var(--parrot-green);
    color: var(--white);
    border-color: var(--parrot-green);
}

.footer-contact p {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-contact i {
    color: var(--parrot-green);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid #374333;
    margin-top: 50px;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
    font-size: 11px;
}

.footer-bottom i {
    color: #7cb342;
}


/* =========================================================
   FLOATING CONTACT BUTTONS
========================================================= */

.floating-buttons {
    position: fixed;
    right: 22px;
    bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}


/* Call Button */

.call-btn,
.whatsapp-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--white);

    font-size: 24px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.20);

    transition: 0.3s ease;
}


/* Call */

.call-btn {
    background: var(--parrot-green);
}

.call-btn:hover {
    background: var(--dark-green);
    color: var(--white);
    transform: scale(1.08);
}


/* WhatsApp */

.whatsapp-btn {
    background: #25d366;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    color: var(--white);
    transform: scale(1.08);
}


/* Mobile */

@media (max-width: 767px) {

    .floating-buttons {
        right: 15px;
        bottom: 15px;
        gap: 8px;
    }

    .call-btn,
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .top-contact {
        justify-content: center;
        margin-bottom: 7px;
    }

    .social-icons {
        justify-content: center;
    }

    .navbar-nav {
        padding-top: 15px;
    }

    .quote-btn {
        display: inline-flex;
        margin-top: 8px;
    }

    .hero-section {
        min-height: 620px;
    }

    .min-vh-75 {
        min-height: 620px;
    }

    .hero-content {
        text-align: center;
        margin: auto;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .hero-trust {
        justify-content: center;
    }
/* =========================================================
   HERO BACKGROUND ANIMATED SHAPES
========================================================= */

.hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.18;
    filter: blur(1px);
}


/* Large Circle */

.shape-one {
    width: 320px;
    height: 320px;
    background: #a8dc65;
    right: -100px;
    top: 80px;

    animation: floatShape 8s ease-in-out infinite;
}


/* Medium Circle */

.shape-two {
    width: 180px;
    height: 180px;
    background: #7cb342;
    right: 25%;
    bottom: -70px;

    animation: floatShape 6s ease-in-out infinite reverse;
}


/* Small Circle */

.shape-three {
    width: 90px;
    height: 90px;
    background: #d9f6b5;
    left: 43%;
    top: 100px;

    animation: floatSmall 5s ease-in-out infinite;
}


/* Extra Circle */

.shape-four {
    width: 140px;
    height: 140px;
    background: #9ccc60;
    left: -60px;
    bottom: 40px;

    animation: floatShape 9s ease-in-out infinite;
}


/* =========================================================
   FLOAT ANIMATION
========================================================= */

@keyframes floatShape {

    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(20px, -25px) rotate(8deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }

}


@keyframes floatSmall {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }

}


/* Mobile */

@media (max-width: 767px) {

    .shape-one {
        width: 200px;
        height: 200px;
        right: -90px;
    }

    .shape-two {
        width: 120px;
        height: 120px;
    }

    .shape-three {
        width: 60px;
        height: 60px;
        left: 70%;
    }

    .shape-four {
        width: 90px;
        height: 90px;
        left: -45px;
    }

}
    .why-image {
        min-height: 430px;
    }

    .experience-badge {
        right: 20px;
    }

    .about-content {
        max-width: 100%;
    }

    .offer-box,
    .contact-box {
        text-align: center;
    }

    .offer-btn {
        margin-top: 25px;
    }

    .contact-btn {
        margin-top: 25px;
    }
}


@media (max-width: 767px) {

    .top-bar {
        font-size: 11px;
    }

    .top-contact {
        gap: 12px;
        flex-wrap: wrap;
    }

    .section-padding {
        padding: 40px 0;
    }

    .hero-section {
        min-height: 650px;
    }

    .min-vh-75 {
        min-height: 650px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-trust {
        gap: 10px;
        flex-direction: column;
    }

    .stat-box {
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
    }

    .section-heading h2,
    .about-content h2 {
        font-size: 31px;
    }

    .why-image {
        min-height: 350px;
    }

    .about-image {
        min-height: 350px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .offer-box,
    .contact-box {
        padding: 35px 25px;
    }

    .offer-box h2,
    .contact-box h2 {
        font-size: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        right: 15px;
        bottom: 15px;
    }
}


@media (max-width: 480px) {

    .top-contact {
        flex-direction: column;
        gap: 5px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-main,
    .btn-outline-light {
        justify-content: center;
        width: 100%;
    }

    .hero-trust {
        display: none;
    }

    .experience-badge {
        position: relative;
        display: inline-flex;
        right: auto;
        bottom: auto;
        margin: 20px;
    }

}
/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    background: #f7fbf3;
}


/* Section Heading */

.contact-section .section-heading p {
    max-width: 650px;
    margin: 12px auto 0;
    color: #666;
}


/* =========================================================
   LEFT CONTACT BOX
========================================================= */

.contact-info-box {
    height: 100%;
    background: var(--dark-green);
    border-radius: 18px;
    padding: 45px 38px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}


/* Small Heading */

.contact-small-title {
    display: inline-block;
    color: #b8e879;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}


.contact-info-box h3 {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 18px;
}


.contact-info-box h3 span {
    color: #a8dc65;
}


.contact-info-box > p {
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}


/* =========================================================
   CONTACT INFO
========================================================= */

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
}


.contact-info-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: rgba(168,220,101,0.15);
    color: #a8dc65;

    font-size: 18px;
}


.contact-info-item small {
    display: block;
    color: rgba(255,255,255,0.55);
    font-size: 12px;
    margin-bottom: 3px;
}


.contact-info-item a,
.contact-info-item span {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}


.contact-info-item a:hover {
    color: #a8dc65;
}


/* WhatsApp */

.contact-whatsapp {
    margin-top: 30px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 17px;

    background: #25d366;
    color: var(--white);

    border-radius: 8px;

    font-size: 13px;
    font-weight: 600;

    transition: 0.3s ease;
}


.contact-whatsapp:hover {
    background: #1ebe5d;
    color: var(--white);
    transform: translateY(-3px);
}


.contact-whatsapp > i:first-child {
    font-size: 20px;
}


/* =========================================================
   FORM BOX
========================================================= */

.contact-form-box {
    height: 100%;

    background: var(--white);

    border-radius: 18px;

    padding: 40px;

    border: 1px solid #e7eedf;

    box-shadow:
        0 15px 45px rgba(38, 70, 20, 0.08);
}


.form-heading {
    margin-bottom: 25px;
}


.form-heading h3 {
    color: var(--dark-green);
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 7px;
}


.form-heading p {
    color: #777;
    font-size: 14px;
    margin: 0;
}


/* Labels */

.contact-form-box label {
    display: block;

    color: #333;

    font-size: 13px;
    font-weight: 600;

    margin-bottom: 7px;
}


/* Input Wrapper */

.input-group-custom {
    position: relative;
}


.input-group-custom > i {
    position: absolute;

    left: 15px;
    top: 50%;

    transform: translateY(-50%);

    color: #79ad3d;

    font-size: 16px;

    z-index: 2;
}


.input-group-custom input,
.input-group-custom select,
.input-group-custom textarea {

    width: 100%;

    border: 1px solid #dfe8d8;

    background: #fbfdf9;

    border-radius: 8px;

    color: #333;

    font-size: 14px;

    outline: none;

    transition: 0.3s ease;
}


.input-group-custom input,
.input-group-custom select {

    height: 50px;

    padding: 0 15px 0 43px;
}


.input-group-custom textarea {

    padding: 14px 15px 14px 43px;

    resize: vertical;

    min-height: 115px;
}


.input-group-custom textarea + i {
    top: 20px;
}


/* Focus */

.input-group-custom input:focus,
.input-group-custom select:focus,
.input-group-custom textarea:focus {

    border-color: var(--parrot-green);

    background: var(--white);

    box-shadow:
        0 0 0 3px rgba(126,190,70,0.12);

}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.contact-submit-btn {

    width: 100%;

    border: none;

    background: var(--parrot-green);

    color: var(--white);

    padding: 15px 22px;

    border-radius: 8px;

    font-size: 14px;

    font-weight: 600;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    cursor: pointer;

    transition: 0.3s ease;
}


.contact-submit-btn:hover {

    background: var(--dark-green);

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(80,140,30,0.2);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .contact-info-box {
        padding: 32px 24px;
        border-radius: 14px;
    }


    .contact-info-box h3 {
        font-size: 28px;
    }


    .contact-form-box {
        padding: 28px 20px;
        border-radius: 14px;
    }


    .form-heading h3 {
        font-size: 22px;
    }

}
/* =========================================================
   FAQ SECTION
========================================================= */

.faq-section {
    background: var(--white);
}


/* FAQ Column */

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


/* FAQ Item */

.faq-item {
    background: #f8fbf5;

    border: 1px solid #e4ecdF;

    border-radius: 10px;

    overflow: hidden;

    transition: 0.3s ease;
}


.faq-item:hover {
    border-color: rgba(126, 190, 70, 0.55);

    box-shadow:
        0 8px 25px rgba(40, 80, 20, 0.06);
}


/* Question */

.faq-question {
    width: 100%;

    border: none;

    background: transparent;

    padding: 20px 22px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    text-align: left;

    color: var(--dark-green);

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;
}


.faq-question i {
    width: 28px;
    height: 28px;

    min-width: 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(126, 190, 70, 0.12);

    color: var(--parrot-green);

    font-size: 12px;

    transition: 0.3s ease;
}


/* Open State */

.faq-question:not(.collapsed) i {
    transform: rotate(45deg);

    background: var(--parrot-green);

    color: var(--white);
}


/* Answer */

.faq-answer {
    padding: 0 22px 20px;

    color: #666;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .faq-question {
        padding: 17px 18px;

        font-size: 13px;
    }

    .faq-answer {
        padding: 0 18px 18px;
    }

}
/* =========================================================
   MOBILE HORIZONTAL OVERFLOW FIX
========================================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}


/* Prevent sections from becoming wider than screen */

section,
.container,
.row {
    max-width: 100%;
}


/* Bootstrap row can sometimes create side overflow */

.row {
    margin-left: 0;
    margin-right: 0;
}


/* Mobile */

@media (max-width: 767px) {

    body {
        overflow-x: hidden;
    }

    .container {
        width: 100%;
        max-width: 100%;
    }

}
