﻿/* =====================================================
   SERVICES PAGE
===================================================== */

.services-page {
    overflow: hidden;
    background: #f5faf2;
}


/* =====================================================
   HERO
===================================================== */

.services-hero {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 20px;
    background: radial-gradient( circle at 10% 20%, rgba(177, 220, 159, .45), transparent 28% ), radial-gradient( circle at 90% 30%, rgba(179, 218, 160, .35), transparent 30% ), linear-gradient( 135deg, #f7fcf4, #e7f5e1 );
}


    .services-hero::before {
        content: "🌿";
        position: absolute;
        left: 2%;
        top: 20px;
        font-size: 110px;
        opacity: .18;
        transform: rotate(-20deg);
    }


    .services-hero::after {
        content: "🌿";
        position: absolute;
        right: 2%;
        bottom: 10px;
        font-size: 110px;
        opacity: .18;
        transform: rotate(20deg);
    }


.services-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
}


.services-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: #26753b;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
}


.services-hero h1 {
    margin: 0;
    color: #123d25;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1.05;
}


    .services-hero h1 span {
        display: block;
        color: #287b3f;
    }


.services-hero p {
    max-width: 780px;
    margin: 24px auto 0;
    color: #607267;
    font-size: 17px;
    line-height: 1.8;
}


/* =====================================================
   COMMON CONTAINER
===================================================== */

.service-container {
    width: min(1180px, 92%);
    margin: auto;
}


/* =====================================================
   SERVICE SECTION
===================================================== */

.service-section {
    padding: 85px 0;
}


.service-section-heading {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}


    .service-section-heading > span {
        display: inline-block;
        margin-bottom: 12px;
        padding: 9px 18px;
        border-radius: 30px;
        background: #e2f2dd;
        color: #26733a;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 2px;
    }


    .service-section-heading h2 {
        margin: 0;
        color: #173f28;
        font-family: Georgia, "Times New Roman", serif;
        font-size: clamp(34px, 4vw, 48px);
        line-height: 1.15;
    }


    .service-section-heading p {
        margin: 17px auto 0;
        color: #68766c;
        font-size: 15px;
        line-height: 1.75;
    }


/* =====================================================
   SERVICES GRID
===================================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}


/* =====================================================
   SERVICE CARD
===================================================== */

.service-card {
    position: relative;
    overflow: hidden;
    border: 1px solid #dfebdc;
    border-radius: 18px;
    background: white;
    box-shadow: 0 8px 25px rgba(34, 76, 42, .06);
    transition: transform .35s ease, box-shadow .35s ease;
}


    .service-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 20px 40px rgba(34, 76, 42, .13);
    }


/* =====================================================
   CARD IMAGE AREA
===================================================== */

.service-image {
    height: 145px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient( 135deg, #dcefd7, #eff8eb );
    font-size: 65px;
    overflow: hidden;
}


/* Individual backgrounds */

.service-img-1 {
    background: linear-gradient( 135deg, #d8edd2, #eef8e9 );
}

.service-img-2 {
    background: linear-gradient( 135deg, #e4f0dc, #f5f9f1 );
}

.service-img-3 {
    background: linear-gradient( 135deg, #d7eee1, #edf8ef );
}

.service-img-4 {
    background: linear-gradient( 135deg, #f0f0d9, #fff8eb );
}

.service-img-5 {
    background: linear-gradient( 135deg, #e0e9df, #f2f7ef );
}

.service-img-6 {
    background: linear-gradient( 135deg, #dcefd7, #f4f9ef );
}

.service-img-7 {
    background: linear-gradient( 135deg, #d8ead0, #eff7e9 );
}

.service-img-8 {
    background: linear-gradient( 135deg, #dfece1, #f1f7f1 );
}

.service-img-9 {
    background: linear-gradient( 135deg, #d3ead3, #edf8ea );
}

.service-img-10 {
    background: linear-gradient( 135deg, #f0eacf, #fff8e9 );
}


/* =====================================================
   CARD ICON
===================================================== */

.service-icon {
    position: absolute;
    top: 118px;
    left: 18px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid white;
    border-radius: 50%;
    background: #17733a;
    color: white;
    font-size: 21px;
    box-shadow: 0 5px 15px rgba(20, 87, 42, .18);
}


/* =====================================================
   CARD CONTENT
===================================================== */

.service-card-content {
    position: relative;
    padding: 28px 18px 20px;
}


.service-number {
    display: block;
    margin-bottom: 7px;
    color: #91a88f;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}


.service-card h3 {
    min-height: 45px;
    margin: 0 0 9px;
    color: #173c26;
    font-size: 17px;
    line-height: 1.3;
}


.service-card p {
    min-height: 115px;
    margin: 0;
    color: #68766d;
    font-size: 12px;
    line-height: 1.7;
}


.service-card a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    padding: 10px 12px;
    border-radius: 9px;
    background: #e8f4e4;
    color: #28683a;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    transition: .3s ease;
}


    .service-card a span {
        font-size: 17px;
    }


    .service-card a:hover {
        background: #24783b;
        color: white;
    }


/* =====================================================
   DECORATION SECTION
===================================================== */

.decoration-section {
    padding: 90px 0;
    background: linear-gradient( 135deg, #edf7e9, #f8fbf5 );
}


.decoration-heading > span {
    background: #dcefd7;
}


.decoration-grid {
    grid-template-columns: repeat(5, 1fr);
}


/* =====================================================
   DECORATION CARD
===================================================== */

.decoration-card .service-image {
    background: linear-gradient( 135deg, #e9f1d8, #fff4df );
}


/* =====================================================
   BENEFITS
===================================================== */

.service-benefits {
    padding: 85px 0;
    background: white;
}


.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}


.benefit-box {
    padding: 28px 22px;
    text-align: center;
    border: 1px solid #e0ebdc;
    border-radius: 18px;
    background: #f8fbf6;
    transition: .3s ease;
}


    .benefit-box:hover {
        transform: translateY(-5px);
        background: #f1f8ed;
        box-shadow: 0 15px 30px rgba(35, 77, 42, .08);
    }


    .benefit-box > div {
        width: 58px;
        height: 58px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
        border-radius: 50%;
        background: #dff0db;
        font-size: 26px;
    }


    .benefit-box h3 {
        margin: 0 0 8px;
        color: #21492c;
        font-size: 17px;
    }


    .benefit-box p {
        margin: 0;
        color: #6d796f;
        font-size: 12px;
        line-height: 1.7;
    }


/* =====================================================
   CTA
===================================================== */

.services-cta {
    padding: 80px 20px;
    background: linear-gradient( 135deg, #14562e, #237b3f );
    text-align: center;
}


.services-cta-inner {
    max-width: 800px;
    margin: auto;
}


.services-cta span {
    color: #cde8c4;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
}


.services-cta h2 {
    margin: 15px 0;
    color: white;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.15;
}


.services-cta p {
    max-width: 650px;
    margin: 0 auto 28px;
    color: rgba(255,255,255,.75);
    font-size: 14px;
    line-height: 1.8;
}


.services-cta a {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 14px 23px;
    border-radius: 30px;
    background: white;
    color: #206235;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    transition: .3s ease;
}


    .services-cta a:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 25px rgba(0,0,0,.15);
    }


    .services-cta a strong {
        font-size: 19px;
    }


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1100px) {

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .decoration-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (max-width: 750px) {

    .service-section,
    .decoration-section,
    .service-benefits {
        padding: 65px 0;
    }


    .services-grid,
    .decoration-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .services-hero {
        min-height: 330px;
    }


        .services-hero p {
            font-size: 14px;
        }
}


@media (max-width: 520px) {

    .services-grid,
    .decoration-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }


    .service-card h3 {
        min-height: auto;
    }


    .service-card p {
        min-height: auto;
    }


    .services-hero {
        padding: 60px 18px;
    }


        .services-hero h1 {
            font-size: 39px;
        }


    .service-section-heading h2 {
        font-size: 34px;
    }
}
/* =====================================================
   SERVICE IMAGE
===================================================== */

.service-image {
    height: 145px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #eaf5e6;
}


    .service-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform .5s ease;
    }


.service-card:hover .service-image img {
    transform: scale(1.08);
}


/* =====================================================
   IMAGE OVERLAY
===================================================== */

.service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(0, 0, 0, 0), rgba(13, 53, 28, .18) );
    pointer-events: none;
}


/* =====================================================
   ROUND IMAGE ICON
===================================================== */

.service-icon {
    position: absolute;
    top: 118px;
    left: 18px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid white;
    border-radius: 50%;
    background: #17733a;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(20, 87, 42, .22);
    z-index: 5;
    transition: transform .3s ease, box-shadow .3s ease;
}


    .service-icon img {
        width: 100%;
        height: 100%;
        padding: 9px;
        object-fit: cover;
        display: block;
        border-radius: 50%;
    }


.service-card:hover .service-icon {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(20, 87, 42, .30);
}


/* =====================================================
   BENEFIT IMAGE ICONS
===================================================== */

.benefit-box > div {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #dff0db;
    overflow: hidden;
}


    .benefit-box > div img {
        width: 100%;
        height: 100%;
        padding: 12px;
        object-fit: contain;
        display: block;
    }
/* =========================================
   SERVICES HERO - BACKGROUND IMAGE
========================================= */

.services-hero {
    min-height: 450px;
    background-image: linear-gradient( rgba(0, 55, 30, 0.65), rgba(0, 55, 30, 0.65) ), url('/Images/slider7.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}


/* CONTENT */

.services-hero-content {
    max-width: 900px;
    padding: 50px 25px;
    position: relative;
    z-index: 2;
}


/* EYEBROW */

.services-eyebrow {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}


/* HEADING */

.services-hero h1 {
    font-size: 55px;
    line-height: 1.15;
    margin: 0 0 20px;
    color: #ffffff;
}

    .services-hero h1 span {
        display: block;
        color: #b9f2cd;
    }


/* DESCRIPTION */

.services-hero p {
    max-width: 750px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.92);
}


/* MOBILE */

@media (max-width: 700px) {

    .services-hero {
        min-height: 500px;
    }

        .services-hero h1 {
            font-size: 38px;
        }

        .services-hero p {
            font-size: 15px;
        }
}