/* ============================================
   TEEN CBT THERAPY PAGE
   Unified chunky/bold/lime design language
============================================ */

/* Mobile padding for chat widget clearance */
@media (max-width: 767px) {
    .teen-cbt-page {
        padding-bottom: 90px;
    }
}

/* ============================================
   COMPARISON TABLE - Chunky wrapper + green Kin column
============================================ */
.comparison-table-wrapper {
    border: 3px solid black;
    box-shadow: 4px 4px 0px black;
    border-radius: 16px;
    overflow: hidden;
}

.comparison-table-wrapper table {
    border-collapse: collapse;
    width: 100%;
}

.comparison-table-wrapper th,
.comparison-table-wrapper td {
    padding: 16px 20px;
}

.comparison-table-wrapper thead th {
    background: #f9fafb;
    font-weight: 700;
}

/* Kin column highlight */
.kin-col {
    background: #f0fdf4;
}

.comparison-table-wrapper thead .kin-col {
    background: #dcfce7;
    position: relative;
}

/* RECOMMENDED badge */
.recommended-badge {
    display: inline-block;
    background: black;
    color: white;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 4px;
}

@media (max-width: 767px) {
    .comparison-table-wrapper th,
    .comparison-table-wrapper td {
        padding: 12px 14px;
        font-size: 0.875rem;
    }
}

/* ============================================
   SCHEDULE CARD - Chunky border
============================================ */
.schedule-card {
    border: 3px solid black;
    box-shadow: 4px 4px 0px black;
    border-radius: 16px;
    background: white;
    padding: 24px;
}

/* Highlighted CBT row */
.schedule-highlight {
    background: #C6FF52;
    border: 2px solid black;
    border-radius: 8px;
}

.schedule-highlight span.text-sm {
    color: black !important;
    font-weight: 700;
}

/* Dimmed break row */
.schedule-break {
    opacity: 0.6;
}

/* ============================================
   TEEN QUOTE - Lime chunky card
============================================ */
.teen-quote {
    background: #C6FF52;
    border: 3px solid black;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    box-shadow: 4px 4px 0px black;
}

.teen-quote .quote-icon {
    position: absolute;
    top: -14px;
    left: 20px;
    font-size: 28px;
    color: black;
    background: #C6FF52;
    padding: 0 4px;
}

/* ============================================
   NOT READY CARDS - Blue border + hover-to-blue + animated arrow
============================================ */
.not-ready-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: white;
    border: 2px solid #2F4BFF;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(47, 75, 255, 0.1);
}

.not-ready-card:hover {
    background: #2F4BFF;
    border-color: #2F4BFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(47, 75, 255, 0.25);
}

.not-ready-card:hover .not-ready-title,
.not-ready-card:hover .not-ready-desc {
    color: white;
}

.not-ready-card:hover .not-ready-icon {
    background: rgba(255, 255, 255, 0.2);
}

.not-ready-card:hover .not-ready-icon i {
    color: white;
}

.not-ready-card:hover .not-ready-arrow {
    color: white;
    transform: translateX(4px);
    animation: none;
}

.not-ready-icon {
    width: 48px;
    height: 48px;
    background: rgba(47, 75, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.not-ready-icon i {
    font-size: 22px;
    color: #2F4BFF;
    transition: color 0.2s ease;
}

.not-ready-title {
    font-weight: 600;
    color: #111;
    transition: color 0.2s ease;
}

.not-ready-desc {
    font-size: 0.875rem;
    color: #6b7280;
    transition: color 0.2s ease;
}

.not-ready-arrow {
    color: #2F4BFF;
    font-size: 20px;
    transition: all 0.2s ease;
    animation: nudge-arrow 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes nudge-arrow {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
}

/* ============================================
   FEATURED TESTIMONIAL - Lime chunky
============================================ */
.featured-testimonial {
    background: #C6FF52 !important;
    border: 3px solid black !important;
    box-shadow: 4px 4px 0px black;
}

.featured-testimonial .testimonial-avatar {
    background: white;
    border: 2px solid black;
}
