/* ========================================
   Promope Platform - Custom Styles
   Modern, Attractive UI with Purple Gradient Theme
   ======================================== */

/* ========== CSS VARIABLES ========== */
:root {
    /* Primary Colors */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --primary-color: #667eea;
    --primary-dark: #764ba2;
    --primary-light: #8b9bff;

    /* Secondary Colors */
    --secondary-color: #f093fb;
    --accent-color: #00d4ff;

    /* Neutral Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #f5f7fa;
    --bg-dark: #2d3748;

    /* Text Colors */
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --text-muted: #a0aec0;
    --text-light: #cbd5e0;

    /* Border & Shadows */
    --border-color: #e2e8f0;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.20);

    /* Status Colors */
    --success: #48bb78;
    --warning: #f6ad55;
    --error: #f56565;
    --info: #4299e1;

    /* Category Gradients */
    --cat-lifestyle: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --cat-fashion: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --cat-fitness: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --cat-tech: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --cat-food: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    --cat-travel: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    --cat-beauty: linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%);
    --cat-gaming: linear-gradient(135deg, #30cfd0 0%, #330867 100%);

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 15px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Fonts */
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ========== GLOBAL RESETS & BASE STYLES ========== */
* {
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-normal);
}

a:hover {
    color: var(--primary-dark);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
}

.btn-secondary {
    background: var(--bg-dark);
    color: white;
}

.btn-secondary:hover {
    background: #1a202c;
    transform: translateY(-2px);
}

.btn-success {
    background: var(--success);
    color: white;
}

.btn-warning {
    background: var(--warning);
    color: white;
}

.btn-danger {
    background: var(--error);
    color: white;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* ========== CARDS ========== */
.card {
    background: var(--bg-primary);
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-hover-none:hover {
    transform: none;
}

.card-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.card-body {
    padding: 1.5rem;
}

.card-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

/* ========== FORMS ========== */
.form-control,
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: all var(--transition-normal);
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

/* Icon inside input */
.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    z-index: 1;
}

.input-with-icon .form-control {
    padding-left: 2.75rem;
}

/* Form validation states */
.form-control.is-valid {
    border-color: var(--success);
}

.form-control.is-invalid {
    border-color: var(--error);
}

.valid-feedback {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: var(--success);
}

.invalid-feedback {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: var(--error);
}

/* ========== BADGES ========== */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    line-height: 1;
}

.badge-primary {
    background: var(--primary-gradient);
    color: white;
}

.badge-success {
    background: var(--success);
    color: white;
}

.badge-warning {
    background: var(--warning);
    color: white;
}

.badge-danger {
    background: var(--error);
    color: white;
}

.badge-info {
    background: var(--info);
    color: white;
}

.badge-secondary {
    background: var(--bg-dark);
    color: white;
}

/* ========== ALERTS ========== */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    border: none;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert i {
    font-size: 1.25rem;
}

.alert-success {
    background: rgba(72, 187, 120, 0.1);
    color: #2f855a;
    border-left: 4px solid var(--success);
}

.alert-warning {
    background: rgba(246, 173, 85, 0.1);
    color: #c05621;
    border-left: 4px solid var(--warning);
}

.alert-danger,
.alert-error {
    background: rgba(245, 101, 101, 0.1);
    color: #c53030;
    border-left: 4px solid var(--error);
}

.alert-info {
    background: rgba(66, 153, 225, 0.1);
    color: #2c5282;
    border-left: 4px solid var(--info);
}

/* ========== NAVBAR ENHANCEMENTS ========== */
.navbar {
    background: var(--bg-primary);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar-scrolled {
    box-shadow: var(--shadow-md);
    padding: 0.75rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-weight: 500;
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    transition: color var(--transition-normal);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
}

/* ========== STAT CARDS ========== */
.stat-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border-left: 4px solid var(--primary-color);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.stat-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-card p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.875rem;
}

.stat-card.success {
    border-left-color: var(--success);
}

.stat-card.warning {
    border-left-color: var(--warning);
}

.stat-card.danger {
    border-left-color: var(--error);
}

.stat-card.info {
    border-left-color: var(--info);
}

/* ========== TABLE STYLES ========== */
.table {
    width: 100%;
    margin-bottom: var(--spacing-md);
}

.table thead {
    background: var(--bg-secondary);
}

.table th,
.table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.table th {
    font-weight: 600;
    color: var(--text-primary);
}

.table tbody tr:hover {
    background: var(--bg-secondary);
}

/* ========== SEARCH BAR ========== */
.search-bar {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-bar input {
    width: 100%;
    padding: 1rem 3rem 1rem 3rem;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
}

.search-bar input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-bar .search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-bar .clear-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    cursor: pointer;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.search-bar input:not(:placeholder-shown) ~ .clear-icon {
    opacity: 1;
}

/* ========== FILTER SIDEBAR ========== */
.filter-sidebar {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
}

.filter-sidebar h5 {
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--border-color);
}

.filter-group {
    margin-bottom: var(--spacing-lg);
}

.filter-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
    font-size: 0.875rem;
}

/* ========== TOOLTIPS ========== */
.tooltip-custom {
    position: relative;
    display: inline-block;
}

.tooltip-custom .tooltip-text {
    visibility: hidden;
    background: var(--bg-dark);
    color: white;
    text-align: center;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    font-size: 0.875rem;
    white-space: nowrap;
}

.tooltip-custom:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* ========== MODALS ========== */
.modal-content {
    border-radius: var(--radius-lg);
    border: none;
    box-shadow: var(--shadow-xl);
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 1.5rem;
}

/* ========== PAGINATION ========== */
.pagination {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
}

.pagination li a {
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    transition: all var(--transition-normal);
}

.pagination li a:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

.pagination li.active a {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

/* ========== DROPDOWN MENUS ========== */
.dropdown-menu {
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: all var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
}

.dropdown-divider {
    margin: 0.5rem 0;
    border-top: 1px solid var(--border-color);
}

/* ========== UTILITY CLASSES ========== */
.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--primary-gradient);
}

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }

    .btn {
        padding: 0.625rem 1.25rem;
    }

    .card-body {
        padding: 1.25rem;
    }

    .navbar {
        padding: 0.75rem 0;
    }
}

/* ========== GLASSMORPHISM ========== */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.1);
}

.glass-card-dark {
    background: rgba(45, 55, 72, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========== PREMIUM STAT CARDS ========== */
.stat-card-premium {
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
}

.stat-card-premium:hover {
    transform: translateY(-6px) scale(1.02);
}

.stat-card-premium .stat-bg-icon {
    position: absolute;
    right: -10px;
    bottom: -10px;
    font-size: 5rem;
    opacity: 0.08;
    color: white;
    transition: all 0.4s ease;
}

.stat-card-premium:hover .stat-bg-icon {
    transform: scale(1.2) rotate(10deg);
    opacity: 0.13;
}

.stat-card-premium.grad-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.stat-card-premium.grad-green {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(17, 153, 142, 0.4);
}

.stat-card-premium.grad-orange {
    background: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(247, 151, 30, 0.4);
}

.stat-card-premium.grad-pink {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(240, 147, 251, 0.4);
}

.stat-card-premium.grad-blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.4);
}

.stat-card-premium .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat-card-premium .stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

.stat-card-premium .stat-change {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    margin-top: 0.5rem;
}

/* ========== PREMIUM INFLUENCER CARD ========== */
.influencer-card-v2 {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(102, 126, 234, 0.08);
    position: relative;
}

.influencer-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.influencer-card-v2:hover::before {
    transform: scaleX(1);
}

.influencer-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.18);
    border-color: rgba(102, 126, 234, 0.2);
}

.influencer-card-v2 .card-cover {
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.influencer-card-v2 .card-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    object-fit: cover;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
}

.influencer-card-v2 .card-body-v2 {
    padding: 3rem 1.5rem 1.5rem;
    text-align: center;
}

.influencer-card-v2 .influencer-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.influencer-card-v2 .influencer-handle {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.influencer-card-v2 .stat-pills {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    background: rgba(102, 126, 234, 0.08);
    color: var(--primary-color);
    border: 1px solid rgba(102, 126, 234, 0.15);
}

.stat-pill.green { background: rgba(17,153,142,0.08); color: #11998e; border-color: rgba(17,153,142,0.15); }
.stat-pill.orange { background: rgba(247,151,30,0.08); color: #f7971e; border-color: rgba(247,151,30,0.15); }
.stat-pill.yellow { background: rgba(255,210,0,0.1); color: #c79a00; border-color: rgba(255,210,0,0.2); }

/* ========== PREMIUM CAMPAIGN CARD ========== */
.campaign-card-v2 {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.campaign-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.campaign-card-v2 .campaign-accent {
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.campaign-card-v2 .campaign-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.campaign-card-v2 .campaign-budget-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, rgba(102,126,234,0.1), rgba(118,75,162,0.1));
    border: 1px solid rgba(102,126,234,0.2);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
}

/* ========== WELCOME BANNER PREMIUM ========== */
.welcome-banner-premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--radius-xl);
    padding: 2.5rem 3rem;
    color: white;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.35);
}

.welcome-banner-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.07);
    border-radius: 50%;
}

.welcome-banner-premium::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: 100px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.welcome-banner-premium h1 {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.welcome-banner-premium p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.welcome-banner-premium .quick-action-btn {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    backdrop-filter: blur(10px);
    border-radius: var(--radius-sm);
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.welcome-banner-premium .quick-action-btn:hover {
    background: rgba(255,255,255,0.35);
    color: white;
    transform: translateY(-2px);
}

/* ========== PROFILE HEADER PREMIUM ========== */
.profile-header-premium {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.profile-cover {
    height: 180px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
}

.profile-cover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(0,0,0,0.2));
}

.profile-avatar-lg {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    margin-top: -60px;
    position: relative;
    z-index: 2;
    object-fit: cover;
}

.profile-info-area {
    padding: 1rem 2rem 2rem;
}

/* ========== SECTION HEADER PREMIUM ========== */
.section-header-premium {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-header-premium .section-icon {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content-center;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.section-header-premium h5 {
    font-weight: 700;
    margin-bottom: 0;
    color: var(--text-primary);
}

/* ========== EMPTY STATE PREMIUM ========== */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state .empty-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102,126,234,0.1), rgba(118,75,162,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
}

.empty-state h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--text-muted);
    max-width: 400px;
    margin: 0 auto 1.5rem;
}

/* ========== TAGS / CHIPS ========== */
.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    white-space: nowrap;
}

.chip-primary {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
    border-color: rgba(102, 126, 234, 0.2);
}

.chip-success {
    background: rgba(72, 187, 120, 0.1);
    color: #38a169;
    border-color: rgba(72, 187, 120, 0.2);
}

/* ========== HIGHLIGHTED CARD ========== */
.card-featured {
    border: 2px solid transparent;
    background: linear-gradient(var(--bg-primary), var(--bg-primary)) padding-box,
                linear-gradient(135deg, #667eea, #764ba2) border-box;
}

/* ========== SOCIAL PLATFORM COLORS ========== */
.platform-instagram { color: #E1306C; }
.platform-youtube { color: #FF0000; }
.platform-facebook { color: #1877F2; }
.platform-twitter { color: #1DA1F2; }
.platform-tiktok { color: #000000; }
.platform-linkedin { color: #0A66C2; }

/* ========== APPLICATION STATUS INDICATORS ========== */
.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.4rem;
}

.status-pending { background: var(--warning); box-shadow: 0 0 6px rgba(246,173,85,0.5); }
.status-accepted { background: var(--success); box-shadow: 0 0 6px rgba(72,187,120,0.5); }
.status-rejected { background: var(--error); box-shadow: 0 0 6px rgba(245,101,101,0.5); }
.status-completed { background: var(--info); box-shadow: 0 0 6px rgba(66,153,225,0.5); }

/* ========== RATE CARD ========== */
.rate-card-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    margin-bottom: 0.5rem;
    transition: all 0.2s;
}

.rate-card-item:hover {
    background: rgba(102, 126, 234, 0.08);
}

.rate-card-item .rate-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.rate-card-item .rate-value {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
}

/* ========== AUTH PAGES ========== */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
}

.auth-left {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.auth-left::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    animation: floatBlob1 8s ease-in-out infinite;
}

.auth-left::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
    animation: floatBlob2 10s ease-in-out infinite;
}

@keyframes floatBlob1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, 30px) scale(1.05); }
    66% { transform: translate(-15px, 10px) scale(0.95); }
}

@keyframes floatBlob2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -20px) scale(1.1); }
}

.auth-right {
    flex: 1;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
}

.auth-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    transition: all 0.3s;
}

.auth-feature-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(5px);
}

.auth-feature-icon {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.auth-feature-text {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0;
}

.auth-form-input {
    position: relative;
    margin-bottom: 1.25rem;
}

.auth-form-input input {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 3rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    transition: all 0.3s;
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.auth-form-input input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    background: var(--bg-primary);
    outline: none;
}

.auth-form-input .input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    z-index: 1;
    transition: color 0.3s;
}

.auth-form-input input:focus + .input-icon,
.auth-form-input:focus-within .input-icon {
    color: var(--primary-color);
}

.auth-submit-btn {
    width: 100%;
    padding: 0.9rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.auth-submit-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s;
}

.auth-submit-btn:hover::after {
    left: 100%;
}

.auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* ========== UNIFIED NAVBAR ENHANCEMENTS ========== */

/* User Dropdown Toggle */
.user-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    background: rgba(102, 126, 234, 0.05);
    text-decoration: none !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    position: relative;
    z-index: 1000;
}

.user-dropdown-toggle:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.user-dropdown-toggle:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* User Avatar in Navbar */
.user-avatar-sm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    color: white;
    font-size: 1rem;
    overflow: hidden;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.user-avatar-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-avatar-sm i {
    font-size: 1.2rem;
}

/* User Name */
.user-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
    white-space: nowrap;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* User Badges */
.user-badge {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: inline-block;
    line-height: 1;
}

.badge-influencer {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.badge-brand {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.badge-admin {
    background: linear-gradient(135deg, #f6ad55 0%, #fc8c4e 100%);
    color: white;
}

/* Active Nav Link */
.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
}

/* Dropdown Header Styling */
.dropdown-header {
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    padding: 0.75rem 1.25rem 0.5rem;
    background: var(--bg-secondary);
}

/* Enhanced Dropdown Items with Icons */
.dropdown-item i {
    width: 22px;
    text-align: center;
    margin-right: 0.75rem;
    color: var(--primary-color);
    transition: transform var(--transition-fast);
}

.dropdown-item:hover i {
    transform: translateX(3px);
}

.dropdown-item.text-danger i {
    color: var(--error);
}

.dropdown-item.text-warning i {
    color: var(--warning);
}

/* Mobile Navbar Adjustments */
@media (max-width: 991px) {
    .user-dropdown-toggle {
        padding: 0.75rem 1rem;
        margin: 0.5rem 0;
    }

    .user-name {
        font-size: 1rem;
    }

    .user-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.7rem;
    }

    .nav-link.active::after {
        display: none;
    }

    .navbar-nav.mx-auto {
        margin: 1rem 0 !important;
    }

    .dark-mode-toggle {
        margin: 0.5rem 0;
    }
}
