body.site {
    --primary: #064fa8;
    --primary-dark: #051f63;
    --accent: #ff343b;
    --accent-dark: #c91621;
    --secondary: #f4f7fb;
    --soft-blue: #eaf3ff;
    --text-main: #10203d;
    --text-dark: #071a3f;
    --muted: #5f6b80;
}

/* ==========================================================================
   Full-Width Top Hero Image Slider
   ========================================================================== */

.full-hero-slider-wrap {
    width: 100%;
    position: relative;
    background-color: #0f172a;
    overflow: hidden;
}

.full-hero-slider {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    cursor: grab;
    user-select: none;
    overflow: hidden;
}

.full-hero-slider:active {
    cursor: grabbing;
}

.full-hero-slider .swiper-wrapper {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: 100%;
    height: 100%;
    box-sizing: content-box;
}

.full-hero-slider .swiper-slide {
    flex-shrink: 0 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.full-hero-slider .swiper-slide img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    display: block;
}

.full-hero-slider .swiper-button-prev,
.full-hero-slider .swiper-button-next {
    color: #ffffff;
    background: rgba(6, 79, 168, 0.7);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.full-hero-slider .swiper-button-prev::after,
.full-hero-slider .swiper-button-next::after {
    font-size: 1.2rem;
    font-weight: 800;
}

.full-hero-slider .swiper-button-prev:hover,
.full-hero-slider .swiper-button-next:hover {
    background: var(--primary);
    transform: scale(1.12);
}

.full-hero-slider .swiper-pagination {
    bottom: 16px !important;
    z-index: 10;
}

.full-hero-slider .swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.5;
    width: 12px;
    height: 12px;
    margin: 0 5px !important;
    transition: all 0.3s ease;
}

.full-hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: #097f93;
    width: 28px;
    border-radius: 6px;
}

@media (max-width: 991px) {
    .full-hero-slider .swiper-slide img {
        max-height: 380px;
    }
}

@media (max-width: 768px) {
    .full-hero-slider .swiper-slide img {
        max-height: 260px;
    }
    .full-hero-slider .swiper-button-prev,
    .full-hero-slider .swiper-button-next {
        width: 36px;
        height: 36px;
    }
    .full-hero-slider .swiper-button-prev::after,
    .full-hero-slider .swiper-button-next::after {
        font-size: 0.9rem;
    }
}

.section-padding { padding: 72px 0; }
.text-left { text-align: left; }
.mt-4 { margin-top: 24px; }

.section-title {
    color: var(--text-dark);
    font-size: 34px;
    font-weight: 900;
    margin: 0 0 14px;
    line-height: 1.18;
}

.section-title span,
.about-text .section-title span,
.sd-heading span {
    color: var(--primary);
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 900;
    text-decoration: none;
    border: 0;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(255, 52, 59, 0.22);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: #ffffff;
    color: var(--primary-dark) !important;
    border: 2px solid var(--primary-dark);
    box-shadow: 0 4px 14px rgba(6, 79, 168, 0.15);
}

.btn-secondary:hover {
    background: var(--primary-dark);
    color: #ffffff !important;
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(6, 79, 168, 0.35);
}

.care-hero {
    background: var(--secondary);
    padding: 64px 0 38px;
}

.care-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: 34px;
    align-items: center;
}

.care-hero__copy {
    max-width: 590px;
}

.eyebrow {
    color: var(--accent);
    font-size: 18px;
    font-weight: 900;
    margin: 0 0 14px;
}

.care-hero h1 {
    color: var(--primary-dark);
    font-size: 48px;
    line-height: 1.08;
    margin: 0 0 18px;
    font-weight: 900;
}

.hero-lead {
    font-size: 18px;
    line-height: 1.7;
}

/* ==========================================================================
   Hospital Partnerships & Stats Counter Strip
   ========================================================================== */

.care-stats-strip {
    background: linear-gradient(135deg, #064fa8 0%, #032857 100%);
    padding: 60px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.care-stats-strip::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(9, 127, 147, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.care-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.stat-card strong {
    display: block;
    font-size: 3.2rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.stat-card span {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #cbd5e1;
    letter-spacing: 0.01em;
}

@media (max-width: 991px) {
    .care-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .stat-card {
        padding: 24px 16px;
    }
    .stat-card strong {
        font-size: 2.4rem;
    }
    .stat-card span {
        font-size: 0.95rem;
    }
}

@media (max-width: 640px) {
    .care-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .stat-card {
        padding: 28px 20px;
    }
    .stat-card strong {
        font-size: 2.8rem;
    }
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */

.why-choose-section {
    background-color: var(--gray-50, #f8fafc);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.why-card {
    background: #ffffff;
    border-radius: var(--radius-lg, 16px);
    padding: 32px 26px;
    border: 1px solid var(--gray-200, #e2e8f0);
    box-shadow: 0 4px 14px rgba(6, 79, 168, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(6, 79, 168, 0.12);
    border-color: rgba(6, 79, 168, 0.3);
}

.why-icon-box {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(6, 79, 168, 0.1) 0%, rgba(9, 127, 147, 0.15) 100%);
    color: var(--primary, #064fa8);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background 0.3s ease, color 0.3s ease;
}

.why-card:hover .why-icon-box {
    background: linear-gradient(135deg, var(--primary, #064fa8) 0%, #03326d 100%);
    color: #ffffff;
}

.why-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--slate-900, #0f172a);
    margin-bottom: 12px;
    line-height: 1.35;
}

.why-card p {
    font-size: 0.95rem;
    color: var(--slate-600, #475569);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   Our Process Section (How It Works)
   ========================================================================== */

.our-process-section {
    background-color: #ffffff;
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 44px;
    position: relative;
}

.process-step-card {
    background: var(--gray-50, #f8fafc);
    border-radius: var(--radius-lg, 16px);
    padding: 34px 24px 28px;
    border: 1px solid var(--gray-200, #e2e8f0);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.process-step-card:hover {
    transform: translateY(-6px);
    background-color: #ffffff;
    box-shadow: 0 14px 30px rgba(6, 79, 168, 0.12);
    border-color: rgba(6, 79, 168, 0.25);
}

.step-badge {
    position: absolute;
    top: -16px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent, #ff343b) 0%, #c91621 100%);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 900;
    padding: 4px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(255, 52, 59, 0.3);
}

.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--primary-light, #eef5ff);
    color: var(--primary, #064fa8);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background 0.3s ease, color 0.3s ease;
}

.process-step-card:hover .step-icon {
    background: var(--primary, #064fa8);
    color: #ffffff;
}

.process-step-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--slate-900, #0f172a);
    margin-bottom: 12px;
    line-height: 1.35;
}

.process-step-card p {
    font-size: 0.92rem;
    color: var(--slate-600, #475569);
    line-height: 1.6;
    margin: 0;
}

.process-step-card p strong {
    color: var(--primary, #064fa8);
}

/* Responsive Media Queries */
@media (max-width: 991px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .process-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    .process-steps-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .care-hero__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .care-hero h1 {
        font-size: 30px;
    }
    .care-hero {
        padding-top: 0px;
    }
}
