/* =========================================
   WHY SAMASRA WELLNESS SECTION
   ========================================= */

.why-samasra-section {
    padding: 120px 0;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
}

.why-samasra-section .section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.why-samasra-section h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

/* TOP STATS - RADIAL PROGRESS */
.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 120px;
    flex-wrap: wrap;
}

.stat-circle-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.radial-progress {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
}

.radial-progress svg {
    width: 100px;
    height: 100px;
    transform: rotate(-90deg);
}

.radial-progress circle {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
}

.radial-progress circle:first-child {
    stroke: #f1f5f9;
}

.radial-progress circle:last-child {
    stroke: #0f172a;
    stroke-dasharray: 283;
    stroke-dashoffset: calc(283 - (283 * var(--percent)) / 100);
}

.radial-progress .percentage-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.25rem;
    font-weight: 900;
    color: #0f172a;
}

.stat-circle-item p {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 0.05em;
}

/* BOTTOM SECTION - SPLIT FEATURES */
.features-resume-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
}

.features-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.features-col.left {
    text-align: right;
}

.features-col.right {
    text-align: left;
}

.center-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.center-visual img {
    max-width: 380px;
    height: auto;
    border-radius: 20px;
}

.feature-info-card {
    display: flex;
    gap: 20px;
    align-items: center;
}

.features-col.left .feature-info-card {
    flex-direction: row-reverse;
}

.feature-info-card .icon-box {
    width: 65px;
    height: 65px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-info-card .icon-box i {
    font-size: 1.5rem;
    color: #0f172a;
}

.feature-info-text h4 {
    margin: 0 0 6px;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
}

.feature-info-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748b;
}

.feature-label-badge {
    display: inline-block;
    padding: 3px 12px;
    background: #0f172a;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 10px;
    border-radius: 4px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .features-resume-wrapper {
        flex-direction: column;
        gap: 60px;
    }

    .center-visual {
        order: -1;
        max-width: 300px;
        margin: 0 auto;
    }

    .features-col.left {
        text-align: left;
    }

    .features-col.left .feature-info-card {
        flex-direction: row;
    }
}