﻿/* TalentHub/css/upgrades.css â€” Fuma Technologies Premium Upgrade Styles v3
   Add-on to talenthub.css â€” covers all new feature UI
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   1. TOAST SYSTEM
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.toast-container {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #1a1a24;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 13px 16px;
    min-width: 240px;
    max-width: 360px;
    font-size: 0.88rem;
    color: #f0f0f5;
    pointer-events: all;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.toast.visible  { opacity: 1; transform: translateY(0); }
.toast.hiding   { opacity: 0; transform: translateY(6px); }

.toast-success { border-color: rgba(34,197,94,0.3);  border-left: 3px solid #22c55e; }
.toast-error   { border-color: rgba(239,68,68,0.3);  border-left: 3px solid #ef4444; }
.toast-warning { border-color: rgba(251,191,36,0.3); border-left: 3px solid #fbbf24; }
.toast-info    { border-color: rgba(59,130,246,0.3); border-left: 3px solid #3b82f6; }

.toast-success .toast-icon { color: #22c55e; }
.toast-error   .toast-icon { color: #ef4444; }
.toast-warning .toast-icon { color: #fbbf24; }
.toast-info    .toast-icon { color: #3b82f6; }

.toast-msg  { flex: 1; line-height: 1.4; }
.toast-close {
    background: none; border: none; color: #7a7a96;
    font-size: 0.75rem; cursor: pointer; padding: 2px 4px;
    border-radius: 4px; transition: color 0.2s;
}
.toast-close:hover { color: #f0f0f5; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   2. NOTIFICATION PANEL
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.notif-wrap {
    position: relative;
}

.notif-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 340px;
    background: #111118;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    z-index: 500;
    opacity: 0;
    transform: translateY(-8px) scale(0.97);
    pointer-events: none;
    transition: all 0.2s ease;
    overflow: hidden;
}
.notif-panel.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.notif-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.notif-header h4 {
    font-family: 'Syne', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
}
.notif-mark-all {
    background: none; border: none;
    color: var(--primary, #FF6F00);
    font-size: 0.75rem; cursor: pointer;
    font-family: 'DM Sans', sans-serif;
}

.notif-panel-body { max-height: 380px; overflow-y: auto; scrollbar-width: thin; }

.notif-loading {
    display: flex; align-items: center; justify-content: center;
    padding: 2rem; color: var(--primary, #FF6F00);
}

.notif-empty {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 2.5rem 1rem; text-align: center;
    color: #7a7a96;
}
.notif-empty i { font-size: 2rem; margin-bottom: 0.75rem; opacity: 0.4; }
.notif-empty p { font-size: 0.9rem; margin-bottom: 0.25rem; color: #a0a0b8; }
.notif-empty small { font-size: 0.78rem; }

.notif-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    cursor: pointer;
    transition: background 0.2s;
    position: relative;
}
.notif-item:hover { background: rgba(255,255,255,0.03); }
.notif-item.unread { background: rgba(255,111,0,0.04); }

.notif-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
}
.notif-type-message { background: rgba(59,130,246,0.15); color: #3b82f6; }
.notif-type-review  { background: rgba(251,191,36,0.15); color: #fbbf24; }
.notif-type-project { background: rgba(255,111,0,0.15);  color: #FF6F00; }
.notif-type-system  { background: rgba(255,255,255,0.08); color: #a0a0b8; }

.notif-content { flex: 1; min-width: 0; }
.notif-content strong { display: block; font-size: 0.85rem; color: #f0f0f5; margin-bottom: 2px; }
.notif-content p { font-size: 0.78rem; color: #7a7a96; margin: 0 0 4px; line-height: 1.3; }
.notif-time { font-size: 0.72rem; color: #5a5a72; }

.notif-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--primary, #FF6F00);
    flex-shrink: 0; margin-top: 6px;
}

.notif-badge {
    position: absolute; top: -6px; right: -8px;
    background: #ef4444; color: white;
    font-size: 0.6rem; padding: 2px 5px;
    border-radius: 10px; font-weight: 700;
    border: 2px solid var(--bg, #08080c);
    min-width: 10px; text-align: center;
    display: none;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   3. TRUST / REVIEWS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.ts-reviews-wrap { padding: 0.5rem 0; }

.ts-reviews-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 12px;
}

.ts-big-score {
    display: flex;
    align-items: center;
    gap: 14px;
}
.ts-score-num {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text, #f0f0f5);
    line-height: 1;
}
.ts-score-right { display: flex; flex-direction: column; gap: 4px; }
.ts-stars-display { display: flex; gap: 2px; }
.ts-star-filled { color: #fbbf24; font-size: 0.9rem; }
.ts-star-empty  { color: #3a3a4a; font-size: 0.9rem; }
.ts-review-count { font-size: 0.8rem; color: var(--muted, #7a7a96); }

.ts-badges-row { margin-top: 0.75rem; }
.ts-trust-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.25);
    color: #22c55e;
    padding: 4px 12px; border-radius: 20px;
    font-size: 0.75rem; font-weight: 600;
}

.ts-write-btn { margin-left: auto; }

/* Write Review Form */
.ts-form-wrap { margin-bottom: 1.5rem; }
.ts-form {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 1.25rem;
}
.ts-form h4 { font-size: 0.9rem; margin-bottom: 1rem; color: var(--text, #f0f0f5); }

.ts-star-input {
    display: flex; gap: 6px; margin-bottom: 1rem;
}
.ts-star-btn {
    background: none; border: none; cursor: pointer;
    font-size: 1.5rem; color: #3a3a4a;
    transition: color 0.15s, transform 0.15s;
    padding: 2px;
}
.ts-star-btn:hover,
.ts-star-btn.active { color: #fbbf24; transform: scale(1.15); }

.ts-textarea {
    width: 100%; padding: 12px;
    background: var(--bg, #08080c);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px; color: var(--text, #f0f0f5);
    font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
    resize: vertical; outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.ts-textarea:focus { border-color: var(--primary, #FF6F00); }
.ts-textarea::placeholder { color: rgba(255,255,255,0.25); }

.ts-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.75rem;
    flex-wrap: wrap; gap: 8px;
}
.ts-char-count { font-size: 0.75rem; color: var(--muted, #7a7a96); }

/* Review cards */
.ts-review-list { display: flex; flex-direction: column; gap: 14px; }

.ts-review-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    transition: border-color 0.2s;
}
.ts-review-card:hover { border-color: rgba(255,255,255,0.12); }

.ts-review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.75rem;
}
.ts-reviewer-avatar {
    width: 36px; height: 36px;
    border-radius: 50%; object-fit: cover;
    border: 2px solid rgba(255,255,255,0.08);
}
.ts-reviewer-info { flex: 1; }
.ts-reviewer-info strong { display: block; font-size: 0.88rem; color: var(--text, #f0f0f5); }
.ts-reviewer-info span  { font-size: 0.75rem; color: var(--muted, #7a7a96); }
.ts-review-stars { display: flex; gap: 2px; }
.ts-review-text { font-size: 0.85rem; color: #a0a0b8; line-height: 1.5; margin: 0; }

.ts-empty-reviews {
    text-align: center; padding: 2rem;
    color: var(--muted, #7a7a96);
}
.ts-empty-reviews i { font-size: 2rem; margin-bottom: 0.75rem; opacity: 0.3; }
.ts-empty-reviews p { font-size: 0.88rem; }

.ts-review-card-skeleton {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   4. MONETIZATION / UPGRADE MODAL
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.upgrade-overlay {
    position: fixed;
    inset: 0;
    z-index: 9500;
    background: rgba(6,6,10,0.9);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.upgrade-overlay.visible { opacity: 1; }

.upgrade-modal {
    background: #111118;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 820px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: none;
    box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}
.upgrade-modal::-webkit-scrollbar { display: none; }

.upgrade-close {
    position: absolute; top: 16px; right: 16px;
    background: rgba(255,255,255,0.06); border: none;
    color: #7a7a96; width: 32px; height: 32px;
    border-radius: 50%; cursor: pointer; font-size: 0.85rem;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.upgrade-close:hover { background: rgba(255,255,255,0.12); color: #f0f0f5; }

.upgrade-header { text-align: center; margin-bottom: 2rem; }
.upgrade-badge-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, rgba(255,111,0,0.2), rgba(255,154,60,0.1));
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem; color: #FF6F00;
}
.upgrade-header h2 {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem; font-weight: 800;
    margin-bottom: 0.5rem;
}
.upgrade-header p { color: #7a7a96; font-size: 0.92rem; }

.upgrade-pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 1.5rem;
}
@media (max-width: 640px) {
    .upgrade-pricing { grid-template-columns: 1fr; }
}

.pricing-card {
    background: #0d0d14;
    border: 1.5px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 1.5rem 1.25rem;
    position: relative;
    transition: border-color 0.2s, transform 0.2s;
}
.pricing-card:hover { border-color: rgba(255,111,0,0.3); transform: translateY(-2px); }
.pricing-card.featured {
    border-color: rgba(255,111,0,0.4);
    background: rgba(255,111,0,0.04);
}

.pricing-popular {
    position: absolute; top: -11px; left: 50%;
    transform: translateX(-50%);
    background: var(--primary, #FF6F00);
    color: white; font-size: 0.7rem; font-weight: 700;
    padding: 3px 12px; border-radius: 20px; white-space: nowrap;
}
.pricing-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: #7a7a96; margin-bottom: 0.5rem; }
.pricing-price {
    font-family: 'Syne', sans-serif;
    font-size: 2rem; font-weight: 800;
    color: #f0f0f5; margin-bottom: 0.25rem;
}
.pricing-price span { font-size: 0.9rem; color: #7a7a96; font-weight: 400; }
.pricing-saving { font-size: 0.75rem; color: #22c55e; margin-bottom: 1rem; }

.pricing-features {
    list-style: none; margin: 0.75rem 0 1.25rem;
    display: flex; flex-direction: column; gap: 8px;
}
.pricing-features li {
    font-size: 0.82rem; color: #a0a0b8;
    display: flex; align-items: center; gap: 8px;
}
.pricing-features li i { color: #22c55e; font-size: 0.7rem; flex-shrink: 0; }

.upgrade-cta {
    width: 100%; padding: 11px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #f0f0f5; font-size: 0.88rem; font-weight: 600;
    cursor: pointer; font-family: 'DM Sans', sans-serif;
    transition: all 0.2s;
}
.upgrade-cta:hover { background: rgba(255,255,255,0.1); }
.upgrade-cta-primary {
    background: var(--primary, #FF6F00);
    border-color: var(--primary, #FF6F00);
    box-shadow: 0 4px 16px rgba(255,111,0,0.3);
}
.upgrade-cta-primary:hover { filter: brightness(1.1); }

.upgrade-note {
    text-align: center;
    font-size: 0.78rem; color: #5a5a72;
    display: flex; align-items: center; justify-content: center; gap: 6px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   5. PERSONALIZED STRIP
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#personalized-strip {
    background: var(--bg-card, #111118);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius, 14px);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    display: none;
}

.ps-header {
    display: flex; align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.ps-header h3 {
    font-family: 'Syne', sans-serif;
    font-size: 0.9rem; font-weight: 700;
    display: flex; align-items: center; gap: 8px;
}
.ps-see-all {
    font-size: 0.78rem; color: var(--primary, #FF6F00);
    text-decoration: none;
}

.ps-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}
.ps-scroll::-webkit-scrollbar { display: none; }

.ps-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 90px;
    text-decoration: none;
    padding: 10px 8px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.02);
    transition: all 0.2s;
    flex-shrink: 0;
}
.ps-card:hover { border-color: rgba(255,111,0,0.3); background: rgba(255,111,0,0.05); transform: translateY(-2px); }
.ps-avatar {
    width: 48px; height: 48px;
    border-radius: 50%; object-fit: cover;
    border: 2px solid rgba(255,255,255,0.08);
}
.ps-info { text-align: center; }
.ps-info strong { display: block; font-size: 0.75rem; color: #f0f0f5; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 74px; }
.ps-info span   { display: block; font-size: 0.68rem; color: #7a7a96; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 74px; }
.pc-rating { font-size: 0.68rem; color: #fbbf24; margin-top: 2px; display: flex; align-items: center; gap: 3px; justify-content: center; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   6. EMPTY STATE SUGGESTIONS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#empty-suggestions { margin-top: 1.5rem; }
.empty-state-suggestions { text-align: center; padding: 1rem; }
.empty-state-suggestions h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem; margin-bottom: 1rem; color: #a0a0b8;
}
.ess-grid {
    display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.ess-card {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    text-decoration: none;
    color: #a0a0b8; font-size: 0.85rem;
    transition: all 0.2s;
    min-width: 120px;
}
.ess-card i { font-size: 1.5rem; color: var(--ess-color, #FF6F00); }
.ess-card:hover { border-color: var(--ess-color, #FF6F00); color: var(--ess-color, #FF6F00); transform: translateY(-2px); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   7. CARD UPGRADES (rating, online dot, boost badge)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.card-rating {
    display: flex; align-items: center; gap: 4px;
    margin-bottom: 6px; font-size: 0.78rem;
    color: #f0f0f5;
}
.rating-count { color: var(--muted, #7a7a96); }

.card-online-dot {
    position: absolute;
    bottom: 2px; right: 2px;
    width: 12px; height: 12px;
    background: #22c55e;
    border: 2px solid var(--bg-card, #111118);
    border-radius: 50%;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   8. PROFILE PAGE UPGRADES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.ph-online-dot {
    position: absolute;
    bottom: 4px; right: 4px;
    width: 14px; height: 14px;
    background: #22c55e;
    border: 2.5px solid var(--bg-card, #111118);
    border-radius: 50%;
    display: block;
}

/* Rating in hero */
#p-hero-rating {
    display: none;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #f0f0f5;
    margin-top: 0.5rem;
}
#p-hero-rating strong { font-family: 'Syne', sans-serif; font-size: 1rem; }
#p-hero-rating span { color: var(--muted, #7a7a96); font-size: 0.78rem; }

/* Quick Info items */
.qi-item {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.85rem; color: #a0a0b8;
}
.qi-item:last-child { border-bottom: none; }
.qi-item i { width: 16px; text-align: center; color: var(--muted, #7a7a96); }

/* Socials on profile */
.social-link {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    color: #a0a0b8;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s;
}
.social-link:hover { background: rgba(255,111,0,0.1); border-color: rgba(255,111,0,0.3); color: var(--primary, #FF6F00); }

/* Stats row */
.stats-row {
    display: flex; gap: 1rem; flex-wrap: wrap;
}
.stat-item { text-align: center; flex: 1; }
.stat-item strong { display: block; font-family: 'Syne', sans-serif; font-size: 1.2rem; color: var(--primary, #FF6F00); }
.stat-item span { font-size: 0.72rem; color: var(--muted, #7a7a96); }

/* Portfolio items */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 12px; }
.portfolio-item, .gallery-item {
    border-radius: 10px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
    cursor: pointer; transition: transform 0.2s, border-color 0.2s;
    position: relative;
}
.portfolio-item:hover, .gallery-item:hover { transform: scale(1.02); border-color: rgba(255,111,0,0.3); }
.portfolio-item img, .gallery-item img { width: 100%; height: 140px; object-fit: cover; display: block; }
.portfolio-item-info {
    padding: 8px 10px;
    background: rgba(0,0,0,0.5);
}
.portfolio-item-info strong { display: block; font-size: 0.8rem; color: #f0f0f5; }
.portfolio-item-info span  { font-size: 0.72rem; color: #7a7a96; }

/* Timeline */
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
.timeline::before {
    content: ''; position: absolute;
    left: 8px; top: 8px; bottom: 8px;
    width: 2px; background: rgba(255,255,255,0.07);
}
.timeline-item {
    display: flex; gap: 20px;
    padding: 0 0 1.5rem 28px;
    position: relative;
}
.tl-dot {
    position: absolute; left: 2px; top: 4px;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--primary, #FF6F00);
    border: 2px solid var(--bg-card, #111118);
}
.tl-content strong { display: block; font-size: 0.92rem; color: #f0f0f5; margin-bottom: 2px; }
.tl-company { display: block; font-size: 0.82rem; color: var(--primary, #FF6F00); margin-bottom: 2px; }
.tl-period  { display: block; font-size: 0.75rem; color: #7a7a96; margin-bottom: 6px; }
.tl-content p { font-size: 0.82rem; color: #a0a0b8; line-height: 1.5; margin: 0; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   9. SORT OPTION ADDITIONS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* handled in HTML â€” just ensuring sort-select shows "Top Rated" option */

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   10. VOICE MESSAGE (chat additions)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.voice-bubble {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(0,0,0,0.15);
    border-radius: 8px;
    margin-top: 5px;
}
.voice-play-btn {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: none; cursor: pointer;
    color: white; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: background 0.2s;
}
.voice-play-btn:hover { background: rgba(255,255,255,0.25); }
.voice-waveform {
    flex: 1;
    height: 24px;
    display: flex;
    align-items: center;
    gap: 2px;
}
.voice-waveform span {
    display: inline-block;
    width: 3px;
    background: rgba(255,255,255,0.5);
    border-radius: 2px;
    animation: waveform 1.2s ease-in-out infinite;
}
.voice-waveform span:nth-child(even) { animation-delay: 0.2s; }
.voice-waveform span:nth-child(3n) { animation-delay: 0.4s; }
@keyframes waveform {
    0%,100% { height: 4px; } 50% { height: 18px; }
}
.voice-duration { font-size: 0.72rem; color: rgba(255,255,255,0.7); flex-shrink: 0; }
