/* ==========================================================================
   Why Choose Jeeva Earth Section Stylesheet
   Top-Left UP, Top-Right DOWN, Bottom Flat (Exact Match)
   ========================================================================== */

.why-jeeva-wrapper {
    width: 100%;
    max-width: 1280px;
    margin: 90px auto 40px;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    position: relative;
}

.why-jeeva-card {
    position: relative;
    padding: 72px 54px 50px;
    box-sizing: border-box;
    background: transparent;
    filter: drop-shadow(0 16px 36px rgba(var(--jeeva-green-rgb, 4, 90, 49), 0.18));
    overflow: visible;
}

/* Sloped Background Layer: Top-Left UP, Top-Right DOWN, Bottom completely FLAT */
.why-jeeva-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--jeeva-green, #045A31);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    clip-path: url(#why-jeeva-clip-shape);
    -webkit-clip-path: url(#why-jeeva-clip-shape);
    z-index: 1;
}

/* Texture Overlay */
.why-jeeva-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--jeeva-green-rgb, 4, 90, 49), 0.94) 0%, rgba(var(--jeeva-green-rgb, 4, 90, 49), 0.98) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Inner Content: Straight and crisp (Unskewed) */
.why-jeeva-content {
    position: relative;
    z-index: 2;
}

/* Floating Spice Board Platter */
.why-jeeva-platter-wrap {
    position: absolute;
    top: -85px;
    right: 45px;
    width: 295px;
    z-index: 5;
    pointer-events: none;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.36));
    transition: transform 0.4s ease;
}

.why-jeeva-card:hover .why-jeeva-platter-wrap {
    transform: rotate(2deg) scale(1.02);
}

.why-jeeva-platter-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Header Content */
.why-jeeva-header {
    max-width: 65%;
    margin-bottom: 46px;
}

.why-jeeva-title {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 12px;
    line-height: 1.22;
    letter-spacing: -0.4px;
}

.why-jeeva-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.55;
    margin: 0;
    max-width: 580px;
}

/* 4 Feature Columns Grid */
.why-jeeva-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    box-sizing: border-box;
}

.why-jeeva-feature-col {
    padding: 0 28px 0 0;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    box-sizing: border-box;
}

.why-jeeva-feature-col:not(:first-child) {
    padding-left: 28px;
}

.why-jeeva-feature-col:last-child {
    border-right: none;
    padding-right: 0;
}

/* White Circle Icon */
.why-jeeva-icon-circle {
    width: 52px;
    height: 52px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-jeeva-feature-col:hover .why-jeeva-icon-circle {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.why-jeeva-icon {
    width: 26px;
    height: 26px;
    display: block;
    fill: var(--jeeva-orange, #F47521);
}

/* Feature Texts */
.why-jeeva-feature-title {
    font-size: 16.5px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px;
    line-height: 1.3;
}

.why-jeeva-feature-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.55;
    margin: 0;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1320px) {
    .why-jeeva-wrapper {
        padding: 0 0px;
    }
}

@media (max-width: 1100px) {
    .why-jeeva-card {
        padding: 60px 36px 44px;
    }
    .why-jeeva-platter-wrap {
        width: 240px;
        top: -70px;
        right: 30px;
    }
    .why-jeeva-title {
        font-size: 32px;
    }
    .why-jeeva-feature-col {
        padding: 0 18px 0 0;
    }
    .why-jeeva-feature-col:not(:first-child) {
        padding-left: 18px;
    }
}

@media (max-width: 880px) {
    .why-jeeva-wrapper {
        margin-top: 60px;
    }
    .why-jeeva-bg {
        clip-path: url(#why-jeeva-clip-shape-mobile);
        -webkit-clip-path: url(#why-jeeva-clip-shape-mobile);
    }
    .why-jeeva-card {
        padding: 50px 28px 40px;
    }
    .why-jeeva-platter-wrap {
        position: absolute !important;
        top: -28px !important;
        right: -6px !important;
        width: 190px !important;
        max-width: 42% !important;
        margin: 0 !important;
    }
    .why-jeeva-header {
        max-width: 60%;
        text-align: left;
        margin-bottom: 32px;
    }
    .why-jeeva-title {
        font-size: 30px;
        text-align: left;
    }
    .why-jeeva-subtitle {
        text-align: left;
        margin: 0;
    }
    .why-jeeva-features-grid {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }
    .why-jeeva-feature-col {
        border-right: none !important;
        border-bottom: none !important;
        padding: 0 !important;
        text-align: left;
    }
    .why-jeeva-icon-circle {
        margin: 0 0 16px 0;
    }
    .why-jeeva-feature-title {
        font-size: 19px;
        margin-bottom: 8px;
        text-align: left;
    }
    .why-jeeva-feature-desc {
        font-size: 14.5px;
        line-height: 1.52;
        text-align: left;
        max-width: 100%;
    }
}

@media (max-width: 580px) {
    .why-jeeva-wrapper {
        margin-top: 50px;
    }
    .why-jeeva-bg {
        clip-path: url(#why-jeeva-clip-shape-mobile);
        -webkit-clip-path: url(#why-jeeva-clip-shape-mobile);
    }
    .why-jeeva-card {
        padding: 44px 22px 38px;
    }
    .why-jeeva-platter-wrap {
        position: absolute !important;
        top: -22px !important;
        right: -6px !important;
        width: 165px !important;
        max-width: 44% !important;
        margin: 0 !important;
    }
    .why-jeeva-header {
        max-width: 58% !important;
        text-align: left !important;
        margin-bottom: 28px !important;
    }
    .why-jeeva-title {
        font-size: 26px !important;
        line-height: 1.18 !important;
        text-align: left !important;
        margin-bottom: 12px !important;
    }
    .why-jeeva-subtitle {
        font-size: 13.5px !important;
        line-height: 1.5 !important;
        text-align: left !important;
        margin: 0 !important;
    }
    .why-jeeva-features-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }
    .why-jeeva-feature-col {
        border-right: none !important;
        border-bottom: none !important;
        padding: 0 !important;
        text-align: left !important;
    }
    .why-jeeva-icon-circle {
        margin: 0 0 16px 0 !important;
        width: 52px !important;
        height: 52px !important;
    }
    .why-jeeva-icon {
        width: 26px !important;
        height: 26px !important;
    }
    .why-jeeva-feature-title {
        font-size: 19px !important;
        font-weight: 700 !important;
        margin-bottom: 8px !important;
        text-align: left !important;
    }
    .why-jeeva-feature-desc {
        font-size: 14px !important;
        line-height: 1.52 !important;
        text-align: left !important;
        max-width: 98% !important;
    }
}
