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

body {
    font-family: 'Inter', sans-serif;
    background-color: #0f172a;
    color: white;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Particles Background */
.particles {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
}

.particle-1 { width: 8px; height: 8px; top: 20%; left: 20%; animation-delay: 0s; }
.particle-2 { width: 12px; height: 12px; top: 40%; right: 32%; animation-delay: 1s; }
.particle-3 { width: 4px; height: 4px; top: 60%; left: 33%; animation-delay: 2s; }
.particle-4 { width: 8px; height: 8px; bottom: 40%; right: 20%; animation-delay: 3s; }
.particle-5 { width: 4px; height: 4px; bottom: 20%; left: 25%; animation-delay: 4s; }
.particle-6 { width: 6px; height: 6px; top: 80%; right: 40%; animation-delay: 5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* CSS Variables for consistent theming */
:root {
    --primary-color: #6366f1;
    --primary-hover: #5b21b6;
    --secondary-color: #64748b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --dark-bg: #0f172a;
    --card-bg: #1e293b;
    --border-color: rgba(99, 102, 241, 0.2);
    --text-primary: #ffffff;
    --text-secondary: #ffffff;
    --navbar-bg: rgba(15, 23, 42, 0.98);
    --hero-gradient: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    --glow-color: rgba(99, 102, 241, 0.3);
}

/* Sidebar Menu */
.sidebar-menu {
    position: fixed;
    top: 64px;
    left: 0;
    width: 80px;
    height: calc(100vh - 64px); /* Full height from below navbar */
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(99, 102, 241, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.3);
    border-radius: 0 12px 12px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(99, 102, 241, 0.6) rgba(15, 23, 42, 0.5);
}

.sidebar-menu:hover {
    width: 280px;
}

.sidebar-menu.collapsed {
    left: -60px;
}

.sidebar-menu::-webkit-scrollbar {
    width: 6px;
}

.sidebar-menu::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 3px;
}

.sidebar-menu::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.6);
    border-radius: 3px;
}

.sidebar-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(99, 102, 241, 0.8);
}

.sidebar-nav {
    padding: 0.5rem 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.sidebar-nav-item {
    margin-bottom: 0.25rem;
}

.sidebar-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
    white-space: nowrap;
}

.sidebar-nav-link:hover,
.sidebar-nav-link.active {
    color: #ffffff;
    background: rgba(99, 102, 241, 0.2);
    border-left-color: #6366f1;
}

.sidebar-nav-link i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    min-width: 20px;
}

.sidebar-nav-link span {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.sidebar-menu:hover .sidebar-nav-link span {
    opacity: 1;
    transform: translateX(0);
}

/* ModernNavbar */
.navbar {
    background: var(--navbar-bg) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 0 !important;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    height: 64px;
}

.navbar .container {
    max-width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    text-decoration: none;
    background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand img {
    height: 40px;
    margin-right: 0.5rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background: #818cf8;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Navigation Links */
.navbar-nav .nav-link {
    color: #cbd5e1 !important;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.75rem 1rem !important;
    border-radius: 8px;
    margin: 0 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover {
    color: #ffffff !important;
    background: rgba(99, 102, 241, 0.2);
    transform: translateY(-1px);
}

.navbar-nav .nav-link i {
    font-size: 1rem;
}

/* Modern Buttons */
.btn {
    border-radius: 12px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, var(--primary-hover), #7c3aed);
    color: white;
}

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

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.btn-success {
    background: linear-gradient(135deg, var(--success-color), #059669);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    color: white;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    color: white;
}

.btn-danger {
    background: linear-gradient(135deg, var(--danger-color), #dc2626);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
    color: white;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
    color: white;
}

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

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

/* Support Button */
.btn-support {
    background: linear-gradient(135deg, #ff6b35, #f7931e) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-support:hover {
    background: linear-gradient(135deg, #e55a2b, #e8821a) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4) !important;
    color: white !important;
}

/* Content Container */
.content-container {
    margin-left: 80px;
    padding-top: 80px;
    transition: margin-left 0.3s ease;
}

.content-container.sidebar-collapsed {
    margin-left: 0;
}

/* Main content wrapper for consistent spacing */
.container, .container-fluid {
    width: 100%;
    max-width: none;
    padding: 0 2rem;
}

/* Modern Cards */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

.card-header {
    background: rgba(99, 102, 241, 0.1);
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
    font-weight: 600;
    padding: 1.25rem;
    border-radius: 16px 16px 0 0;
}

.card-body {
    padding: 1.5rem;
    background: transparent;
}

/* Form Controls */
.form-control, .form-select {
    background: rgba(30, 41, 59, 0.5);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    padding: 0.875rem 1rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.form-control:focus, .form-select:focus {
    background: rgba(30, 41, 59, 0.7);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    color: var(--text-primary);
}

.form-control::placeholder {
    color: #94a3b8;
}

.form-label {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Alerts */
.alert {
    border-radius: 12px;
    border: none;
    font-weight: 500;
    padding: 1rem 1.25rem;
    backdrop-filter: blur(10px);
}

.alert-success {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.15);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning-color);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Badges */
.badge {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* List Groups */
.list-group-item {
    background: var(--card-bg);
    border-color: var(--border-color);
    color: var(--text-primary);
    border-radius: 8px !important;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.list-group-item:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateX(5px);
}

.list-group-item.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Tables */
.table {
    color: var(--text-primary);
    background: transparent;
}

.table-hover tbody tr:hover {
    background: rgba(99, 102, 241, 0.1);
}

.table th {
    border-color: var(--border-color);
    background: rgba(99, 102, 241, 0.1);
    color: var(--text-primary);
}

.table td {
    border-color: var(--border-color);
}

/* Dropdown Menus */
.dropdown-menu {
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.dropdown-item {
    color: #cbd5e1;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(99, 102, 241, 0.2);
    color: #ffffff;
}

.dropdown-divider {
    border-color: var(--border-color);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.display-4 {
    font-weight: 800;
}

.text-muted {
    color: #94a3b8 !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.text-secondary {
    color: #cbd5e1 !important;
}

.text-light {
    color: #f1f5f9 !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.8) 50%, rgba(15, 23, 42, 0.95) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    margin-top: -80px;
    padding-top: 120px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-weight: 800;
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Business Cards */
.business-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.business-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.featured-business {
    border: 2px solid #ffd700 !important;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #000;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

/* Mobile Navigation */
@media (max-width: 1024px) {
    .sidebar-menu {
        display: none;
    }

    .content-container {
        margin-left: 0;
        padding-top: 64px;
        width: 100%;
        max-width: 100%;
    }

    .hamburger {
        display: flex;
    }

    .navbar-nav .nav-link {
        display: none;
    }

    /* Full screen mobile navigation */
    .mobile-nav-menu {
        position: fixed;
        top: 64px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 64px);
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        transition: right 0.3s ease;
        z-index: 1020;
        overflow-y: auto;
    }

    .mobile-nav-menu.active {
        right: 0;
    }

    .mobile-nav-content {
        padding: 1rem 0;
        width: 100%;
    }

    .mobile-nav-link {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem 2rem;
        color: #cbd5e1;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
        width: 100%;
    }

    .mobile-nav-link:hover,
    .mobile-nav-link.active {
        color: #ffffff;
        background: rgba(99, 102, 241, 0.2);
        border-left-color: #6366f1;
    }

    .mobile-nav-link i {
        font-size: 1.2rem;
        width: 24px;
        text-align: center;
        min-width: 24px;
    }

    .mobile-nav-divider {
        height: 1px;
        background: rgba(99, 102, 241, 0.2);
        margin: 1rem 2rem;
    }

    /* Full screen content */
    .container, .container-fluid {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    /* Mobile-friendly cards */
    .card {
        margin-bottom: 1rem;
        border-radius: 12px;
    }

    .card-body {
        padding: 1rem;
    }

    /* Mobile navbar adjustments */
    .navbar .container-fluid {
        padding: 0 1rem;
        width: 100%;
    }

    /* Mobile-friendly footer */
    .footer {
        margin-left: 0;
        width: 100%;
    }

    .footer .container-fluid {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
    }

    /* Mobile-friendly buttons */
    .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
        width: auto;
        margin-bottom: 0.5rem;
    }

    .d-grid .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    /* Hero section mobile */
    .hero-section {
        padding: 4rem 0;
        margin-top: -64px;
        padding-top: 80px;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (min-width: 1025px) {
    .hamburger {
        display: none !important;
    }

    .sidebar-menu {
        display: block;
    }

    .navbar-nav .nav-link {
        display: flex;
    }
}

/* Tablet Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .content-container {
        padding-top: 64px;
        width: 100%;
    }

    .container, .container-fluid {
        padding: 0 2rem;
        width: 100%;
        max-width: 100%;
    }

    .hero-section {
        padding: 5rem 0;
        margin-top: -64px;
        padding-top: 80px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}

/* Mobile Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
        margin-top: -64px;
        padding-top: 80px;
    }

    .hero-section h1,
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .content-container {
        padding-top: 64px;
        width: 100%;
        max-width: 100%;
    }

    .card-body {
        padding: 1rem;
    }

    .btn {
        justify-content: center;
        font-size: 0.9rem;
    }

    .container, .container-fluid {
        padding: 0 1rem;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }

    /* Mobile navigation improvements */
    .navbar {
        height: 64px;
    }

    .navbar .container-fluid {
        height: 64px;
        padding: 0 1rem;
    }

    /* Dropdown adjustments for mobile */
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        margin-top: 0.5rem;
        border-radius: 8px;
        max-height: 300px;
        overflow-y: auto;
    }

    /* Footer mobile improvements */
    .footer {
        margin-left: 0;
        width: 100%;
        padding: 3rem 0 1rem !important;
    }

    .footer .container-fluid {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
    }

    .footer .col-lg-4,
    .footer .col-md-6 {
        margin-bottom: 2rem;
    }

    .footer .d-grid .btn {
        margin-bottom: 0.5rem;
    }

    /* Business cards mobile */
    .business-card {
        margin-bottom: 1rem;
    }

    .action-buttons-container {
        flex-direction: column;
        gap: 8px;
    }

    .action-btn {
        width: 100%;
        min-width: auto;
        text-align: center;
    }

    /* Form improvements */
    .form-control, .form-select {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }

    /* Table responsiveness */
    .table-responsive {
        margin-bottom: 1rem;
    }

    /* Modal improvements */
    .modal-dialog {
        margin: 1rem;
        width: calc(100% - 2rem);
        max-width: none;
    }

    /* Alert improvements */
    .alert {
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .container, .container-fluid {
        padding: 0 0.75rem;
    }

    .card-body {
        padding: 0.75rem;
    }

    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .navbar .container-fluid {
        padding: 0 0.75rem;
    }

    .mobile-nav-link {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .mobile-nav-divider {
        margin: 0.75rem 1.5rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
    border-top: 1px solid #374151;
    margin-top: 60px;
    position: relative;
    z-index: 10;
    width: 100%;
    margin-left: 0;
    padding: 4rem 0 2rem !important;
    left: 0;
    right: 0;
}

.footer .container-fluid {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: auto;
    padding: 0 2rem;
}

@media (max-width: 1024px) {
    .footer .container-fluid {
        max-width: 100%;
        margin-left: 0;
        padding: 0 1rem;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: block;
    padding: 0.5rem 0;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.legal-link {
    border-left: 2px solid transparent;
    padding-left: 1rem !important;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.legal-link:hover {
    border-left-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
    padding-left: 1.5rem !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

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

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}


/* Main Menu Section */
.main-menu-section {
    background: rgba(30, 41, 59, 0.5);
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
}

.main-menu {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.main-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    min-width: 100px;
}

.main-menu-item:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--primary-color);
    text-decoration: none;
}

.main-menu-item i {
    font-size: 1.5rem;
}

.main-menu-item span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Hero Styles */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.gradient-text {
    background: linear-gradient(135deg, #c7d2fe 0%, #ddd6fe 50%, #e0e7ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Floating Elements */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Status badges */
.status-pending {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning-color);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-approved {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-rejected {
    background: rgba(239, 68, 68, 0.15);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Mobile Navigation Menu for non-logged-in users */
.mobile-nav-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 80px);
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    border-left: 1px solid rgba(99, 102, 241, 0.2);
    transition: right 0.3s ease;
    z-index: 1020;
    overflow-y: auto;
}

.mobile-nav-menu.active {
    right: 0;
}

.mobile-nav-content {
    padding: 2rem 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #ffffff;
    background: rgba(99, 102, 241, 0.2);
    border-left-color: #6366f1;
}

.mobile-nav-link i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    min-width: 20px;
}

.mobile-nav-divider {
    height: 1px;
    background: rgba(99, 102, 241, 0.2);
    margin: 1rem 1.5rem;
}