﻿/* =========================================================
   PARK SAZAN SHAHAR
   HOME PAGE
   ========================================================= */

.home-page {
    --home-primary: #2e7d32;
    --home-primary-dark: #1b5e20;
    --home-primary-light: #eaf5eb;
    --home-text: #172019;
    --home-text-soft: #5f6b63;
    --home-white: #ffffff;
    --home-bg: #f7f9f7;
    --home-border: #e5ebe6;
    --home-radius: 24px;
    --home-shadow: 0 15px 45px rgba(22, 49, 28, .08);
    color: var(--home-text);
    width: 100%;
    position: relative;
}

    .home-page *,
    .home-page *::before,
    .home-page *::after {
        box-sizing: border-box;
    }

    .home-page img {
        max-width: 100%;
    }
/* =========================================================
   GLOBAL HOME
   ========================================================= */

.home-section {
    padding: 100px 0;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--home-primary);
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 12px;
}

    .section-kicker::before {
        content: "";
        width: 28px;
        height: 3px;
        background: var(--home-primary);
        border-radius: 50px;
    }

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 45px;
}

    .section-heading h2 {
        margin: 0 0 10px;
        font-size: clamp(1.8rem, 3vw, 2.45rem);
        font-weight: 800;
        color: var(--home-text);
    }

    .section-heading p {
        margin: 0;
        color: var(--home-text-soft);
        line-height: 1.9;
    }

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--home-primary);
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: .3s ease;
}

    .section-link i {
        transition: .3s ease;
    }

    .section-link:hover {
        color: var(--home-primary-dark);
    }

        .section-link:hover i {
            transform: translateX(-5px);
        }


/* =========================================================
   BUTTONS
   ========================================================= */

.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 14px;
    font-size: .95rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
}

    .home-btn:hover {
        transform: translateY(-3px);
    }

.home-btn-primary {
    color: #fff;
    background: var(--home-primary);
    box-shadow: 0 12px 25px rgba(46, 125, 50, .22);
}

    .home-btn-primary:hover {
        color: #fff;
        background: var(--home-primary-dark);
        box-shadow: 0 18px 35px rgba(46, 125, 50, .28);
    }

.home-btn-outline {
    color: #fff;
    border: 1px solid rgba(255,255,255,.4);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
}

    .home-btn-outline:hover {
        color: var(--home-primary-dark);
        background: #fff;
    }

.home-btn-white {
    color: var(--home-primary-dark);
    background: #fff;
}

.home-btn-transparent {
    color: #fff;
    border: 1px solid rgba(255,255,255,.4);
    background: rgba(255,255,255,.08);
}

    .home-btn-transparent:hover {
        color: var(--home-primary-dark);
        background: #fff;
    }


/* =========================================================
   HERO
   ========================================================= */

.home-hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    background: linear-gradient( 120deg, rgba(9, 40, 17, .94), rgba(20, 73, 28, .82) ), url("../images/main-image.webp") center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.home-hero-container {
    z-index: 3;
    padding-top: 80px;
    padding-bottom: 100px;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient( circle at 75% 40%, rgba(255,255,255,.10), transparent 30% );
}

.home-hero-shape {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.08);
}

.home-hero-shape-one {
    width: 600px;
    height: 600px;
    right: -250px;
    top: -200px;
}

.home-hero-shape-two {
    width: 400px;
    height: 400px;
    left: -200px;
    bottom: -220px;
}

.hero-content {
    max-width: 650px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 14px;
    border-radius: 50px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.9);
    font-size: .85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.hero-title {
    margin: 25px 0 20px;
    color: #fff;
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    line-height: 1.15;
    font-weight: 900;
}

    .hero-title span {
        display: block;
        color: #b9e2bd;
    }

.hero-description {
    max-width: 620px;
    margin-bottom: 30px;
    color: rgba(255,255,255,.82);
    font-size: 1.05rem;
    line-height: 2.1;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    margin-top: 45px;
    gap: 22px;
}

.hero-trust-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

    .hero-trust-item strong {
        font-size: 1.35rem;
        font-weight: 800;
        color: #fff;
    }

    .hero-trust-item span {
        color: rgba(255,255,255,.65);
        font-size: .78rem;
    }

.hero-trust-divider {
    width: 1px;
    height: 35px;
    background: rgba(255,255,255,.2);
}


/* HERO IMAGE */

.hero-visual {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-glow {
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(126, 203, 131, .22);
    filter: blur(45px);
}

.hero-image-frame {
    position: relative;
    width: min(100%, 480px);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: radial-gradient( circle, rgba(255,255,255,.16), rgba(255,255,255,.02) );
    border: 1px solid rgba(255,255,255,.15);
    box-shadow: 0 30px 80px rgba(0,0,0,.25), inset 0 0 50px rgba(255,255,255,.04);
    backdrop-filter: blur(8px);
}

.hero-main-image {
    width: 88%;
    height: 88%;
    object-fit: contain;
    filter: drop-shadow(0 30px 30px rgba(0,0,0,.25));
    transition: transform .6s ease;
}

.hero-image-frame:hover .hero-main-image {
    transform: scale(1.04) translateY(-8px);
}

.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,.94);
    color: var(--home-text);
    box-shadow: 0 20px 50px rgba(0,0,0,.2);
    z-index: 5;
}

    .hero-floating-card strong {
        display: block;
        font-size: .84rem;
    }

    .hero-floating-card span {
        display: block;
        margin-top: 3px;
        color: #78827b;
        font-size: .68rem;
    }

.hero-floating-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--home-primary);
    background: var(--home-primary-light);
    font-size: 1.15rem;
}

.hero-floating-card-one {
    right: -5px;
    top: 80px;
}

.hero-floating-card-two {
    left: -20px;
    bottom: 90px;
}

.hero-bottom-wave {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    line-height: 0;
    z-index: 4;
}

    .hero-bottom-wave svg {
        width: 100%;
        height: 120px;
    }

    .hero-bottom-wave path {
        fill: var(--home-white);
    }


/* =========================================================
   CATEGORIES
   ========================================================= */

.category-section {
    background: #fff;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.category-card {
    position: relative;
    display: block;
    padding: 18px;
    border: 1px solid var(--home-border);
    border-radius: 20px;
    background: #fff;
    text-decoration: none;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

    .category-card:hover {
        transform: translateY(-8px);
        border-color: rgba(46,125,50,.2);
        box-shadow: var(--home-shadow);
    }

.category-card-image {
    position: relative;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: var(--home-bg);
    overflow: hidden;
}

    .category-card-image img {
        width: 85%;
        height: 85%;
        object-fit: contain;
        transition: transform .45s ease;
    }

.category-card:hover .category-card-image img {
    transform: scale(1.08);
}

.category-card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 17px;
    color: var(--home-text);
    font-size: .9rem;
    font-weight: 700;
}

    .category-card-content i {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: var(--home-primary);
        background: var(--home-primary-light);
        font-size: .75rem;
        transition: .3s ease;
    }

.category-card:hover .category-card-content i {
    color: #fff;
    background: var(--home-primary);
    transform: translateX(-3px);
}


/* =========================================================
   ABOUT
   ========================================================= */

.about-section {
    background: var(--home-bg);
}

.about-box {
    padding: 55px;
    border-radius: 32px;
    background: #fff;
    box-shadow: var(--home-shadow);
}

.about-image-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: visible;
}

    .about-image-wrapper::before {
        content: "";
        position: absolute;
        inset: 20px -20px -20px 20px;
        border-radius: 25px;
        background: var(--home-primary-light);
        z-index: 0;
    }

    .about-image-wrapper img {
        position: relative;
        display: block;
        width: 100%;
        border-radius: 25px;
        z-index: 1;
    }

.about-experience {
    position: absolute;
    left: -25px;
    bottom: 30px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 16px;
    background: var(--home-primary);
    color: #fff;
    box-shadow: 0 15px 40px rgba(46,125,50,.3);
}

    .about-experience strong {
        font-size: 2rem;
    }

    .about-experience span {
        font-size: .75rem;
        line-height: 1.7;
    }

.about-content h2 {
    margin-bottom: 20px;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
}

.about-content p {
    color: var(--home-text-soft);
    line-height: 2;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 28px 0;
}

    .about-features div {
        display: flex;
        align-items: center;
        gap: 9px;
        color: var(--home-text);
        font-size: .88rem;
        font-weight: 600;
    }

    .about-features i {
        color: var(--home-primary);
    }

.about-btn {
    margin-top: 5px;
}


/* =========================================================
   STATS
   ========================================================= */

.stats-section-home {
    padding: 70px 0;
    background: linear-gradient( 120deg, var(--home-primary-dark), var(--home-primary) );
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-height: 90px;
    border-left: 1px solid rgba(255,255,255,.18);
}

    .stat-item:last-child {
        border-left: 0;
    }

.stat-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(255,255,255,.12);
    font-size: 1.7rem;
}

.stat-item strong {
    display: block;
    font-size: 2.3rem;
    line-height: 1;
    font-weight: 900;
}

.stat-item span {
    display: block;
    margin-top: 7px;
    color: rgba(255,255,255,.7);
    font-size: .8rem;
}

.projects-section {
    padding: 100px 0;
    background: linear-gradient( 135deg, #102c17, #1d5c29 );
    color: #fff;
}

.section-heading-light h2 {
    color: #fff;
}

.section-heading-light p {
    color: rgba(255,255,255,.65);
}

.section-heading-light .section-kicker {
    color: #b9e2bd;
}

    .section-heading-light .section-kicker::before {
        background: #b9e2bd;
    }

.projects-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 15px;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #12351a;
}

.project-large {
    grid-row: span 2;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.project-card:hover img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 22px;
    background: linear-gradient( to top, rgba(0,0,0,.75), transparent );
    color: #fff;
    font-weight: 700;
}

    .project-overlay i {
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255,255,255,.15);
        transition: .3s ease;
    }

.project-card:hover .project-overlay i {
    background: var(--home-primary);
}


/* =========================================================
   SERVICES
   ========================================================= */

.services-section {
    background: var(--home-bg);
}

.services-heading {
    display: block;
}

    .services-heading > div {
        max-width: 650px;
        margin: 0 auto;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-item {
    position: relative;
    padding: 35px 25px;
    border-radius: 22px;
    border: 1px solid var(--home-border);
    background: #fff;
    text-align: center;
    transition: transform .35s ease, box-shadow .35s ease;
}

    .service-item:hover {
        transform: translateY(-7px);
        box-shadow: var(--home-shadow);
    }

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 20px;
    color: var(--home-primary);
    background: var(--home-primary-light);
    font-size: 1.7rem;
    transition: .3s ease;
}

.service-item:hover .service-icon {
    color: #fff;
    background: var(--home-primary);
    transform: rotate(-5deg);
}

.service-item h3 {
    margin-bottom: 12px;
    font-size: 1.05rem;
    font-weight: 800;
}

.service-item p {
    margin: 0;
    color: var(--home-text-soft);
    font-size: .85rem;
    line-height: 1.9;
}


/* =========================================================
   BLOG
   ========================================================= */

/*.blog-section-home {
    background: #fff;
}

.home-blog-swiper,
.home-blog-mobile-swiper {
    padding: 10px 10px 55px;
}

    .home-blog-swiper .swiper-slide {
        height: auto;
    }
*/

/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta-section {
    padding: 30px 0 100px;
    background: #fff;
}

.final-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 55px 60px;
    border-radius: 30px;
    overflow: hidden;
    background: radial-gradient( circle at 10% 20%, rgba(255,255,255,.10), transparent 25% ), linear-gradient( 120deg, var(--home-primary-dark), var(--home-primary) );
    color: #fff;
}

    .final-cta::after {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        right: -120px;
        top: -150px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,.12);
    }

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

    .final-cta-content .section-kicker {
        color: #b9e2bd;
    }

        .final-cta-content .section-kicker::before {
            background: #b9e2bd;
        }

.final-cta h2 {
    margin: 8px 0 15px;
    color: #fff;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 900;
}

.final-cta p {
    margin: 0;
    color: rgba(255,255,255,.72);
    line-height: 1.9;
}

.final-cta-actions {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1199px) {

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-visual {
        min-height: 450px;
    }

    .hero-image-frame {
        width: 400px;
    }

    .hero-floating-card-one {
        right: -5px;
    }

    .hero-floating-card-two {
        left: 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 991px) {

    .home-section {
        padding: 75px 0;
    }

    .home-hero {
        min-height: auto;
    }

    .home-hero-container {
        padding-top: 110px;
        padding-bottom: 120px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-eyebrow,
    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .hero-description {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-visual {
        min-height: 400px;
    }

    .hero-image-frame {
        width: 360px;
    }

    .hero-floating-card-one {
        right: 5%;
    }

    .hero-floating-card-two {
        left: 5%;
    }

    .about-box {
        padding: 35px;
    }

    .projects-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 250px 250px;
    }

    .project-large {
        grid-row: span 2;
    }

    .final-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
    }
}


@media (max-width: 767px) {

    .home-section {
        padding: 60px 0;
    }

    .section-heading {
        display: block;
        margin-bottom: 30px;
    }

        .section-heading .section-link {
            margin-top: 18px;
        }

        .section-heading h2 {
            font-size: 1.65rem;
        }

        .section-heading p {
            font-size: .85rem;
        }


    /* HERO */

    .home-hero-container {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-description {
        font-size: .9rem;
    }

    .hero-visual {
        min-height: 330px;
    }

    .hero-image-frame {
        width: 300px;
    }

    .hero-floating-card {
        padding: 9px 11px;
    }

        .hero-floating-card strong {
            font-size: .7rem;
        }

        .hero-floating-card span {
            font-size: .58rem;
        }

    .hero-floating-icon {
        width: 34px;
        height: 34px;
        font-size: .9rem;
    }

    .hero-floating-card-one {
        right: 0;
        top: 10px;
    }

    .hero-floating-card-two {
        left: 0;
        bottom: 30px;
    }

    .hero-trust {
        gap: 13px;
    }

    .hero-trust-divider {
        height: 28px;
    }

    .hero-trust-item strong {
        font-size: 1rem;
    }

    .hero-trust-item span {
        font-size: .65rem;
    }


    /* CATEGORY */

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .category-card {
        padding: 12px;
        border-radius: 16px;
    }

    .category-card-image {
        height: 125px;
    }

    .category-card-content {
        margin-top: 12px;
        font-size: .78rem;
    }


    /* ABOUT */

    .about-box {
        padding: 25px 18px;
        border-radius: 24px;
    }

    .about-image-wrapper {
        margin-bottom: 25px;
    }

    .about-experience {
        left: 10px;
        bottom: 5px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }


    /* STATS */

    .stats-section-home {
        padding: 50px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        justify-content: flex-start;
        padding: 18px 0;
        border-left: 0;
        border-bottom: 1px solid rgba(255,255,255,.15);
    }

        .stat-item:last-child {
            border-bottom: 0;
        }


    /* PROJECTS */

    .projects-section {
        padding: 65px 0;
    }

    .projects-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px 200px;
    }

    .project-large {
        grid-column: span 2;
        grid-row: span 1;
    }


    /* SERVICES */

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .service-item {
        padding: 25px 15px;
    }

    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .service-item h3 {
        font-size: .9rem;
    }

    .service-item p {
        font-size: .75rem;
    }


    /* CTA */

    .final-cta-section {
        padding-bottom: 60px;
    }

    .final-cta {
        padding: 30px 22px;
        border-radius: 24px;
    }

    .final-cta-actions {
        width: 100%;
    }

        .final-cta-actions .home-btn {
            width: 100%;
        }
}


@media (max-width: 480px) {

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

        .hero-actions .home-btn {
            width: 100%;
        }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-visual {
        min-height: 290px;
    }

    .hero-image-frame {
        width: 250px;
    }
/*
    .hero-floating-card-one {
        right: -5px;
    }*/

    .hero-floating-card-two {
        left: -5px;
    }

    .hero-trust {
        gap: 8px;
    }

    .category-grid {
        gap: 9px;
    }

    .category-card-image {
        height: 105px;
    }

    .category-card-content i {
        display: none;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 190px);
    }

    .project-large {
        grid-column: auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   REDUCE MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .home-page *,
    .home-page *::before,
    .home-page *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
/* =========================================================
   PAGE SCROLL FIX
   ========================================================= */

html,
body {
    overflow-x: clip;
}

body {
    overflow-y: auto;
}

main.home-page {
    width: 100%;
    min-width: 0;
}

/* =========================================================
   WHY US - FINAL FIX
   ========================================================= */

.home-about {
    background: #f5f8f5 !important;
    color: #172019 !important;
}

    .home-about .about-box {
        background: #ffffff !important;
        color: #172019 !important;
        border: 1px solid #e7eee8;
    }

    .home-about .about-content {
        color: #172019 !important;
    }

        .home-about .about-content h2 {
            color: #172019 !important;
            font-weight: 800;
        }

        .home-about .about-content p {
            color: #5f6b63 !important;
        }

    .home-about .about-features div {
        color: #26332a !important;
    }

    .home-about .about-features i {
        color: #2e7d32 !important;
    }

    .home-about .section-kicker {
        color: #2e7d32 !important;
    }

    .home-about .about-image-wrapper {
        background: transparent;
    }

    .home-about .about-experience {
        background: #2e7d32 !important;
        color: #fff !important;
    }


/* =========================================================
   HOME PRODUCT CARDS
   ========================================================= */

.home-product-slide {
    height: auto;
    padding: 10px 5px 25px;
}

.home-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: #fff;
    border: 1px solid #e8eee9;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none !important;
    box-shadow: 0 8px 25px rgba(25, 55, 30, .055);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

    .home-product-card:hover {
        transform: translateY(-7px);
        border-color: rgba(46, 125, 50, .25);
        box-shadow: 0 18px 40px rgba(25, 55, 30, .12);
    }


/* =========================================================
   IMAGE
   ========================================================= */

.home-product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient( 145deg, #f7faf7, #edf4ee );
    overflow: hidden;
}

    .home-product-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform .5s cubic-bezier(.2,.7,.2,1);
    }

.home-product-card:hover .home-product-image img {
    transform: scale(1.07);
}


/* =========================================================
   IMAGE OVERLAY
   ========================================================= */

.home-product-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 18px;
    background: linear-gradient( to top, rgba(20, 45, 25, .55), transparent 45% );
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}

.home-product-card:hover .home-product-overlay {
    opacity: 1;
}

.home-product-overlay span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    border-radius: 50px;
    background: rgba(255,255,255,.95);
    color: #2e7d32;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0,0,0,.12);
}

.home-product-overlay i {
    font-size: 14px;
}


/* =========================================================
   CONTENT
   ========================================================= */

.home-product-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px 18px 16px;
    text-align: right;
    background: #fff;
}

.home-product-title {
    margin: 0;
    color: #172019;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    transition: color .3s ease;
}

.home-product-card:hover .home-product-title {
    color: #2e7d32;
}


/* =========================================================
   MORE LINK
   ========================================================= */

.home-product-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 14px;
    color: #7a857d;
    font-size: 12px;
    font-weight: 600;
    border-top: 1px solid #edf1ed;
}

    .home-product-more i {
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #2e7d32;
        background: #eef7ef;
        transition: background .3s ease, color .3s ease, transform .3s ease;
    }

.home-product-card:hover .home-product-more i {
    color: #fff;
    background: #2e7d32;
    transform: translateX(-3px);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .home-product-slide {
        padding: 5px 3px 20px;
    }

    .home-product-card {
        border-radius: 18px;
    }

    .home-product-content {
        padding: 14px;
    }

    .home-product-title {
        font-size: 14px;
    }

    /* در موبایل overlay لازم نیست */
    .home-product-overlay {
        display: none;
    }
}


/* =========================================================
   HOME ARTICLE SLIDE
   ========================================================= */

.home-article-slide {
    height: auto;
    padding: 10px 5px 25px;
}


/* =========================================================
   ARTICLE CARD
   ========================================================= */

.home-article-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: #fff;
    border: 1px solid #e8eee9;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none !important;
    box-shadow: 0 8px 25px rgba(25, 55, 30, .055);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

    .home-article-card:hover {
        transform: translateY(-7px);
        border-color: rgba(46, 125, 50, .25);
        box-shadow: 0 18px 40px rgba(25, 55, 30, .12);
    }


/* =========================================================
   IMAGE
   ========================================================= */

.home-article-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f2f6f2;
}

    .home-article-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform .55s cubic-bezier(.2, .7, .2, 1);
    }

.home-article-card:hover .home-article-image img {
    transform: scale(1.07);
}


/* =========================================================
   IMAGE OVERLAY
   ========================================================= */

.home-article-image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 18px;
    background: linear-gradient( to top, rgba(20, 45, 25, .58), rgba(20, 45, 25, .08) 50%, transparent 75% );
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}

.home-article-card:hover .home-article-image-overlay {
    opacity: 1;
}

.home-article-image-overlay span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .95);
    color: #2e7d32;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .12);
    transform: translateY(8px);
    transition: transform .35s ease;
}

.home-article-card:hover .home-article-image-overlay span {
    transform: translateY(0);
}

.home-article-image-overlay i {
    font-size: 14px;
}


/* =========================================================
   DATE
   ========================================================= */

.home-article-date {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .94);
    color: #566158;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .09);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 2;
}

    .home-article-date i {
        color: #2e7d32;
        font-size: 12px;
    }


/* =========================================================
   CONTENT
   ========================================================= */

.home-article-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px 18px 16px;
    text-align: right;
    background: #fff;
}


/* =========================================================
   TITLE
   ========================================================= */

.home-article-title {
    margin: 0;
    color: #172019;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.9;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    transition: color .3s ease;
}

.home-article-card:hover .home-article-title {
    color: #2e7d32;
}


/* =========================================================
   MORE
   ========================================================= */

.home-article-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #edf1ed;
    color: #7a857d;
    font-size: 12px;
    font-weight: 600;
}

    .home-article-more i {
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #2e7d32;
        background: #eef7ef;
        transition: background .3s ease, color .3s ease, transform .3s ease;
    }

.home-article-card:hover .home-article-more i {
    color: #fff;
    background: #2e7d32;
    transform: translateX(-3px);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .home-article-slide {
        padding: 5px 3px 20px;
    }

    .home-article-card {
        border-radius: 18px;
    }

    .home-article-image {
        aspect-ratio: 16 / 10;
    }

    .home-article-content {
        padding: 14px;
    }

    .home-article-title {
        font-size: 14px;
        line-height: 1.85;
    }

    .home-article-date {
        top: 10px;
        right: 10px;
        padding: 6px 9px;
        font-size: 10px;
    }

    /*
       در موبایل Overlay غیرفعال می‌شود
       چون Hover عملاً کاربردی ندارد.
    */
    .home-article-image-overlay {
        display: none;
    }
}