/**
 * Expert Profile V2 - World-Class UI/UX
 * Based on doctor profile layout with professional design
 */

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */

.expert-profile-v2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px;
    background: #F9FAFB;
}

.profile-back-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #F9FAFB;
    padding: 0px;
    margin: 0px;
    padding-left: 20px;
    padding-right: 0px;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
}

.profile-back-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom-color: #E5E7EB;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: transparent;
    border: none;
    color: #6B7280;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 6px;
}

.btn-back:hover {
    color: #111827;
    background: #F3F4F6;
}

.profile-container {
        display: grid;
    grid-template-columns: 1fr 360px;
    gap: 24px;
    align-items: start;
    padding: 0px 20px;
}

/* ========================================
   LEFT PANEL - MAIN CONTENT
   ======================================== */

.profile-left-panel {
    min-width: 0;
}

/* Header Section */
.profile-header {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
}

.header-flex {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.expert-photo-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    background: #F3F4F6;
    flex-shrink: 0;
}

.expert-photo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-initials-circle {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 600;
    color: #6B7280;
}

.expert-header-info {
    flex: 1;
    min-width: 0;
}

.name-badges-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.expert-name-main {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.2;
}

.badge-verified-inline,
.badge-ai-inline {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.badge-verified-inline {
    background: #ECFDF5;
    color: #059669;
}

.badge-ai-inline {
    background: #EFF6FF;
    color: #2563EB;
}

.expert-title-sub {
    font-size: 16px;
    color: #6B7280;
    margin: 0 0 12px 0;
}

.stats-inline-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #374151;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.stat-inline {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.star-filled {
    color: #F59E0B;
    fill: #F59E0B;
}

.stat-divider {
    color: #D1D5DB;
    font-weight: 300;
}

.trust-tagline {
    font-size: 15px;
    color: #6B7280;
    margin: 0 0 12px 0;
    line-height: 1.5;
}

/* Expertise tags now use base/components.css */

/* Profile Sections */
.profile-section {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s;
}

.profile-section:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 16px 0;
}

.section-subtitle {
    font-size: 14px;
    color: #6B7280;
    margin: 0 0 16px 0;
}

/* About Section */
.about-content {
    font-size: 15px;
    color: #374151;
    line-height: 1.6;
}

.about-summary {
    margin: 0 0 12px 0;
}

.about-summary:not(.expanded) {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-text-link {
    background: none;
    border: none;
    color: #2563EB;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
}

.btn-text-link:hover {
    color: #1D4ED8;
}

.ai-summary {
    margin-top: 16px;
    padding: 12px;
    background: #F9FAFB;
    border-left: 3px solid #2563EB;
    font-size: 14px;
    color: #6B7280;
    font-style: italic;
}

/* Smart Interaction Zone */
.interaction-zone-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
}

.interaction-zone-header {
    margin-bottom: 16px;
}

.interaction-cta-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.btn-primary-ai {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: #1A73E8;
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary-ai:hover {
    background: #1557B0;
}

.btn-secondary-request {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: #FFFFFF;
    color: #374151;
    border: 1px solid #D1D5DB;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary-request:hover {
    background: #F9FAFB;
    border-color: #9CA3AF;
}

/* Smart Request Categories Grid */
.smart-request-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.smart-category-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
}

.smart-category-card:hover {
    border-color: #1A73E8;
    box-shadow: 0 4px 16px rgba(26, 115, 232, 0.12);
    transform: translateY(-2px);
}

/* Icon wrappers now use base/components.css */

.smart-category-content {
    flex: 1;
    min-width: 0;
}

.smart-category-title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.smart-category-description {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
    line-height: 1.5;
}

/* Plans & Services */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.plan-card {
    background: #FFFFFF;
    border: 1.5px solid #E5E7EB;
    border-radius: 12px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.plan-card:hover {
    border-color: #1A73E8;
    box-shadow: 0 8px 24px rgba(26, 115, 232, 0.12);
    transform: translateY(-4px);
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.plan-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-type-badge.mentorship {
    background: #EEF2FF;
    color: #4F46E5;
}

.plan-type-badge.consultation {
    background: #F0FDF4;
    color: #16A34A;
}

.plan-type-badge.advisory {
    background: #FEF3C7;
    color: #D97706;
}

.plan-price {
    text-align: right;
}

.price-amount {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}

.price-cycle {
    display: block;
    font-size: 13px;
    color: #6B7280;
    margin-top: 2px;
}

.plan-name {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.3;
}

.plan-tagline {
    font-size: 14px;
    color: #1A73E8;
    font-weight: 500;
    margin: -8px 0 0 0;
    line-height: 1.4;
}

.plan-description {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid #F3F4F6;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #374151;
}

.feature-icon {
    width: 16px;
    height: 16px;
    color: #16A34A;
    flex-shrink: 0;
    margin-top: 2px;
}

.more-features {
    font-size: 12px;
    color: #6B7280;
    font-style: italic;
    margin-top: 4px;
}

.plan-availability {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 6px;
    font-size: 13px;
    color: #16A34A;
    font-weight: 500;
}

.availability-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.availability-text {
    line-height: 1;
}

.btn-view-plan {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: #1A73E8;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: auto;
}

.btn-view-plan:hover {
    background: #1557B0;
    transform: translateX(2px);
}

.btn-view-plan i {
    transition: transform 0.2s;
}

.btn-view-plan:hover i {
    transform: translateX(4px);
}

/* Expertise & Offerings */
.expertise-list-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.expertise-bullet {
    font-size: 15px;
    color: #374151;
    line-height: 1.6;
}

.expertise-bullet strong {
    font-weight: 600;
    color: #111827;
}

/* Testimonials */
.testimonials-horizontal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.testimonial-card-compact {
    padding: 16px;
    background: #F9FAFB;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
}

.testimonial-quote-compact {
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
    margin: 0 0 12px 0;
    font-style: italic;
}

.testimonial-author-compact {
    font-size: 13px;
    color: #6B7280;
}

.testimonial-author-compact strong {
    color: #111827;
    font-weight: 600;
}

.btn-view-all {
    background: none;
    border: none;
    color: #2563EB;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
}

.btn-view-all:hover {
    color: #1D4ED8;
}

/* Activity Metrics Bar */
.activity-metrics-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #F9FAFB;
    border-radius: 8px;
    font-size: 14px;
    color: #374151;
    flex-wrap: wrap;
}

.metric-bar-item {
    display: inline;
}

.metric-bar-item strong {
    font-weight: 600;
    color: #111827;
}

.metric-bar-divider {
    color: #D1D5DB;
}

/* ========================================
   RIGHT PANEL - STICKY SIDEBAR
   ======================================== */

.profile-right-panel {
    flex: 0 0 350px;
    position: sticky;
    top: 60px;
    height: fit-content;
    max-height: calc(100vh - 40px);
}

.right-panel-scrollable {
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f1f5f9;
}

.right-panel-scrollable::-webkit-scrollbar {
    width: 6px;
}

.right-panel-scrollable::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.right-panel-scrollable::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.right-panel-scrollable::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.action-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 16px;
}

.sticky-card {
    position: sticky;
    top: 80px;
}

/* Expert Info in Card */
.card-expert-info {
    text-align: center;
    margin-bottom: 20px;
}

.card-expert-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    background: #F3F4F6;
    margin: 0 auto 12px;
}

.card-expert-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-photo-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: #6B7280;
}

.card-expert-name {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 8px 0;
}

.card-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #059669;
}

/* Card Actions */
.card-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

/* Card buttons now use base/components.css */

/* Response Info */
.response-info {
    padding: 12px 0;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
    margin-bottom: 16px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6B7280;
    padding: 6px 0;
}

.info-icon {
    color: #9CA3AF;
}

.status-icon {
    width: 8px;
    height: 8px;
}

.status-icon.status-available {
    color: #10B981;
    fill: #10B981;
}

/* Card Divider */
.card-divider {
    height: 1px;
    background: #E5E7EB;
    margin: 16px 0;
}

/* Sidebar Help Section */
.sidebar-help-section {
    margin: 4px 0;
}

.sidebar-section-title {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.sidebar-categories-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar-category-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
}

.sidebar-category-item:hover {
    background: #FFFFFF;
    border-color: #1A73E8;
    box-shadow: 0 2px 8px rgba(26, 115, 232, 0.1);
}

.sidebar-category-icon {
    width: 18px;
    height: 18px;
    color: #1A73E8;
    flex-shrink: 0;
}

.sidebar-category-name {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    line-height: 1.3;
}

.sidebar-category-item:hover .sidebar-category-name {
    color: #111827;
}

/* Secondary Actions */
.secondary-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.action-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    background: none;
    border: none;
    color: #374151;
    font-size: 14px;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
}

.action-link:hover {
    color: #1A73E8;
}

/* Stats Summary */
.stats-summary {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.stat-label {
    color: #6B7280;
}

.stat-value {
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Related Experts */
.related-experts {
    margin-top: 16px;
}

.related-title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 12px 0;
}

.related-expert-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 8px;
}

.related-expert-card:hover {
    background: #F9FAFB;
}

.related-expert-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: #F3F4F6;
    flex-shrink: 0;
}

.related-expert-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-photo-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: #6B7280;
}

.related-expert-info {
    flex: 1;
    min-width: 0;
}

.related-expert-name {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 2px 0;
}

.related-expert-title {
    font-size: 12px;
    color: #6B7280;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Footer */
.profile-footer {
    text-align: center;
    padding: 12px 0;
}

.profile-footer .btn-text-link {
    color: #9CA3AF;
    font-size: 13px;
}

.profile-footer .btn-text-link.muted:hover {
    color: #6B7280;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .profile-container {
        grid-template-columns: 1fr;
    }
    
    .profile-right-panel {
        position: static;
    }
    
    .smart-request-categories-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .expert-profile-v2 {
        padding: 16px 20px;
    }
    
    .header-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .interaction-cta-buttons {
        flex-direction: column;
    }
    
    .smart-request-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-horizontal {
        grid-template-columns: 1fr;
    }
    
    .modal-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .smart-request-modal {
        max-height: 95vh;
    }
}

/* Icon Sizes */
.icon-xs {
    width: 14px;
    height: 14px;
}

.icon-sm {
    width: 16px;
    height: 16px;
}

.icon-md {
    width: 20px;
    height: 20px;
}

/* ========================================
   NEW IMPROVEMENTS - GAP ANALYSIS FIXES
   ======================================== */

/* Section Helper Text */
.section-helper-text {
    font-size: 14px;
    color: #6B7280;
    margin: -8px 0 16px 0;
    font-style: italic;
}

/* Interaction Prompt */
.interaction-prompt {
    font-size: 14px;
    color: #6B7280;
    margin: 16px 0;
    padding: 12px;
    background: #F9FAFB;
    border-left: 3px solid #1A73E8;
    border-radius: 4px;
}

/* CTA Button Improvements - 48px height */
.btn-primary-ai,
.btn-secondary-request {
    height: 48px;
    font-size: 15px;
}

.btn-primary-ai:disabled {
    background: #9CA3AF;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Expertise Grid - 2 Columns */
.expertise-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.expertise-item-clickable {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.expertise-item-clickable:hover {
    background: #FFFFFF;
    border-color: #1A73E8;
    box-shadow: 0 2px 8px rgba(26, 115, 232, 0.1);
}

.expertise-check-icon {
    width: 16px;
    height: 16px;
    color: #10B981;
    flex-shrink: 0;
    margin-top: 2px;
}

.expertise-content {
    flex: 1;
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
}

.expertise-content strong {
    color: #111827;
    font-weight: 600;
}

.expertise-divider {
    color: #D1D5DB;
    margin: 0 6px;
}

/* Work Experience & Education */
.section-header-with-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 16px; */
}

.section-title-with-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.section-title-with-icon .section-title {
    margin: 0;
}

.section-icon {
    width: 20px;
    height: 20px;
    color: #1A73E8;
    flex-shrink: 0;
    margin-top: -12px;
}

.btn-toggle {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #6B7280;
    transition: color 0.2s;
}

.btn-toggle:hover {
    color: #111827;
}

.section-action-buttons {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    gap: 8px;
    align-items: center;
    z-index: 10;
}

/* Experience List */
.experience-list,
.education-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.experience-item,
.education-item {
    padding-left: 30px;
    position: relative;
}

.experience-item::before,
.education-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    background: #1A73E8;
    border-radius: 50%;
}

.experience-header,
.education-degree {
    font-size: 15px;
    color: #111827;
    margin-bottom: 8px;
}

.experience-role,
.education-degree {
    font-weight: 600;
}

.experience-company,
.education-institution {
    color: #374151;
}

.experience-years,
.education-year {
    color: #6B7280;
    font-size: 14px;
}

.experience-divider,
.education-divider {
    color: #D1D5DB;
    margin: 0 6px;
}

.experience-achievements {
    margin: 8px 0 0 0;
    padding-left: 20px;
    list-style: disc;
}

.experience-achievements li {
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
    margin-bottom: 4px;
}

.education-specialization,
.education-description {
    font-size: 14px;
    color: #6B7280;
    margin: 4px 0 0 0;
    font-style: italic;
}

.experience-location {
    font-size: 13px;
    color: #6B7280;
    margin: 4px 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.experience-description {
    font-size: 14px;
    color: #374151;
    margin: 8px 0 0 0;
    line-height: 1.5;
}

/* Portfolio / Notable Work */
.portfolio-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.portfolio-item {
    padding: 16px;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
}

.portfolio-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

.portfolio-title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

.portfolio-role {
    font-size: 14px;
    color: #1A73E8;
    font-weight: 500;
}

.portfolio-description,
.portfolio-contribution {
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
    margin: 8px 0;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #1A73E8;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    margin-top: 8px;
}

.portfolio-link:hover {
    text-decoration: underline;
}

/* Testimonial Actions */
.testimonial-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #E5E7EB;
}

.btn-share-feedback {
    background: none;
    border: 1px solid #1A73E8;
    color: #1A73E8;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-share-feedback:hover {
    background: #EFF6FF;
}

/* Metrics with Icons */
.metric-icon {
    width: 16px;
    height: 16px;
    color: #1A73E8;
    margin-right: 6px;
}

/* Response Rate Progress Bar */
.response-rate-bar {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #E5E7EB;
}

.response-rate-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    color: #374151;
}

.response-rate-label strong {
    color: #1A73E8;
    font-weight: 600;
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background: #E5E7EB;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #1A73E8 0%, #4285F4 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Secondary Actions Grid */
.secondary-actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.action-btn-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 8px;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 12px;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s;
}

.action-btn-icon:hover {
    background: #FFFFFF;
    border-color: #1A73E8;
    color: #1A73E8;
}

.action-btn-icon.active {
    background: #EFF6FF;
    border-color: #1A73E8;
    color: #1A73E8;
}

.action-btn-icon .icon-md.filled {
    fill: #1A73E8;
}

/* Header Action Icons */
.header-action-icons {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    gap: 8px;
}

.icon-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #6B7280;
}

.icon-action-btn:hover {
    background: #F9FAFB;
    border-color: #1A73E8;
    color: #1A73E8;
}

.icon-action-btn .icon-filled {
    fill: #EF4444;
    color: #EF4444;
}

/* Location in Header */
.expert-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #6B7280;
    margin: 8px 0 12px 0;
}

/* About Section Improvements */
.about-text {
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
    margin: 0;
}

.about-collapsed {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 12px;
    padding: 6px 12px;
    background: transparent;
    border: none;
    color: #1A73E8;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-read-more:hover {
    background: #EFF6FF;
    border-radius: 6px;
}

/* Smart Request Modal */
.smart-request-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.smart-request-modal {
    background: #FFFFFF;
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid #E5E7EB;
}

.modal-title {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.modal-close-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: #6B7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.modal-close-btn:hover {
    background: #F3F4F6;
    color: #111827;
}

.modal-body {
    padding: 24px;
}

.modal-section {
    margin-bottom: 24px;
}

.modal-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 8px 0;
}

.modal-section-subtitle {
    font-size: 14px;
    color: #6B7280;
    margin: 0 0 20px 0;
}

.modal-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.modal-category-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #F9FAFB;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
}

.modal-category-card:hover {
    background: #FFFFFF;
    border-color: #1A73E8;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.12);
}

.modal-category-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #EFF6FF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modal-category-icon {
    width: 20px;
    height: 20px;
    color: #1A73E8;
}

.modal-category-content {
    flex: 1;
    min-width: 0;
}

.modal-category-title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 4px 0;
}

.modal-category-description {
    font-size: 12px;
    color: #6B7280;
    margin: 0;
    line-height: 1.4;
}

.selected-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #1A73E8;
}

.change-category-btn {
    margin-left: 8px;
    padding: 4px 8px;
    background: transparent;
    border: 1px solid #1A73E8;
    border-radius: 6px;
    color: #1A73E8;
    font-size: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s;
}

.change-category-btn:hover {
    background: #1A73E8;
    color: #FFFFFF;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.optional-label {
    font-weight: 400;
    color: #9CA3AF;
    font-size: 13px;
}

.form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: #111827;
    resize: vertical;
    transition: all 0.2s;
}

.form-textarea:focus {
    outline: none;
    border-color: #1A73E8;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.form-hint {
    font-size: 12px;
    color: #6B7280;
    margin: 6px 0 0 0;
    font-style: italic;
}

.routing-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: #F9FAFB;
    border-radius: 8px;
    font-size: 13px;
    color: #6B7280;
}

.modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px 24px;
    border-top: 1px solid #E5E7EB;
}

.btn-modal-secondary {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-modal-secondary:hover {
    background: #F3F4F6;
    border-color: #9CA3AF;
}

.btn-modal-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #1A73E8;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-modal-primary:hover {
    background: #1557B0;
}

.btn-modal-primary:disabled {
    background: #D1D5DB;
    cursor: not-allowed;
}

/* Responsive Improvements */
@media (max-width: 1280px) {
    .profile-container {
        gap: 20px;
    }
    
    .profile-right-panel {
        width: 320px;
    }
}

@media (max-width: 1024px) {
    .expertise-grid-2col {
        grid-template-columns: 1fr;
    }
    
    .secondary-actions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .btn-primary-ai,
    .btn-secondary-request {
        height: 44px;
        font-size: 14px;
    }
    
    .testimonial-actions {
        flex-direction: column;
    }
}

/* ========================================
   NEWLY ADDED SECTIONS - MISSING INFORMATION
   ======================================== */

/* Industries Display */
.industries-display {
    font-size: 13px;
    color: #6B7280;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin: 12px 0 0 0;
    padding: 8px 12px;
    background: #F3F4F6;
    border-radius: 6px;
    display: inline-block;
}

/* Hero Highlights Grid */
.hero-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #E5E7EB;
}

/* Force single row for hero highlights */
@media (min-width: 769px) {
    .hero-highlights-grid {
        grid-auto-flow: column;
        grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    }
}

.highlight-card-compact {
    background: #FFFFFF;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    transition: all 0.2s;
}

.highlight-card-compact:hover {
    border-color: #1A73E8;
    box-shadow: 0 2px 8px rgba(26, 115, 232, 0.1);
}

.highlight-label {
    font-size: 11px;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 4px 0;
    font-weight: 600;
}

.highlight-value {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

/* Social Links Row */
.social-links-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #E5E7EB;
}

/* Social link buttons now use base/components.css */

/* Proof Points Grid */
.proof-points-card {
    background: linear-gradient(135deg, #EFF6FF 0%, #F9FAFB 100%);
    border: 1px solid #BFDBFE;
}

.proof-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

/* Force single row for proof points on desktop */
@media (min-width: 769px) {
    .proof-points-grid {
        grid-auto-flow: column;
        grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    }
}

.proof-point-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 10px;
    border: 1px solid #E5E7EB;
    transition: all 0.2s;
}

.proof-point-item:hover {
    border-color: #1A73E8;
    box-shadow: 0 4px 16px rgba(26, 115, 232, 0.12);
    transform: translateY(-2px);
}

.proof-icon {
    width: 48px;
    height: 48px;
    padding: 12px;
    background: linear-gradient(135deg, #1A73E8 0%, #1557B0 100%);
    color: #FFFFFF;
    border-radius: 10px;
    flex-shrink: 0;
}

.proof-content {
    flex: 1;
    min-width: 0;
}

.proof-label {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 6px 0;
}

.proof-description {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.5;
    margin: 0;
}

/* About Section - Achievements */
.about-achievements {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #E5E7EB;
}

.achievements-title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 16px 0;
}

.achievements-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.achievements-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: #FFFBEB;
    border-left: 3px solid #F59E0B;
    border-radius: 6px;
}

.achievement-icon {
    color: #F59E0B;
    flex-shrink: 0;
    margin-top: 2px;
}

.achievements-list li span {
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
}

/* How It Works Section */
.how-it-works-card {
    background: #FFFFFF;
}

.how-it-works-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px;
    grid-auto-rows: 1fr;
}

/* Tablet: Keep 3 columns but allow smaller cards */
@media (max-width: 1024px) {
    .how-it-works-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 16px;
    }
}

/* Mobile: Stack vertically */
@media (max-width: 768px) {
    .how-it-works-grid {
        grid-template-columns: 1fr !important;
    }
}

.how-step-card {
    position: relative;
    padding: 24px;
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    transition: all 0.2s;
}

.how-step-card:hover {
    border-color: #1A73E8;
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.12);
    transform: translateY(-4px);
}

.step-number {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1A73E8;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
}

.step-icon-wrapper {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    margin-bottom: 16px;
}

.step-icon {
    width: 28px;
    height: 28px;
    color: #1A73E8;
}

.step-title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 8px 0;
}

.step-description {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.5;
    margin: 0;
}

/* FAQs Section */
.faqs-card {
    background: #FFFFFF;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    overflow: hidden;
    background: #FFFFFF;
    transition: all 0.2s;
}

.faq-item:hover {
    border-color: #1A73E8;
    box-shadow: 0 2px 8px rgba(26, 115, 232, 0.08);
}

.faq-question-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
}

.faq-question-btn:hover {
    background: #F9FAFB;
}

.faq-question-text {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    flex: 1;
}

.faq-chevron {
    width: 20px;
    height: 20px;
    color: #6B7280;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.faq-chevron-open {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px 16px 20px;
    animation: fadeIn 0.2s ease;
}

.faq-answer p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header Action Icons */
.header-action-icons {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    gap: 8px;
}

.icon-action-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.icon-action-btn:hover {
    background: #FFFFFF;
    border-color: #1A73E8;
    transform: scale(1.05);
}

.icon-action-btn .icon-filled {
    fill: #EF4444;
    color: #EF4444;
}

/* Responsive Adjustments for New Sections */
@media (max-width: 1024px) {
    .hero-highlights-grid {
        grid-auto-flow: row;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .proof-points-grid {
        grid-auto-flow: row;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .expert-profile-v2 {
        padding: 16px 20px;
    }
    
    .profile-back-nav {
        margin: -16px -20px 0px -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-highlights-grid {
        grid-auto-flow: row;
        grid-template-columns: 1fr;
    }
    
    .social-links-row {
        flex-direction: column;
    }
    
    .social-link-btn {
        justify-content: center;
    }
    
    .proof-points-grid {
        grid-auto-flow: row;
        grid-template-columns: 1fr;
    }
    
    .proof-point-item {
        flex-direction: column;
        text-align: center;
    }
    
    .how-step-card {
        padding: 20px;
    }
    
    .step-number {
        top: 12px;
        right: 12px;
    }
}

/* ========================================
   MEETING BOOKING SECTION
   ======================================== */

.meeting-booking-section {
    margin-bottom: 0;
}

.section-title-primary {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title-primary .icon-sm {
    width: 18px;
    height: 18px;
    color: #3b82f6;
}

.empty-state-text {
    font-size: var(--text-base);
    color: var(--color-gray-600);
    text-align: center;
    padding: var(--space-5) var(--space-4);
    margin: 0;
    line-height: var(--leading-normal);
}

.empty-state-text .icon-sm {
    display: block;
    margin: 0 auto var(--space-2);
    width: 24px;
    height: 24px;
    color: var(--color-gray-400);
}

.empty-state-text-below {
    font-size: var(--text-sm);
    color: var(--color-gray-500);
    text-align: center;
    margin: var(--space-3) 0 0 0;
    line-height: var(--leading-normal);
}

/* Secondary Actions */
.secondary-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-secondary-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: white;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    font-size: var(--text-lg);
    font-weight: var(--font-medium);
    color: var(--color-gray-700);
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-secondary-action:hover {
    border-color: var(--color-primary-500);
    background: var(--color-primary-50);
    color: var(--color-primary-600);
}

.btn-secondary-action .icon-sm {
    width: 18px;
    height: 18px;
}

.btn-secondary-action.btn-disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: var(--color-gray-50);
    color: var(--color-gray-500);
    border-color: var(--color-gray-200);
}

.btn-secondary-action.btn-disabled:hover {
    background: var(--color-gray-50);
    color: var(--color-gray-500);
    border-color: var(--color-gray-200);
}

.meeting-slots-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.meeting-slot-card {
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 14px 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.meeting-slot-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.slot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slot-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}

.slot-duration .icon-xs {
    width: 16px;
    height: 16px;
    color: #64748b;
}

.slot-price {
    display: flex;
    align-items: center;
}

.price-badge {
    font-size: 13px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 6px;
}

.price-badge.paid {
    background: #fef3c7;
    color: #92400e;
}

.price-badge.free {
    background: #dcfce7;
    color: #166534;
}

/* Booking View */
.meeting-booking-view {
    margin-top: 16px;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-back-booking {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    color: #3b82f6;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    padding: 6px 0;
    margin-bottom: 12px;
    transition: all 0.2s;
}

.btn-back-booking:hover {
    color: #2563eb;
}

.selected-slot-info {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 16px;
}

.slot-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.slot-info-duration {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
}

.slot-info-price {
    font-size: 13px;
    font-weight: 700;
    color: #92400e;
}

.slot-info-price.free {
    color: #166534;
}

.slot-info-title {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.booking-section-label {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 10px;
}

/* Date Scroller */
.date-scroller-section {
    margin-bottom: 16px;
}

.date-scroller {
    display: flex;
    align-items: center;
    gap: 8px;
}

.date-nav-btn {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    color: #64748b;
}

.date-nav-btn:hover:not(:disabled) {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #475569;
}

.date-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.date-cards-container {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.date-cards-container::-webkit-scrollbar {
    display: none;
}

.date-card {
    flex-shrink: 0;
    width: 60px;
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 6px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.date-card:hover {
    border-color: #3b82f6;
    background: #f0f9ff;
}

.date-card.selected {
    border-color: #3b82f6;
    background: #3b82f6;
    color: #ffffff;
}

.date-day {
    font-size: 10px;
    font-weight: 500;
    color: inherit;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.date-number {
    font-size: 16px;
    font-weight: 700;
    color: inherit;
    margin-bottom: 2px;
}

.date-month {
    font-size: 10px;
    font-weight: 500;
    color: inherit;
    text-transform: uppercase;
}

.date-card.selected .date-day,
.date-card.selected .date-number,
.date-card.selected .date-month {
    color: #ffffff;
}

/* Time Slots */
.time-slots-section {
    margin-bottom: 16px;
}

.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    font-size: 12px;
    color: #64748b;
}

.spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.time-slot-btn {
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    border-radius: 6px;
    padding: 10px 8px;
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.time-slot-btn:hover:not(:disabled) {
    border-color: #3b82f6;
    background: #f0f9ff;
    color: #3b82f6;
}

.time-slot-btn.selected {
    border-color: #3b82f6;
    background: #3b82f6;
    color: #ffffff;
}

.time-slot-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f8fafc;
}

/* Full Calendar Link */
.full-calendar-link {
    margin-bottom: 16px;
    text-align: center;
}

.btn-link-calendar {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #3b82f6;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s;
}

.btn-link-calendar:hover {
    background: #f0f9ff;
    color: #2563eb;
}

/* Book Button */
.btn-book-meeting {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #3b82f6;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-book-meeting:hover:not(:disabled) {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-book-meeting:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
    .date-card {
        width: 55px;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
