/* =========================================================
   PEST CONTROL WEBSITE - MAIN CSS
========================================================= */


/* =========================================================
   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;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
    width: 100%;
}

a {
    text-decoration: none;
}

p {
    color: var(--gray);
    line-height: 1.8;
}

section,
.container,
.row {
    max-width: 100%;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

.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: 1px 0;

    box-shadow:
        0 3px 20px rgba(0, 0, 0, 0.06);

    position: relative;
    z-index: 1000;

    transition: 0.3s ease;
}

.main-navbar.navbar-scrolled {
    box-shadow:
        0 5px 25px rgba(0, 0, 0, 0.10);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-boxl {
    border-radius: 12px;

    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 {
    object-fit: contain;
    display: block;
    max-width: 100%;
}

@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
========================================================= */

.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);

    opacity: 0;

    animation:
        heroFadeUp 0.8s ease forwards;

    animation-delay: 0.2s;
}

.hero-content h1 {
    color: var(--white);

    font-size: clamp(42px, 5vw, 68px);

    font-weight: 800;

    line-height: 1.12;

    margin-bottom: 22px;

    opacity: 0;

    animation:
        heroFadeUp 0.9s ease forwards;

    animation-delay: 0.4s;
}

.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;

    opacity: 0;

    animation:
        heroFadeUp 0.9s ease forwards;

    animation-delay: 0.6s;
}

.hero-buttons {
    display: flex;

    gap: 14px;

    flex-wrap: wrap;

    opacity: 0;

    animation:
        heroFadeUp 0.9s ease forwards;

    animation-delay: 0.8s;
}

.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;

    opacity: 0;

    animation:
        heroFadeUp 0.9s ease forwards;

    animation-delay: 1s;
}

.hero-trust div {
    color: var(--white);
    font-size: 13px;
}

.hero-trust i {
    color: #a8dc65;
    margin-right: 5px;
}

@keyframes heroFadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   HERO ANIMATED SHAPES
========================================================= */

.hero-shape {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    z-index: 1;

    opacity: 0.18;

    filter: blur(1px);
}

.shape-one {
    width: 320px;
    height: 320px;

    background: #a8dc65;

    right: -100px;
    top: 80px;

    animation:
        floatShape 8s ease-in-out infinite;
}

.shape-two {
    width: 180px;
    height: 180px;

    background: #7cb342;

    right: 25%;
    bottom: -70px;

    animation:
        floatShape 6s ease-in-out infinite reverse;
}

.shape-three {
    width: 90px;
    height: 90px;

    background: #d9f6b5;

    left: 43%;
    top: 100px;

    animation:
        floatSmall 5s ease-in-out infinite;
}

.shape-four {
    width: 140px;
    height: 140px;

    background: #9ccc60;

    left: -60px;
    bottom: 40px;

    animation:
        floatShape 9s ease-in-out infinite;
}

@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);
    }

}


/* =========================================================
   STATS
========================================================= */

.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-section {
    background: var(--light-gray);
}

.service-card {
    height: 100%;

    background: var(--white);

    border:
        1px solid #e8eee1;

    border-radius: 15px;

    padding: 30px 25px;

    position: relative;

    overflow: hidden;

    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;

    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.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;
}

.service-card.show {
    opacity: 1;

    transform:
        translateY(0);
}

.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
========================================================= */

.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);
}

.review-stars {
    color:
        #f5b800;

    font-size:
        17px;

    letter-spacing:
        3px;

    margin-bottom:
        17px;
}

.review-card > p {
    color:
        #555;

    font-size:
        14px;

    line-height:
        1.7;

    min-height:
        95px;

    margin-bottom:
        22px;

    font-style:
        italic;
}

.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;
}


/* =========================================================
   REVIEW 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);
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
    background:
        var(--white);
}

.faq-column {
    display: flex;

    flex-direction: column;

    gap: 15px;
}

.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);
}

.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;
}

.faq-question:not(.collapsed) i {
    transform:
        rotate(45deg);

    background:
        var(--parrot-green);

    color:
        var(--white);
}

.faq-answer {
    padding:
        0 22px 20px;

    color:
        #666;

    font-size:
        13px;

    line-height:
        1.7;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    padding:
        40px 0;

    background:
        #f7fbf3;
}

.contact-section .section-heading p {
    max-width:
        650px;

    margin:
        12px auto 0;

    color:
        #666;
}


/* LEFT */

.contact-info-box {
    height: 100%;

    background:
        var(--dark-green);

    border-radius:
        18px;

    padding:
        45px 38px;

    color:
        var(--white);

    position:
        relative;

    overflow:
        hidden;
}

.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-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;
}

.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 */

.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;
}

.contact-form-box label {
    display:
        block;

    color:
        #333;

    font-size:
        13px;

    font-weight:
        600;

    margin-bottom:
        7px;
}

.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;
}

.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);
}

.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);
}


/* =========================================================
   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:
        2000;
}

.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-btn {
    background:
        var(--parrot-green);
}

.call-btn:hover {
    background:
        var(--dark-green);

    color:
        var(--white);

    transform:
        scale(1.08);
}

.whatsapp-btn {
    background:
        #25d366;
}

.whatsapp-btn:hover {
    background:
        #1ebe5d;

    color:
        var(--white);

    transform:
        scale(1.08);
}


/* =========================================================
   BOOK SERVICE POPUP
========================================================= */

.booking-modal {
    position:
        fixed;

    inset:
        0;

    background:
        rgba(15,35,8,0.65);

    backdrop-filter:
        blur(5px);

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        20px;

    z-index:
        9999;

    opacity:
        0;

    visibility:
        hidden;

    pointer-events:
        none;

    transition:
        0.3s ease;
}

.booking-modal.active {
    opacity:
        1;

    visibility:
        visible;

    pointer-events:
        auto;
}

.booking-modal-content {
    position:
        relative;

    width:
        100%;

    max-width:
        600px;

    max-height:
        90vh;

    overflow-y:
        auto;

    background:
        #fff;

    border-radius:
        18px;

    padding:
        32px;

    box-shadow:
        0 25px 70px
        rgba(0,0,0,0.25);

    transform:
        translateY(30px)
        scale(0.97);

    transition:
        0.3s ease;
}

.booking-modal.active
.booking-modal-content {
    transform:
        translateY(0)
        scale(1);
}


/* Close */

.booking-close {
    position:
        absolute;

    top:
        15px;

    right:
        15px;

    width:
        36px;

    height:
        36px;

    border:
        none;

    border-radius:
        50%;

    background:
        #f1f6ed;

    color:
        var(--dark-green);

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    cursor:
        pointer;

    transition:
        0.3s;
}

.booking-close:hover {
    background:
        var(--parrot-green);

    color:
        #fff;
}


/* Header */

.booking-header {
    margin-bottom:
        22px;

    padding-right:
        35px;
}

.booking-header span {
    color:
        var(--parrot-green);

    font-size:
        12px;

    font-weight:
        700;

    letter-spacing:
        1.5px;
}

.booking-header h3 {
    color:
        var(--dark-green);

    font-size:
        28px;

    font-weight:
        700;

    margin:
        6px 0 8px;
}

.booking-header h3 strong {
    color:
        var(--parrot-green);
}

.booking-header p {
    color:
        #777;

    font-size:
        14px;

    margin:
        0;
}


/* Popup Form */

.booking-modal label {
    display:
        block;

    margin-bottom:
        6px;

    color:
        var(--dark-green);

    font-size:
        13px;

    font-weight:
        600;
}

.booking-modal input,
.booking-modal select,
.booking-modal textarea {
    width:
        100%;

    border:
        1px solid #dce7d6;

    background:
        #f9fcf7;

    border-radius:
        8px;

    padding:
        12px 14px;

    font-size:
        13px;

    outline:
        none;

    transition:
        0.3s;
}

.booking-modal input:focus,
.booking-modal select:focus,
.booking-modal textarea:focus {
    border-color:
        var(--parrot-green);

    background:
        #fff;

    box-shadow:
        0 0 0 3px
        rgba(126,190,70,0.12);
}

.booking-modal textarea {
    resize:
        vertical;

    min-height:
        100px;
}

.booking-submit {
    width:
        100%;

    border:
        none;

    background:
        var(--parrot-green);

    color:
        #fff;

    padding:
        14px;

    border-radius:
        8px;

    font-size:
        14px;

    font-weight:
        700;

    cursor:
        pointer;

    transition:
        0.3s;
}

.booking-submit:hover {
    background:
        var(--dark-green);

    transform:
        translateY(-2px);
}


/* =========================================================
   TABLET
========================================================= */

@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;
    }

    .why-image {
        min-height:
            430px;
    }

    .experience-badge {
        right:
            20px;
    }

    .about-content {
        max-width:
            100%;
    }

    .offer-box,
    .contact-box {
        text-align:
            center;
    }

    .offer-btn,
    .contact-btn {
        margin-top:
            25px;
    }

    .review-slide {
        flex:
            0 0 50%;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    html,
    body {
        overflow-x:
            hidden;
    }

    .container {
        width:
            100%;

        max-width:
            100%;
    }


    /* TOP BAR */

    .top-bar {
        font-size:
            11px;
    }

    .top-contact {
        gap:
            12px;

        flex-wrap:
            wrap;
    }


    /* HERO */

    .hero-section {
        min-height:
            350px !important;

        height:
            350px !important;

        overflow:
            hidden;
    }

    .min-vh-75 {
        min-height:
            350px !important;

        height:
            350px !important;
    }

    .hero-content {
        padding-top:
            8px !important;

        padding-bottom:
            5px !important;
    }

    .hero-tag {
        font-size:
            11px !important;

        padding:
            7px 11px !important;

        margin-bottom:
            10px !important;
    }

    .hero-content h1 {
        font-size:
            29px !important;

        line-height:
            1.05 !important;

        margin-bottom:
            8px !important;
    }

    .hero-content p {
        font-size:
            13px !important;

        line-height:
            1.35 !important;

        margin-bottom:
            8px !important;
    }


    /* BOOK BUTTON */

    .hero-buttons {
        display:
            flex !important;

        flex-direction:
            column !important;

        align-items:
            center !important;

        margin-top:
            8px !important;

        position:
            relative !important;

        z-index:
            10 !important;
    }

    .hero-buttons .btn-main {
        display:
            flex !important;

        position:
            relative !important;

        left:
            auto !important;

        right:
            auto !important;

        bottom:
            auto !important;

        width:
            190px !important;

        height:
            38px !important;

        padding:
            7px 12px !important;

        align-items:
            center;

        justify-content:
            center;

        gap:
            5px;

        border-radius:
            8px;

        font-size:
            12px !important;

        font-weight:
            700;

        box-shadow:
            rgba(0,0,0,0.15)
            1.95px
            1.95px
            2.6px;

        animation:
            bookPopup
            0.7s ease-out;
    }

    .hero-buttons .btn-outline-light {
        display:
            none !important;
    }

    @keyframes bookPopup {

        0% {
            opacity:
                0;

            transform:
                translateY(30px);
        }

        70% {
            opacity:
                1;

            transform:
                translateY(-3px);
        }

        100% {
            opacity:
                1;

            transform:
                translateY(0);
        }

    }


    /* HERO SHAPES */

    .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;
    }


    /* STATS */

    .stat-box {
        border-right:
            none;

        border-bottom:
            1px solid #e8e8e8;
    }


    /* SECTION */

    .section-padding {
        padding:
            40px 0;
    }

    .section-heading h2,
    .about-content h2 {
        font-size:
            31px;
    }


    /* WHY */

    .why-image {
        min-height:
            350px;
    }


    /* ABOUT */

    .about-image {
        min-height:
            350px;
    }

    .about-points {
        grid-template-columns:
            1fr;
    }


    /* OFFER / CONTACT */

    .offer-box,
    .contact-box {
        padding:
            35px 25px;
    }

    .offer-box h2,
    .contact-box h2 {
        font-size:
            28px;
    }


    /* REVIEWS */

    .reviews-wrapper {
        padding:
            0 38px;
    }

    .review-slide {
        flex:
            0 0 100%;
    }

    .review-card {
        padding:
            28px 20px;
    }

    .review-card > p {
        min-height:
            auto;
    }


    /* CONTACT */

    .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 */

    .faq-question {
        padding:
            17px 18px;

        font-size:
            13px;
    }

    .faq-answer {
        padding:
            0 18px 18px;
    }


    /* FOOTER */

    .footer-bottom {
        flex-direction:
            column;

        text-align:
            center;
    }


    /* FLOATING BUTTONS */

    .floating-buttons {
        position:
            fixed !important;

        right:
            12px !important;

        bottom:
            12px !important;

        gap:
            7px !important;

        z-index:
            2000 !important;
    }

    .call-btn,
    .whatsapp-btn {
        width:
            44px !important;

        height:
            44px !important;

        font-size:
            19px !important;
    }


    /* POPUP */

    .booking-modal {
        padding:
            12px;
    }

    .booking-modal-content {
        padding:
            25px 18px;

        max-height:
            92vh;

        border-radius:
            14px;
    }

    .booking-header h3 {
        font-size:
            23px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .top-contact {
        flex-direction:
            column;

        gap:
            5px;
    }

    .hero-content h1 {
        font-size:
            34px;
    }

    .hero-trust {
        display:
            none;
    }

    .experience-badge {
        position:
            relative;

        display:
            inline-flex;

        right:
            auto;

        bottom:
            auto;

        margin:
            20px;
    }

}
/* =========================================================
   CONTACT CTA SECTION
========================================================= */

.contact-section {
    padding: 40px 0;
    background: #f4faef;
}

.contact-box {
    background: #4f8a10;
    border-radius: 24px;
    padding: 55px 60px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(80, 160, 50, 0.12);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

/* Decorative shape */

.contact-box::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(104, 185, 65, 0.08);
    right: -80px;
    top: -80px;
}

.contact-box::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(104, 185, 65, 0.06);
    left: -60px;
    bottom: -70px;
}

.contact-box > .row {
    position: relative;
    z-index: 2;
}

.contact-box span {
    display: inline-block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.contact-box h2 {
    margin: 0 0 12px;
    font-size: 38px;
    line-height: 1.25;
    font-weight: 700;
    color: #ffffff;
}

.contact-box h2 strong {
    font-weight: 800;
    color: #c7f5abc7;
}

.contact-box p {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   CONTACT CTA BUTTON
========================================================= */

.contact-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-width: 155px;
    padding: 15px 25px;

    background: #ffffff !important;
    color: #62a83f !important;

    text-decoration: none !important;

    border-radius: 50px;

    font-size: 15px;
    font-weight: 600;

    /*border: 2px solid #62a83f;*/

    transition: all 0.3s ease;

    position: relative;
    z-index: 5;
}

.contact-btn i {
    font-size: 16px;
}

.contact-btn:hover {
    background: #ffffff !important;
    border-color: #4f9130;
    color: #4f9130 !important;

    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(98, 168, 63, 0.30);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    .contact-section {
        padding: 60px 15px;
    }

    .contact-box {
        padding: 40px 30px;
        text-align: center;
    }

    .contact-box h2 {
        font-size: 30px;
    }

    .contact-box .text-lg-end {
        text-align: center !important;
        margin-top: 25px;
    }

}


@media (max-width: 576px) {

    .contact-section {
        padding: 45px 12px;
    }

    .contact-box {
        padding: 35px 20px;
        border-radius: 18px;
    }

    .contact-box h2 {
        font-size: 25px;
    }

    .contact-box p {
        font-size: 14px;
    }

    .contact-btn {
        width: 100%;
        max-width: 220px;
    }

}