/**
 * 21st Century Cancer Care — Preventive Oncology & Tobacco Cessation
 * Page-specific styles for the preventive oncology department page
 * Version: 1.0.0
 */

.cc-preventive-hero {
    background: linear-gradient(135deg, var(--cc-primary) 0%, #0131b8 35%, var(--cc-secondary) 100%);
}

/* ===== Stats Eyebrow ===== */
.cc-po-stats-eyebrow {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 60px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--cc-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* ===== Hero Stats Grid ===== */
.cc-po-hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 960px;
    margin: 0 auto;
}
.cc-po-hero-stat {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1.25rem;
    padding: 1.5rem 1rem;
    text-align: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.35s ease;
}
.cc-po-hero-stat:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}
.cc-po-hero-stat .cc-hero-stat-num {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.4rem;
}
.cc-po-hero-stat .cc-hero-stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .cc-po-hero-stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
    }
    .cc-po-hero-stat .cc-hero-stat-num {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .cc-po-hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .cc-po-hero-stat {
        padding: 1.25rem 0.75rem;
    }
    .cc-po-hero-stat .cc-hero-stat-num {
        font-size: 1.5rem;
    }
}
@media (max-width: 400px) {
    .cc-po-hero-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .cc-po-hero-stat .cc-hero-stat-num {
        font-size: 1.3rem;
    }
}
.cc-po-section {
    padding: 5rem 0;
}

/* ===== Content Block ===== */
.cc-po-content-block {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--cc-text-muted);
}
.cc-po-content-block p {
    margin-bottom: 1.25rem;
}
.cc-po-content-block strong {
    color: var(--cc-text);
    font-weight: 700;
}

/* ===== Highlight Card ===== */
.cc-po-highlight-card {
    background: linear-gradient(135deg, rgba(0,32,130,0.03) 0%, rgba(22,105,101,0.05) 100%);
    border: 1px solid rgba(0,32,130,0.06);
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.cc-po-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--cc-accent), var(--cc-secondary));
    border-radius: 4px 0 0 4px;
}
.cc-po-highlight-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(166,206,56,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.cc-po-highlight-icon .material-symbols-outlined {
    font-size: 28px;
    color: var(--cc-accent-dark);
}
.cc-po-highlight-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--cc-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

/* ===== Check List ===== */
.cc-po-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.cc-po-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--cc-text-muted);
    line-height: 1.6;
}
.cc-po-check-list li .material-symbols-outlined {
    font-size: 20px;
    color: var(--cc-accent-dark);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===== Services Grid ===== */
.cc-po-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.cc-po-service-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2rem 1.75rem;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
.cc-po-service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cc-accent), var(--cc-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.cc-po-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,32,130,0.1);
}
.cc-po-service-card:hover::after {
    opacity: 1;
}
.cc-po-service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease;
}
.cc-po-service-icon .material-symbols-outlined {
    font-size: 28px;
}
.cc-po-service-card:hover .cc-po-service-icon {
    transform: scale(1.1);
}
.cc-po-service-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--cc-primary);
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}
.cc-po-service-card p {
    font-size: 0.9rem;
    color: var(--cc-text-muted);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 992px) {
    .cc-po-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .cc-po-services-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Tobacco Section ===== */
.cc-po-tobacco-section {
    background: var(--cc-surface-alt) !important;
}
.cc-po-tobacco-eyebrow {
    background: rgba(186,26,26,0.06) !important;
    color: #ba1a1a !important;
}
.cc-po-tobacco-eyebrow .material-symbols-outlined {
    color: #ba1a1a !important;
}

/* Tobacco Info Card */
.cc-po-tobacco-info {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    height: 100%;
}
.cc-po-tobacco-info h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--cc-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

/* Stat Bars */
.cc-po-stat-bars {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}
.cc-po-stat-bar-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.35rem;
    font-size: 0.88rem;
    color: var(--cc-text);
    font-weight: 500;
}
.cc-po-stat-bar-label strong {
    color: var(--cc-secondary);
    font-weight: 800;
    font-size: 1rem;
}
.cc-po-stat-bar-track {
    width: 100%;
    height: 8px;
    background: rgba(22,105,101,0.08);
    border-radius: 8px;
    overflow: hidden;
}
.cc-po-stat-bar-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--cc-secondary), var(--cc-accent));
    border-radius: 8px;
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.cc-po-stat-bar-note {
    font-size: 0.75rem;
    color: var(--cc-text-muted);
    margin-top: 0.2rem;
    display: block;
}
.cc-po-tobacco-tagline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--cc-primary);
    background: rgba(0,32,130,0.04);
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    border-left: 4px solid var(--cc-accent);
    margin: 0;
    line-height: 1.6;
}

/* Tobacco Services Card */
.cc-po-tobacco-services {
    background: linear-gradient(135deg, var(--cc-primary) 0%, #0131b8 60%, var(--cc-secondary) 100%);
    border-radius: 1.5rem;
    padding: 2.5rem;
    color: #fff;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.cc-po-tobacco-services::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--cc-accent);
    filter: blur(120px);
    opacity: 0.08;
    right: -80px;
    top: -80px;
    pointer-events: none;
}
.cc-po-tobacco-services h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}
.cc-po-tobacco-service-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    z-index: 1;
}
.cc-po-tobacco-service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.cc-po-tobacco-service-num {
    font-size: 0.72rem;
    font-weight: 900;
    color: var(--cc-accent);
    background: rgba(166,206,56,0.15);
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.02em;
    margin-top: 2px;
}
.cc-po-tobacco-service-item strong {
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.2rem;
    font-weight: 700;
}
.cc-po-tobacco-service-item p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin: 0;
}

/* ===== Preventive Oncology Doctor Grid ===== */
.cc-po-doctor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}
.cc-po-doctor-card {
    background: #fff;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}
.cc-po-doctor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,32,130,0.1);
}
.cc-po-doctor-avatar {
    width: 100%;
    background: linear-gradient(135deg, var(--cc-surface-alt) 0%, #e8e6e5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.cc-po-doctor-avatar .material-symbols-outlined {
    font-size: 64px;
    color: rgba(0,32,130,0.12);
}
.cc-po-doctor-avatar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to top, var(--cc-accent), transparent);
    opacity: 0.5;
    pointer-events: none;
}
.cc-po-doctor-body {
    padding: 1.25rem 1.25rem 1.5rem;
    text-align: center;
}
.cc-po-doctor-name {
    font-weight: 800;
    font-size: 1rem;
    color: var(--cc-primary);
    letter-spacing: -0.01em;
    margin-bottom: 0;
}
.cc-po-doctor-divider {
    width: 32px;
    height: 3px;
    background: var(--cc-accent);
    border-radius: 3px;
    margin: 0.6rem auto 0;
}

@media (max-width: 768px) {
    .cc-po-doctor-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1rem;
    }
}

/* ===== Awareness Activities Banner ===== */
.cc-po-awareness-section {
    background: var(--cc-surface-alt) !important;
}
.cc-po-awareness-banner {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2.25rem 2.5rem;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}
.cc-po-awareness-banner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--cc-accent), var(--cc-secondary));
    border-radius: 4px 0 0 4px;
}
.cc-po-awareness-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    flex: 1;
    min-width: 0;
}
.cc-po-awareness-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(166,206,56,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cc-po-awareness-icon .material-symbols-outlined {
    font-size: 28px;
    color: var(--cc-accent-dark);
}
.cc-po-awareness-content h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--cc-primary);
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}
.cc-po-awareness-content p {
    font-size: 0.92rem;
    color: var(--cc-text-muted);
    line-height: 1.7;
    margin: 0;
}
.cc-po-awareness-btn {
    flex-shrink: 0;
    white-space: nowrap;
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .cc-po-awareness-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
    }
    .cc-po-awareness-content {
        flex-direction: column;
        gap: 1rem;
    }
    .cc-po-awareness-btn {
        align-self: flex-start;
    }
}

/* ===== FAQ Section ===== */
.cc-po-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.cc-po-faq-item {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
    overflow: hidden;
    transition: all 0.3s ease;
}
.cc-po-faq-item[open] {
    box-shadow: 0 8px 30px rgba(0,32,130,0.06);
    border-color: rgba(0,32,130,0.08);
}
.cc-po-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--cc-primary);
    cursor: pointer;
    transition: background 0.2s;
    gap: 1rem;
}
.cc-po-faq-item summary:hover {
    background: rgba(0,32,130,0.02);
}
.cc-po-faq-chevron {
    font-size: 24px !important;
    color: var(--cc-text-muted);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.cc-po-faq-item[open] .cc-po-faq-chevron {
    transform: rotate(180deg);
    color: var(--cc-accent-dark);
}
.cc-po-faq-answer {
    padding: 0 1.5rem 1.5rem;
}
.cc-po-faq-answer p {
    font-size: 0.95rem;
    color: var(--cc-text-muted);
    line-height: 1.8;
    margin: 0;
    border-top: 1px solid rgba(0,0,0,0.04);
    padding-top: 1rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .cc-po-section {
        padding: 3rem 0;
    }
    .cc-po-highlight-card {
        padding: 2rem;
    }
    .cc-po-tobacco-info,
    .cc-po-tobacco-services {
        padding: 2rem;
    }
    .cc-po-faq-item summary {
        font-size: 0.92rem;
        padding: 1rem 1.25rem;
    }
}
