/* Bizfy Dashboard Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #F8F8FA;
    color: #1A1A1A;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: white;
    border-bottom: 1px solid #E5E5E5;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6A5ACD, #4B0082);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #1A1A1A;
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* User Profile */
.user-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.user-name {
    font-weight: 600;
    color: #1A1A1A;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 2px;
}

.user-email {
    font-size: 12px;
    color: #666;
    line-height: 1.2;
}

.user-menu {
    position: relative;
}

.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6A5ACD 0%, #8B7ED8 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(106, 90, 205, 0.3);
}

.user-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(106, 90, 205, 0.4);
}

.user-avatar:active {
    transform: scale(0.98);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 180px;
    display: none;
    z-index: 1001;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.dropdown-menu.show {
    display: block;
    animation: dropdownFadeIn 0.2s ease-out;
}

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

.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, #F8F8FA 0%, #F0F0F0 100%);
    color: #6A5ACD;
    transform: translateX(4px);
}

.dropdown-menu a:first-child {
    border-bottom: 1px solid #F0F0F0;
}

.dropdown-menu a:last-child {
    color: #EF4444;
}

.dropdown-menu a:last-child:hover {
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    color: #DC2626;
}

/* Add icons to dropdown items */
.dropdown-menu a::before {
    content: '';
    width: 16px;
    height: 16px;
    margin-right: 12px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.dropdown-menu a:first-child::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23666'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z'/%3E%3C/svg%3E");
}

.dropdown-menu a:last-child::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23EF4444'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M17 16l4-4m0 0l-4-4m4 4H7m6 4v1a3 3 0 01-3 3H6a3 3 0 01-3-3V7a3 3 0 013-3h4a3 3 0 013 3v1'/%3E%3C/svg%3E");
}

/* Floating Chat Widget Styles */
.floating-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: inherit;
}

.chat-toggle-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6A5ACD 0%, #8B7ED8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(106, 90, 205, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.chat-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(106, 90, 205, 0.6);
}

.chat-icon {
    font-size: 24px;
    color: white;
}

.chat-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #EF4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
}

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

.chat-header {
    background: linear-gradient(135deg, #6A5ACD 0%, #8B7ED8 100%);
    color: white;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.chat-title h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.chat-status {
    font-size: 12px;
    opacity: 0.9;
}

.chat-header-actions {
    display: flex;
    gap: 8px;
}

.chat-action-btn {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 4px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background 0.2s ease;
}

.chat-action-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chat-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #FAFAFA;
}

.chat-suggestions {
    padding: 12px 16px;
    background: #F8F8FA;
    border-top: 1px solid #E5E5E5;
    max-height: 120px;
    overflow-y: auto;
}

.suggestion-item {
    background: white;
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 6px;
    cursor: pointer;
    font-size: 12px;
    color: #6A5ACD;
    border: 1px solid #E5E5E5;
    transition: all 0.2s ease;
    font-weight: 500;
}

.suggestion-item:hover {
    background: #6A5ACD;
    color: white !important;
    transform: translateX(4px);
    border-color: #6A5ACD;
}

.suggestion-item:last-child {
    margin-bottom: 0;
}

.chat-input-container {
    padding: 16px;
    background: white;
    border-top: 1px solid #E5E5E5;
}

.chat-input-wrapper {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

#chatInput {
    flex: 1;
    padding: 10px 12px;
    border: 2px solid #E5E5E5;
    border-radius: 20px;
    font-size: 14px;
    resize: none;
    outline: none;
    transition: border-color 0.2s ease;
    font-family: inherit;
}

#chatInput:focus {
    border-color: #6A5ACD;
}

.send-btn {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #6A5ACD 0%, #8B7ED8 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.send-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(106, 90, 205, 0.3);
}

.send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.chat-input-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    font-size: 11px;
    color: #666;
}

.char-count {
    transition: color 0.2s ease;
}

.ai-indicator {
    font-weight: 500;
    color: #6A5ACD;
}

/* Message styles for floating chat */
.chat-messages .message {
    display: flex;
    gap: 8px;
    max-width: 100%;
}

.chat-messages .user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.chat-messages .assistant-message {
    align-self: flex-start;
}

.chat-messages .message-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.chat-messages .user-message .message-avatar {
    background: #6A5ACD;
    color: white;
}

.chat-messages .assistant-message .message-avatar {
    background: #F0F0F0;
    color: #666;
}

.chat-messages .message-content {
    flex: 1;
    max-width: 80%;
}

.chat-messages .message-text {
    background: #F8F8FA;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.4;
    word-wrap: break-word;
}

.chat-messages .user-message .message-text {
    background: linear-gradient(135deg, #6A5ACD 0%, #8B7ED8 100%);
    color: white;
}

.chat-messages .message-time {
    font-size: 10px;
    color: #999;
    margin-top: 4px;
    text-align: right;
}

.chat-messages .user-message .message-time {
    text-align: left;
}

/* Loading animation for floating chat */
.chat-messages .loading-message .message-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.chat-messages .typing-indicator {
    display: flex;
    gap: 3px;
}

.chat-messages .typing-indicator span {
    width: 4px;
    height: 4px;
    background: #6A5ACD;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.chat-messages .typing-indicator span:nth-child(1) {
    animation-delay: -0.32s;
}

.chat-messages .typing-indicator span:nth-child(2) {
    animation-delay: -0.16s;
}

/* Responsive design for floating chat */
@media (max-width: 768px) {
    /* Mobile header */
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        position: relative;
    }
    
    .header-actions {
        display: none;
    }
    
    .header-actions.show {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 12px 12px;
        z-index: 1000;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 30px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }
    
    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background: var(--gray-700);
        border-radius: 3px;
        transition: all 0.3s ease;
        transform-origin: 1px;
    }
    
    .mobile-menu-toggle.active span:first-child {
        transform: rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:last-child {
        transform: rotate(-45deg);
    }
    
    /* Mobile dashboard layout */
    .dashboard {
        flex-direction: column;
    }
    
    .sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        z-index: 1000;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .sidebar.show {
        left: 0;
    }
    
    .main-content {
        width: 100%;
        margin-left: 0;
        padding: 20px 16px;
    }
    
    /* Mobile forms */
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-input, .form-select, .form-textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px 16px;
        border-radius: 8px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 16px;
        min-height: 44px; /* Touch-friendly */
    }
    
    /* Mobile verification cards */
    .verification-card {
        margin-bottom: 16px;
        padding: 16px;
    }
    
    .verification-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    /* Mobile stats grid */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stat-card {
        padding: 16px;
    }
    
    /* Mobile floating chat */
    .floating-chat-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .chat-window {
        width: calc(100vw - 30px);
        height: calc(100vh - 100px);
        bottom: 85px;
        right: 15px;
        left: 15px;
    }
    
    .chat-toggle-btn {
        width: 50px;
        height: 50px;
    }
    
    .chat-icon {
        font-size: 20px;
    }
}

.chatbot-sidebar {
    width: 300px;
    background: linear-gradient(135deg, #6A5ACD 0%, #8B7ED8 100%);
    color: white;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.chatbot-info {
    text-align: center;
    margin-bottom: 32px;
}

.advisor-avatar {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.chatbot-info h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 600;
}

.chatbot-info p {
    margin: 0;
    opacity: 0.9;
    font-size: 14px;
}

.suggested-questions {
    flex: 1;
}

.suggested-questions h4 {
    margin: 0 0 16px 0;
    font-size: 16px;
    font-weight: 600;
}

.suggestion-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    line-height: 1.4;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.suggestion-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.chatbot-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: white;
}

.chat-messages {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.message {
    display: flex;
    gap: 12px;
    max-width: 80%;
}

.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.assistant-message {
    align-self: flex-start;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.user-message .message-avatar {
    background: #6A5ACD;
    color: white;
}

.assistant-message .message-avatar {
    background: #F0F0F0;
    color: #666;
}

.message-content {
    flex: 1;
}

.message-text {
    background: #F8F8FA;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
}

.user-message .message-text {
    background: linear-gradient(135deg, #6A5ACD 0%, #8B7ED8 100%);
    color: white;
}

.message-time {
    font-size: 12px;
    color: #999;
    margin-top: 4px;
    text-align: right;
}

.user-message .message-time {
    text-align: left;
}

.chat-input-container {
    border-top: 1px solid #E5E5E5;
    padding: 16px 24px;
    background: #FAFAFA;
}

.chat-input-wrapper {
    display: flex;
    gap: 12px;
    align-items: flex-end;
}

#chatInput {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #E5E5E5;
    border-radius: 24px;
    font-size: 14px;
    resize: none;
    outline: none;
    transition: border-color 0.2s ease;
    font-family: inherit;
}

#chatInput:focus {
    border-color: #6A5ACD;
}

.send-btn {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #6A5ACD 0%, #8B7ED8 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.send-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(106, 90, 205, 0.3);
}

.send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.chat-input-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    font-size: 12px;
    color: #666;
}

.char-count {
    transition: color 0.2s ease;
}

.ai-indicator {
    font-weight: 500;
    color: #6A5ACD;
}

/* Loading animation */
.loading-message .message-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.typing-indicator {
    display: flex;
    gap: 4px;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: #6A5ACD;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-indicator span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typing {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Bullet points in AI responses */
.bullet-point {
    margin: 4px 0;
    padding-left: 8px;
}

/* Responsive design */
@media (max-width: 768px) {
    .chatbot-container {
        flex-direction: column;
        height: auto;
        min-height: 500px;
    }
    
    .chatbot-sidebar {
        width: 100%;
        height: 200px;
    }
    
    .chatbot-main {
        height: 400px;
    }
    
    .message {
        max-width: 95%;
    }
}

.btn-login {
    background: white;
    border: 2px solid #6A5ACD;
    color: #6A5ACD;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-login:hover {
    background: #6A5ACD;
    color: white;
}

.btn-signup {
    background: linear-gradient(135deg, #6A5ACD, #8A2BE2);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(106, 90, 205, 0.3);
}

/* Main Layout */
.dashboard {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    display: flex;
}

/* Sidebar */
.sidebar {
    width: 280px;
    background: white;
    border-right: 1px solid #E5E5E5;
    padding: 32px 0;
    position: fixed;
    height: calc(100vh - 80px);
    overflow-y: auto;
}

.nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 24px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    text-decoration: none;
    color: #555555;
    border-radius: 12px;
    transition: all 0.2s;
    font-weight: 500;
}

.nav-item:hover {
    background: rgba(106, 90, 205, 0.1);
    color: #6A5ACD;
}

.nav-item.active {
    background: linear-gradient(135deg, #6A5ACD, #8A2BE2);
    color: white;
}

.nav-icon {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

/* Content Area */
.content {
    flex: 1;
    margin-left: 280px;
    padding: 32px;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

/* Dashboard Section */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.dashboard-title {
    font-size: 32px;
    font-weight: 700;
    color: #1A1A1A;
}

.dashboard-actions {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, #6A5ACD, #8A2BE2);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(106, 90, 205, 0.3);
}

.btn-secondary {
    background: white;
    color: #6A5ACD;
    border: 2px solid #6A5ACD;
}

.btn-secondary:hover {
    background: #6A5ACD;
    color: white;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #E5E5E5;
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.stat-title {
    font-size: 14px;
    color: #555555;
    font-weight: 500;
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.stat-icon.primary {
    background: rgba(106, 90, 205, 0.1);
    color: #6A5ACD;
}

.stat-icon.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.stat-icon.warning {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
}

.stat-icon.danger {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.stat-change {
    font-size: 14px;
    font-weight: 500;
}

.stat-change.positive {
    color: #10B981;
}

.stat-change.negative {
    color: #EF4444;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
}

/* Verification Table */
.verification-table {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #E5E5E5;
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.table-title {
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid #E5E5E5;
}

.table th {
    font-size: 14px;
    font-weight: 600;
    color: #555555;
    background: #F8F8FA;
}

.table td {
    font-size: 14px;
    color: #1A1A1A;
}

.table tbody tr:hover {
    background: #F8F8FA;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-verified {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.status-pending {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
}

.status-failed {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

.risk-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.risk-low {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.risk-medium {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
}

.risk-high {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

/* Type badges */
.type-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.type-basic {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
}

.type-advanced {
    background: rgba(147, 51, 234, 0.1);
    color: #9333EA;
}

/* Recent Activity */
.recent-activity {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #E5E5E5;
}

.activity-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.activity-title {
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
}

.activity-list {
    list-style: none;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid #E5E5E5;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
}

.activity-icon.verified {
    background: #10B981;
}

.activity-icon.pending {
    background: #F59E0B;
}

.activity-icon.failed {
    background: #EF4444;
}

.activity-content {
    flex: 1;
}

.activity-text {
    font-size: 14px;
    color: #1A1A1A;
    margin-bottom: 4px;
}

.activity-time {
    font-size: 12px;
    color: #555555;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 32px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #1A1A1A;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #555;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1A1A1A;
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #6A5ACD;
}

/* Loading Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.loading::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid #6A5ACD;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        position: static;
        height: auto;
    }

    .content {
        margin-left: 0;
        padding: 20px;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .dashboard-actions {
        width: 100%;
        justify-content: flex-start;
    }
}

/* Verification Type Selector */
.verification-type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.verification-type {
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.verification-type:hover {
    border-color: #6A5ACD;
    background: rgba(106, 90, 205, 0.05);
}

.verification-type.selected {
    border-color: #6A5ACD;
    background: linear-gradient(135deg, rgba(106, 90, 205, 0.1), rgba(138, 43, 226, 0.1));
}

.type-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.type-title {
    font-size: 16px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.type-description {
    font-size: 14px;
    color: #666666;
    line-height: 1.4;
}

/* Verification Tier Selector */
.verification-tier-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.tier-option {
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
    position: relative;
}

.tier-option:hover {
    border-color: #6A5ACD;
    background: rgba(106, 90, 205, 0.05);
}

.tier-option.selected {
    border-color: #6A5ACD;
    background: linear-gradient(135deg, rgba(106, 90, 205, 0.1), rgba(138, 43, 226, 0.1));
}

.tier-option.selected::before {
    content: '✓';
    position: absolute;
    top: 8px;
    right: 8px;
    background: #6A5ACD;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.tier-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.tier-title {
    font-size: 16px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.tier-description {
    font-size: 13px;
    color: #666666;
    line-height: 1.4;
    margin-bottom: 8px;
}


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

/* File input styling */
.form-input[type="file"] {
    padding: 12px;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    background: white;
    cursor: pointer;
}

.form-input[type="file"]:focus {
    border-color: #6A5ACD;
    outline: none;
}

/* Select dropdown styling */
.form-input[type="select"], select.form-input {
    padding: 12px 16px;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    background: white;
    cursor: pointer;
}

.form-input[type="select"]:focus, select.form-input:focus {
    border-color: #6A5ACD;
    outline: none;
}

/* Business Verification Form Styles */
.verification-form-container {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 24px;
}

.verification-form {
    max-width: 600px;
    margin: 0 auto;
}

.tier-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-top: 12px;
}

.tier-option {
    cursor: pointer;
}

.tier-option input[type="radio"] {
    display: none;
}

.tier-card {
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    background: white;
}

.tier-option input[type="radio"]:checked + .tier-card {
    border-color: #6A5ACD;
    background: linear-gradient(135deg, #6A5ACD 0%, #8B7ED8 100%);
    color: white;
}

.tier-card:hover {
    border-color: #6A5ACD;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(106, 90, 205, 0.15);
}

.tier-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.tier-description {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 12px;
}



.btn-large {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 24px;
}

.btn-loading {
    display: none;
}

/* New Verification Form Styles */
.verification-form-container {
    background: white;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #E5E5E5;
}

.verification-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E5E5E5;
}

.form-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
}

.btn-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s;
}

.btn-close:hover {
    background: #F5F5F5;
    color: #333;
}

.form-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #E5E5E5;
}

.table-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Spinner for loading states */
.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #6A5ACD;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.button-loading {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Document Verification Styles */
.file-upload-area {
    border: 2px dashed #D1D5DB;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    background: #FAFAFA;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-area:hover {
    border-color: #6A5ACD;
    background: #F8F7FF;
}

.file-upload-area.dragover {
    border-color: #6A5ACD;
    background: #F0EFFF;
    transform: scale(1.02);
}

.file-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.file-upload-icon {
    font-size: 48px;
    opacity: 0.6;
}

.file-upload-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    margin: 0 0 8px 0;
}

.file-upload-text p {
    color: #6B7280;
    margin: 0;
    font-size: 14px;
}

.file-upload-hint {
    font-size: 12px !important;
    color: #9CA3AF !important;
    margin-top: 8px !important;
}

.file-list {
    margin-top: 16px;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: white;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    margin-bottom: 8px;
    animation: slideInUp 0.3s ease-out;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.file-icon {
    font-size: 20px;
}

.file-details h4 {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin: 0 0 4px 0;
}

.file-details p {
    font-size: 12px;
    color: #6B7280;
    margin: 0;
}

.file-remove {
    background: #EF4444;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.file-remove:hover {
    background: #DC2626;
}

.results-container {
    background: white;
    border-radius: 16px;
    padding: 32px;
    margin-top: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #E5E5E5;
    animation: slideInUp 0.5s ease-out;
}

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

.results-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
}

.verification-status {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.verification-status.verified {
    background: #D1FAE5;
    color: #065F46;
}

.verification-status.suspicious {
    background: #FEF3C7;
    color: #92400E;
}

.verification-status.failed {
    background: #FEE2E2;
    color: #991B1B;
}

.result-section {
    margin-bottom: 24px;
    padding: 20px;
    background: #F9FAFB;
    border-radius: 12px;
    border-left: 4px solid #6A5ACD;
}

.result-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    margin: 0 0 12px 0;
}

.score-display {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.score-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.score-circle.high {
    background: linear-gradient(135deg, #10B981, #059669);
}

.score-circle.medium {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

.score-circle.low {
    background: linear-gradient(135deg, #EF4444, #DC2626);
}

.score-label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 4px;
}

.score-display p {
    font-size: 12px;
    color: #6B7280;
    margin: 0;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Enhanced form animations */
.verification-form-container {
    animation: fadeIn 0.5s ease-out;
}

.form-group {
    animation: slideInUp 0.3s ease-out;
    animation-fill-mode: both;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }
.form-group:nth-child(5) { animation-delay: 0.5s; }

/* Enhanced Business Verification Animations */
.business-verification-section .verification-form-container {
    animation: fadeIn 0.6s ease-out;
}

.business-verification-section .form-group {
    animation: slideInUp 0.4s ease-out;
    animation-fill-mode: both;
}

.business-verification-section .form-group:nth-child(1) { animation-delay: 0.1s; }
.business-verification-section .form-group:nth-child(2) { animation-delay: 0.2s; }
.business-verification-section .form-group:nth-child(3) { animation-delay: 0.3s; }
.business-verification-section .form-group:nth-child(4) { animation-delay: 0.4s; }
.business-verification-section .form-group:nth-child(5) { animation-delay: 0.5s; }

/* Tier selection animations */
.tier-option {
    transition: all 0.3s ease;
}

.tier-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(106, 90, 205, 0.15);
}

.tier-option input[type="radio"]:checked + .tier-card {
    animation: pulse 0.6s ease-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Button hover animations */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn:active {
    transform: translateY(0);
}

/* Form input focus animations */
.form-input:focus {
    transform: scale(1.02);
    box-shadow: 0 0 0 3px rgba(106, 90, 205, 0.1);
}

/* Table row hover animations */
.table tbody tr {
    transition: all 0.2s ease;
}

.table tbody tr:hover {
    background: #F8F7FF;
    transform: scale(1.01);
}

/* Stats card animations */
.stat-card {
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Navigation animations */
.nav-item {
    transition: all 0.3s ease;
}

.nav-item:hover {
    transform: translateX(4px);
    background: rgba(106, 90, 205, 0.1);
}

.nav-item.active {
    animation: slideInLeft 0.3s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Unified Verification Modal Styles */
/* Removed conflicting verification-modal rule - using the one below with proper positioning */

.verification-type-selection,
.verification-tier-selection {
    margin-bottom: 32px;
}

.verification-type-selection h3,
.verification-tier-selection h3 {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 16px;
}

.type-options,
.tier-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.type-option,
.tier-option {
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: white;
}

.type-option:hover,
.tier-option:hover {
    border-color: #6A5ACD;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(106, 90, 205, 0.15);
}

.type-option.active,
.tier-option.active {
    border-color: #6A5ACD;
    background: linear-gradient(135deg, #F8F7FF, #F0EFFF);
    box-shadow: 0 8px 25px rgba(106, 90, 205, 0.2);
}

.type-icon,
.tier-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.type-title,
.tier-title {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.type-description,
.tier-description {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 12px;
}


.tier-check {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    background: #6A5ACD;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tier-option.active .tier-check {
    opacity: 1;
}

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

.modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
}

.modal-body {
    padding: 32px;
}

.modal-footer {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    padding: 24px 32px;
    border-top: 1px solid #E5E5E5;
    background: #FAFAFA;
}

/* Modal overlay - for new verification modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-out;
}

/* Verification results modal - for verification details */
.verification-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.5) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10000 !important;
    animation: fadeIn 0.3s ease-out;
    margin: 0 !important;
    padding: 0 !important;
}

.modal-content {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.3s ease-out;
}

.verification-details-content {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    animation: slideInUp 0.3s ease-out;
    margin: auto;
    position: relative;
}

/* New verification modal content */
.new-verification-modal {
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .type-options,
    .tier-options {
        grid-template-columns: 1fr;
    }
    
    .verification-modal {
        width: 95%;
        margin: 20px;
    }
    
    .modal-body {
        padding: 24px;
    }
    
    .modal-header,
    .modal-footer {
        padding: 20px 24px;
    }
}

/* Footer Styles */
.footer {
    background: #1A1A1A;
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6A5ACD, #4B0082);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.footer-logo .logo-text {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.footer-description {
    color: #B0B0B0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    color: #B0B0B0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.social-link:hover {
    color: #6A5ACD;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #B0B0B0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #6A5ACD;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-copyright {
    color: #B0B0B0;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: #6A5ACD;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #8B7ED8;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}