﻿/* ============================================================
   MENTORINN - MENTOR PROFILE PAGE STYLES
   ============================================================ */

/* ─── COVER / BANNER ──────────────────────────────────────────── */
.mentor-cover {
    position: relative;
    height: 320px;
    background: linear-gradient(135deg, #1a2a6c 0%, #0d47a1 40%, #1565c0 100%);
    overflow: hidden;
}

.mentor-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mentor-cover-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 0 10px;
    background: linear-gradient(transparent, rgba(0,0,0,0.5));
}

.mentor-cover-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cover-badge {
    color: #fff;
    font-weight: 600;
    font-size: 0.75rem;
    background: rgba(255,255,255,0.15);
    padding: 4px 16px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cover-badge.verified {
    background: rgba(34,197,94,0.25);
    border-color: rgba(34,197,94,0.3);
}

.cover-badge.verified i {
    color: #4ade80;
}

.cover-badge.active {
    background: rgba(34,197,94,0.2);
    border-color: rgba(34,197,94,0.3);
}

.cover-badge.active i {
    color: #4ade80;
}

/* ─── HEADER ───────────────────────────────────────────────────── */
.mentor-header {
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.mentor-header-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    background: #fff;
    border-radius: 20px;
    padding: 24px 30px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    align-items: center;
}

/* Avatar */
.mentor-avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.mentor-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    background: #e2e8f0;
}

.mentor-avatar-fallback {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a2a6c, #1565c0);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    border: 4px solid #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.avatar-verified {
    position: absolute;
    bottom: 4px;
    right: 4px;
    background: #16a34a;
    color: #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(22,163,74,0.3);
}

/* Mentor Info */
.mentor-info {
    flex: 1;
    min-width: 0;
}

.mentor-name {
    font-size: 28px;
    font-weight: 800;
    color: #0a1a1f;
    margin: 0;
}

.mentor-title {
    font-size: 16px;
    color: #64748b;
    margin: 2px 0;
}

.mentor-title strong {
    color: #0a1a1f;
}

.mentor-speciality {
    color: #94a3b8;
}

.mentor-location {
    font-size: 14px;
    color: #94a3b8;
}

.mentor-location i {
    color: #1565c0;
    margin-right: 4px;
}

.mentor-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 4px;
    font-size: 13px;
    color: #94a3b8;
}

.mentor-meta i {
    color: #1565c0;
    margin-right: 4px;
}

/* Actions */
.mentor-actions {
    flex-shrink: 0;
    text-align: right;
}

.mentor-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
}

.rating-stars {
    color: #f59e0b;
    font-size: 18px;
    letter-spacing: 1px;
}

.rating-score {
    font-size: 20px;
    font-weight: 700;
    color: #0a1a1f;
}

.rating-count {
    font-size: 13px;
    color: #94a3b8;
}

.mentor-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.btn-book-session {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    background: linear-gradient(135deg, #1565c0, #0d47a1);
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(21,101,192,0.25);
}

.btn-book-session:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(21,101,192,0.35);
    color: #fff;
    text-decoration: none;
}

.btn-send-message {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    background: #fff;
    color: #1565c0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #1565c0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-send-message:hover {
    background: #1565c0;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-dashboard {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(99,102,241,0.25);
}

.btn-dashboard:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99,102,241,0.35);
    color: #fff;
    text-decoration: none;
}

.btn-edit-profile {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    background: #f1f5f9;
    color: #475569;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-edit-profile:hover {
    background: #e2e8f0;
    color: #0a1a1f;
    text-decoration: none;
}

/* ─── BODY ──────────────────────────────────────────────────────── */
.mentor-body {
    padding: 30px 0 60px;
}

.mentor-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

/* ─── SECTIONS ──────────────────────────────────────────────────── */
.mentor-section {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.mentor-section:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #0a1a1f;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: #1565c0;
}

.section-content {
    color: #475569;
    line-height: 1.8;
}

.text-muted {
    color: #94a3b8;
}

/* Contact Info */
.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
    padding: 6px 14px;
    background: #f8fafc;
    border-radius: 50px;
}

.contact-item i {
    color: #1565c0;
    font-size: 16px;
}

.contact-item a {
    color: #1565c0;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item.whatsapp {
    background: #dcfce7;
    color: #166534;
}

.contact-item.whatsapp i {
    color: #25D366;
}

/* Services Tags */
.services-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
    align-items: center;
}

.services-label {
    font-weight: 600;
    font-size: 14px;
    color: #0a1a1f;
}

.service-tag {
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    background: #dbeafe;
    color: #1e40af;
}

/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.portfolio-item {
    display: flex;
    padding: 6px 0;
    border-bottom: 1px solid #f1f5f9;
}

.portfolio-item:last-child {
    border-bottom: none;
}

.portfolio-label {
    font-size: 13px;
    color: #94a3b8;
    width: 120px;
    flex-shrink: 0;
    font-weight: 500;
}

.portfolio-value {
    font-size: 14px;
    color: #0a1a1f;
    font-weight: 500;
}

/* Service Offerings */
.service-offerings {
    margin-top: 16px;
}

.offerings-label {
    font-weight: 600;
    font-size: 14px;
    color: #0a1a1f;
    display: block;
    margin-bottom: 8px;
}

.offerings-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.offering-badge {
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.offering-badge.online {
    background: #dbeafe;
    color: #1e40af;
}

.offering-badge.inperson {
    background: #fef3c7;
    color: #92400e;
}

.offering-badge.paidqa {
    background: #ede9fe;
    color: #5b21b6;
}

.offering-badge.whatsapp {
    background: #dcfce7;
    color: #166534;
}

.offering-badge.verified {
    background: #d1fae5;
    color: #065f46;
}

/* Featured Services */
.featured-services {
    margin-top: 12px;
}

.features-label {
    font-weight: 600;
    font-size: 14px;
    color: #0a1a1f;
    display: block;
    margin-bottom: 6px;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.feature-item {
    font-size: 13px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 4px;
    background: #f8fafc;
    padding: 3px 12px;
    border-radius: 50px;
}

.feature-item i {
    color: #1565c0;
}

/* Rating Breakdown */
.rating-breakdown {
    max-width: 400px;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.rating-label {
    min-width: 44px;
    font-size: 13px;
    font-weight: 600;
    color: #0a1a1f;
}

.rating-label i {
    color: #f59e0b;
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.8s ease;
}

.rating-fill.five-star { background: #22c55e; }
.rating-fill.four-star { background: #3b82f6; }
.rating-fill.three-star { background: #f59e0b; }
.rating-fill.two-star { background: #f97316; }
.rating-fill.one-star { background: #ef4444; }

.rating-pct {
    min-width: 40px;
    font-size: 12px;
    color: #64748b;
    text-align: right;
}

/* ─── SIDEBAR ───────────────────────────────────────────────────── */
.sidebar-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.sidebar-title {
    font-size: 16px;
    font-weight: 700;
    color: #0a1a1f;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-title i {
    color: #1565c0;
}

/* Quick Actions */
.quick-action-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.quick-action {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: #0a1a1f;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.quick-action:hover {
    background: #f8fafc;
    border-color: #bbdefb;
    transform: translateX(4px);
    text-decoration: none;
    color: #0a1a1f;
}

.quick-action i:first-child {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    background: #dbeafe;
    color: #1e40af;
}

.quick-action span {
    flex: 1;
    font-weight: 500;
    font-size: 14px;
}

.quick-action i:last-child {
    color: #cbd5e1;
    transition: all 0.3s ease;
}

.quick-action:hover i:last-child {
    color: #1565c0;
    transform: translateX(4px);
}

/* Social Links */
.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    color: #fff;
    text-decoration: none;
}

.social-icon.facebook { background: #1877f2; }
.social-icon.twitter { background: #000; }
.social-icon.youtube { background: #ff0000; }
.social-icon.linkedin { background: #0a66c2; }
.social-icon.instagram { background: #e4405f; }
.social-icon.github { background: #181717; }
.social-icon.website { background: #1565c0; }

/* Profile Details */
.detail-item {
    display: flex;
    padding: 6px 0;
    border-bottom: 1px solid #f1f5f9;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 13px;
    color: #94a3b8;
    width: 80px;
    flex-shrink: 0;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #0a1a1f;
    font-weight: 500;
}

.status-verified {
    color: #16a34a;
}

.status-verified i {
    margin-right: 4px;
}

.status-unverified {
    color: #94a3b8;
}

/* Branding */
.branding-content {
    text-align: center;
    padding: 8px 0;
}

.branding-text {
    font-size: 13px;
    color: #94a3b8;
}

.branding-text strong {
    color: #1565c0;
}

/* Share Profile */
.share-url {
    font-size: 12px;
    color: #94a3b8;
    word-break: break-all;
    padding: 8px 12px;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 10px;
    font-family: monospace;
}

.btn-copy-url {
    color: #1565c0;
    border: 2px solid #1565c0;
    border-radius: 50px;
    padding: 6px 18px;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-copy-url:hover {
    background: #1565c0;
    color: #fff;
}

/* ─── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 992px) {
    .mentor-header-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px;
    }

    .mentor-avatar-wrapper {
        margin: 0 auto;
    }

    .mentor-avatar, .mentor-avatar-fallback {
        width: 100px;
        height: 100px;
    }

    .mentor-actions {
        text-align: center;
    }

    .mentor-rating {
        justify-content: center;
    }

    .mentor-buttons {
        justify-content: center;
    }

    .mentor-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-item {
        flex-direction: column;
        padding: 4px 0;
    }

    .portfolio-label {
        width: 100%;
        font-size: 11px;
    }

    .portfolio-value {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .mentor-cover {
        height: 200px;
    }

    .mentor-header {
        margin-top: -40px;
    }

    .mentor-avatar, .mentor-avatar-fallback {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }

    .mentor-name {
        font-size: 22px;
    }

    .mentor-title {
        font-size: 14px;
    }

    .mentor-meta {
        font-size: 12px;
        gap: 10px;
        justify-content: center;
    }

    .rating-stars {
        font-size: 16px;
    }

    .rating-score {
        font-size: 18px;
    }

    .btn-book-session, .btn-send-message, .btn-dashboard, .btn-edit-profile {
        padding: 8px 16px;
        font-size: 13px;
    }

    .mentor-section {
        padding: 16px;
    }

    .section-title {
        font-size: 18px;
    }

    .contact-info-grid {
        flex-direction: column;
    }

    .contact-item {
        width: 100%;
    }

    .services-tags {
        flex-direction: column;
        align-items: flex-start;
    }

    .offerings-badges {
        flex-direction: column;
    }

    .features-list {
        flex-direction: column;
    }

    .sidebar-card {
        padding: 16px;
    }

    .quick-action {
        padding: 8px 12px;
    }

    .quick-action i:first-child {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .mentor-cover {
        height: 150px;
    }

    .cover-badge {
        font-size: 0.6rem;
        padding: 3px 10px;
    }

    .mentor-header {
        margin-top: -30px;
    }

    .mentor-avatar, .mentor-avatar-fallback {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }

    .avatar-verified {
        width: 24px;
        height: 24px;
        font-size: 12px;
        bottom: 0;
        right: 0;
    }

    .mentor-name {
        font-size: 18px;
    }

    .mentor-title {
        font-size: 12px;
    }

    .mentor-location {
        font-size: 12px;
    }

    .mentor-meta {
        font-size: 11px;
        flex-direction: column;
        gap: 4px;
    }

    .mentor-rating {
        flex-wrap: wrap;
        justify-content: center;
    }

    .rating-stars {
        font-size: 14px;
    }

    .rating-score {
        font-size: 16px;
    }

    .rating-count {
        font-size: 11px;
    }

    .mentor-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-book-session, .btn-send-message, .btn-dashboard, .btn-edit-profile {
        width: 100%;
        justify-content: center;
    }

    .mentor-section {
        padding: 12px;
    }

    .section-title {
        font-size: 16px;
    }

    .section-content {
        font-size: 14px;
    }

    .portfolio-item {
        padding: 3px 0;
    }

    .portfolio-label {
        font-size: 10px;
    }

    .portfolio-value {
        font-size: 12px;
    }

    .service-tag {
        font-size: 11px;
        padding: 3px 10px;
    }

    .offering-badge {
        font-size: 11px;
        padding: 3px 10px;
    }

    .feature-item {
        font-size: 11px;
        padding: 2px 10px;
    }

    .rating-label {
        font-size: 11px;
        min-width: 36px;
    }

    .rating-pct {
        font-size: 10px;
        min-width: 32px;
    }
}
/* ─── Services Grid ────────────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}

.service-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #1565c0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.service-icon {
    font-size: 24px;
    color: #1565c0;
}

.service-name {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.badge-featured {
    font-size: 10px;
    background: #fef3c7;
    color: #92400e;
    padding: 2px 10px;
    border-radius: 50px;
    font-weight: 600;
}

.service-desc {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 10px 0;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-price {
    font-weight: 700;
    font-size: 18px;
    color: #0a1a1f;
}

.service-type {
    font-size: 12px;
    color: #94a3b8;
    text-transform: capitalize;
}

/* ─── Cohorts/Programs ────────────────────────────────────────── */
.cohorts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.cohort-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.cohort-card:hover {
    border-color: #1565c0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.cohort-thumb {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.cohort-info {
    padding: 16px;
}

.cohort-title {
    font-weight: 700;
    font-size: 16px;
    margin: 0 0 6px 0;
}

.cohort-desc {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 10px 0;
}

.cohort-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

.cohort-status {
    font-size: 11px;
    padding: 2px 10px;
    border-radius: 50px;
    font-weight: 600;
}

.cohort-status.upcoming { background: #dbeafe; color: #1e40af; }
.cohort-status.active { background: #dcfce7; color: #166534; }
.cohort-status.completed { background: #f1f5f9; color: #475569; }

.cohort-price {
    font-weight: 700;
    color: #1565c0;
}

.cohort-dates {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 12px;
}

.cohort-dates i {
    margin-right: 4px;
}

.btn-view {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1565c0;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
}

.btn-view:hover {
    text-decoration: underline;
    gap: 10px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1565c0;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 20px;
    border: 2px solid #1565c0;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: #1565c0;
    color: #fff;
    text-decoration: none;
    gap: 12px;
}

/* ─── Content Grid ────────────────────────────────────────────── */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.content-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.content-card:hover {
    border-color: #1565c0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.content-type {
    font-size: 10px;
    padding: 2px 10px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
}

.content-type.course { background: #dbeafe; color: #1e40af; }
.content-type.mcq { background: #ede9fe; color: #5b21b6; }
.content-type.saq { background: #fce7f3; color: #9d174d; }
.content-type.ebook { background: #fef3c7; color: #92400e; }
.content-type.video { background: #fce4ec; color: #c62828; }
.content-type.session { background: #e0f7fa; color: #00838f; }
.content-type.testbook { background: #e8f5e9; color: #2e7d32; }

.content-title {
    font-weight: 600;
    font-size: 14px;
    margin: 8px 0 4px 0;
}

.content-desc {
    font-size: 12px;
    color: #64748b;
    margin: 0 0 10px 0;
}

.content-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.content-price {
    font-weight: 700;
    color: #1565c0;
}

.content-rating {
    color: #f59e0b;
}

/* ─── Sessions ────────────────────────────────────────────────── */
.sessions-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.session-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.session-item:hover {
    border-color: #1565c0;
}

.session-date {
    text-align: center;
    min-width: 50px;
}

.session-day {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #0a1a1f;
    line-height: 1;
}

.session-month {
    display: block;
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
}

.session-info {
    flex: 1;
}

.session-title {
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}

.session-type {
    font-size: 12px;
    color: #1565c0;
    font-weight: 500;
}

.session-duration {
    font-size: 12px;
    color: #94a3b8;
    margin-left: 8px;
}

.session-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.session-fee {
    font-weight: 700;
    font-size: 16px;
    color: #0a1a1f;
}

.btn-book {
    padding: 6px 16px;
    border-radius: 50px;
    background: linear-gradient(135deg, #1565c0, #0d47a1);
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(21,101,192,0.3);
    color: #fff;
    text-decoration: none;
}

/* ─── MCQs & SAQs ────────────────────────────────────────────── */
.mcq-list, .saq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mcq-item, .saq-item {
    padding: 12px 16px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.mcq-question, .saq-question {
    font-weight: 500;
    font-size: 14px;
    display: block;
    margin-bottom: 4px;
}

.mcq-meta, .saq-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: #94a3b8;
}

.mcq-topic, .saq-topic {
    color: #1565c0;
}

.mcq-difficulty, .saq-difficulty {
    color: #f59e0b;
}

.mcq-options {
    color: #64748b;
}

/* ─── eBooks ──────────────────────────────────────────────────── */
.ebooks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.ebook-card {
    text-align: center;
    padding: 16px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.ebook-card:hover {
    border-color: #1565c0;
}

.ebook-icon {
    font-size: 40px;
    color: #1565c0;
    margin-bottom: 8px;
}

.ebook-title {
    font-weight: 600;
    font-size: 14px;
    margin: 0 0 4px 0;
}

.ebook-desc {
    font-size: 12px;
    color: #64748b;
    margin: 0 0 10px 0;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #1565c0;
    text-decoration: none;
    padding: 4px 14px;
    border: 2px solid #1565c0;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background: #1565c0;
    color: #fff;
    text-decoration: none;
}

/* ─── TestBooks ───────────────────────────────────────────────── */
.testbooks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.testbook-card {
    padding: 16px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.testbook-card:hover {
    border-color: #1565c0;
}

.testbook-title {
    font-weight: 600;
    font-size: 15px;
    margin: 0 0 4px 0;
}

.testbook-desc {
    font-size: 12px;
    color: #64748b;
    margin: 0 0 8px 0;
}

.testbook-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 8px;
}

.testbook-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testbook-price {
    font-weight: 700;
    font-size: 16px;
    color: #1565c0;
}

/* ─── Testimonials ───────────────────────────────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.testimonial-card {
    padding: 16px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #94a3b8;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 13px;
}

.testimonial-stars .icofont-star.filled {
    color: #f59e0b;
}

.testimonial-stars .icofont-star:not(.filled) {
    color: #cbd5e1;
}

.testimonial-text {
    font-size: 13px;
    color: #475569;
    margin: 0 0 8px 0;
    font-style: italic;
}

.testimonial-recommend {
    font-size: 12px;
    color: #16a34a;
    font-weight: 600;
}

/* ─── Badges ──────────────────────────────────────────────────── */
.badges-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.badge-card {
    text-align: center;
    padding: 12px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    min-width: 80px;
    transition: all 0.3s ease;
}

.badge-card:hover {
    border-color: #1565c0;
    transform: translateY(-2px);
}

.badge-icon {
    font-size: 32px;
    color: #f59e0b;
    margin-bottom: 4px;
}

.badge-name {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #0a1a1f;
}

.badge-date {
    display: block;
    font-size: 10px;
    color: #94a3b8;
}

.badges-mini {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge-mini {
    font-size: 28px;
    color: #f59e0b;
}

.badge-mini.more {
    font-size: 16px;
    font-weight: 700;
    color: #94a3b8;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 50px;
}

/* ─── Availability ───────────────────────────────────────────── */
.availability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
}

.availability-slot {
    padding: 8px 12px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.availability-slot .day {
    display: block;
    font-weight: 600;
    font-size: 13px;
    color: #0a1a1f;
}

.availability-slot .time {
    display: block;
    font-size: 12px;
    color: #64748b;
}

/* ─── Responsive ──────────────────────────────────────────────── */
@media (max-width: 768px) {
    .services-grid,
    .cohorts-grid,
    .content-grid,
    .ebooks-grid,
    .testbooks-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .session-item {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .session-date {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .session-day {
        font-size: 18px;
    }
    
    .session-actions {
        width: 100%;
        justify-content: flex-end;
    }
    
    .badges-grid {
        justify-content: center;
    }
    
    .availability-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
}