/* nursing-style.css - SCOPED VERSION */

/* 1. Scoped Variables & Base Styles */
.nursing-scope {
    --nurse-primary: #0f172a;      /* Slate Dark */
    --nurse-secondary: #0284c7;    /* Medical Blue */
    --nurse-accent: #38bdf8;       /* Light Cyan */
    --nurse-bg: #f8fafc;           /* Light Slate Background */
    --nurse-text: #334155;
    --nurse-white: #ffffff;
    --nurse-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --nurse-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--nurse-text);
    background-color: var(--nurse-white);
    line-height: 1.6;
}

/* --- HERO SECTION --- */
.nursing-scope .pro-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding-top: 180px; 
    padding-bottom: 120px;
    color: var(--nurse-white);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.nursing-scope .hero-tag {
    background: rgba(2, 132, 199, 0.2);
    border: 1px solid rgba(2, 132, 199, 0.4);
    color: #7dd3fc;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

/* --- HERO BUTTONS --- */
.nursing-scope .btn-hero-solid {
    background-color: #0284c7;
    color: white;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid #0284c7;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.nursing-scope .btn-hero-solid:hover {
    background-color: #0369a1;
    border-color: #0369a1;
    color: white;
    transform: translateY(-2px);
}

.nursing-scope .btn-hero-outline {
    background-color: transparent;
    color: white;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.nursing-scope .btn-hero-outline:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

/* --- SERVICE CARDS --- */
.nursing-scope .service-card {
    background: var(--nurse-white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: var(--nurse-shadow);
}

.nursing-scope .service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--nurse-hover);
    border-color: var(--nurse-secondary);
}

.nursing-scope .icon-box {
    width: 56px; height: 56px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    background: #e0f2fe;
    color: var(--nurse-secondary);
}

/* --- FACTS GRID & LISTS --- */
.nursing-scope .fact-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease;
    box-shadow: var(--nurse-shadow);
}
.nursing-scope .fact-card:hover {
    transform: translateY(-5px);
    border-color: var(--nurse-secondary);
    box-shadow: var(--nurse-hover);
}
.nursing-scope .fact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #f0f9ff;
    color: var(--nurse-secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-right: 16px;
}

.nursing-scope .check-list { padding-left: 0; list-style: none; }
.nursing-scope .check-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: #64748b;
    font-size: 0.95rem;
}
.nursing-scope .check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0; top: 4px;
    color: var(--nurse-secondary);
    font-size: 0.8rem;
}

/* --- TYPOGRAPHY & BG --- */
.nursing-scope .section-header-centered { text-align: center; margin-bottom: 3rem; }
.nursing-scope .section-subtitle { 
    color: var(--nurse-secondary); 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    font-weight: 700; 
    font-size: 0.8rem; 
    margin-bottom: 12px; 
    display: block; 
}
.nursing-scope .section-title { font-weight: 800; color: var(--nurse-primary); letter-spacing: -0.5px; }
.nursing-scope .bg-subtle { background-color: var(--nurse-bg); }

/* --- ROADMAP --- */
.nursing-scope .process-card {
    background: white;
    padding: 40px 30px 30px;
    border-radius: 16px;
    border: 1px solid #eef2f6;
    position: relative;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: var(--nurse-shadow);
    height: 100%;
}
.nursing-scope .process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--nurse-hover);
    border-color: var(--nurse-secondary);
}
.nursing-scope .process-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--nurse-secondary);
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(2, 132, 199, 0.3);
}
.nursing-scope .process-arrow {
    display: none;
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #cbd5e1;
    z-index: 1;
}
@media (min-width: 992px) {
    .nursing-scope .col-lg-4:not(:last-child) .process-arrow { display: block; }
}