/* =========================================
   BRIGHT ANGEL - CONTRACT STAFFING UI
   ========================================= */

body {
    background-color: #f8fafc;
    font-family: 'Times New Roman', Times, serif;
    color: #334155;
    margin: 0;
    padding: 0;
}

/* --- Hero Section --- */
.cs-hero {
    padding: 160px 20px 80px 20px;
    background: linear-gradient(135deg, #0b1120 0%, #1e293b 100%);
    color: #ffffff;
    text-align: center;
    border-bottom: 4px solid #ef4444; /* Corporate Red Accent */
}

.cs-hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.cs-hero p {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 750px;
    margin: 0 auto;
}

.cs-badge {
    background-color: rgba(56, 189, 248, 0.15);
    color: #38bdf8;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

/* --- Section Typography --- */
.cs-section-title {
    font-weight: 700;
    font-size: 2.2rem;
    color: #0f172a;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.cs-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #3b82f6; /* Modern Blue */
}

/* --- Feature Cards (Top 3 & Why Choose Us) --- */
.cs-feature-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;
    text-align: center;
}

.cs-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: #38bdf8;
}

.cs-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.cs-feature-card:hover .cs-icon {
    transform: scale(1.1);
}

.cs-feature-card h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.cs-feature-card p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Process Steps (Timeline Style) --- */
.cs-process-box {
    background: #ffffff;
    border-left: 5px solid #3b82f6;
    padding: 20px 25px;
    border-radius: 6px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: #475569;
}

.cs-process-box:hover {
    background: #f1f5f9;
    border-left-color: #ef4444; /* Hover turns red */
    transform: translateX(8px);
}

.cs-process-box strong {
    color: #0f172a;
    margin-right: 12px;
    font-size: 1.2rem;
}

/* --- Industries Grid --- */
.cs-industry-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 30px 15px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cs-industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
    border-color: #3b82f6;
    background: #f8fafc;
}

.cs-industry-card i {
    font-size: 2.2rem;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.cs-industry-card:hover i {
    transform: scale(1.15);
}

.cs-industry-card p {
    margin: 0;
    font-weight: 700;
    color: #0f172a;
    font-size: 1rem;
}

/* --- Elite CTA Section --- */
.cs-cta-wrapper {
    background: linear-gradient(90deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 70px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.cs-cta-wrapper h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cs-cta-wrapper p {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin-bottom: 35px;
}

.cs-btn-red {
    background: #ef4444;
    color: #ffffff !important;
    padding: 16px 36px;
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
}

.cs-btn-red:hover {
    background: #dc2626;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.4);
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .cs-hero { padding: 130px 20px 60px 20px; }
    .cs-hero h1 { font-size: 2.4rem; }
    .cs-process-box { flex-direction: column; align-items: flex-start; }
    .cs-process-box strong { margin-bottom: 5px; }
}