:root {
    --brand: #0F3325;
    --sub: #1A503B;
    --body: #516171;
    --border: rgba(0, 0, 0, 0.08);
    --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
    --green-deep: #1F5E45;
    --green-lime: #78C850;
    --cream: #F8F7F2;
    --beige: #E8E1D5;
    --charcoal: #2C2C2C;
    --gray-bg: #F3F5F4;
    --orange: #F28C28;
    --white: #ffffff;
    --shadow: 0 8px 32px rgba(31, 94, 69, 0.10);
    --shadow-card: 0 4px 24px rgba(31, 94, 69, 0.12);
}

/* ===== HERO ===== */
#hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #eef6f1 0%, var(--cream) 50%, #f0f7ec 100%);
    display: flex;
    align-items: center;
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.18;
    pointer-events: none;
}

.hero-blob-1 {
    width: 500px;
    height: 500px;
    /* background: var(--green-lime); */
    top: -100px;
    right: -100px;
}

.hero-blob-2 {
    width: 400px;
    height: 400px;
    /* background: var(--green-deep); */
    bottom: -50px;
    left: -80px;
}

.hero-blob-3 {
    width: 250px;
    height: 250px;
    background: var(--orange);
    top: 40%;
    right: 25%;
    opacity: 0.10;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(120, 200, 80, 0.12);
    border: 1px solid rgba(120, 200, 80, 0.3);
    color: var(--green-deep);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 20px;
    width: fit-content;
    animation: fadeUp 0.6s ease both;
}

.hero-badge::before {
    content: '🌿';
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.18;
    color: var(--charcoal);
    margin-bottom: 20px;
    animation: fadeUp 0.7s ease 0.1s both;
}

.hero-title span {
    color: var(--green-deep);
}

.hero-sub {
    font-size: 1.05rem;
    color: #5a6a64;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 32px;
    animation: fadeUp 0.7s ease 0.2s both;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    animation: fadeUp 0.7s ease 0.3s both;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green-deep), #2a7a5a);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(31, 94, 69, 0.28);
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(31, 94, 69, 0.35);
}

.btn-secondary {
    background: white;
    color: var(--green-deep);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid var(--green-deep);
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: var(--green-deep);
    color: white;
}

.hero-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeUp 0.7s ease 0.4s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.83rem;
    font-weight: 500;
    color: #4a6a5a;
}

.trust-item .check {
    color: var(--green-lime);
    font-size: 1rem;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeUp 0.7s ease 0.2s both;
}

.hero-img-wrap {
    position: relative;
    width: 100%;
    max-width: 480px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(31, 94, 69, 0.20);
}

.hero-img-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(160deg, #c8e6d4 0%, #a8d4b8 40%, #7ab898 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-img-placeholder .tech-figure {
    font-size: 7rem;
    animation: float 3s ease-in-out infinite;
}

.hero-img-placeholder .bg-leaf {
    position: absolute;
    font-size: 4rem;
    opacity: 0.15;
}

.hero-img-placeholder .bg-leaf:nth-child(1) {
    top: 10%;
    left: 5%;
}

.hero-img-placeholder .bg-leaf:nth-child(2) {
    bottom: 15%;
    right: 8%;
}

.hero-img-placeholder .bg-leaf:nth-child(3) {
    top: 55%;
    left: 10%;
}

.hero-float-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 12px 18px;
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.hero-float-card.card-1 {
    bottom: 20px;
    left: -30px;
    font-size: 0.85rem;
    animation-delay: 0s;
}

.hero-float-card.card-2 {
    top: 30px;
    right: -30px;
    font-size: 0.82rem;
    animation-delay: 1s;
}

.hero-float-card .card-icon {
    font-size: 1.5rem;
}

.hero-float-card .card-text {
    color: var(--charcoal);
    line-height: 1.3;
}

.hero-float-card .card-text small {
    color: #888;
    font-weight: 400;
    font-size: 0.75rem;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 24px;
    }

    .hero-visual {
        order: -1;
    }

}

@media (max-width: 600px) {

    .hero-float-card.card-1 {
        left: 0;
        bottom: 10px;
    }

    .hero-float-card.card-2 {
        right: 0;
        top: 10px;
    }
}

.hero-img-placeholder {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: auto;

    border-radius: 32px;
    overflow: hidden;

    box-shadow: 0 20px 60px rgba(31, 94, 69, 0.18);

    background: var(--white);
}

.hero-img-placeholder img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    border-radius: 32px;
}


/* ===== PROCESS ===== */
#process {
    /* background: var(--gray-bg); */
    padding: 90px 24px;
}

/* =========================================
   PROCESS SECTION ALIGNMENT FIX
========================================= */

.process-inner {
    width: 100%;

    max-width: 1100px;

    margin: 0 auto;

    padding: 0 20px;

    box-sizing: border-box;
}

.process-steps {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 24px;

    margin: 52px auto 0;

    position: relative;

    align-items: stretch;
}


/* =========================================
   TABLET
========================================= */

@media only screen and (max-width:991px) {

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   MOBILE
========================================= */

@media only screen and (max-width:767px) {

    .process-inner {
        padding: 0 16px;
    }

    .process-steps {
        grid-template-columns: repeat(4, 1fr);

        gap: 18px;
    }

}

.process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--green-deep), var(--green-lime));
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--green-deep);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 6px 20px rgba(31, 94, 69, 0.15);
    transition: background 0.3s;
}

.process-step:hover .step-circle {
    background: var(--green-deep);
}

.step-num {
    position: absolute;
    top: -8px;
    right: calc(50% - 44px);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 0.85rem;
    color: #6a7a74;
    line-height: 1.6;
}

/* ===== BEFORE/AFTER ===== */
#before-after {
    /* background: var(--cream); */
    padding: 90px 24px;
}

.ba-wrap {
    max-width: 900px;
    margin: 50px auto 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 16px 56px rgba(31, 94, 69, 0.16);
    position: relative;
    user-select: none;
}

.ba-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
}

.ba-before,
.ba-after {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.ba-before img,
.ba-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: center;
}

/* AFTER IMAGE */
.ba-after {
    z-index: 1;
}

/* BEFORE IMAGE */
.ba-slider-wrap {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}

.ba-clip {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    overflow: hidden;
}

.ba-before {
    width: 100vw;
    max-width: none;
}

/* LABELS */
.ba-label {
    position: absolute;
    bottom: 20px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;

    backdrop-filter: blur(4px);
}

.ba-label.before {
    left: 20px;
}

.ba-label.after {
    right: 20px;
}

/* HANDLE */
.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    background: #fff;
    cursor: ew-resize;
    z-index: 10;
}

.ba-handle::before {
    content: '⟺';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: white;
    color: var(--green-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* MOBILE */
@media(max-width:768px) {

    .ba-wrap {
        border-radius: 20px;
    }

    .ba-label {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .ba-handle::before {
        width: 44px;
        height: 44px;
        font-size: 0.9rem;
    }
}

/* ─────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────── */


.testimonials-section {
    background: var(--gray-bg);
    padding: 100px 24px;
    overflow: hidden;
}

.carousel-wrapper {
    overflow: hidden;
    margin-top: 56px;
    cursor: grab;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: scroll-left 28s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.review-card {
    flex-shrink: 0;
    width: 380px;

    background: var(--white);
    border-radius: 22px;

    padding: 38px 32px;

    border: 1px solid rgba(31, 94, 69, 0.08);

    box-shadow: var(--shadow-card);

    transition: 0.35s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(31, 94, 69, 0.18);
}

.quote-mark {
    font-size: 3.4rem;
    line-height: 1;
    margin-bottom: 14px;

    color: var(--green-lime);

    font-family: Georgia, serif;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.9;

    color: var(--body);

    margin-bottom: 28px;

    font-family: 'Inter', sans-serif;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.avatar {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: linear-gradient(135deg,
            var(--green-deep),
            var(--green-lime));

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--white);

    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;

    flex-shrink: 0;

    box-shadow: 0 4px 14px rgba(31, 94, 69, 0.25);
}

.author-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;

    color: var(--charcoal);

    letter-spacing: 0.4px;
}

.author-role {
    font-size: 0.8rem;
    color: var(--body);

    margin-top: 2px;

    font-family: 'Inter', sans-serif;
}

.stars {
    color: var(--orange);
    font-size: 0.9rem;

    margin-bottom: 8px;

    letter-spacing: 2px;
}

/* MOBILE */

@media(max-width:768px) {

    .review-card {
        width: 300px;
        padding: 30px 24px;
    }

    .review-text {
        font-size: 0.9rem;
        line-height: 1.75;
    }

    .quote-mark {
        font-size: 2.8rem;
    }

    .avatar {
        width: 44px;
        height: 44px;
    }
}

/* ===== SERVICES ===== */
#services {
    background: var(--cream);
    padding: 90px 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 24px;
    padding: 32px 28px;
    border: 1px solid rgba(120, 200, 80, 0.15);
    box-shadow: 0 4px 20px rgba(31, 94, 69, 0.07);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-deep), var(--green-lime));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(31, 94, 69, 0.14);
    border-color: var(--green-lime);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.svc-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(31, 94, 69, 0.08), rgba(120, 200, 80, 0.12));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 18px;
}

.svc-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.svc-desc {
    font-size: 0.9rem;
    color: #6a7a74;
    line-height: 1.65;
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    color: var(--green-deep);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s;
}

.svc-link:hover {
    gap: 10px;
}

.svc-icon {
    width: 95px;
    height: 95px;

    margin-bottom: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(120, 200, 80, 0.08);

    border: 1px solid rgba(31, 94, 69, 0.08);

    overflow: hidden;

    transition: 0.35s ease;
}

.svc-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;

    transition: 0.35s ease;
}

.service-card:hover .svc-icon {
    transform: scale(1.08) rotate(3deg);
    background: rgba(120, 200, 80, 0.12);
}

.service-card:hover .svc-icon img {
    transform: scale(1.05);
}

/* =========================================
   TABLET VIEW
========================================= */

@media only screen and (max-width:991px) {

    #services {
        padding: 70px 20px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-card {
        padding: 26px 22px;
        border-radius: 20px;

        height: 100%;
    }

    .svc-icon {
        width: 80px;
        height: 80px;

        margin-bottom: 18px;
    }

    .svc-title {
        font-size: 1rem;
        line-height: 1.4;
    }

    .svc-desc {
        font-size: 0.88rem;
        line-height: 1.6;
    }

}


/* =========================================
   MOBILE VIEW
========================================= */

@media only screen and (max-width:767px) {

    #services {
        padding: 60px 16px;
    }

    /* 2 COLUMN GRID */

    .services-grid {

        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 14px;

        align-items: stretch;
    }

    /* CARD */

    .service-card {

        padding: 18px 16px;

        border-radius: 18px;

        min-height: 100%;

        display: flex;
        flex-direction: column;
        justify-content: flex-start;

        overflow: hidden;
    }

    /* ICON */

    .svc-icon {

        width: 65px;
        height: 65px;

        margin-bottom: 14px;

        flex-shrink: 0;
    }

    .svc-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    /* TITLE */

    .svc-title {

        font-size: 0.95rem;

        line-height: 1.4;

        margin-bottom: 8px;

        word-break: break-word;
    }

    /* DESCRIPTION */

    .svc-desc {

        font-size: 0.8rem;

        line-height: 1.5;

        word-break: break-word;

        overflow: visible;
    }

    /* LINK */

    .svc-link {

        margin-top: 12px;

        font-size: 0.8rem;

        flex-wrap: wrap;
    }

}


/* =========================================
   EXTRA SMALL MOBILE
========================================= */

@media only screen and (max-width:480px) {

    .services-grid {
        gap: 12px;
    }

    .service-card {
        padding: 16px 14px;
    }

    .svc-icon {
        width: 58px;
        height: 58px;
    }

    .svc-title {
        font-size: 0.88rem;
    }

    .svc-desc {
        font-size: 0.75rem;
    }

}

/* ===== FAQ ===== */
#faq {
    background: var(--gray-bg);
    padding: 90px 24px;
}

.faq-inner {
    max-width: 780px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border-radius: 18px;
    border: 1px solid rgba(120, 200, 80, 0.2);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(31, 94, 69, 0.06);
}

.faq-q {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 0.98rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--charcoal);
    transition: background 0.2s;
}

.faq-q:hover {
    background: rgba(120, 200, 80, 0.05);
}

.faq-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gray-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--green-deep);
    transition: transform 0.3s, background 0.2s;
    flex-shrink: 0;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    background: var(--green-deep);
    color: white;
}

.faq-a {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s ease;
    font-size: 0.93rem;
    color: #6a7a74;
    line-height: 1.7;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 24px 20px;
}