/* =========================================================
   VILLAGE PLANTATION DRIVE
   MODERN PROJECT SECTION
========================================================= */

.plantation-section {
    position: relative;
    padding: 70px 0;
    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(34, 197, 94, 0.07),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(132, 204, 22, 0.06),
            transparent 30%
        ),
        #f6f8f6;
    overflow: hidden;
}


.plantation-container {
    width: min(1400px, calc(100% - 32px));
    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.plantation-hero {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 50px;
    background:
        linear-gradient(
            120deg,
            #0d513b 0%,
            #116247 48%,
            #168052 100%
        );
    box-shadow: 0 24px 60px rgba(15, 81, 59, 0.18);
}


.plantation-hero::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    right: -100px;
    top: -130px;
    border-radius: 50%;
    background: rgba(163, 230, 53, 0.15);
}


.plantation-hero::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: 170px;
    bottom: -170px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}


.plantation-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.8fr);
    gap: 60px;
    align-items: center;
}


.plantation-hero-left {
    max-width: 760px;
}


.plantation-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ecfccb;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}


.plantation-label-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #bef264;
    box-shadow: 0 0 0 5px rgba(190, 242, 100, 0.12);
}


.plantation-year {
    margin: 24px 0 8px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    font-weight: 600;
}


.plantation-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -0.045em;
}


.plantation-title span {
    display: block;
    color: #bef264;
}


.plantation-intro {
    max-width: 650px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.8;
}


.plantation-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}


.plantation-primary-btn,
.plantation-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.25s ease;
}


.plantation-primary-btn {
    color: #17452f;
    background: #bef264;
}


.plantation-primary-btn:hover {
    transform: translateY(-2px);
    background: #d9f99d;
}


.plantation-secondary-btn {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
}


.plantation-secondary-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
}


/* =========================================================
   HERO SIDE
========================================================= */

.plantation-hero-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}


.plantation-status-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
}


.plantation-status-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 14px;
    color: #166534;
    background: #bef264;
}


.plantation-status-card span,
.plantation-mini-stat span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}


.plantation-status-card strong {
    display: block;
    color: #ffffff;
    font-size: 14px;
}


.plantation-mini-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}


.plantation-mini-stat {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 16px;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.1);
}


.plantation-mini-stat > i {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 10px;
    color: #bef264;
    background: rgba(190, 242, 100, 0.1);
}


.plantation-mini-stat strong {
    color: #ffffff;
    font-size: 13px;
}


/* =========================================================
   OVERVIEW
========================================================= */

.plantation-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.7fr);
    gap: 22px;
    margin-top: 22px;
}


.plantation-overview-content,
.plantation-highlight-card {
    border: 1px solid #e5ebe7;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(22, 60, 43, 0.06);
}


.plantation-overview-content {
    padding: 34px;
}


.plantation-section-heading {
    display: flex;
    align-items: center;
    gap: 14px;
}


.plantation-heading-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 14px;
    color: #166534;
    background: #ecfccb;
}


.plantation-section-heading span,
.plantation-panel-heading span {
    display: block;
    margin-bottom: 5px;
    color: #6b7b73;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
}


.plantation-section-heading h2,
.plantation-panel-heading h2 {
    margin: 0;
    color: #103f30;
    font-size: clamp(21px, 2.5vw, 28px);
    line-height: 1.2;
    font-weight: 800;
}


.plantation-overview-content > p {
    margin-top: 22px;
    color: #63716b;
    font-size: 15px;
    line-height: 1.8;
}


.plantation-overview-content > p + p {
    margin-top: 12px;
}


/* HIGHLIGHT */

.plantation-highlight-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    background:
        linear-gradient(
            145deg,
            #effdd7,
            #ffffff
        );
}


.plantation-highlight-card::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    right: -70px;
    bottom: -70px;
    border-radius: 50%;
    background: rgba(132, 204, 22, 0.12);
}


.plantation-highlight-top {
    display: flex;
    align-items: center;
    gap: 12px;
}


.plantation-highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    color: #365314;
    background: #d9f99d;
}


.plantation-highlight-top span {
    color: #527348;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}


.plantation-highlight-card h3 {
    position: relative;
    z-index: 1;
    margin: 25px 0 14px;
    color: #17452f;
    font-size: 25px;
    line-height: 1.25;
    font-weight: 800;
}


.plantation-highlight-card p {
    position: relative;
    z-index: 1;
    color: #66756c;
    font-size: 13px;
    line-height: 1.7;
}


.plantation-highlight-line {
    position: relative;
    z-index: 1;
    width: 70px;
    height: 4px;
    margin-top: 24px;
    border-radius: 999px;
    background: #84cc16;
}


/* =========================================================
   INFO CARDS
========================================================= */

.plantation-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 22px;
}


.plantation-info-card {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    padding: 20px;
    border: 1px solid #e6ebe8;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(22, 60, 43, 0.05);
    transition: 0.25s ease;
}


.plantation-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(22, 60, 43, 0.09);
}


.plantation-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 13px;
    font-size: 16px;
}


.plantation-info-icon.green {
    color: #15803d;
    background: #dcfce7;
}


.plantation-info-icon.blue {
    color: #2563eb;
    background: #dbeafe;
}


.plantation-info-icon.lime {
    color: #4d7c0f;
    background: #ecfccb;
}


.plantation-info-icon.purple {
    color: #7e22ce;
    background: #f3e8ff;
}


.plantation-info-card span {
    display: block;
    margin-bottom: 4px;
    color: #8a9790;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}


.plantation-info-card strong {
    display: block;
    color: #244c3c;
    font-size: 14px;
}


/* =========================================================
   TWO COLUMN
========================================================= */

.plantation-two-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 22px;
}


.plantation-panel {
    padding: 30px;
    border: 1px solid #e5ebe7;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(22, 60, 43, 0.05);
}


.plantation-panel-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
}


.plantation-panel-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    border-radius: 13px;
}


.plantation-panel-icon.green {
    color: #15803d;
    background: #dcfce7;
}


.plantation-panel-icon.lime {
    color: #4d7c0f;
    background: #ecfccb;
}


/* OBJECTIVES */

.plantation-objectives {
    display: flex;
    flex-direction: column;
    gap: 13px;
}


.plantation-objective {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 15px;
    border-radius: 14px;
    background: #f7faf8;
    transition: 0.2s ease;
}


.plantation-objective:hover {
    background: #eff8f1;
}


.plantation-objective > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 10px;
    color: #15803d;
    background: #dcfce7;
    font-size: 10px;
    font-weight: 800;
}


.plantation-objective p {
    margin: 5px 0 0;
    color: #64716b;
    font-size: 13px;
    line-height: 1.65;
}


/* ACTIVITIES */

.plantation-activities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}


.plantation-activity {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border: 1px solid #edf0ee;
    border-radius: 15px;
    background: #fafcfb;
    transition: 0.25s ease;
}


.plantation-activity:hover {
    transform: translateY(-3px);
    border-color: #d9f99d;
    background: #f7fee7;
}


.plantation-activity-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 11px;
    color: #4d7c0f;
    background: #ecfccb;
}


.plantation-activity h3 {
    margin: 1px 0 5px;
    color: #244c3c;
    font-size: 13px;
    font-weight: 800;
}


.plantation-activity p {
    margin: 0;
    color: #75817b;
    font-size: 11px;
    line-height: 1.6;
}


/* =========================================================
   IMPACT
========================================================= */

.plantation-impact-section {
    margin-top: 22px;
    padding: 34px;
    border: 1px solid #e5ebe7;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(22, 60, 43, 0.05);
}


.plantation-section-heading.center {
    justify-content: center;
    text-align: center;
    flex-direction: column;
}


.plantation-impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 30px;
}


.plantation-impact-card {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border: 1px solid #e8ede9;
    border-radius: 18px;
    background: #fbfdfb;
    transition: 0.25s ease;
}


.plantation-impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(22, 60, 43, 0.08);
}


.impact-number {
    position: absolute;
    top: 18px;
    right: 20px;
    color: #dce7df;
    font-size: 28px;
    font-weight: 900;
}


.impact-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    color: #15803d;
    background: #dcfce7;
}


.plantation-impact-card h3 {
    margin: 18px 0 8px;
    color: #244c3c;
    font-size: 15px;
    font-weight: 800;
}


.plantation-impact-card p {
    margin: 0;
    color: #718078;
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   COMPLETION CTA
========================================================= */

.plantation-completion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 22px;
    padding: 28px 32px;
    border-radius: 22px;
    background:
        linear-gradient(
            120deg,
            #103f30,
            #176b52
        );
    box-shadow: 0 18px 45px rgba(16, 63, 48, 0.16);
}


.plantation-completion-content {
    display: flex;
    align-items: center;
    gap: 16px;
}


.plantation-completion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 14px;
    color: #365314;
    background: #bef264;
}


.plantation-completion-content span {
    display: block;
    margin-bottom: 4px;
    color: #bef264;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
}


.plantation-completion-content h2 {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
}


.plantation-completion-content p {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    line-height: 1.6;
}


.plantation-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 17px;
    flex-shrink: 0;
    border-radius: 11px;
    color: #17452f;
    background: #bef264;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.25s ease;
}


.plantation-back-btn:hover {
    transform: translateY(-2px);
    background: #d9f99d;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .plantation-hero {
        padding: 40px;
    }

    .plantation-hero-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .plantation-hero-side {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }

    .plantation-mini-stats {
        grid-template-columns: 1fr;
    }

    .plantation-overview-grid {
        grid-template-columns: 1fr;
    }

    .plantation-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plantation-impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .plantation-section {
        padding: 45px 0;
    }

    .plantation-container {
        width: min(100% - 22px, 1400px);
    }

    .plantation-hero {
        padding: 28px 20px;
        border-radius: 22px;
    }

    .plantation-hero-content {
        gap: 28px;
    }

    .plantation-title {
        font-size: clamp(34px, 11vw, 48px);
    }

    .plantation-intro {
        font-size: 14px;
        line-height: 1.7;
    }

    .plantation-hero-actions {
        flex-direction: column;
    }

    .plantation-primary-btn,
    .plantation-secondary-btn {
        width: 100%;
    }

    .plantation-hero-side {
        display: flex;
    }

    .plantation-status-card {
        padding: 16px;
    }

    .plantation-mini-stat {
        padding: 12px 14px;
    }

    .plantation-overview-content,
    .plantation-highlight-card,
    .plantation-panel,
    .plantation-impact-section {
        padding: 22px;
        border-radius: 18px;
    }

    .plantation-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .plantation-two-column {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .plantation-activities-grid {
        grid-template-columns: 1fr;
    }

    .plantation-impact-grid {
        grid-template-columns: 1fr;
    }

    .plantation-section-heading.center {
        align-items: center;
    }

    .plantation-completion {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px;
        border-radius: 18px;
    }

    .plantation-completion-content {
        align-items: flex-start;
    }

    .plantation-back-btn {
        width: 100%;
        justify-content: center;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .plantation-label {
        font-size: 10px;
    }

    .plantation-title {
        font-size: 34px;
    }

    .plantation-overview-content > p {
        font-size: 13px;
    }

    .plantation-section-heading h2,
    .plantation-panel-heading h2 {
        font-size: 20px;
    }

    .plantation-completion-content h2 {
        font-size: 17px;
    }

}
/* =========================================================
   CARD REVEAL ANIMATION
========================================================= */

.plantation-card-hidden {
    opacity: 0;
    transform: translateY(18px);
}


.plantation-card-visible {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}