/**
 * 21st Century Cancer Care — About Us Page Styles
 * Depends on: cc-cancer-care.css
 * Version: 1.0.0
 */

/* ===== FULL-WIDTH PAGE WRAPPER ===== */
.cc-about-page {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

/* ===== HERO SECTION ===== */
.cc-about-hero {
    background: linear-gradient(135deg, var(--cc-primary) 0%, #0131b8 50%, var(--cc-secondary) 100%);
    padding: 6rem 0 5.5rem;
    position: relative;
    overflow: hidden;
}

.cc-about-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.cc-about-hero-orb-1 {
    width: 450px;
    height: 450px;
    background: var(--cc-accent);
    opacity: 0.12;
    top: -180px;
    right: -120px;
}

.cc-about-hero-orb-2 {
    width: 380px;
    height: 380px;
    background: var(--cc-secondary);
    opacity: 0.1;
    bottom: -140px;
    left: -100px;
}

/* Breadcrumb */
.cc-about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    margin-bottom: 1.25rem;
}

.cc-about-breadcrumb a {
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none !important;
    transition: color 0.2s;
}

.cc-about-breadcrumb a:hover {
    color: var(--cc-accent) !important;
}

.cc-about-breadcrumb .material-symbols-outlined {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.3);
}

.cc-about-breadcrumb > span:last-child {
    color: var(--cc-accent);
    font-weight: 600;
}

/* Badge */
.cc-about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(166, 206, 56, 0.15);
    border: 1px solid rgba(166, 206, 56, 0.3);
    color: var(--cc-accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.45rem 1.15rem;
    border-radius: 60px;
    margin-bottom: 1.5rem;
}

.cc-about-hero-title {
    font-size: clamp(2.3rem, 5vw, 3.6rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.cc-about-hero-title span {
    color: var(--cc-accent);
}

.cc-about-hero-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    max-width: 600px;
    margin-bottom: 2.25rem;
    line-height: 1.75;
}

.cc-about-hero-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* Hero Stats */
.cc-about-hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.cc-about-stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.cc-about-stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.cc-about-stat-icon {
    font-size: 28px;
    color: var(--cc-accent);
}

.cc-about-stat-value {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
}

.cc-about-stat-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}


/* ===== SECTIONS SYSTEM ===== */
.cc-about-section {
    padding: 6rem 0;
    width: 100%;
}

.cc-about-section--surface {
    background: var(--cc-surface);
}

.cc-about-section--alt {
    background: var(--cc-surface-alt);
}

.cc-about-section--dark {
    background: linear-gradient(135deg, var(--cc-primary) 0%, #0131b8 50%, var(--cc-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.cc-about-section--dark .cc-about-dark-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.cc-about-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.cc-about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 32, 130, 0.06);
    border-radius: 60px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--cc-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.cc-about-eyebrow .material-symbols-outlined {
    font-size: 18px;
    color: var(--cc-accent-dark);
}

.cc-about-eyebrow--light {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
}

.cc-about-eyebrow--light .material-symbols-outlined {
    color: var(--cc-accent);
}

.cc-about-section-header h2 {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--cc-primary);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cc-about-section-header--light h2 {
    color: #fff;
}

.cc-about-section-header p {
    font-size: 1.05rem;
    color: var(--cc-text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.cc-about-section-header--light p {
    color: rgba(255, 255, 255, 0.7);
}


/* ===== ABOUT INTRO SPLIT ===== */
.cc-about-intro-text h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--cc-primary);
    margin-bottom: 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cc-about-intro-text p {
    font-size: 1rem;
    color: var(--cc-text-muted);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.cc-about-intro-text p:last-child {
    margin-bottom: 0;
}

.cc-about-intro-img-wrap {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 32, 130, 0.12);
}

.cc-about-intro-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cc-about-intro-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 32, 130, 0.85), transparent);
    display: flex;
    align-items: flex-end;
}

.cc-about-intro-img-overlay p {
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
}


/* ===== SERVICES / HIGHLIGHT CARDS ===== */
.cc-about-highlight-card {
    background: #fff;
    border-radius: 1.75rem;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.cc-about-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--cc-primary);
    border-radius: 0 4px 4px 0;
    transition: height 0.35s ease;
}

.cc-about-highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 32, 130, 0.1);
    border-color: rgba(0, 32, 130, 0.08);
}

.cc-about-highlight-card:hover::before {
    height: 100%;
}

.cc-about-highlight-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.cc-about-highlight-icon .material-symbols-outlined {
    font-size: 28px;
}

.cc-about-highlight-icon--primary {
    background: rgba(0, 32, 130, 0.06);
    color: var(--cc-primary);
}

.cc-about-highlight-icon--secondary {
    background: rgba(22, 105, 101, 0.06);
    color: var(--cc-secondary);
}

.cc-about-highlight-icon--accent {
    background: rgba(166, 206, 56, 0.12);
    color: var(--cc-accent-dark);
}

.cc-about-highlight-card:hover .cc-about-highlight-icon--primary {
    background: var(--cc-primary);
    color: #fff;
}

.cc-about-highlight-card:hover .cc-about-highlight-icon--secondary {
    background: var(--cc-secondary);
    color: #fff;
}

.cc-about-highlight-card:hover .cc-about-highlight-icon--accent {
    background: var(--cc-accent-dark);
    color: #fff;
}

.cc-about-highlight-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--cc-primary);
    margin-bottom: 0.75rem;
}

.cc-about-highlight-card p {
    font-size: 0.9rem;
    color: var(--cc-text-muted);
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}


/* ===== OBJECTIVES CARDS ===== */
.cc-about-obj-card {
    background: #fff;
    border-radius: 2rem;
    padding: 3rem 2.25rem 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.cc-about-obj-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 32, 130, 0.1);
}

.cc-about-obj-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.cc-about-obj-card:hover .cc-about-obj-icon {
    transform: scale(1.1);
}

.cc-about-obj-icon .material-symbols-outlined {
    font-size: 36px;
}

.cc-about-obj-icon--control {
    background: rgba(0, 32, 130, 0.08);
    color: var(--cc-primary);
}

.cc-about-obj-icon--cure {
    background: rgba(22, 105, 101, 0.08);
    color: var(--cc-secondary);
}

.cc-about-obj-icon--comfort {
    background: rgba(166, 206, 56, 0.12);
    color: var(--cc-accent-dark);
}

.cc-about-obj-card h3 {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--cc-primary);
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}

.cc-about-obj-tagline {
    font-size: 0.85rem;
    color: var(--cc-secondary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.cc-about-obj-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    flex-grow: 1;
}

.cc-about-obj-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.6rem 0;
    font-size: 0.92rem;
    color: var(--cc-text-muted);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.cc-about-obj-list li:last-child {
    border-bottom: none;
}

.cc-about-obj-list li .material-symbols-outlined {
    font-size: 18px;
    color: var(--cc-accent-dark);
    flex-shrink: 0;
}


/* ===== TUMOR BOARD SECTION ===== */
.cc-about-tumor-card {
    background: #fff;
    border-radius: 2rem;
    padding: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.cc-about-tumor-card h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--cc-primary);
    margin-bottom: 1rem;
}

.cc-about-tumor-card p {
    font-size: 0.95rem;
    color: var(--cc-text-muted);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.cc-about-tumor-card p:last-child {
    margin-bottom: 0;
}

.cc-about-tumor-schedule {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(22, 105, 101, 0.08);
    border: 1px solid rgba(22, 105, 101, 0.15);
    color: var(--cc-secondary);
    font-size: 0.88rem;
    font-weight: 700;
    padding: 0.75rem 1.25rem;
    border-radius: 1rem;
    margin-top: 0.5rem;
}

.cc-about-tumor-schedule .material-symbols-outlined {
    font-size: 20px;
    color: var(--cc-accent-dark);
}

.cc-about-tumor-img-wrap {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 32, 130, 0.12);
    height: 100%;
    min-height: 320px;
}

.cc-about-tumor-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ===== DEPARTMENTS GRID ===== */
.cc-about-dept-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 2rem 1.75rem;
    text-align: center;
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cc-about-dept-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.cc-about-dept-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(166, 206, 56, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.cc-about-dept-icon .material-symbols-outlined {
    font-size: 26px;
    color: var(--cc-accent);
}

.cc-about-dept-card:hover .cc-about-dept-icon {
    background: var(--cc-accent);
}

.cc-about-dept-card:hover .cc-about-dept-icon .material-symbols-outlined {
    color: #fff;
}

.cc-about-dept-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
    font-family: 'Inter', sans-serif;
}


/* ===== CTA BANNER ===== */
.cc-about-cta-banner {
    background: #fff;
    border-radius: 2rem;
    padding: 3.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 3rem;
}

.cc-about-cta-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cc-primary), var(--cc-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cc-about-cta-icon .material-symbols-outlined {
    font-size: 36px;
    color: #fff;
}

.cc-about-cta-text h3 {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--cc-primary);
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}

.cc-about-cta-text p {
    font-size: 0.95rem;
    color: var(--cc-text-muted);
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

.cc-about-cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .cc-about-hero {
        padding: 4.5rem 0 4rem;
    }

    .cc-about-section {
        padding: 4.5rem 0;
    }

    .cc-about-section-header {
        margin-bottom: 3rem;
    }

    .cc-about-hero-stats {
        margin-top: 2.5rem;
    }

    .cc-about-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem;
    }

    .cc-about-cta-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .cc-about-hero {
        padding: 3.5rem 0 3rem;
    }

    .cc-about-hero-title {
        font-size: 2rem;
    }

    .cc-about-section {
        padding: 3.5rem 0;
    }

    .cc-about-section-header h2 {
        font-size: 2rem;
    }

    .cc-about-section-header {
        margin-bottom: 2.5rem;
    }

    .cc-about-obj-card {
        padding: 2rem 1.5rem;
    }

    .cc-about-tumor-card {
        padding: 2rem;
    }

    .cc-about-cta-banner {
        padding: 2rem;
        gap: 1.5rem;
    }

    .cc-about-cta-text h3 {
        font-size: 1.3rem;
    }

    .cc-about-highlight-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .cc-about-hero-stats {
        grid-template-columns: 1fr;
    }

    .cc-about-hero-actions {
        flex-direction: column;
    }

    .cc-about-hero-actions .btn-custom {
        width: 100%;
    }
}
