/* Recovery Care Coordination Page Styles */

/* Hero */
.rcc-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 8rem 0 4rem;
    margin-top: 4rem;
    text-align: center;
}

.rcc-hero h1 {
    margin-bottom: 1rem;
    color: white;
    font-size: 3rem;
}

.rcc-hero .hero-subtitle {
    font-size: 1.25rem;
    color: white;
    opacity: 1;
    max-width: 600px;
    margin: 0 auto;
}

/* Overview */
.rcc-overview {
    padding: 5rem 0;
    background: var(--background-alt);
}

.overview-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.overview-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Services */
.rcc-services {
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* How It Works / Process */
.rcc-process {
    padding: 5rem 0;
    background: var(--background-alt);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    counter-reset: step;
}

.process-step {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Who We Serve */
.rcc-audience {
    padding: 5rem 0;
}

.audience-content {
    max-width: 800px;
    margin: 0 auto;
}

.audience-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.audience-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.audience-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.audience-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Calendar */
.rcc-calendar {
    padding: 5rem 0;
    background: var(--background-alt);
}

.calendar-container {
    max-width: 800px;
    margin: 0 auto;
}

.calendar-placeholder {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.calendar-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.calendar-placeholder h3 {
    margin-bottom: 1rem;
}

.calendar-placeholder p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.calendar-placeholder .btn {
    margin-top: 1rem;
}

/* CTA */
.rcc-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.rcc-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.rcc-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Active nav state */
.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .rcc-hero {
        padding: 6rem 0 3rem;
    }

    .rcc-hero h1 {
        font-size: 2rem;
    }

    .services-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
}