/* =========================================================
   Human Resources Page
   Scope: .human-resources-page
   Theme: Navy + White (#011e2c, #04415f, #0d5c84, #ffffff)
   ========================================================= */

.human-resources-page {
    position: relative;
    background: linear-gradient(180deg, #f6f9fc 0%, #ffffff 60%);
    overflow: hidden;
}

    .human-resources-page section {
        position: relative;
        z-index: 1;
    }

/* ---------------------------------------------------------
   Policy Sections (Main + Sub)
   --------------------------------------------------------- */
.human-resources-page .hr-policy-section {
    padding: 60px 0;
}

.human-resources-page .hr-policy-section--main {
    padding-top: 70px;
}

.human-resources-page .hr-policy-section--sub {
    padding-top: 30px;
    padding-bottom: 30px;
}

.human-resources-page .hr-policy-content {
    padding-right: 0;
}

.human-resources-page .hr-policy-title {
    color: #011e2c;
    font-size: clamp(1.75rem, 2.4vw, 2.25rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 18px;
}

    .human-resources-page .hr-policy-title::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 64px;
        height: 3px;
        border-radius: 3px;
        background: linear-gradient(90deg, #04415f 0%, #0d5c84 100%);
    }

.human-resources-page .hr-policy-text {
    color: #5f6f82;
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 14px;
}

    .human-resources-page .hr-policy-text:last-child {
        margin-bottom: 0;
    }

.human-resources-page .hr-policy-media {
    display: block;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(1, 30, 44, 0.14);
}

    .human-resources-page .hr-policy-media img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 22px;
    }

/* ---------------------------------------------------------
   Features Grid
   --------------------------------------------------------- */
.human-resources-page .hr-features-grid {
    margin-top: 56px;
}

.human-resources-page .hr-feature-card {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
    border: 1px solid #e3ecf3;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 10px 28px rgba(1, 30, 44, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
    width: 100%;
}

    .human-resources-page .hr-feature-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #04415f 0%, #0d5c84 100%);
        opacity: 0.95;
    }

    .human-resources-page .hr-feature-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(1, 30, 44, 0.10);
        border-color: #cfdde9;
    }

.human-resources-page .hr-feature-title {
    color: #011e2c;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 12px;
}

.human-resources-page .hr-feature-text {
    color: #5f6f82;
    font-size: 0.93rem;
    line-height: 1.7;
    margin: 0;
}

/* ---------------------------------------------------------
   CTA Section (Banner)
   --------------------------------------------------------- */
.human-resources-page .hr-cta-section {
    padding: 30px 0 80px;
}

.human-resources-page .hr-cta-banner {
    position: relative;
    background: linear-gradient(135deg, #011e2c 0%, #04415f 55%, #0d5c84 100%);
    border-radius: 24px;
    padding: 44px 48px;
    color: #ffffff;
    box-shadow: 0 22px 50px rgba(1, 30, 44, 0.25);
    overflow: hidden;
}

    .human-resources-page .hr-cta-banner::before {
        content: "";
        position: absolute;
        top: -80px;
        right: -80px;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0) 70%);
        pointer-events: none;
    }

    .human-resources-page .hr-cta-banner::after {
        content: "";
        position: absolute;
        bottom: -100px;
        left: -60px;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
        pointer-events: none;
    }

    .human-resources-page .hr-cta-banner > .row {
        position: relative;
        z-index: 1;
    }

.human-resources-page .hr-cta-title {
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 10px;
}

.human-resources-page .hr-cta-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.75;
    margin: 0;
    max-width: 640px;
}

.human-resources-page .hr-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #04415f;
    border: none;
    border-radius: 999px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

    .human-resources-page .hr-cta-btn:hover {
        background: #f1f7fb;
        color: #011e2c;
        transform: translateY(-2px);
        box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
    }

    .human-resources-page .hr-cta-btn:active {
        transform: translateY(0);
    }

/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */
@media (max-width: 991.98px) {
    .human-resources-page .hr-policy-section--main {
        padding-top: 50px;
    }

    .human-resources-page .hr-policy-section {
        padding: 40px 0;
    }

    .human-resources-page .hr-features-grid {
        margin-top: 40px;
    }

    .human-resources-page .hr-cta-banner {
        padding: 36px 32px;
        text-align: center;
    }

        .human-resources-page .hr-cta-text {
            margin-left: auto;
            margin-right: auto;
        }

        .human-resources-page .hr-cta-banner .text-lg-end {
            text-align: center !important;
            margin-top: 20px;
        }
}

@media (max-width: 767.98px) {
    .human-resources-page .hr-policy-title {
        font-size: 1.6rem;
    }

    .human-resources-page .hr-feature-card {
        padding: 22px 20px;
    }

    .human-resources-page .hr-feature-title {
        font-size: 1.05rem;
    }

    .human-resources-page .hr-cta-banner {
        padding: 30px 24px;
        border-radius: 20px;
    }

    .human-resources-page .hr-cta-title {
        font-size: 1.4rem;
    }

    .human-resources-page .hr-cta-text {
        font-size: 0.95rem;
    }

    .human-resources-page .hr-cta-btn {
        width: 100%;
        padding: 13px 24px;
    }
}
