/* ==========================================================================
   The Healing Journey Section Styling (hj- prefix namespace)
   ========================================================================== */

#healing-journey-section {
    background-color: #FBF9F6;
    padding: 48px 0 44px;
    position: relative;
    overflow: hidden;
}

.hj-inner {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Section Header ─────────────────────────────────────────────────────── */
.hj-header {
    text-align: center;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hj-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a6640;
    margin: 0 0 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hj-eyebrow__arrow {
    font-size: 9px;
    opacity: 0.8;
}

.hj-eyebrow__arrow--flip {
    transform: scaleX(-1);
}

.hj-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a2e22;
    line-height: 1.15;
    margin: 0 0 10px;
}

/* Star Separator */
.hj-sep {
    display: flex;
    align-items: center;
    width: 120px;
    margin-bottom: 12px;
}

.hj-sep__line {
    flex: 1;
    height: 1.5px;
    background: linear-gradient(90deg, rgba(196, 158, 79, 0) 0%, rgba(196, 158, 79, 0.6) 50%, rgba(196, 158, 79, 0) 100%);
}

.hj-sep__star {
    font-size: 9px;
    color: #c49e4f;
    margin: 0 8px;
    opacity: 0.85;
}

.hj-subtitle {
    font-size: 14px;
    line-height: 1.5;
    color: #5a6e62;
    max-width: 580px;
    margin: 0;
}

/* ── 4-Step Process Section Layout ───────────────────────────────────────── */
.hj-steps-container {
    position: relative;
    margin-top: 14px;
    margin-bottom: 30px;
}

/* Desktop Connecting Line background running through center of bubbles */
.hj-desktop-connector {
    position: absolute;
    top: 58px;
    /* Centers with 116px bubbles */
    left: 8%;
    right: 8%;
    height: 2px;
    border-top: 2px dashed rgba(26, 102, 64, 0.22);
    z-index: 1;
}

.hj-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 4px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

/* Individual Card */
.hj-step-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Wrap for circle image and top number badge */
.hj-step-bubble-wrap {
    position: relative;
    width: 116px;
    height: 116px;
    margin-bottom: 18px;
    z-index: 5;
}

/* Top Number badge */
.hj-step-num {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background-color: #1a2e22;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Step Circle */
.hj-step-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #EAE3D6;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hj-step-card:hover .hj-step-circle {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 32px rgba(26, 102, 64, 0.12);
}

/* Optional outer rings like draft */
.hj-step-circle::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1.5px solid rgba(196, 158, 79, 0.25);
    opacity: 0.8;
}

.hj-step-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.hj-step-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a2e22;
    margin: 0 0 6px;
    line-height: 1.25;
}

.hj-step-desc {
    font-size: 12px;
    line-height: 1.55;
    color: #66796d;
    margin: 0;
    max-width: 220px;
    margin: 0 auto;
}

/* Desktop Arrow Connector between columns */
.hj-arrow-connector {
    font-size: 11px;
    color: #c49e4f;
    background-color: #1a4028;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 48px;
    /* Tweak to center perfectly with the circle */
    z-index: 10;
    user-select: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* ── Bottom Accent Banner ───────────────────────────────────────────────── */
.hj-banner-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F8F4EE;
    border: 1px solid #EAE3D6;
    border-radius: 12px;
    padding: 16px 24px;
    position: relative;
    margin-top: 10px;
}

.hj-banner-strip__left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hj-banner-strip__leaf {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

.hj-banner-strip__text {
    font-size: 14px;
    color: #5a6e62;
    line-height: 1.45;
    margin: 0;
}

.hj-banner-strip__text span {
    font-weight: 700;
    color: #1a2e22;
}

.hj-banner-strip__right {
    position: absolute;
    right: 28px;
    bottom: -6px;
    /* slightly overflow bottom */
    width: 140px;
    height: auto;
}

.hj-banner-strip__mortar {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* ── Responsive Styling ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hj-desktop-connector {
        left: 12%;
        right: 12%;
    }

    .hj-grid {
        gap: 2px;
    }

    .hj-step-desc {
        max-width: 180px;
    }
}

@media (max-width: 768px) {
    #healing-journey-section {
        padding: 40px 0;
    }

    .hj-title {
        font-size: 32px;
    }

    .hj-desktop-connector {
        display: none;
    }

    .hj-arrow-connector {
        display: none;
    }

    /* Change Grid to 1-column vertical list on mobile or 2x2. Let's make it 2-column or list */
    .hj-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 12px;
    }

    .hj-step-bubble-wrap {
        width: 100px;
        height: 100px;
    }

    .hj-banner-strip {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        margin-top: 30px;
    }

    .hj-banner-strip__left {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 74px;
        /* Space for the absolute mortar image */
    }

    .hj-banner-strip__right {
        right: 50%;
        transform: translateX(50%);
        bottom: 8px;
        width: 110px;
    }
}

@media (max-width: 480px) {
    .hj-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}