/* =========================================
   BRIGHT ANGEL - RPO SERVICES UI (STANDALONE)
   ========================================= */

body {
    background-color: #f8fafc;
    font-family: 'Times New Roman', Times, serif;
    color: #334155;
    margin: 0;
    padding: 0;
}

/* --- Hero Section --- */
.rpo-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 */
}

.rpo-hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.rpo-hero p {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto;
}

/* --- Section Typography --- */
.rpo-section-title {
    font-weight: 700;
    font-size: 2.2rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.rpo-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #3b82f6; /* Modern Blue */
}

/* --- Standard Cards --- */
.rpo-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    height: 100%;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.rpo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: #3b82f6;
}

.rpo-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

/* --- Lists --- */
.rpo-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rpo-list li {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.rpo-list i {
    margin-top: 4px;
    margin-right: 12px;
    font-size: 1.2rem;
}

.rpo-highlight-box {
    background: rgba(59, 130, 246, 0.05);
    border-left: 4px solid #3b82f6;
    padding: 15px 20px;
    border-radius: 4px;
    font-size: 1.05rem;
    color: #0f172a;
    font-weight: 600;
    font-style: italic;
    margin-top: 20px;
}

/* --- Timeline Grid (6 Steps) --- */
.rpo-step-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
}

.rpo-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: #3b82f6;
}

.rpo-step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: white;
    margin-right: 20px;
    flex-shrink: 0;
}

.rpo-step-content h5 {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.rpo-step-content p {
    color: #64748b;
    margin: 0;
    font-size: 0.95rem;
}

/* --- Horizontal Stepper (Scale) --- */
.rpo-scale-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.rpo-scale-wrapper::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: #cbd5e1;
    z-index: 0;
}

.rpo-scale-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    width: 30%;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.rpo-scale-box:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

.rpo-scale-icon {
    width: 80px;
    height: 80px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 15px auto;
    border: 4px solid #f8fafc;
    transition: all 0.3s ease;
}

.rpo-scale-box:hover .rpo-scale-icon {
    background: #ffffff;
    color: #3b82f6;
    border-color: #0f172a;
}

.rpo-scale-box h5 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.rpo-scale-box:hover h5 { color: #ffffff; }

.rpo-scale-box p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

.rpo-scale-box:hover p { color: #cbd5e1; }

/* --- CTA Section --- */
.rpo-cta-section {
    background: linear-gradient(90deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 60px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.rpo-btn-red {
    background: #ef4444;
    color: #ffffff !important;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    margin-top: 20px;
}

.rpo-btn-red:hover {
    background: #dc2626;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.4);
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .rpo-scale-wrapper { flex-direction: column; align-items: center; gap: 30px; }
    .rpo-scale-wrapper::before { display: none; }
    .rpo-scale-box { width: 100%; max-width: 400px; }
}
@media (max-width: 768px) {
    .rpo-hero { padding: 130px 20px 60px 20px; }
    .rpo-hero h1 { font-size: 2.2rem; }
    .rpo-step-card { flex-direction: column; text-align: center; }
    .rpo-step-icon { margin: 0 auto 15px auto; }
}