/* =========================================================
   GREEN CARE NURSERY
   COMPLETE HOMEPAGE CSS
========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
    --gc-primary: #2f6b43;
    --gc-primary-dark: #19452b;
    --gc-primary-light: #edf5ee;

    --gc-green: #234f32;
    --gc-green-dark: #123622;

    --gc-cream: #f7f6f0;
    --gc-off-white: #fafbf9;

    --gc-text: #27332b;
    --gc-text-light: #69736c;

    --gc-border: #e5e9e5;

    --gc-white: #ffffff;

    --gc-shadow: 0 8px 30px rgba(23, 55, 34, 0.08);
}


/* =========================================================
   RESET / GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family: "DM Sans", Arial, sans-serif;

    color: var(--gc-text);
    background: #ffffff;

    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button:focus,
a:focus {
    outline: none;
}

.container {
    max-width: 1240px;
}


/* =========================================================
   GREEN CARE NURSERY
   NEW HEADER SYSTEM
========================================================= */

.gcn-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
}


/* =========================================================
   TOP BAR
========================================================= */

.gcn-top {
    height: 32px;
    background: #123a26;
    color: #fff;
}

.gcn-top .container {
    height: 100%;
}

.gcn-top-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gcn-top-left,
.gcn-top-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.gcn-top-left span,
.gcn-top-right a {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: rgba(255,255,255,.86);

    font-size: 15px;
    line-height: 1;

    text-decoration: none;
    white-space: nowrap;
}

.gcn-top-left i,
.gcn-top-right i {
    font-size: 9px;
    color: #b9cfbd;
}

.gcn-top-right a:hover {
    color: #fff;
}


/* =========================================================
   NAVIGATION AREA
========================================================= */

.gcn-navigation {
    position: relative;

    width: 100%;
    height: 78px;

    background: rgba(255,255,255,.98);

    border-bottom: 1px solid #e9eee9;

    z-index: 99998;
}

.gcn-navigation .container {
    height: 100%;
}


/* =========================================================
   NAV
========================================================= */

.gcn-nav {
    position: relative;

    width: 100%;
    height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   BRAND
========================================================= */

.gcn-brand {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    flex-shrink: 0;

    text-decoration: none;
}

.gcn-brand-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #2e6841;

    background: #edf4ed;

    border-radius: 50%;

    font-size: 19px;

    transition: .25s ease;
}

.gcn-brand:hover .gcn-brand-icon {
    color: #fff;
    background: #2e6841;
}

.gcn-brand-name {
    display: flex;
    flex-direction: column;
}

.gcn-brand-name strong {
    color: #173a27;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 20px;
    font-weight: 600;

    line-height: 1;

    letter-spacing: .3px;
}

.gcn-brand-name small {
    margin-top: 5px;

    color: #4c7757;

    font-size: 7px;
    font-weight: 700;

    line-height: 1;

    letter-spacing: 2.8px;
}


/* =========================================================
   MENU
========================================================= */

.gcn-menu {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 4px;
}


/* =========================================================
   LINKS
========================================================= */

.gcn-link {
    position: relative;

    height: 78px;

    padding: 0 17px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #27392d;

    background: transparent;

    border: 0;

    font-family: inherit;

    font-size: 13px;
    font-weight: 500;

    text-decoration: none;

    white-space: nowrap;

    cursor: pointer;

    transition: color .25s ease;
}

.gcn-link:hover,
.gcn-current {
    color: #2e6841;
}


/* UNDERLINE */

.gcn-link::after {
    content: "";

    position: absolute;

    left: 17px;
    right: 17px;

    bottom: 17px;

    height: 2px;

    background: #2e6841;

    transform: scaleX(0);

    transition: transform .25s ease;
}

.gcn-link:hover::after,
.gcn-current::after {
    transform: scaleX(1);
}


/* =========================================================
   SERVICES
========================================================= */

.gcn-services {
    position: relative;

    height: 78px;

    display: flex;
    align-items: center;
}

.gcn-services-button {
    gap: 7px;
}

.gcn-services-button i {
    font-size: 8px;

    transition: transform .25s ease;
}

.gcn-services.is-open
.gcn-services-button i {
    transform: rotate(180deg);
}


/* =========================================================
   SERVICES MENU
========================================================= */

.gcn-services-list {
    position: absolute;

    top: 78px;
    left: 50%;

    width: 235px;

    padding: 8px;

    background: #fff;

    border: 1px solid #e5ebe6;

    border-radius: 4px;

    box-shadow:
        0 15px 35px rgba(22,52,33,.15);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform:
        translate(-50%, 8px);

    transition:
        opacity .22s ease,
        transform .22s ease,
        visibility .22s ease;

    z-index: 999999;
}

.gcn-services-list::before {
    content: "";

    position: absolute;

    top: -5px;
    left: 50%;

    width: 9px;
    height: 9px;

    background: #fff;

    border-left: 1px solid #e5ebe6;
    border-top: 1px solid #e5ebe6;

    transform:
        translateX(-50%)
        rotate(45deg);
}


/* DESKTOP HOVER */

@media (min-width: 768px) {

    .gcn-services:hover .gcn-services-list,
    .gcn-services.is-open .gcn-services-list {

        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform:
            translate(-50%, 0);
    }

}


/* =========================================================
   SERVICE ITEMS
========================================================= */

.gcn-services-list a {
    min-height: 42px;

    padding: 0 12px;

    display: flex;
    align-items: center;

    color: #34463a;

    border-radius: 4px;

    font-size: 11.5px;
    font-weight: 500;

    text-decoration: none;

    transition:
        background .2s ease,
        color .2s ease;
}

.gcn-services-list a:hover {
    color: #2e6841;
    background: #edf4ed;
}


/* =========================================================
   CONTACT
========================================================= */

.gcn-contact {
    min-width: 94px;
    height: 43px;

    margin-left: 9px;

    padding: 0 19px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    background: #2e6841;

    border-radius: 3px;

    font-size: 11px;
    font-weight: 600;

    text-decoration: none;

    transition:
        background .25s ease,
        transform .25s ease;
}

.gcn-contact:hover {
    color: #fff;

    background: #19482b;

    transform: translateY(-1px);
}


/* =========================================================
   MOBILE TOGGLE
========================================================= */

.gcn-toggle {
    display: none;

    width: 40px;
    height: 40px;

    padding: 0;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;

    background: #f0f5f0;

    border: 1px solid #dce6dd;

    border-radius: 4px;

    cursor: pointer;
}

.gcn-toggle span {
    width: 18px;
    height: 1.5px;

    background: #2e6841;

    transition:
        transform .25s ease,
        opacity .2s ease;
}


/* =========================================================
   TOGGLE → X
========================================================= */

.gcn-toggle.active span:nth-child(1) {
    transform:
        translateY(6.5px)
        rotate(45deg);
}

.gcn-toggle.active span:nth-child(2) {
    opacity: 0;
}

.gcn-toggle.active span:nth-child(3) {
    transform:
        translateY(-6.5px)
        rotate(-45deg);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) and (min-width: 768px) {

    .gcn-link {
        padding: 0 10px;
        font-size: 12px;
    }

    .gcn-link::after {
        left: 10px;
        right: 10px;
    }

    .gcn-contact {
        min-width: 80px;
        margin-left: 4px;
        padding: 0 12px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .gcn-top {
        height: 30px;
    }

    .gcn-top-left {
        display: none;
    }

    .gcn-top-inner {
        justify-content: center;
    }

    .gcn-top-right {
        gap: 16px;
    }

    .gcn-top-right a {
        font-size: 8px;
    }


    /* NAV */

    .gcn-navigation {
        height: 58px;
    }

    .gcn-nav {
        height: 58px;
    }


    /* BRAND */

    .gcn-brand {
        gap: 8px;
    }

    .gcn-brand-icon {
        width: 37px;
        height: 37px;

        font-size: 16px;
    }

    .gcn-brand-name strong {
        font-size: 16px;
    }

    .gcn-brand-name small {
        margin-top: 4px;

        font-size: 6px;
        letter-spacing: 2.2px;
    }


    /* TOGGLE */

    .gcn-toggle {
        display: flex;
    }


    /* MOBILE MENU */

    .gcn-menu {
        position: absolute;

        top: 58px;
        left: 0;

        width: 100%;

        margin: 0;

        padding: 7px 9px 10px;

        display: none;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        background: #fff;

        border-top: 1px solid #edf1ed;

        box-shadow:
            0 15px 30px rgba(20,50,30,.16);

        z-index: 999999;
    }

    .gcn-menu.is-open {
        display: flex;
    }


    /* MOBILE LINKS */

    .gcn-link {
        width: 100%;

        height: 43px;
        min-height: 43px;

        padding: 0 12px;

        justify-content: flex-start;

        font-size: 12px;

        border-radius: 3px;
    }

    .gcn-link::after {
        display: none;
    }

    .gcn-link:hover,
    .gcn-current {
        background: #f1f6f1;
    }


    /* SERVICES */

    .gcn-services {
        width: 100%;
        height: auto;

        display: block;
    }

    .gcn-services-button {
        justify-content: space-between;
    }

    .gcn-services-button i {
        margin-left: auto;
    }


    /* MOBILE SERVICES */

    .gcn-services-list {
        position: static;

        width: 100%;

        padding: 4px 0;

        display: none;

        background: #f5f8f5;

        border: 0;

        border-radius: 3px;

        box-shadow: none;

        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: none;
    }

    .gcn-services-list::before {
        display: none;
    }

    .gcn-services.is-open
    .gcn-services-list {
        display: block;

        opacity: 1;
        visibility: visible;

        transform: none;
    }


    /* SERVICE LINKS */

    .gcn-services-list a {
        min-height: 39px;

        padding: 0 15px 0 20px;

        font-size: 11px;
    }


    /* CONTACT */

    .gcn-contact {
        width: 100%;

        height: 42px;
        min-height: 42px;

        margin: 6px 0 0;

        font-size: 11px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .gcn-top-right {
        gap: 12px;
    }

    .gcn-top-right a {
        font-size: 7.5px;
    }

    .gcn-navigation,
    .gcn-nav {
        height: 56px;
    }

    .gcn-menu {
        top: 56px;
    }

    .gcn-brand-icon {
        width: 36px;
        height: 36px;
    }

    .gcn-brand-name strong {
        font-size: 15px;
    }

    .gcn-toggle {
        width: 38px;
        height: 38px;
    }

}
/* =========================================================
   HERO
========================================================= */

.gc-hero {
    position: relative;

    min-height: 760px;

    height: 88vh;

    max-height: 880px;

    padding-top: 116px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background-image: url("https://www.karunanurserygarden.in/wp-content/uploads/2022/11/Ban2.jpg");

    background-position: center center;

    background-size: cover;

    background-repeat: no-repeat;
}


/* =========================================================
   HERO OVERLAY
========================================================= */

.gc-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(10, 42, 24, 0.88) 0%,
            rgba(12, 49, 28, 0.72) 34%,
            rgba(12, 49, 28, 0.38) 63%,
            rgba(12, 49, 28, 0.08) 100%
        );

    z-index: 1;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.gc-hero .container {
    position: relative;

    z-index: 3;
}

.gc-hero-content {
    max-width: 690px;

    padding-bottom: 115px;
}

.gc-hero-label {
    display: flex;

    align-items: center;

    gap: 11px;

    margin-bottom: 18px;

    color: rgba(255, 255, 255, 0.92);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.gc-hero-label span {
    width: 35px;
    height: 1px;

    background: rgba(255, 255, 255, 0.75);
}


/* =========================================================
   HERO HEADING
========================================================= */

.gc-hero h1 {
    margin: 0;

    color: #ffffff;

    font-family: "Playfair Display", Georgia, "Times New Roman", serif;

    font-size: clamp(50px, 6vw, 78px);

    font-weight: 500;

    line-height: 1.05;

    letter-spacing: -1px;
}

.gc-hero h1 span {
    font-style: italic;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.gc-hero p {
    max-width: 560px;

    margin-top: 22px;
    margin-bottom: 29px;

    color: rgba(255, 255, 255, 0.91);

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.gc-hero-buttons {
    display: flex;

    align-items: center;

    gap: 12px;
}

.gc-btn {
    min-height: 48px;

    padding: 0 22px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    border-radius: 3px;

    font-size: 13px;

    font-weight: 600;

    transition: all 0.25s ease;
}

.gc-btn-primary {
    color: var(--gc-green-dark);

    background: #ffffff;

    border: 1px solid #ffffff;
}

.gc-btn-primary:hover {
    color: var(--gc-green-dark);

    background: #eef4ed;

    border-color: #eef4ed;

    transform: translateY(-2px);
}

.gc-btn-light {
    color: #ffffff;

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.75);
}

.gc-btn-light:hover {
    color: #ffffff;

    background: rgba(255, 255, 255, 0.12);

    border-color: #ffffff;
}


/* =========================================================
   HERO BOTTOM INFORMATION
========================================================= */

.gc-hero-info {
    position: absolute;

    z-index: 5;

    left: 0;
    right: 0;

    bottom: 0;

    background: rgba(255, 255, 255, 0.98);

    box-shadow: 0 -4px 20px rgba(18, 54, 34, 0.06);
}

.gc-info-box {
    min-height: 82px;

    padding: 14px 25px;

    display: flex;

    align-items: center;

    gap: 13px;

    border-right: 1px solid var(--gc-border);
}

.gc-info-box:last-child {
    border-right: 0;
}

.gc-info-icon {
    width: 41px;
    height: 41px;

    flex: 0 0 41px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--gc-primary-light);

    color: var(--gc-primary);

    border-radius: 50%;

    font-size: 17px;
}

.gc-info-box strong {
    display: block;

    color: var(--gc-green-dark);

    font-size: 13px;

    font-weight: 600;

    line-height: 1.3;
}

.gc-info-box span {
    display: block;

    margin-top: 3px;

    color: var(--gc-text-light);

    font-size: 11px;

    line-height: 1.4;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199.98px) {

    .container {
        max-width: 1140px;
    }

    .gc-navbar .nav-link {
        padding-left: 13px !important;
        padding-right: 13px !important;
    }

    .gc-navbar .nav-link::before {
        left: 13px;
        right: 13px;
    }

    .gc-navbar .gc-contact-link {
        margin-left: 5px;
    }

    .gc-hero-content {
        max-width: 650px;
    }

}


/* =========================================================
   TABLET / MOBILE NAV
========================================================= */

@media (max-width: 991.98px) {

    .gc-topbar-left span:nth-child(2) {
        display: none;
    }

    .gc-navbar-wrap {
        top: 36px;

        height: 70px;
    }

    .gc-navbar {
        height: 70px;

        min-height: 70px;
    }

    .gc-navbar-collapse {
        margin-top: 0;

        padding: 8px;

        background: #ffffff;

        border-radius: 4px;

        box-shadow: 0 15px 35px rgba(20, 50, 30, 0.14);
    }

    .gc-navbar .navbar-nav {
        height: auto;

        align-items: stretch !important;

        gap: 0;
    }

    .gc-navbar .nav-item {
        height: auto;

        display: block;
    }

    .gc-navbar .nav-link {
        height: auto;

        min-height: 45px;

        display: flex;

        align-items: center;

        padding: 11px 12px !important;

        color: var(--gc-text) !important;
    }

    .gc-navbar .nav-link::before {
        display: none;
    }

    .gc-navbar .nav-link:hover {
        color: var(--gc-primary) !important;
    }

    .gc-navbar .gc-contact-link {
        width: 100%;

        min-height: 43px;

        margin: 5px 0 2px;

        color: #ffffff !important;

        background: var(--gc-primary) !important;

        border-color: var(--gc-primary) !important;

        justify-content: center;
    }

    .gc-dropdown-menu {
        min-width: 100%;

        margin: 0 !important;

        padding: 5px;

        background: #f4f7f3;

        border-radius: 3px;

        box-shadow: none;
    }

    .gc-dropdown-menu .dropdown-item {
        padding: 10px 12px;
    }

    .gc-hero {
        min-height: 720px;

        height: 86vh;

        padding-top: 105px;
    }

    .gc-hero-content {
        padding-bottom: 125px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .gc-topbar {
        height: 36px;
        min-height: 36px;

        font-size: 10.5px;
    }

    .gc-topbar-left {
        display: none;
    }

    .gc-topbar-right {
        width: 100%;

        justify-content: center;

        gap: 18px;
    }

    .gc-navbar-wrap {
        top: 36px;

        height: 68px;
    }

    .gc-navbar {
        height: 68px;

        min-height: 68px;
    }

    .gc-logo-symbol {
        width: 42px;
        height: 42px;

        flex-basis: 42px;

        font-size: 19px;
    }

    .gc-logo-text strong {
        font-size: 18px;
    }

    .gc-logo-text small {
        font-size: 7px;

        letter-spacing: 2.5px;
    }


    /* Hero */

    .gc-hero {
        min-height: 760px;

        height: auto;

        padding-top: 105px;
        padding-bottom: 0;

        background-position: 68% center;
    }

    .gc-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(10, 42, 24, 0.90) 0%,
                rgba(12, 49, 28, 0.68) 52%,
                rgba(12, 49, 28, 0.25) 100%
            );
    }

    .gc-hero-content {
        max-width: 100%;

        padding-top: 65px;
        padding-bottom: 185px;
    }

    .gc-hero-label {
        margin-bottom: 15px;

        font-size: 9.5px;

        letter-spacing: 2.3px;
    }

    .gc-hero-label span {
        width: 27px;
    }

    .gc-hero h1 {
        font-size: clamp(43px, 12vw, 61px);

        line-height: 1.05;

        letter-spacing: -0.8px;
    }

    .gc-hero p {
        max-width: 500px;

        margin-top: 18px;
        margin-bottom: 24px;

        font-size: 13.5px;

        line-height: 1.7;
    }

    .gc-hero-buttons {
        flex-wrap: wrap;
    }

    .gc-btn {
        min-height: 46px;

        padding: 0 18px;

        font-size: 12px;
    }


    /* Bottom info */

    .gc-hero-info {
        background: rgba(255, 255, 255, 0.98);
    }

    .gc-info-box {
        min-height: 65px;

        padding: 9px 15px;

        border-right: 0;

        border-bottom: 1px solid var(--gc-border);
    }

    .gc-info-box:last-child {
        border-bottom: 0;
    }

    .gc-info-icon {
        width: 36px;
        height: 36px;

        flex-basis: 36px;

        font-size: 15px;
    }

    .gc-info-box strong {
        font-size: 12px;
    }

    .gc-info-box span {
        font-size: 10px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .gc-topbar-right {
        justify-content: space-between;

        padding: 0 5px;

        gap: 10px;
    }

    .gc-topbar-right a {
        font-size: 9.5px;
    }

    .gc-logo-symbol {
        width: 39px;
        height: 39px;

        flex-basis: 39px;
    }

    .gc-logo-text strong {
        font-size: 17px;
    }

    .gc-logo-text small {
        font-size: 6.5px;

        letter-spacing: 2.2px;
    }

    .gc-hero {
        min-height: 760px;

        background-position: 66% center;
    }

    .gc-hero h1 {
        font-size: 43px;
    }

    .gc-hero p {
        font-size: 13px;
    }

    .gc-hero-buttons {
        flex-direction: column;

        align-items: stretch;

        max-width: 245px;
    }

    .gc-btn {
        width: 100%;
    }

}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 360px) {

    .gc-logo-text strong {
        font-size: 16px;
    }

    .gc-logo-symbol {
        width: 37px;
        height: 37px;

        flex-basis: 37px;
    }

    .gc-hero h1 {
        font-size: 40px;
    }

}

/* =========================================================
   ABOUT / WELCOME SECTION
========================================================= */

.gc-about-section {

    padding: 95px 0 90px;

    background: #ffffff;

}


/* =========================================================
   ABOUT IMAGE
========================================================= */

.gc-about-image-wrap {

    position: relative;

    padding-right: 28px;

}

.gc-log-image {

width: 100%;

height: 75px;

display: block;

object-fit: contain;

border-radius: 3px;
}

.gc-about-image {

width: 100%;

/*height: 75px;*/

display: block;

object-fit: contain;

border-radius: 3px;
}

/* Small decorative edge */

.gc-about-image-wrap::before {

    content: "";

    position: absolute;

    left: -12px;

    top: 28px;

    width: 65px;

    height: 65px;

    border-left: 2px solid #2f6b43;

    border-top: 2px solid #2f6b43;

    z-index: 2;

}


/* =========================================================
   IMAGE LABEL
========================================================= */

.gc-about-experience {

    position: absolute;

    right: 0;

    bottom: 25px;

    width: 155px;

    min-height: 100px;

    padding: 20px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background: #2f6b43;

    color: #ffffff;

    border-radius: 2px;

    box-shadow: 0 10px 25px rgba(20, 55, 32, 0.16);

}

.gc-about-experience strong {

    font-family: "Playfair Display", Georgia, serif;

    font-size: 17px;

    font-weight: 600;

    letter-spacing: 0.5px;

}

.gc-about-experience span {

    margin-top: 5px;

    font-size: 10px;

    letter-spacing: 2px;

    text-transform: uppercase;

    opacity: 0.8;

}


/* =========================================================
   ABOUT CONTENT
========================================================= */

.gc-about-content {

    padding-left: 15px;

}

.gc-section-label {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 17px;

    color: #2f6b43;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2.5px;

    text-transform: uppercase;

}

.gc-section-label span {

    width: 30px;

    height: 2px;

    background: #2f6b43;

}


.gc-about-content h2 {

    max-width: 560px;

    margin: 0 0 22px;

    color: #173b27;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(35px, 4vw, 50px);

    font-weight: 500;

    line-height: 1.15;

}

.gc-about-content h2 span {

    color: #2f6b43;

    font-style: italic;

}


.gc-about-content p {

    max-width: 570px;

    margin-bottom: 14px;

    color: #68736b;

    font-size: 14px;

    line-height: 1.8;

}

.gc-about-content .gc-about-intro {

    margin-bottom: 15px;

    color: #35463a;

    font-size: 16px;

    line-height: 1.7;

}


/* =========================================================
   ABOUT BUTTON
========================================================= */

.gc-about-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 12px;

    padding: 12px 20px;

    color: #ffffff;

    background: #2f6b43;

    border: 1px solid #2f6b43;

    border-radius: 3px;

    font-size: 12px;

    font-weight: 600;

    transition: all 0.25s ease;

}

.gc-about-btn:hover {

    color: #ffffff;

    background: #19452b;

    border-color: #19452b;

}

.gc-about-btn i {

    font-size: 14px;

    transition: transform 0.25s ease;

}

.gc-about-btn:hover i {

    transform: translateX(3px);

}


/* =========================================================
   ABOUT HIGHLIGHTS
========================================================= */

.gc-about-highlights {

    margin-top: 70px;

    border-top: 1px solid #e4e9e4;

    border-bottom: 1px solid #e4e9e4;

}

.gc-about-highlight {

    min-height: 105px;

    padding: 20px 28px;

    display: flex;

    align-items: center;

    gap: 15px;

    border-right: 1px solid #e4e9e4;

}

.gc-about-highlight:last-child {

    border-right: 0;

}


.gc-highlight-icon {

    width: 45px;

    height: 45px;

    flex: 0 0 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #edf5ee;

    color: #2f6b43;

    border-radius: 50%;

    font-size: 18px;

}


.gc-about-highlight h4 {

    margin: 0 0 4px;

    color: #234f32;

    font-size: 14px;

    font-weight: 600;

}


.gc-about-highlight p {

    max-width: 240px;

    margin: 0;

    color: #747d76;

    font-size: 11px;

    line-height: 1.55;

}


/* =========================================================
   ABOUT RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .gc-about-section {

        padding: 75px 0 70px;

    }

    .gc-about-image {

        height: 440px;

    }

    .gc-about-content {

        padding-left: 0;

        padding-top: 10px;

    }

    .gc-about-highlights {

        margin-top: 55px;

    }

}


@media (max-width: 767.98px) {

    .gc-about-section {

        padding: 60px 0;

    }

    .gc-about-image-wrap {

        padding-right: 15px;

    }

    .gc-about-image {

        height: 380px;

    }

    .gc-about-experience {

        right: 0;

        bottom: 18px;

        width: 135px;

        min-height: 85px;

        padding: 15px;

    }

    .gc-about-experience strong {

        font-size: 15px;

    }

    .gc-about-content h2 {

        font-size: 37px;

    }

    .gc-about-content p {

        font-size: 13px;

    }

    .gc-about-content .gc-about-intro {

        font-size: 14px;

    }

    .gc-about-highlights {

        margin-top: 45px;

    }

    .gc-about-highlight {

        min-height: 85px;

        padding: 15px 10px;

        border-right: 0;

        border-bottom: 1px solid #e4e9e4;

    }

    .gc-about-highlight:last-child {

        border-bottom: 0;

    }

}


@media (max-width: 430px) {

   .gc-log-image {

        height: 55px;

    }

  

    .gc-about-content h2 {

        font-size: 34px;

    }

    .gc-about-image-wrap::before {

        left: -7px;

        top: 18px;

        width: 48px;

        height: 48px;

    }

}



/* =========================================================
   GREEN CARE NURSERY
   SERVICES TIMELINE
   TWO CARDS PER ROW
========================================================= */


/* =========================================================
   SECTION
========================================================= */

.gc-services-section {

    position: relative;

    padding: 0px 0 20px;

    background: #ffffff;

    overflow: hidden;

}


/* =========================================================
   SECTION HEADER
========================================================= */

.gc-services-header {

    position: relative;

    z-index: 5;

    max-width: 850px;

    margin: 0 auto 65px;

    text-align: center;

}

.gc-services-kicker {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-bottom: 13px;

    color: #6c806f;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2.8px;

    text-transform: uppercase;

}

.gc-services-kicker span {

    width: 30px;

    height: 1px;

    background: #7d9a82;

}

.gc-services-header h2 {

    margin: 0;

    color: #173b27;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: clamp(40px, 5vw, 57px);

    font-weight: 500;

    line-height: 1.1;

}

.gc-services-header p {

    max-width: 720px;

    margin: 18px auto 0;

    color: #68736c;

    font-size: 14px;

    line-height: 1.75;

}


/* =========================================================
   TIMELINE
========================================================= */

.gc-services-timeline {

    position: relative;

    max-width: 1180px;

    margin: 0 auto;

    padding: 5px 0 15px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    column-gap: 90px;

    row-gap: 35px;

}


/* =========================================================
   CENTER VERTICAL LINE
========================================================= */

.gc-timeline-line {

    position: absolute;

    top: 0;
    bottom: 0;

    left: 50%;

    width: 4px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            to bottom,
            #72a07a 0%,
            #72a07a 48%,
            #c9833f 48%,
            #c9833f 100%
        );

    opacity: .95;

    z-index: 1;

}

.gc-line-top {

    position: absolute;

    top: -5px;

    left: 50%;

    width: 11px;

    height: 11px;

    transform: translateX(-50%);

    background: #c9833f;

    z-index: 4;

}


/* =========================================================
   IMPORTANT:
   EACH SERVICE ROW BECOMES TRANSPARENT GRID WRAPPER

   This allows:
   row 1 card + row 2 card
   to sit beside each other,
   row 3 card + row 4 card,
   etc.
========================================================= */

.gc-service-row {

    position: relative;

    min-height: 270px;

    margin: 0 !important;

    padding: 0 !important;

    display: contents;

}


/* =========================================================
   SERVICE CARD
========================================================= */

.gc-service-card {

    position: relative;

    width: 100%;

    min-height: 270px;

    padding: 27px 30px 28px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: flex-start;

    text-align: center;

    background: #ffffff;

    border: 1px solid #edf0ed;

    box-shadow:
        0 8px 25px rgba(34,60,41,.08);

    overflow: visible;

    z-index: 3;

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}


/* =========================================================
   LEFT CARD
========================================================= */

.gc-service-left .gc-service-card {

    border-radius:
        75px
        0
        75px
        0;

}


/* =========================================================
   RIGHT CARD
========================================================= */

.gc-service-right .gc-service-card {

    border-radius:
        0
        75px
        0
        75px;

}


/* =========================================================
   CARD HOVER
========================================================= */

.gc-service-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 16px 35px rgba(34,60,41,.12);

}


/* =========================================================
   HORIZONTAL CONNECTOR
========================================================= */

/* LEFT CARD → CENTER */

.gc-service-left .gc-service-card::before {

    content: "";

    position: absolute;

    top: 50%;

    right: -45px;

    width: 45px;

    height: 1px;

    transform: translateY(-50%);

    background: #9db0a0;

    z-index: 1;

}


/* RIGHT CARD → CENTER */

.gc-service-right .gc-service-card::before {

    content: "";

    position: absolute;

    top: 50%;

    left: -45px;

    width: 45px;

    height: 1px;

    transform: translateY(-50%);

    background: #9db0a0;

    z-index: 1;

}


/* =========================================================
   ORANGE CONNECTOR DOT
========================================================= */

.gc-service-left .gc-service-card::after {

    content: "";

    position: absolute;

    top: 50%;

    right: -51px;

    width: 11px;

    height: 11px;

    transform: translateY(-50%);

    background: #c9833f;

    z-index: 5;

}

.gc-service-right .gc-service-card::after {

    content: "";

    position: absolute;

    top: 50%;

    left: -51px;

    width: 11px;

    height: 11px;

    transform: translateY(-50%);

    background: #c9833f;

    z-index: 5;

}


/* =========================================================
   DECORATIVE ART
========================================================= */

.gc-service-art {

    width: 145px;

    height: 78px;

    margin-bottom: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

}

.gc-service-art img {

    max-width: 100%;

    max-height: 100%;

    width: auto;

    height: auto;

    object-fit: contain;

    transition: transform .35s ease;

}

.gc-service-card:hover
.gc-service-art img {

    transform: scale(1.06);

}


/* =========================================================
   SERVICE CONTENT
========================================================= */

.gc-service-card-content {

    position: relative;

    z-index: 4;

}

.gc-service-number {

    display: inline-block;

    margin-bottom: 5px;

    color: #78927d;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 11px;

    letter-spacing: 1px;

}

.gc-service-card h3 {

    margin: 0 0 9px;

    color: #183e28;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 25px;

    font-weight: 500;

    line-height: 1.2;

}

.gc-service-card p {

    max-width: 440px;

    margin: 0 auto 13px;

    color: #68726b;

    font-size: 12.5px;

    line-height: 1.65;

}


/* =========================================================
   READ MORE
========================================================= */

.gc-service-read {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #2f6841;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .9px;

    text-transform: uppercase;

    transition: .25s ease;

}

.gc-service-read i {

    font-size: 12px;

    transition: transform .25s ease;

}

.gc-service-read:hover {

    color: #173b27;

}

.gc-service-read:hover i {

    transform: translateX(4px);

}


/* =========================================================
   SUBTLE CARD DECORATION
========================================================= */

/*
   Before / after are already being used for timeline
   connectors, so decorative circles are moved to shadows
   instead of pseudo-elements.
*/

.gc-service-card {

    background:
        radial-gradient(
            circle at -25px 110%,
            #f0f5f0 0,
            #f0f5f0 35px,
            transparent 36px
        ),
        #ffffff;

}


/* =========================================================
   BOTTOM CTA
========================================================= */

.gc-services-footer {

    max-width: 1050px;

    margin: 55px auto 0;

    padding: 25px 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    background: #edf4ed;

    border-left: 4px solid #2f6841;

}

.gc-services-footer-text span {

    display: block;

    margin-bottom: 5px;

    color: #67806d;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 2px;

}

.gc-services-footer-text h4 {

    margin: 0;

    color: #234f32;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 21px;

    font-weight: 500;

}

.gc-services-footer-btn {

    min-height: 43px;

    padding: 0 19px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    flex-shrink: 0;

    color: #ffffff;

    background: #2f6841;

    border-radius: 3px;

    font-size: 11px;

    font-weight: 600;

    text-decoration: none;

    transition: .25s ease;

}

.gc-services-footer-btn:hover {

    color: #ffffff;

    background: #19452b;

}

.gc-services-footer-btn i {

    transition: transform .25s ease;

}

.gc-services-footer-btn:hover i {

    transform: translateX(3px);

}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1200px) {

    .gc-services-timeline {

        max-width: 1180px;

        column-gap: 90px;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .gc-services-section {

        padding: 75px 0 80px;

    }

    .gc-services-header {

        margin-bottom: 50px;

    }

    .gc-services-timeline {

        column-gap: 55px;

        row-gap: 28px;

    }

    .gc-service-card {

        min-height: 285px;

        padding: 25px 20px;

    }

    .gc-service-card h3 {

        font-size: 22px;

    }

    .gc-service-left .gc-service-card::before {

        right: -28px;

        width: 28px;

    }

    .gc-service-right .gc-service-card::before {

        left: -28px;

        width: 28px;

    }

    .gc-service-left .gc-service-card::after {

        right: -34px;

    }

    .gc-service-right .gc-service-card::after {

        left: -34px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .gc-services-section {

        padding: 60px 0 65px;

    }

    .gc-services-header {

        margin-bottom: 42px;

        padding: 0 10px;

    }

    .gc-services-kicker {

        font-size: 8px;

        letter-spacing: 2px;

    }

    .gc-services-kicker span {

        width: 20px;

    }

    .gc-services-header h2 {

        font-size: 38px;

    }

    .gc-services-header p {

        margin-top: 14px;

        font-size: 13px;

    }


    /* ---------------------------------------------
       Mobile becomes single column
    ---------------------------------------------- */

    .gc-services-timeline {

        display: flex;

        flex-direction: column;

        gap: 25px;

        padding-left: 23px;

    }


    /* Timeline moves left */

    .gc-timeline-line {

        left: 7px;

        transform: none;

        width: 3px;

    }

    .gc-line-top {

        left: 7px;

        width: 9px;

        height: 9px;

        transform: translateX(-50%);

    }


    /* ---------------------------------------------
       Rows return to normal
    ---------------------------------------------- */

    .gc-service-row {

        display: block;

        min-height: 0;

        width: 100%;

    }


    /* ---------------------------------------------
       Cards
    ---------------------------------------------- */

    .gc-service-card,
    .gc-service-left .gc-service-card,
    .gc-service-right .gc-service-card {

        width: 100%;

        min-height: 0;

        padding: 23px 20px 24px;

        border-radius:
            0
            45px
            0
            45px;

    }


    /* ---------------------------------------------
       Mobile connector
    ---------------------------------------------- */

    .gc-service-left .gc-service-card::before,
    .gc-service-right .gc-service-card::before {

        top: 50%;

        left: -23px;

        right: auto;

        width: 23px;

        background: #9db0a0;

    }

    .gc-service-left .gc-service-card::after,
    .gc-service-right .gc-service-card::after {

        left: -28px;

        right: auto;

        width: 10px;

        height: 10px;

    }


    /* ---------------------------------------------
       Art
    ---------------------------------------------- */

    .gc-service-art {

        width: 125px;

        height: 70px;

        margin-bottom: 8px;

    }

    .gc-service-card h3 {

        font-size: 22px;

    }

    .gc-service-card p {

        font-size: 12px;

        line-height: 1.65;

    }


    /* ---------------------------------------------
       CTA
    ---------------------------------------------- */

    .gc-services-footer {

        margin-top: 35px;

        padding: 20px;

        flex-direction: column;

        align-items: flex-start;

    }

    .gc-services-footer-btn {

        width: 100%;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .gc-services-header h2 {

        font-size: 35px;

    }

    .gc-services-timeline {

        padding-left: 20px;

    }

    .gc-service-card,
    .gc-service-left .gc-service-card,
    .gc-service-right .gc-service-card {

        padding: 20px 17px 22px;

        border-radius:
            0
            38px
            0
            38px;

    }

    .gc-service-art {

        width: 115px;

        height: 65px;

    }

    .gc-service-card h3 {

        font-size: 20px;

    }

    .gc-service-card p {

        font-size: 11.5px;

    }

}
/* =========================================================
   PLANT COLLECTION SECTION
========================================================= */

.gc-collection-section {

    padding: 40px 0 45px;

    background: #f7f8f4;

}


/* =========================================================
   COLLECTION HEADER
========================================================= */

.gc-collection-heading {

    margin-bottom: 43px;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;

}

.gc-collection-heading h2 {

    max-width: 600px;

    margin: 0;

    color: #173b27;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(38px, 4.5vw, 54px);

    font-weight: 500;

    line-height: 1.12;

}

.gc-collection-heading h2 em {

    color: #2f6841;

    font-style: italic;

}

.gc-collection-heading > p {

    max-width: 430px;

    margin: 0 0 4px;

    color: #69746d;

    font-size: 13px;

    line-height: 1.75;

}


/* =========================================================
   FEATURED COLLECTION
========================================================= */

.gc-collection-feature {

    position: relative;

    height: 515px;

    overflow: hidden;

    border-radius: 3px;

    background: #dfe8df;

}

.gc-collection-feature img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.7s ease;

}

.gc-collection-feature:hover img {

    transform: scale(1.045);

}


/* Featured overlay */

.gc-collection-feature::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(13, 49, 28, 0.85) 0%,
            rgba(13, 49, 28, 0.35) 48%,
            rgba(13, 49, 28, 0.03) 100%
        );

}

.gc-collection-feature-overlay {

    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 29px;

    z-index: 2;

}

.gc-collection-feature-overlay span {

    display: block;

    margin-bottom: 9px;

    color: rgba(255,255,255,0.78);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

}

.gc-collection-feature-overlay h3 {

    max-width: 410px;

    margin: 0 0 18px;

    color: #ffffff;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 36px;

    font-weight: 500;

    line-height: 1.15;

}


/* =========================================================
   COLLECTION BUTTON
========================================================= */

.gc-collection-btn {

    min-height: 42px;

    padding: 0 17px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    color: #214d31;

    background: #ffffff;

    border-radius: 3px;

    font-size: 10px;

    font-weight: 700;

    transition: 0.25s ease;

}

.gc-collection-btn:hover {

    color: #ffffff;

    background: #2f6841;

}


/* =========================================================
   CATEGORY CARD
========================================================= */

.gc-collection-card {

    position: relative;

    display: block;

    height: 247px;

    overflow: hidden;

    background: #ffffff;

    border-radius: 3px;

    box-shadow: 0 7px 22px rgba(28, 57, 36, 0.07);

}

.gc-collection-card-image {

    width: 100%;
    height: 100%;

    overflow: hidden;

}

.gc-collection-card-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;

}

.gc-collection-card:hover img {

    transform: scale(1.06);

}


/* Category overlay */

.gc-collection-card::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(15, 47, 27, 0.80),
            rgba(15, 47, 27, 0.05) 68%
        );

}

.gc-collection-card-content {

    position: absolute;

    z-index: 2;

    left: 17px;
    right: 15px;
    bottom: 16px;

    display: flex;

    align-items: flex-end;

}

.gc-collection-card-content span {

    margin-right: 8px;

    color: rgba(255,255,255,0.65);

    font-family: "Playfair Display", Georgia, serif;

    font-size: 10px;

}

.gc-collection-card-content h3 {

    flex: 1;

    margin: 0;

    color: #ffffff;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 19px;

    font-weight: 500;

    line-height: 1.2;

}

.gc-collection-card-content i {

    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #234f32;

    background: #ffffff;

    border-radius: 50%;

    font-size: 12px;

    transition: 0.25s ease;

}

.gc-collection-card:hover .gc-collection-card-content i {

    color: #ffffff;

    background: #2f6841;

    transform: rotate(45deg);

}


/* =========================================================
   COLLECTION NOTE
========================================================= */

.gc-collection-note {

    margin-top: 35px;

    padding: 17px 21px;

    display: flex;

    align-items: center;

    gap: 13px;

    background: #ffffff;

    border: 1px solid #e5ebe5;

    border-radius: 3px;

}

.gc-collection-note-icon {

    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #2f6841;

    background: #edf4ed;

    border-radius: 50%;

}

.gc-collection-note p {

    flex: 1;

    margin: 0;

    color: #6b756e;

    font-size: 11px;

}

.gc-collection-note p strong {

    color: #234f32;

}

.gc-collection-note > a {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #2f6841;

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .5px;

}

.gc-collection-note > a i {

    transition: transform .25s ease;

}

.gc-collection-note > a:hover i {

    transform: translateX(4px);

}


/* =========================================================
   COLLECTION RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .gc-collection-section {

        padding: 75px 0 80px;

    }

    .gc-collection-heading {

        align-items: flex-start;

        flex-direction: column;

        gap: 15px;

    }

    .gc-collection-feature {

        height: 440px;

    }

    .gc-collection-card {

        height: 220px;

    }

}


@media (max-width: 767.98px) {

    .gc-collection-section {

        padding: 60px 0 65px;

    }

    .gc-collection-heading {

        margin-bottom: 30px;

        gap: 13px;

    }

    .gc-collection-heading h2 {

        font-size: 37px;

    }

    .gc-collection-heading > p {

        font-size: 12.5px;

    }

    .gc-collection-feature {

        height: 390px;

    }

    .gc-collection-feature-overlay {

        left: 21px;
        right: 21px;
        bottom: 22px;

    }

    .gc-collection-feature-overlay h3 {

        font-size: 29px;

    }

    .gc-collection-card {

        height: 210px;

    }

    .gc-collection-note {

        align-items: flex-start;

        flex-wrap: wrap;

    }

    .gc-collection-note p {

        padding-top: 4px;

    }

    .gc-collection-note > a {

        width: 100%;

        padding-left: 51px;

    }

}


@media (max-width: 430px) {

    .gc-collection-heading h2 {

        font-size: 34px;

    }

    .gc-collection-feature {

        height: 350px;

    }

    .gc-collection-feature-overlay h3 {

        font-size: 27px;

    }

    .gc-collection-card {

        height: 190px;

    }

}

/* =========================================================
   GALLERY SECTION
========================================================= */

.gc-gallery-section {

    padding: 45px 0 40px;

    background: #ffffff;

}


/* =========================================================
   HEADING
========================================================= */

.gc-gallery-heading {

    max-width: 850px;

    margin: 0 auto 42px;

    text-align: center;

}

.gc-gallery-script {

    margin-bottom: 3px;

    color: #234f32;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 25px;

    font-style: italic;

    line-height: 1;

}

.gc-gallery-heading h2 {

    margin: 0;

    color: #173b27;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(38px, 4.5vw, 53px);

    font-weight: 500;

    line-height: 1.15;

}

.gc-gallery-heading p {

    max-width: 650px;

    margin: 14px auto 0;

    color: #68736c;

    font-size: 13px;

    line-height: 1.7;

}


/* =========================================================
   GALLERY PHOTO
========================================================= */

.gc-gallery-photo {

    position: relative;

    display: block;

    width: 100%;

    height: 270px;

    overflow: hidden;

    background: #e7ede7;

    border-radius: 2px;

}

.gc-gallery-photo img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .55s ease,
        filter .35s ease;

}

.gc-gallery-photo:hover img {

    transform: scale(1.05);

    filter: brightness(.86);

}


/* =========================================================
   HOVER ICON
========================================================= */

.gc-gallery-zoom {

    position: absolute;

    top: 14px;
    right: 14px;

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #234f32;

    background: #ffffff;

    border-radius: 50%;

    font-size: 13px;

    opacity: 0;

    transform: translateY(-5px);

    transition:
        opacity .25s ease,
        transform .25s ease,
        background .25s ease,
        color .25s ease;

}

.gc-gallery-photo:hover .gc-gallery-zoom {

    opacity: 1;

    transform: translateY(0);

}

.gc-gallery-zoom:hover {

    color: #ffffff;

    background: #2f6841;

}


/* =========================================================
   BOTTOM
========================================================= */

.gc-gallery-bottom {

    margin-top: 27px;

    display: flex;

    align-items: center;

    gap: 12px;

}

.gc-gallery-bottom-line {

    width: 32px;

    height: 1px;

    background: #77917d;

}

.gc-gallery-bottom span {

    color: #7a847d;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.8px;

}

.gc-gallery-bottom a {

    margin-left: auto;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #2f6841;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .6px;

    text-transform: uppercase;

}

.gc-gallery-bottom a:hover {

    color: #19452b;

}

.gc-gallery-bottom a i {

    transition: transform .25s ease;

}

.gc-gallery-bottom a:hover i {

    transform: translateX(4px);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .gc-gallery-photo {

        height: 230px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .gc-gallery-section {

        padding: 60px 0 65px;

    }

    .gc-gallery-heading {

        margin-bottom: 30px;

        padding: 0 10px;

    }

    .gc-gallery-script {

        font-size: 21px;

    }

    .gc-gallery-heading h2 {

        font-size: 35px;

    }

    .gc-gallery-heading p {

        font-size: 12px;

    }

    .gc-gallery-photo {

        height: 190px;

    }

    .gc-gallery-zoom {

        width: 32px;
        height: 32px;

        top: 8px;
        right: 8px;

        font-size: 11px;

        opacity: 1;

        transform: none;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .gc-gallery-photo {

        height: 155px;

    }

}

/* =========================================================
   WHY CHOOSE GREEN CARE
========================================================= */

.gc-why-section {

    position: relative;

    padding: 1px 0 25px;

    background: #f5f7f3;

    overflow: hidden;

}


/* =========================================================
   LEFT CONTENT
========================================================= */

.gc-why-content {

    max-width: 510px;

}

.gc-why-content h2 {

    margin: 0 0 23px;

    color: #173b27;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(38px, 4vw, 51px);

    font-weight: 500;

    line-height: 1.12;

}

.gc-why-content h2 em {

    display: block;

    color: #2f6841;

    font-style: italic;

}

.gc-why-content p {

    max-width: 490px;

    margin: 0 0 14px;

    color: #69746d;

    font-size: 13px;

    line-height: 1.8;

}

.gc-why-content .gc-why-intro {

    color: #394a3e;

    font-size: 15px;

    line-height: 1.75;

}


/* =========================================================
   BUTTON
========================================================= */

.gc-why-btn {

    margin-top: 12px;

    min-height: 43px;

    padding: 0 19px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    color: #ffffff;

    background: #2f6841;

    border-radius: 3px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .5px;

    text-transform: uppercase;

    transition: .25s ease;

}

.gc-why-btn:hover {

    color: #ffffff;

    background: #19452b;

}

.gc-why-btn i {

    transition: transform .25s ease;

}

.gc-why-btn:hover i {

    transform: translateX(4px);

}


/* =========================================================
   FEATURES
========================================================= */

.gc-why-features {

    padding-left: 20px;

}

.gc-why-feature {

    position: relative;

    min-height: 125px;

    padding: 22px 15px 22px 0;

    display: grid;

    grid-template-columns: 30px 48px 1fr;

    align-items: center;

    gap: 17px;

    border-bottom: 1px solid #dce4dc;

}

.gc-why-feature:first-child {

    border-top: 1px solid #dce4dc;

}

.gc-why-feature-number {

    align-self: flex-start;

    padding-top: 4px;

    color: #8ca08f;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 11px;

}

.gc-why-feature-icon {

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #2f6841;

    background: #ffffff;

    border: 1px solid #dce5dd;

    border-radius: 50%;

    font-size: 18px;

    transition: all .3s ease;

}

.gc-why-feature:hover .gc-why-feature-icon {

    color: #ffffff;

    background: #2f6841;

    border-color: #2f6841;

}

.gc-why-feature-text h3 {

    margin: 0 0 6px;

    color: #234f32;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 20px;

    font-weight: 500;

    line-height: 1.2;

}

.gc-why-feature-text p {

    max-width: 440px;

    margin: 0;

    color: #707a73;

    font-size: 11.5px;

    line-height: 1.65;

}


/* =========================================================
   STATS
========================================================= */

.gc-why-stats {

    margin-top: 70px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid #d8e1d9;

    border-bottom: 1px solid #d8e1d9;

}

.gc-why-stat {

    min-height: 100px;

    padding: 19px 25px;

    display: flex;

    align-items: center;

    gap: 12px;

    border-right: 1px solid #d8e1d9;

}

.gc-why-stat:last-child {

    border-right: 0;

}

.gc-why-stat strong {

    color: #2f6841;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 27px;

    font-weight: 500;

}

.gc-why-stat span {

    color: #657269;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: .3px;

}


/* =========================================================
   DECORATIVE BACKGROUND
========================================================= */

.gc-why-section::after {

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -160px;
    bottom: -160px;

    border: 1px solid rgba(47,104,65,.08);

    border-radius: 50%;

    pointer-events: none;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .gc-why-section {

        padding: 75px 0 80px;

    }

    .gc-why-content {

        max-width: 650px;

    }

    .gc-why-features {

        padding-left: 0;

    }

    .gc-why-stats {

        margin-top: 55px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .gc-why-section {

        padding: 60px 0 65px;

    }

    .gc-why-content h2 {

        font-size: 36px;

    }

    .gc-why-content p {

        font-size: 12px;

    }

    .gc-why-content .gc-why-intro {

        font-size: 13.5px;

    }

    .gc-why-features {

        margin-top: 15px;

    }

    .gc-why-feature {

        grid-template-columns: 25px 43px 1fr;

        gap: 12px;

        min-height: 110px;

        padding: 18px 0;

    }

    .gc-why-feature-icon {

        width: 43px;
        height: 43px;

        font-size: 16px;

    }

    .gc-why-feature-text h3 {

        font-size: 18px;

    }

    .gc-why-feature-text p {

        font-size: 11px;

    }

    .gc-why-stats {

        grid-template-columns: 1fr 1fr;

        margin-top: 45px;

    }

    .gc-why-stat {

        min-height: 75px;

        padding: 14px 15px;

        border-bottom: 1px solid #d8e1d9;

    }

    .gc-why-stat:nth-child(2) {

        border-right: 0;

    }

    .gc-why-stat:nth-child(3) {

        border-bottom: 0;

    }

    .gc-why-stat:nth-child(4) {

        border-right: 0;

        border-bottom: 0;

    }

}

/* =========================================================
   CONTACT CTA SECTION
========================================================= */

.gc-contact-cta {

    padding: 50px 0 50px;

    background: #ffffff;

}


/* =========================================================
   MAIN CONTACT BOX
========================================================= */

.gc-contact-box {

    position: relative;

    min-height: 490px;

    display: flex;

    align-items: stretch;

    overflow: hidden;

    background: #173b27;

}


/* =========================================================
   IMAGE
========================================================= */

.gc-contact-image {

    position: relative;

    width: 48%;

    overflow: hidden;

}

.gc-contact-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .7s ease;

}

.gc-contact-box:hover .gc-contact-image img {

    transform: scale(1.035);

}

.gc-contact-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(18,54,34,.08),
            rgba(18,54,34,.35)
        );

}


/* =========================================================
   CONTENT
========================================================= */

.gc-contact-content {

    width: 52%;

    padding: 60px 65px;

    display: flex;

    flex-direction: column;

    justify-content: center;

}

.gc-contact-label {

    margin-bottom: 15px;

    color: #a8c3ad;

}

.gc-contact-label span {

    background: #a8c3ad;

}

.gc-contact-content h2 {

    max-width: 500px;

    margin: 0 0 19px;

    color: #ffffff;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(40px, 4vw, 54px);

    font-weight: 500;

    line-height: 1.08;

}

.gc-contact-content h2 em {

    color: #b9d3bd;

    font-style: italic;

}

.gc-contact-content > p {

    max-width: 490px;

    margin: 0 0 27px;

    color: rgba(255,255,255,.72);

    font-size: 13px;

    line-height: 1.75;

}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.gc-contact-details {

    display: flex;

    align-items: center;

    gap: 30px;

    margin-bottom: 27px;

}

.gc-contact-detail {

    display: flex;

    align-items: center;

    gap: 10px;

}

.gc-contact-detail-icon {

    width: 39px;
    height: 39px;

    flex: 0 0 39px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #234f32;

    background: #ffffff;

    border-radius: 50%;

    font-size: 14px;

}

.gc-contact-detail span {

    display: block;

    margin-bottom: 3px;

    color: rgba(255,255,255,.50);

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 1.5px;

}

.gc-contact-detail strong {

    display: block;

    color: #ffffff;

    font-size: 12px;

    font-weight: 500;

}

.gc-contact-detail:hover strong {

    color: #c5dcc9;

}


/* =========================================================
   BUTTONS
========================================================= */

.gc-contact-buttons {

    display: flex;

    align-items: center;

    gap: 10px;

}

.gc-contact-main-btn,
.gc-contact-whatsapp-btn {

    min-height: 44px;

    padding: 0 19px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    border-radius: 3px;

    font-size: 10px;

    font-weight: 700;

    transition: .25s ease;

}

.gc-contact-main-btn {

    color: #214d31;

    background: #ffffff;

}

.gc-contact-main-btn:hover {

    color: #173b27;

    background: #edf4ed;

}

.gc-contact-main-btn i {

    transition: transform .25s ease;

}

.gc-contact-main-btn:hover i {

    transform: translateX(4px);

}

.gc-contact-whatsapp-btn {

    color: #ffffff;

    background: transparent;

    border: 1px solid rgba(255,255,255,.45);

}

.gc-contact-whatsapp-btn:hover {

    color: #ffffff;

    background: rgba(255,255,255,.10);

    border-color: rgba(255,255,255,.8);

}


/* =========================================================
   ADDRESS BAR
========================================================= */

.gc-contact-address {

    min-height: 90px;

    padding: 17px 22px;

    display: flex;

    align-items: center;

    gap: 13px;

    border: 1px solid #e2e9e2;

    border-top: 0;

    background: #f7f9f6;

}

.gc-contact-address-icon {

    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #2f6841;

    background: #e7f0e7;

    border-radius: 50%;

}

.gc-contact-address span {

    display: block;

    margin-bottom: 3px;

    color: #718078;

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 1.5px;

}

.gc-contact-address p {

    margin: 0;

    color: #34463a;

    font-size: 11px;

    line-height: 1.5;

}

.gc-contact-address > a {

    margin-left: auto;

    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: #2f6841;

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

}

.gc-contact-address > a i {

    transition: transform .25s ease;

}

.gc-contact-address > a:hover i {

    transform: translate(3px,-3px);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .gc-contact-cta {

        padding: 75px 0 75px;

    }

    .gc-contact-box {

        min-height: 450px;

    }

    .gc-contact-content {

        padding: 45px 40px;

    }

    .gc-contact-content h2 {

        font-size: 42px;

    }

    .gc-contact-details {

        gap: 18px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .gc-contact-cta {

        padding: 60px 0 65px;

    }

    .gc-contact-box {

        display: block;

        min-height: 0;

    }

    .gc-contact-image {

        width: 100%;

        height: 260px;

    }

    .gc-contact-content {

        width: 100%;

        padding: 38px 24px 40px;

    }

    .gc-contact-content h2 {

        font-size: 37px;

    }

    .gc-contact-content > p {

        font-size: 12px;

    }

    .gc-contact-details {

        flex-direction: column;

        align-items: flex-start;

        gap: 14px;

    }

    .gc-contact-buttons {

        align-items: stretch;

        flex-direction: column;

    }

    .gc-contact-main-btn,
    .gc-contact-whatsapp-btn {

        width: 100%;

    }

    .gc-contact-address {

        align-items: flex-start;

        flex-wrap: wrap;

        padding: 17px;

    }

    .gc-contact-address p {

        max-width: 270px;

    }

    .gc-contact-address > a {

        width: 100%;

        margin-left: 55px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .gc-contact-image {

        height: 220px;

    }

    .gc-contact-content {

        padding: 32px 20px 35px;

    }

    .gc-contact-content h2 {

        font-size: 34px;

    }

}

/* =========================================================
   GREEN CARE FOOTER
========================================================= */

.gc-footer {

    padding: 70px 0 22px;

    color: rgba(255,255,255,.72);

    background: #143723;

}


/* =========================================================
   FOOTER MAIN
========================================================= */

.gc-footer-main {

    display: grid;

    grid-template-columns:
        1.6fr
        .85fr
        1fr
        1.3fr;

    gap: 55px;

}


/* =========================================================
   BRAND
========================================================= */

.gc-footer-brand {

    max-width: 330px;

}

.gc-footer-logo {

    display: inline-flex;

    align-items: center;

    gap: 11px;

}

.gc-footer-logo-mark {

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #214d31;

    background: #edf4ed;

    border-radius: 50%;

    font-size: 20px;

}

.gc-footer-logo strong {

    display: block;

    color: #ffffff;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 21px;

    font-weight: 600;

    letter-spacing: .8px;

    line-height: 1;

}

.gc-footer-logo span {

    display: block;

    margin-top: 4px;

    color: #a9c2ad;

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 3px;

}

.gc-footer-brand > p {

    max-width: 280px;

    margin: 19px 0 20px;

    color: rgba(255,255,255,.58);

    font-size: 15px;

    line-height: 1.75;

}


/* =========================================================
   WHATSAPP BUTTON
========================================================= */

.gc-footer-whatsapp {

    min-height: 39px;

    padding: 0 15px;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #ffffff;

    border: 1px solid rgba(255,255,255,.25);

    border-radius: 3px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .5px;

    text-transform: uppercase;

    transition: .25s ease;

}

.gc-footer-whatsapp:hover {

    color: #143723;

    background: #ffffff;

    border-color: #ffffff;

}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.gc-footer-column h3 {

    margin: 4px 0 21px;

    color: #ffffff;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 17px;

    font-weight: 500;

}

.gc-footer-column ul {

    margin: 0;

    padding: 0;

    list-style: none;

}

.gc-footer-column li {

    margin-bottom: 10px;

}

.gc-footer-column li a {

    color: rgba(255,255,255,.58);

    font-size: 14px;

    transition: .2s ease;

}

.gc-footer-column li a:hover {

    color: #ffffff;

    padding-left: 3px;

}


/* =========================================================
   CONTACT
========================================================= */

.gc-footer-contact-item {

    margin-bottom: 13px;

    display: flex;

    align-items: flex-start;

    gap: 10px;

    color: rgba(255,255,255,.62);

    font-size: 11px;

    line-height: 1.55;

}

.gc-footer-contact-item:hover {

    color: #ffffff;

}

.gc-footer-contact-item i {

    width: 17px;

    flex: 0 0 17px;

    color: #a9c2ad;

    font-size: 13px;

    text-align: center;

}


/* =========================================================
   DIVIDER
========================================================= */

.gc-footer-divider {

    height: 1px;

    margin: 50px 0 19px;

    background: rgba(255,255,255,.11);

}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.gc-footer-bottom {

    min-height: 42px;

    display: flex;

    align-items: center;

    gap: 20px;

}

.gc-footer-bottom p {

    margin: 0;

    color: rgba(255,255,255,.42);

    font-size: 13px;

}

.gc-footer-bottom p strong {

    color: rgba(255,255,255,.7);

    font-weight: 600;

}

.gc-footer-bottom-links {

    margin-left: auto;

    display: flex;

    align-items: center;

    gap: 9px;

}

.gc-footer-bottom-links a {

    color: rgba(255,255,255,.42);

    font-size: 9px;

}

.gc-footer-bottom-links a:hover {

    color: #ffffff;

}

.gc-footer-bottom-links span {

    color: rgba(255,255,255,.2);

    font-size: 8px;

}


/* =========================================================
   BACK TO TOP
========================================================= */

.gc-footer-top {

    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #214d31;

    background: #ffffff;

    border-radius: 50%;

    font-size: 13px;

    transition: .25s ease;

}

.gc-footer-top:hover {

    color: #ffffff;

    background: #5d8c68;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .gc-footer {

        padding: 60px 0 20px;

    }

    .gc-footer-main {

        grid-template-columns: 1.4fr 1fr 1fr;

        gap: 40px;

    }

    .gc-footer-contact {

        grid-column: 1 / -1;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .gc-footer {

        padding: 52px 0 20px;

    }

    .gc-footer-main {

        grid-template-columns: 1fr 1fr;

        gap: 35px 25px;

    }

    .gc-footer-brand {

        grid-column: 1 / -1;

        max-width: 100%;

    }

    .gc-footer-contact {

        grid-column: 1 / -1;

    }

    .gc-footer-column h3 {

        margin-bottom: 15px;

        font-size: 16px;

    }

    .gc-footer-column li {

        margin-bottom: 8px;

    }

    .gc-footer-divider {

        margin: 35px 0 18px;

    }

    .gc-footer-bottom {

        align-items: flex-start;

        flex-wrap: wrap;

        gap: 13px;

    }

    .gc-footer-bottom-links {

        width: 100%;

        margin-left: 0;

        order: 3;

    }

    .gc-footer-top {

        margin-left: auto;

        margin-top: -8px;

    }

}




