.footer,
.footer-copyright {
    position: unset;
}

/* ── Hero ── */
.hiw-hero-section {
    padding: 60px 0 50px;
}

.hiw-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 36px;
    width: fit-content;
}

.hiw-label .line {
    width: 24px;
    height: 2px;
    background-color: #0b6b5b;
    transition: width 0.3s ease;
}

.hiw-label .label-text {
    font-size: 16px;
    color: #04533E;
}

.hiw-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 10%;
}

.hiw-hero-left h1 {
    font-size: 44px;
    font-weight: 700;
    color: #121212;
    line-height: 1.2;
    font-family: 'Mona Sans', sans-serif;
    margin: 0;
}
.hiw-hero-left h2 {
    font-size: 44px;
    font-weight: 400;
    color: #121212;
    line-height: 1.2;
    font-family: 'Mona Sans', sans-serif;
    margin: 0;
}

.hiw-hero-right p {
    font-size: 15px;
    color: #5f6368;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
    margin: 0;
    text-align: justify;
    padding-left: 28%;
}

/* ── How Sahalat Works steps ── */
.hiw-steps-section {
    padding: 20px 0 50px;
}

.hiw-steps-title {
    text-align: center;
    font-size: 42px;
    font-weight: 500;
    color: #121212;
    margin-bottom: 48px;
    font-family: 'Inter', sans-serif;
    line-height: 1.637;
}

.hiw-steps-grid {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    justify-content: center;
}

/* ── Individual step card — reuses home page step classes ── */
.hiw-step-wrap {
    display: flex;
    flex-direction: column;
    gap: 7px;
    align-items: center;
    width: 240px;
    flex-shrink: 0;
}

.hiw-step-icon-container {
    position: relative;
    width: 98px;
    height: 98px;
}

.hiw-step-icon-bg {
    position: absolute;
    background-color: #04533E;
    border-radius: 20px;
    width: 98px;
    height: 98px;
}

.hiw-step-icon-img {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 21px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.hiw-step-icon-img img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    transition: 0.5s;
}

.hiw-step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    background: #57e098;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #04533E;
    z-index: 10;
    font-family: 'Inter', sans-serif;
}

.hiw-step-wrap:hover .hiw-step-icon-img {
    background: #57e098;
    margin-top: -5px;
}

.hiw-step-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    padding: 10px;
    width: 100%;
    text-align: center;
}

.hiw-step-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #2a2a2a;
    margin: 0;
}

.hiw-step-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.637;
    color: #666666;
    margin: 0;
}

/* ── Explore Services button (same style as home CTA) ── */
.hiw-explore-wrap {
    display: flex;
    justify-content: center;
    margin-top: 48px;
    margin-bottom: 48px;
}

.hiw-explore-btn {
    background-color: #57e098;
    border-radius: 74px;
    height: 51px;
    width: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: white;
}

.hiw-explore-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #04533E;
    border-radius: 74px;
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.hiw-explore-btn:hover::before {
    left: 0;
}

.hiw-explore-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 138, 90, 0.4);
    color: white;
}

/* ── Need Assistance banner ── */
.hiw-assistance-section {
    padding: 0 0 80px;
    margin-bottom: 100px;
    margin-top: 40px;
}

.hiw-assistance-banner {
    background: #f4fbf7;
    border: 1px solid #d4ece0;
    border-radius: 16px;
    padding: 28px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.hiw-assistance-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Two-circle layered icon */
.hiw-assist-icon {
    position: relative;
    width: 62px;
    height: 62px;
    flex-shrink: 0;
}

.hiw-assist-icon .icon-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    background: #04533E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    font-weight: 700;
    z-index: 2;
    font-family: 'Inter', sans-serif;
}

.hiw-assist-icon .icon-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28px;
    height: 28px;
    background: #57e098;
    border-radius: 50%;
    z-index: 1;
}

.hiw-assistance-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: #121212;
    margin: 0 0 4px;
    font-family: 'Mona Sans', sans-serif;
}

.hiw-assistance-text p {
    font-size: 15px;
    color: #5f6368;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.hiw-assistance-btn {
    display: inline-block;
    background: #0c8b51;
    color: #fff;
    padding: 13px 30px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: 'Inter', sans-serif;
    transition: background 0.3s ease, transform 0.2s ease;
}

.hiw-assistance-btn:hover {
    background: #087343;
    color: #fff;
    transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .hiw-hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hiw-hero-left h1 {
        font-size: 32px;
    }

    .hiw-steps-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 32px;
    }

    .hiw-steps-title {
        font-size: 30px;
    }

    .hiw-assistance-banner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .hiw-assistance-left {
        flex-direction: column;
        text-align: center;
    }

    .hiw-explore-btn {
        width: 260px;
    }
}
