/* =========================================
   BRIGHT ANGEL - HR SOLUTIONS & GRIEVANCE UI (STANDALONE)
   ========================================= */

body {
    background-color: #f8fafc;
    font-family: 'Times New Roman', Times, serif;
    color: #334155;
    margin: 0;
    padding: 0;
}

/* --- Hero Section --- */
.hr-hero {
    padding: 160px 20px 80px 20px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    text-align: center;
    border-bottom: 4px solid #ef4444; /* Corporate Red */
}

.hr-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.hr-hero p {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto;
}

/* --- Section Titles --- */
.hr-section-title {
    font-weight: 700;
    font-size: 2.2rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.hr-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #3b82f6; /* Modern Blue */
}

/* --- Feature Cards --- */
.hr-feature-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    height: 100%;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.hr-feature-card-left {
    text-align: left;
}

.hr-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: #3b82f6;
}

.hr-feature-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.hr-feature-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Process Steps --- */
.hr-process-box {
    background: #ffffff;
    border-left: 5px solid #3b82f6;
    padding: 20px 25px;
    border-radius: 6px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.hr-process-box:hover {
    background: #f1f5f9;
    border-left-color: #ef4444;
    transform: translateX(5px);
}

.hr-process-box strong {
    color: #0f172a;
    margin-right: 10px;
    font-size: 1.15rem;
}

/* --- HR Illustration --- */
.hr-illustration { 
    max-height: 180px; 
    object-fit: contain; 
}

/* --- HR Complaints Timeline UI --- */
.hr-timeline { 
    position: relative; 
    padding: 2rem 0; 
}

.hr-timeline::before {
    content: ''; 
    position: absolute; 
    top: 0; 
    bottom: 0; 
    left: 50%;
    width: 4px; 
    background: #e2e8f0; 
    transform: translateX(-50%);
}

.hr-timeline-item { 
    position: relative; 
    margin-bottom: 3rem; 
    width: 100%; 
}

.hr-timeline-icon {
    position: absolute; 
    top: 0; 
    left: 50%; 
    transform: translate(-50%, -50%);
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    display: flex;
    align-items: center; 
    justify-content: center; 
    font-size: 1.5rem;
    z-index: 2; 
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.hr-timeline-content {
    position: relative; 
    width: 45%; 
    padding: 1.5rem; 
    background: #ffffff;
    border-radius: 8px; 
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hr-timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.hr-timeline-item.left .hr-timeline-content { left: 0; margin-right: auto; }
.hr-timeline-item.right .hr-timeline-content { right: 0; margin-left: auto; }

/* --- Resolution Stepper UI --- */
.hr-stepper-wrap { max-width: 800px; margin: 0 auto; }

.hr-step-circle {
    width: 45px; 
    height: 45px; 
    background-color: #3b82f6; 
    border-radius: 50%;
    display: flex; 
    justify-content: center; 
    align-items: center; 
    color: white;
    font-weight: bold; 
    font-size: 1.2rem; 
    z-index: 2; 
    position: relative;
}

.hr-stepper-line {
    border-left: 3px dashed #cbd5e1; 
    height: 40px; 
    margin-left: 21px; 
    margin-top: -10px; 
    margin-bottom: 10px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .hr-hero { padding: 130px 20px 60px 20px; }
    .hr-hero h1 { font-size: 2.2rem; }
    .hr-process-box { flex-direction: column; align-items: flex-start; }
    .hr-process-box strong { margin-bottom: 5px; }
    .hr-timeline::before { left: 30px; }
    .hr-timeline-icon { left: 30px; transform: translateY(-50%); }
    .hr-timeline-item.left .hr-timeline-content,
    .hr-timeline-item.right .hr-timeline-content {
        width: 100%; margin-left: 4rem; padding: 1.2rem; width: calc(100% - 4rem);
    }
}