/**
 * 21st Century Cancer Care — Tumor Board Page Styles
 * Depends on: cc-cancer-care.css
 * Version: 1.0.1
 */

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

/* ===== HERO SECTION ===== */
.cc-tb-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-tb-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.cc-tb-hero-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--cc-accent);
    opacity: 0.12;
    top: -150px;
    right: -100px;
}

.cc-tb-hero-orb-2 {
    width: 350px;
    height: 350px;
    background: var(--cc-secondary);
    opacity: 0.1;
    bottom: -120px;
    left: -80px;
}

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

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

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

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

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

.cc-tb-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-tb-pulse {
    width: 10px;
    height: 10px;
    background: var(--cc-accent);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    animation: cc-tb-pulse-anim 2.5s ease-in-out infinite;
}

.cc-tb-pulse::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--cc-accent);
    opacity: 0.45;
    animation: cc-tb-pulse-ring-anim 2.5s ease-in-out infinite;
}

@keyframes cc-tb-pulse-anim {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes cc-tb-pulse-ring-anim {
    0%, 100% { transform: scale(1); opacity: 0.45; }
    50% { transform: scale(1.8); opacity: 0; }
}

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

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

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

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

.cc-tb-cta-btn {
    font-size: 1.05rem !important;
}

.cc-tb-btn-outline {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 0.75rem;
    padding: 1rem 2rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    cursor: pointer;
}

.cc-tb-btn-outline:hover {
    background: rgba(255, 255, 255, 0.18) !important;
    transform: translateY(-2px);
}

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

.cc-tb-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-tb-stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

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

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

.cc-tb-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-tb-section {
    padding: 6rem 0;
    width: 100%;
}

.cc-tb-section:nth-child(odd) {
    background: var(--cc-surface);
}

.cc-tb-section:nth-child(even) {
    background: var(--cc-surface-alt);
}

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

.cc-tb-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-tb-eyebrow .material-symbols-outlined {
    font-size: 18px;
    color: var(--cc-accent-dark);
}

.cc-tb-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-tb-section-header p {
    font-size: 1.05rem;
    color: var(--cc-text-muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== WORKFLOW / PROCESS CARDS ===== */
.cc-tb-workflow-container {
    position: relative;
}

/* Horizontal connectors for desktop */
@media (min-width: 992px) {
    .cc-tb-workflow-container::after {
        content: '';
        position: absolute;
        top: 25%;
        left: 10%;
        right: 10%;
        height: 2px;
        background: dashed rgba(22, 105, 101, 0.15);
        z-index: 1;
    }
}

.cc-tb-workflow-card {
    background: #fff;
    border-radius: 1.75rem;
    padding: 2.25rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    position: relative;
    z-index: 2;
    height: 100%;
}

.cc-tb-workflow-num {
    position: absolute;
    top: 1.5rem;
    right: 1.75rem;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(22, 105, 101, 0.08);
    line-height: 1;
}

.cc-tb-workflow-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(0, 32, 130, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.cc-tb-workflow-icon .material-symbols-outlined {
    font-size: 28px;
    color: var(--cc-primary);
}

.cc-tb-workflow-card:hover .cc-tb-workflow-icon {
    background: var(--cc-primary);
}

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

.cc-tb-workflow-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--cc-primary);
    margin-bottom: 0.75rem;
}

.cc-tb-workflow-card p {
    font-size: 0.9rem;
    color: var(--cc-text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ===== SPECIALIST CARD GRID ===== */
.cc-tb-specialist-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;
    align-items: flex-start;
}

.cc-tb-spec-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.cc-tb-spec-icon-box .material-symbols-outlined {
    font-size: 28px;
}

.cc-tb-specialist-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--cc-primary);
    margin-bottom: 0.75rem;
}

.cc-tb-specialist-card p {
    font-size: 0.92rem;
    color: var(--cc-text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.cc-tb-spec-role {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--cc-secondary);
    background: rgba(22, 105, 101, 0.08);
    padding: 0.35rem 0.85rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== SUMMARY BANNER ===== */
.cc-tb-summary-banner {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(22, 105, 101, 0.12);
    box-shadow: 0 10px 30px rgba(22, 105, 101, 0.04);
    border-radius: 1.5rem;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.cc-tb-summary-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(22, 105, 101, 0.08);
    border-color: rgba(22, 105, 101, 0.25);
}

.cc-tb-summary-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(22, 105, 101, 0.1);
    color: var(--cc-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cc-tb-summary-icon .material-symbols-outlined {
    font-size: 32px;
}

.cc-tb-summary-text h3 {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--cc-primary);
    margin-bottom: 0.5rem;
}

.cc-tb-summary-text p {
    font-size: 0.95rem;
    color: var(--cc-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ===== BENEFIT CARDS ===== */
.cc-tb-benefit-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    height: 100%;
}

.cc-tb-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.cc-tb-benefit-icon {
    font-size: 32px;
    color: var(--cc-accent-dark);
    margin-bottom: 1.25rem;
    display: inline-block;
}

.cc-tb-benefit-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--cc-primary);
    margin-bottom: 0.75rem;
}

.cc-tb-benefit-card p {
    font-size: 0.9rem;
    color: var(--cc-text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ===== TIMELINE & SCHEDULE ===== */
.cc-tb-timeline-list {
    margin-top: 2rem;
    position: relative;
    padding-left: 2rem;
}

.cc-tb-timeline-list::after {
    content: '';
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 4px;
    width: 2px;
    background: rgba(22, 105, 101, 0.15);
}

.cc-tb-timeline-item {
    position: relative;
    margin-bottom: 2.25rem;
}

.cc-tb-timeline-item:last-child {
    margin-bottom: 0;
}

.cc-tb-timeline-dot {
    position: absolute;
    left: -2rem;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cc-primary);
    z-index: 2;
    border: 2px solid #fff;
    box-shadow: 0 0 0 4px rgba(0, 32, 130, 0.15);
}

.cc-tb-timeline-item h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--cc-primary);
    margin-bottom: 0.5rem;
}

.cc-tb-timeline-item p {
    font-size: 0.92rem;
    color: var(--cc-text-muted);
    line-height: 1.65;
    margin: 0;
}

/* Schedule Card */
.cc-tb-schedule-card {
    background: linear-gradient(135deg, var(--cc-primary) 0%, #0131b8 50%, var(--cc-secondary) 100%);
    border-radius: 2rem;
    padding: 3.5rem 3rem;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.cc-tb-schedule-orb {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: var(--cc-accent);
    filter: blur(120px);
    opacity: 0.15;
    top: -50px;
    right: -40px;
    pointer-events: none;
}

.cc-tb-schedule-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cc-tb-schedule-icon {
    font-size: 48px;
    color: var(--cc-accent);
    margin-bottom: 1.5rem;
}

.cc-tb-schedule-card h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.cc-tb-schedule-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
    max-width: 420px;
}

.cc-tb-schedule-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.cc-tb-schedule-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cc-accent);
    color: #fff !important;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 1rem 2.25rem;
    border-radius: 60px;
    text-decoration: none !important;
    box-shadow: 0 8px 24px rgba(166, 206, 56, 0.3);
    transition: all 0.3s ease;
}

.cc-tb-schedule-call:hover {
    background: var(--cc-accent-dark);
    transform: translateY(-2px);
}

.cc-tb-schedule-call .material-symbols-outlined {
    font-size: 20px;
}

/* ===== CASE SUBMISSION FORM ===== */
.cc-tb-form-card {
    background: #fff;
    border-radius: 2rem;
    padding: 4rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.cc-tb-form-section-block {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
}

.cc-tb-form-section-block:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 1.5rem;
}

.cc-tb-form-section-block h3 {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--cc-primary);
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cc-tb-form-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 32, 130, 0.08);
    color: var(--cc-primary);
    font-size: 0.95rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cc-tb-form-card label {
    display: block;
    color: var(--cc-text);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cc-tb-form-card input,
.cc-tb-form-card select,
.cc-tb-form-card textarea {
    width: 100%;
    padding: 0.9rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0.75rem;
    background: var(--cc-surface);
    color: var(--cc-text);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.cc-tb-form-card input::placeholder,
.cc-tb-form-card textarea::placeholder {
    color: #a0a0a5;
}

.cc-tb-form-card input:focus,
.cc-tb-form-card select:focus,
.cc-tb-form-card textarea:focus {
    border-color: var(--cc-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 32, 130, 0.08);
}

.cc-tb-upload-note {
    font-size: 0.85rem;
    color: var(--cc-text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

/* Upload drag and drop zone */
.cc-tb-upload-zone {
    border: 2px dashed rgba(22, 105, 101, 0.2);
    background: var(--cc-surface);
    border-radius: 1.25rem;
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cc-tb-upload-zone:hover,
.cc-tb-upload-zone.dragover {
    border-color: var(--cc-secondary);
    background: rgba(22, 105, 101, 0.03);
}

.cc-tb-upload-icon {
    font-size: 44px;
    color: var(--cc-secondary);
    margin-bottom: 1rem;
}

.cc-tb-upload-zone h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--cc-primary);
    margin-bottom: 0.25rem;
}

.cc-tb-upload-zone p {
    font-size: 0.85rem;
    color: var(--cc-text-muted);
    margin-bottom: 0;
}

/* File list styling */
.cc-tb-file-list {
    margin-top: 1.5rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.cc-tb-file-list h5 {
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--cc-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cc-tb-file-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cc-tb-file-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.88rem;
    color: var(--cc-text);
    background: #fff;
    padding: 0.6rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.cc-tb-file-info {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cc-tb-file-info .material-symbols-outlined {
    font-size: 18px;
    color: var(--cc-secondary);
}

.cc-tb-file-remove {
    background: none;
    border: none;
    color: #ff3b30 !important;
    cursor: pointer;
    font-size: 16px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.cc-tb-file-remove:hover {
    opacity: 0.7;
}

/* Form Submit Zone */
.cc-tb-submit-btn {
    font-size: 1.1rem !important;
    padding: 1.1rem !important;
    box-shadow: 0 10px 24px rgba(166, 206, 56, 0.25) !important;
}

.cc-tb-form-feedback {
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
}

.cc-tb-form-feedback.success {
    background: #e6f9ed;
    color: #1e7e34;
    border: 1px solid #c3e6cb;
}

.cc-tb-form-feedback.error {
    background: #fdf2f2;
    color: #d12424;
    border: 1px solid #fbd5d5;
}

/* ===== FAQ ACCORDION ===== */
.cc-tb-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cc-tb-faq-item {
    background: #fff;
    border-radius: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.3s ease;
}

.cc-tb-faq-item[open] {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.cc-tb-faq-item summary {
    padding: 1.5rem;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--cc-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
}

.cc-tb-faq-item summary::-webkit-details-marker {
    display: none;
}

.cc-tb-faq-item summary .material-symbols-outlined {
    font-size: 24px;
    color: var(--cc-secondary);
    transition: transform 0.35s ease;
}

.cc-tb-faq-item[open] summary .material-symbols-outlined {
    transform: rotate(180deg);
}

.cc-tb-faq-answer {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.cc-tb-faq-answer p {
    font-size: 0.92rem;
    color: var(--cc-text-muted);
    line-height: 1.7;
    margin: 1rem 0 0;
}

/* ===== CONTACT / CTA SECTION ===== */
.cc-tb-cta-section {
    background: var(--cc-surface) !important;
}

.cc-tb-cta-card {
    background: linear-gradient(135deg, var(--cc-primary) 0%, #0131b8 50%, var(--cc-secondary) 100%);
    border-radius: 2rem;
    padding: 4.5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cc-tb-cta-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--cc-accent);
    filter: blur(140px);
    opacity: 0.12;
    top: -80px;
    right: -60px;
    pointer-events: none;
}

.cc-tb-cta-inner {
    position: relative;
    z-index: 1;
}

.cc-tb-cta-pulse-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(166, 206, 56, 0.4);
    margin: 0 auto 1.5rem;
    animation: cc-tb-cta-ring 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes cc-tb-cta-ring {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.6; }
}

.cc-tb-cta-card h2 {
    font-size: 2.3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.cc-tb-cta-inner > p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.cc-tb-cta-call {
    font-size: 1.3rem !important;
    padding: 1.25rem 3.5rem !important;
    box-shadow: 0 8px 24px rgba(166, 206, 56, 0.3) !important;
}

.cc-tb-cta-alt {
    margin-top: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.cc-tb-cta-alt a {
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.92rem;
    font-weight: 600;
    transition: color 0.2s;
}

.cc-tb-cta-alt a:hover {
    color: #fff !important;
}

.cc-tb-cta-alt a .material-symbols-outlined {
    font-size: 18px;
}

.cc-tb-cta-divider {
    color: rgba(255, 255, 255, 0.2);
}

.cc-tb-cta-address {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 0;
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 991px) {
    .cc-tb-hero {
        padding: 4rem 0 3.5rem;
    }
    
    .cc-tb-section {
        padding: 4.5rem 0;
    }
    
    .cc-tb-section-header {
        margin-bottom: 3rem;
    }
    
    .cc-tb-section-header h2 {
        font-size: 2.1rem;
    }
    
    .cc-tb-form-card {
        padding: 2.5rem;
    }
    
    .cc-tb-cta-card {
        padding: 3.5rem 2rem;
    }
    
    .cc-tb-cta-card h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .cc-tb-hero {
        padding: 3rem 0 2.5rem;
    }
    
    .cc-tb-section {
        padding: 3.5rem 0;
    }
    
    .cc-tb-section-header h2 {
        font-size: 1.8rem;
    }
    
    .cc-tb-hero-actions {
        flex-direction: column;
    }
    
    .cc-tb-hero-actions .btn-custom {
        width: 100%;
        justify-content: center;
    }
    
    .cc-tb-form-card {
        padding: 1.75rem 1.25rem;
        border-radius: 1.5rem;
    }
    
    .cc-tb-form-section-block {
        padding-bottom: 1.75rem;
        margin-bottom: 1.75rem;
    }
    
    .cc-tb-form-section-block h3 {
        font-size: 1.15rem;
        margin-bottom: 1.25rem;
    }
    
    .cc-tb-upload-zone {
        padding: 2rem 1.25rem;
    }
    
    .cc-tb-cta-card {
        padding: 2.5rem 1.25rem;
        border-radius: 1.5rem;
    }
    
    .cc-tb-cta-card h2 {
        font-size: 1.5rem;
    }
    
    .cc-tb-cta-call {
        font-size: 1.15rem !important;
        padding: 1rem 2.25rem !important;
    }
    
    .cc-tb-schedule-card {
        padding: 2.5rem 1.5rem;
        border-radius: 1.5rem;
    }
    
    .cc-tb-schedule-card h3 {
        font-size: 1.3rem;
    }
}
