/* ============================================
   ENHANCED BUSINESS PROFILE - World-Class UI/UX
   Comprehensive styling for detailed business profiles
   ============================================ */

/* ========== CONTAINER ========== */
.business-profile-enhanced {
    --color-bg: #f4f6fb;
    --color-surface: #ffffff;
    --color-surface-soft: #f8fafc;
    --color-surface-muted: #eef2ff;
    --color-surface-accent: #ecfeff;
    --color-border: #e2e8f0;
    --color-border-strong: #cbd5f5;
    --color-shadow-soft: rgba(15, 23, 42, 0.08);
    --color-shadow-strong: rgba(76, 29, 149, 0.28);
    --color-text-primary: #0f172a;
    --color-text-secondary: #475569;
    --color-text-muted: #64748b;
    --color-text-inverse: #f8fafc;
    --color-accent-primary: #4f46e5;
    --color-accent-secondary: #7c3aed;
    --color-accent-tertiary: #0ea5e9;
    --color-gradient-start: #4338ca;
    --color-gradient-end: #6366f1;
    --color-gradient-alt: #14b8a6;
    --color-success: #10b981;
    min-height: 100vh;
    background: var(--color-bg);
    color: var(--color-text-secondary);
}

/* ========== BACK NAVIGATION ========== */
.profile-back-nav {
    padding: 1rem 2rem;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 6px;
    margin:0px;
}

.btn-back:hover {
    color: var(--color-text-primary);
    background: var(--color-surface-soft);
}

.btn-back i {
    width: 16px;
    height: 16px;
}

/* ========== HERO SECTION ========== */
.profile-hero-enhanced {
    position: relative;
    background: var(--color-surface);
    margin-bottom: 0;
}

.profile-cover-enhanced {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.cover-overlay-enhanced {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(15, 23, 42, 0.05) 0%,
        rgba(15, 23, 42, 0.35) 55%,
        rgba(15, 23, 42, 0.68) 100%
    );
}

.profile-header-enhanced {
    position: relative;
    margin-top: -100px;
    padding: 0 2rem 2rem;
}

.profile-header-content-enhanced {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.profile-logo-enhanced {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--color-surface);
    border: 6px solid var(--color-surface);
    box-shadow: 0 20px 35px -18px var(--color-shadow-strong),
                0 12px 24px -16px var(--color-shadow-soft);
}

.profile-logo-enhanced img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.primary-cta-block {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.95) 0%, rgba(37, 99, 235, 0.98) 55%, rgba(76, 29, 149, 1) 100%);
    border-radius: 16px;
    padding: 1.75rem;
    color: var(--color-text-inverse);
    box-shadow: 0 30px 45px -24px var(--color-shadow-strong),
                0 10px 25px -12px rgba(14, 116, 144, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.primary-cta-copy {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cta-headline {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.cta-subtext {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    border-radius: 12px;
    background: var(--color-surface);
    color: var(--color-accent-primary);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 12px 26px -10px rgba(79, 70, 229, 0.35),
                0 6px 20px -8px rgba(14, 116, 144, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px -14px rgba(79, 70, 229, 0.4),
                0 12px 24px -12px rgba(14, 116, 144, 0.35);
}

.btn-cta-primary i {
    width: 20px;
    height: 20px;
}

.secondary-cta-block {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border-strong);
    border-radius: 14px;
    padding: 1rem;
    box-shadow: 0 14px 28px -18px var(--color-shadow-soft);
}

.profile-actions-enhanced .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.profile-actions-enhanced .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px -8px rgba(15, 23, 42, 0.12);
}

.profile-actions-enhanced .btn i {
    width: 18px;
    height: 18px;
}

.btn-primary-enhanced {
    background: linear-gradient(135deg, var(--color-accent-primary) 0%, var(--color-accent-secondary) 100%);
    color: white;
}

.btn-primary-enhanced:hover {
    background: linear-gradient(135deg, #4338ca 0%, #6d28d9 100%);
}

.btn-success-enhanced {
    background: linear-gradient(135deg, var(--color-success) 0%, #059669 100%);
    color: white;
}

.btn-success-enhanced:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.btn-outline-enhanced {
    background: var(--color-surface);
    color: var(--color-text-muted);
    border: 2px solid var(--color-border);
}

.btn-outline-enhanced:hover {
    background: var(--color-surface-soft);
    border-color: var(--color-accent-primary);
    color: var(--color-accent-primary);
}

.btn-outline-enhanced.active {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: #ef4444;
    border-color: #fecaca;
}

/* ========== TAB NAVIGATION ========== */
.profile-tabs-nav {
    background: var(--color-surface);
    border-bottom: 2px solid var(--color-border);
    position: sticky;
    top: 57px;
    z-index: 99;
}

.tabs-container {
    display: flex;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    overflow-x: auto;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.tab-btn:hover {
    color: var(--color-text-primary);
    background: var(--color-surface-soft);
}

.tab-btn.active {
    color: var(--color-accent-primary);
    border-bottom-color: var(--color-accent-primary);
    background: var(--color-surface-muted);
}

.tab-btn i {
    width: 18px;
    height: 18px;
}

.tab-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: var(--color-surface-accent);
    color: var(--color-accent-primary);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 10px;
}

.tab-btn.active .tab-badge {
    background: rgba(79, 70, 229, 0.16);
    color: var(--color-accent-secondary);
}

/* ========== PROFILE CONTENT ========== */
.profile-content-enhanced {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding:0px 20px;
}

.profile-main-enhanced {
    min-width: 0;
}

/* ========== PROFILE SECTIONS ========== */
.profile-section-enhanced {
    background: var(--color-surface);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 12px 22px -20px var(--color-shadow-soft);
    border: 1px solid var(--color-border);
}

.section-title-enhanced {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 1.5rem 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-border);
}

.section-title-enhanced i {
    width: 24px;
    height: 24px;
    color: var(--color-accent-primary);
}

.section-header-with-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-header-with-action .section-title-enhanced {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    color: var(--color-accent-primary);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 6px;
}

.btn-text:hover {
    background: var(--color-surface-muted);
    color: var(--color-accent-secondary);
}

.btn-text i {
    width: 16px;
    height: 16px;
}

.subsection-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0 0 1rem 0;
}

/* ========== ABOUT SECTION ========== */
.about-content-enhanced {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-mission-enhanced {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(236, 254, 255, 0.9) 0%, rgba(224, 242, 254, 1) 100%);
    border-left: 4px solid var(--color-accent-tertiary);
    border-radius: 12px;
}

.mission-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface);
    border-radius: 12px;
    box-shadow: 0 6px 16px -12px var(--color-shadow-soft);
}

.mission-icon i {
    width: 24px;
    height: 24px;
    color: var(--color-accent-tertiary);
}

.mission-content {
    flex: 1;
}

.mission-title-enhanced {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-accent-primary);
    margin: 0 0 0.5rem 0;
}

.mission-text-enhanced {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.6;
}

.about-description-enhanced {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.about-details-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--color-border);
}

.detail-item-enhanced {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--color-surface-soft);
    border-radius: 12px;
    transition: all 0.2s;
}

.detail-item-enhanced:hover {
    background: var(--color-surface-muted);
    transform: translateY(-2px);
}

.detail-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface);
    border-radius: 10px;
    box-shadow: 0 8px 18px -14px var(--color-shadow-soft);
}

.detail-icon i {
    width: 20px;
    height: 20px;
    color: var(--color-accent-primary);
}

.detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-label-enhanced {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-value-enhanced {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

/* ========== SERVICES SECTION ========== */
.services-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.service-card-enhanced {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 244, 255, 1) 100%);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    transition: all 0.3s;
}

.service-card-enhanced:hover {
    border-color: var(--color-accent-primary);
    box-shadow: 0 18px 32px -18px rgba(79, 70, 229, 0.28),
                0 10px 24px -14px rgba(14, 116, 144, 0.18);
    transform: translateY(-4px);
}

.service-header-enhanced {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.service-name-enhanced {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0;
    line-height: 1.4;
}

.service-category-enhanced {
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, rgba(236, 254, 255, 0.9) 0%, rgba(219, 234, 254, 1) 100%);
    color: var(--color-accent-primary);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 16px;
    white-space: nowrap;
}

.service-description-enhanced {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.service-footer-enhanced {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.service-pricing-enhanced {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.pricing-label-enhanced {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-value-enhanced {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.service-footer-enhanced .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--color-surface);
    color: var(--color-accent-primary);
    border: 2px solid var(--color-accent-primary);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.service-footer-enhanced .btn:hover {
    background: var(--color-accent-primary);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 12px 20px -10px rgba(79, 70, 229, 0.35);
}

.service-footer-enhanced .btn i {
    width: 14px;
    height: 14px;
}

/* ========== POSTS SECTION ========== */
.posts-preview,
.posts-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.post-card-preview,
.post-card-full {
    padding: 1.5rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.2s;
}

.post-card-preview:hover,
.post-card-full:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.post-header-preview,
.post-header-full {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.post-author-preview,
.post-author-full {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar-preview,
.author-avatar-full {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: #e5e7eb;
}

.author-avatar-preview img,
.author-avatar-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder-preview,
.avatar-placeholder-full {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

.author-info-preview,
.author-info-full {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.author-name-preview,
.author-name-full {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
}

.post-time-preview,
.post-time-full {
    font-size: 0.75rem;
    color: #6b7280;
}

.post-content-preview,
.post-content-full {
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.6;
}

.post-content-preview p,
.post-content-full p {
    margin: 0;
}

.post-footer-full {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    margin-top: 1rem;
}

.post-action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 6px;
}

.post-action-btn:hover {
    background: #f3f4f6;
    color: #111827;
}

.post-action-btn i {
    width: 16px;
    height: 16px;
}

.post-actions-menu .btn-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 6px;
}

.post-actions-menu .btn-icon:hover {
    background: #f3f4f6;
    color: #111827;
}

.post-actions-menu .btn-icon i {
    width: 18px;
    height: 18px;
}

/* ========== TEAM SECTION ========== */
.team-stats-bar {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.team-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.team-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
}

.team-stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.team-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.team-member-enhanced {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.team-member-enhanced:hover {
    border-color: #6366f1;
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.1);
    transform: translateY(-4px);
}

.member-card-inner {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.member-avatar-enhanced {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #e5e7eb;
    border: 4px solid #f3f4f6;
}

.member-avatar-enhanced img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-placeholder-enhanced {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    font-size: 1.75rem;
    font-weight: 600;
}

.member-info-enhanced {
    width: 100%;
    margin-bottom: 1rem;
}

.member-name-enhanced {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.25rem 0;
}

.member-role-enhanced {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.member-actions {
    width: 100%;
}

.btn-linkedin {
    background: #0a66c2;
    color: white;
    border: none;
}

.btn-linkedin:hover {
    background: #004182;
}

/* ========== FUNDING SECTION ========== */
.funding-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.funding-stat-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 12px;
    border: 2px solid #bbf7d0;
}

.funding-stat-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.funding-stat-icon i {
    width: 24px;
    height: 24px;
    color: #10b981;
}

.funding-stat-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.funding-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #065f46;
}

.funding-stat-label {
    font-size: 0.875rem;
    color: #047857;
    font-weight: 500;
}

.funding-timeline {
    margin-top: 2rem;
}

.timeline-container {
    position: relative;
    padding-left: 2rem;
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 0;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background: #6366f1;
    border: 4px solid #dbeafe;
    border-radius: 50%;
}

.timeline-line {
    position: absolute;
    left: 7px;
    top: 16px;
    width: 2px;
    height: calc(100% + 2rem);
    background: #e5e7eb;
}

.timeline-content {
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.round-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.round-type {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.round-date {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.round-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.round-amount,
.round-investor {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: #374151;
}

.round-amount i,
.round-investor i {
    width: 16px;
    height: 16px;
    color: #6b7280;
}

/* ========== CONTACT TAB ========== */
.contact-tab-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-form-container,
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

.form-control {
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.9375rem;
    color: #111827;
    transition: all 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-control::placeholder {
    color: #9ca3af;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-detail-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 10px;
}

.contact-detail-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-detail-icon i {
    width: 20px;
    height: 20px;
    color: #6366f1;
}

.contact-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
}

.contact-detail-value {
    font-size: 0.9375rem;
    color: #111827;
    text-decoration: none;
}

.contact-detail-value:hover {
    color: #6366f1;
}

.contact-social-section {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.contact-social-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.75rem 0;
}

.contact-social-links {
    display: flex;
    gap: 0.75rem;
}

.contact-social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.contact-social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-social-btn.twitter {
    color: #1da1f2;
    border-color: #1da1f2;
}

.contact-social-btn.twitter:hover {
    background: #1da1f2;
    color: white;
}

.contact-social-btn.linkedin {
    color: #0a66c2;
    border-color: #0a66c2;
}

.contact-social-btn.linkedin:hover {
    background: #0a66c2;
    color: white;
}

.contact-social-btn.facebook {
    color: #1877f2;
    border-color: #1877f2;
}

.contact-social-btn.facebook:hover {
    background: #1877f2;
    color: white;
}

.contact-social-btn.instagram {
    color: #e4405f;
    border-color: #e4405f;
}

.contact-social-btn.instagram:hover {
    background: #e4405f;
    color: white;
}

.contact-social-btn i {
    width: 16px;
    height: 16px;
}

.contact-quick-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

/* ========== SIDEBAR ========== */
.profile-sidebar-enhanced {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card-enhanced {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
}

.card-title-enhanced {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 1rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
}

.card-title-enhanced i {
    width: 18px;
    height: 18px;
    color: #6366f1;
}

/* Quick Actions Grid (Compact) */
.quick-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.quick-action-btn-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 0.5rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s;
}

.quick-action-btn-compact:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #1e293b;
}

.quick-action-btn-compact.active {
    background: #fef2f2;
    border-color: #fecaca;
    color: #dc2626;
}

.quick-action-btn-compact.active:hover {
    background: #fee2e2;
}

.quick-action-btn-compact i {
    width: 16px;
    height: 16px;
}

/* Connect Links */
.connect-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.connect-link-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    color: #4f46e5;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
}

.connect-link-item:hover {
    background: #eef2ff;
    color: #4338ca;
}

.connect-link-item i {
    width: 16px;
    height: 16px;
}

.social-links-compact {
    display: flex;
    gap: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #e5e7eb;
}

.social-icon-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #64748b;
    text-decoration: none;
    transition: all 0.2s;
}

.social-icon-compact:hover {
    background: #eef2ff;
    border-color: #c7d2fe;
    color: #4f46e5;
}

.social-icon-compact i {
    width: 18px;
    height: 18px;
}

.quick-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-list-enhanced {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item-enhanced {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
    font-size: 0.875rem;
}

.contact-item-enhanced i {
    width: 18px;
    height: 18px;
    color: #6b7280;
    flex-shrink: 0;
}

.contact-item-enhanced a {
    color: #6366f1;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item-enhanced a:hover {
    color: #4f46e5;
    text-decoration: underline;
}

.social-links-enhanced {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link-enhanced {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 12px;
    transition: all 0.2s;
    text-decoration: none;
}

.social-link-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.social-link-enhanced.twitter:hover {
    background: #1da1f2;
    color: white;
}

.social-link-enhanced.linkedin:hover {
    background: #0a66c2;
    color: white;
}

.social-link-enhanced.facebook:hover {
    background: #1877f2;
    color: white;
}

.social-link-enhanced.instagram:hover {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-link-enhanced i {
    width: 22px;
    height: 22px;
}

.categories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category-tag {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    color: #374151;
    font-size: 0.8125rem;
    font-weight: 500;
    border-radius: 16px;
    transition: all 0.2s;
}

.category-tag:hover {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
}

.stats-list-enhanced {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item-enhanced {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-item-enhanced i {
    width: 24px;
    height: 24px;
    color: #6366f1;
    flex-shrink: 0;
}

.stat-info-enhanced {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.stat-value-enhanced {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
}

.stat-label-enhanced {
    font-size: 0.75rem;
    color: #6b7280;
}

.engagement-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.engagement-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.engagement-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.engagement-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
}

/* ========== EMPTY STATES ========== */
.empty-state-posts,
.empty-state-team,
.empty-state-funding {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.empty-icon-large {
    width: 64px;
    height: 64px;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.empty-state-posts h3,
.empty-state-team h3,
.empty-state-funding h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #6b7280;
    margin: 0 0 0.5rem 0;
}

.empty-state-posts p,
.empty-state-team p,
.empty-state-funding p {
    font-size: 0.9375rem;
    color: #9ca3af;
    margin: 0;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
    .profile-content-enhanced {
        grid-template-columns: 1fr 260px;
    }

    .profile-header-content-enhanced {
        align-items: flex-start;
    }

    .profile-actions-enhanced {
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .primary-cta-block {
        flex: 1;
        margin-right: 1rem;
    }

    .secondary-cta-block {
        flex: 1;
        justify-content: flex-end;
    }
}

@media (max-width: 1024px) {
    .profile-content-enhanced {
        grid-template-columns: 1fr;
    }
    
    .profile-sidebar-enhanced {
        order: -1;
    }
    
    .quick-stats-bar {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
}

@media (max-width: 768px) {
    .profile-header-content-enhanced {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .profile-logo-enhanced {
        width: 150px;
        height: 150px;
    }
    
    
    .profile-actions-enhanced {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .profile-actions-enhanced .btn {
        width: 100%;
        justify-content: center;
    }

    .primary-cta-block {
        margin-right: 0;
    }

    .profile-content-enhanced {
        padding: 1rem;
    }
    
    .profile-section-enhanced {
        padding: 1.5rem;
    }
    
    .tabs-container {
        padding: 0 1rem;
    }
    
    .tab-btn {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }
    
    .services-grid-enhanced,
    .team-grid-enhanced {
        grid-template-columns: 1fr;
    }
    
    .about-details-enhanced {
        grid-template-columns: 1fr;
    }
    
    .contact-tab-content {
        grid-template-columns: 1fr;
    }
    
    .funding-summary {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .profile-cover-enhanced {
        height: 250px;
    }
    
    .profile-header-enhanced {
        margin-top: -60px;
        padding: 0 1rem 1.5rem;
    }
    
    .profile-logo-enhanced {
        width: 120px;
        height: 120px;
    }
    
    
    .section-title-enhanced {
        font-size: 1.25rem;
    }
    
    .profile-back-nav {
        padding: 0.75rem 1rem;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-section-enhanced {
    animation: fadeIn 0.3s ease-out;
}

.service-card-enhanced,
.team-member-enhanced,
.post-card-preview,
.post-card-full {
    animation: fadeIn 0.3s ease-out;
}

/* ========== UTILITY CLASSES ========== */


.btn-sm i {
    width: 14px;
    height: 14px;
}

/* ============================================
   BUSINESS PROFILE V2 - Expert Profile Style
   Clean, professional, world-class UI
   ============================================ */

/* Container */
.business-profile-enhanced {
    max-width: 1200px;
    margin: 0;
    padding: 0px;
    background: #F9FAFB;
}

/* Layout Grid */
.profile-content-enhanced {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 24px;
    align-items: start;
}

.profile-main-enhanced {
    min-width: 0;
}

/* Hero Header Card */
.profile-hero-enhanced {
    position: relative;
    margin-bottom: 20px;
    padding:0px 20px;
}

.profile-cover-enhanced {
    /* height: 200px; */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
    position: relative;
}

.cover-overlay-enhanced {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.2) 100%);
}

.profile-header-enhanced {
    background: #FFFFFF;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 10;
}

.profile-header-content-enhanced {
    padding: 24px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: start;
}

/* Logo */
.profile-logo-enhanced {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    background: #FFFFFF;
    border: 4px solid #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.profile-logo-enhanced img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info Section - Clean Light Design */
.profile-info-enhanced {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.profile-info-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.profile-info-top {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.profile-name-enhanced {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.verified-badge-enhanced {
    width: 22px;
    height: 22px;
    color: #10B981;
    flex-shrink: 0;
}

.profile-tagline-enhanced {
    font-size: 15px;
    color: #6B7280;
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

/* Meta Info - Light Pills */
.profile-meta-enhanced {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.meta-item-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    font-size: 13px;
    color: #374151;
    font-weight: 500;
    transition: all 0.2s;
}

.meta-item-enhanced:hover {
    background: #F3F4F6;
    border-color: #D1D5DB;
}

.meta-item-enhanced svg {
    width: 14px;
    height: 14px;
    color: #9CA3AF;
    flex-shrink: 0;
}

/* Inline Stats - Clean Cards */
.profile-stats-inline {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding: 16px;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
}

.stat-item-quick {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 16px;
    border-right: 1px solid #E5E7EB;
}

.stat-item-quick:last-child {
    border-right: none;
    padding-right: 0;
}

.stat-item-quick svg {
    width: 18px;
    height: 18px;
    color: #6B7280;
    flex-shrink: 0;
}

.stat-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-value-quick {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    line-height: 1;
}

.stat-label-quick {
    font-size: 12px;
    color: #6B7280;
    line-height: 1;
    font-weight: 500;
}

/* Action Buttons */
.profile-actions-enhanced {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.primary-cta-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border: 1px solid #BFDBFE;
    border-radius: 10px;
}

.primary-cta-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cta-headline {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.cta-subtext {
    font-size: 12px;
    color: #6B7280;
}

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

.btn-cta-primary:hover {
    background: #1557B0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.btn-cta-primary i {
    width: 16px;
    height: 16px;
}

.secondary-cta-block {
    display: flex;
    gap: 8px;
}

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

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

.btn-primary-enhanced i {
    width: 16px;
    height: 16px;
}

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

.btn-outline-enhanced:hover {
    background: #F9FAFB;
    border-color: #9CA3AF;
}

.btn-outline-enhanced.active {
    background: #FEF2F2;
    border-color: #EF4444;
    color: #EF4444;
}

.btn-outline-enhanced i {
    width: 16px;
    height: 16px;
}

/* Tabs Navigation */
.profile-tabs-nav {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 0 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 50;
}

.tabs-container {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scrollbar-width: none;
}

.tabs-container::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: #6B7280;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

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

.tab-btn.active {
    color: #1A73E8;
    border-bottom-color: #1A73E8;
    font-weight: 600;
}

.tab-btn i {
    width: 16px;
    height: 16px;
}

.tab-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: #F3F4F6;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    color: #6B7280;
}

.tab-btn.active .tab-badge {
    background: #DBEAFE;
    color: #1A73E8;
}

/* Profile Sections */
.profile-section-enhanced {
    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-enhanced:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.section-title-enhanced {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title-enhanced i {
    width: 20px;
    height: 20px;
    color: #1A73E8;
}

/* About Content */
.about-content-enhanced {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-mission-enhanced {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #F0F9FF;
    border-left: 3px solid #1A73E8;
    border-radius: 8px;
}

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

.mission-icon i {
    width: 20px;
    height: 20px;
    color: #1A73E8;
}

.mission-content {
    flex: 1;
}

.mission-title-enhanced {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 6px 0;
}

.mission-text-enhanced {
    font-size: 14px;
    color: #374151;
    margin: 0;
    line-height: 1.6;
}

.about-description-enhanced p {
    font-size: 15px;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

/* Details Grid */
.about-details-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.detail-item-enhanced {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
}

.detail-icon {
    width: 36px;
    height: 36px;
    background: #FFFFFF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon i {
    width: 18px;
    height: 18px;
    color: #1A73E8;
}

.detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label-enhanced {
    font-size: 12px;
    color: #6B7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-value-enhanced {
    font-size: 14px;
    color: #111827;
    font-weight: 600;
}

/* Sidebar */
.profile-sidebar-enhanced {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card-enhanced {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.card-title-enhanced {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-title-enhanced i {
    width: 18px;
    height: 18px;
    color: #1A73E8;
}

/* Contact List */
.contact-list-enhanced {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item-enhanced {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #374151;
}

.contact-item-enhanced i {
    width: 16px;
    height: 16px;
    color: #9CA3AF;
    flex-shrink: 0;
}

.contact-item-enhanced a {
    color: #1A73E8;
    text-decoration: none;
}

.contact-item-enhanced a:hover {
    text-decoration: underline;
}

/* Social Links */
.social-links-enhanced {
    display: flex;
    gap: 10px;
}

.social-link-enhanced {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F3F4F6;
    border: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
    transition: all 0.2s;
}

.social-link-enhanced:hover {
    background: #1A73E8;
    border-color: #1A73E8;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.social-link-enhanced i {
    width: 18px;
    height: 18px;
}

/* Categories */
.categories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-tag {
    padding: 6px 12px;
    background: #F3F4F6;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    font-size: 13px;
    color: #374151;
    font-weight: 500;
}

/* Stats List */
.stats-list-enhanced {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-item-enhanced {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-item-enhanced i {
    width: 18px;
    height: 18px;
    color: #1A73E8;
    flex-shrink: 0;
}

.stat-info-enhanced {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-value-enhanced {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    line-height: 1;
}

.stat-label-enhanced {
    font-size: 12px;
    color: #6B7280;
    line-height: 1;
}

/* Engagement */
.engagement-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.engagement-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    background: #F9FAFB;
    border-radius: 8px;
    text-align: center;
}

.engagement-value {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
}

.engagement-label {
    font-size: 13px;
    color: #6B7280;
}

/* Responsive */
@media (max-width: 1024px) {
    .profile-content-enhanced {
        grid-template-columns: 1fr;
    }
    
    .profile-sidebar-enhanced {
        position: static;
    }
    
    .profile-header-content-enhanced {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .profile-logo-enhanced {
        margin: 0 auto;
    }
    
    .profile-actions-enhanced {
        align-items: stretch;
    }
}

@media (max-width: 768px) {
    .business-profile-enhanced {
        padding: 0px;
    }
    
    .profile-header-content-enhanced {
        padding: 0 16px 16px 16px;
    }
    
    .tabs-container {
        gap: 20px;
    }
    
    .about-details-enhanced {
        grid-template-columns: 1fr;
    }
}
