/* Dashboard Specific Styles */
:root {
    --dashboard-primary: #10b981;
    --dashboard-secondary: #059669;
    --dashboard-accent: #f59e0b;
    --dashboard-success: #10b981;
    --dashboard-warning: #f59e0b;
    --dashboard-danger: #ef4444;
    --dashboard-info: #3b82f6;
    --dashboard-light: #f8fafc;
    --dashboard-dark: #1e293b;
    --dashboard-border: #e2e8f0;
    --dashboard-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --dashboard-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* User Menu Styles */
.user-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 1rem;
}

.user-name {
    font-weight: 500;
    color: var(--text-primary);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    background: var(--dashboard-danger);
    color: white;
    border: none;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-small:hover {
    background: #dc2626;
    transform: translateY(-1px);
}

.btn-success {
    background: var(--dashboard-success);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-success:hover {
    background: var(--dashboard-secondary);
    transform: translateY(-2px);
    box-shadow: var(--dashboard-shadow-lg);
}

/* Modal Styles */
.modal {
    display: none; /* Change this to 'block' temporarily for testing */
    position: fixed;
    z-index: 9999; /* Increased z-index to ensure it's on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 0 auto;
    padding: 0;
    border-radius: 1rem;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.3s ease-out;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--dashboard-primary), var(--dashboard-secondary));
    color: white;
    padding: 1.5rem;
    border-radius: 1rem 1rem 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 2rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--dashboard-dark);
    font-size: 0.875rem;
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="email"] {
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--dashboard-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.password-input {
    position: relative;
    display: flex;
    align-items: center;
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: var(--dashboard-primary);
}

.form-actions {
    margin-top: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    accent-color: var(--dashboard-primary);
}

.form-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.form-footer a {
    color: var(--dashboard-primary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.form-footer a:hover {
    color: var(--dashboard-secondary);
    text-decoration: underline;
}

/* Mobile responsive modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 0 auto;
        width: 95%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.25rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .form-footer {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
}

/* No Claims Message */
.no-claims-message {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--dashboard-light);
    border-radius: 1rem;
    margin: 2rem 0;
}

.no-claims-content i {
    font-size: 4rem;
    color: var(--dashboard-primary);
    margin-bottom: 1rem;
}

.no-claims-content h2 {
    font-size: 2rem;
    color: var(--dashboard-dark);
    margin-bottom: 1rem;
}

.no-claims-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Status Classes */
.status-submitted {
    background: var(--dashboard-info);
    color: white;
}

.status-under-review {
    background: var(--dashboard-warning);
    color: white;
}

.status-investigating {
    background: var(--dashboard-warning);
    color: white;
}

.status-in-progress {
    background: var(--dashboard-primary);
    color: white;
}

.status-recovered {
    background: var(--dashboard-success);
    color: white;
}

.status-closed {
    background: var(--dashboard-secondary);
    color: white;
}

/* Enhanced closed status styling */
.status-closed {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

/* Legacy status classes for backward compatibility */
.status-query-received {
    background: var(--dashboard-info);
    color: white;
}

.status-under-investigation {
    background: var(--dashboard-warning);
    color: white;
}

.status-recovery-in-process {
    background: var(--dashboard-primary);
    color: white;
}

.status-recovery-completed {
    background: var(--dashboard-success);
    color: white;
}

.status-funds-disbursed {
    background: var(--dashboard-secondary);
    color: white;
}

/* No Updates Message */
.no-updates {
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
}

.no-updates i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dashboard-info);
}

/* Contact Link Styles */
.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dashboard-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--dashboard-secondary);
}

/* Dashboard Mini Slider */
.dashboard-mini-slider {
    background: linear-gradient(135deg, hsl(var(--primary-dark)), hsl(var(--primary)));
    color: white;
    padding: 2rem 0;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.dashboard-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.dashboard-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.dashboard-slide.active {
    display: block;
    opacity: 1;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
}

.slide-text h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
}

.slide-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1rem;
    min-width: 120px;
    transition: all var(--transition-fast);
}

.stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(var(--accent));
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Dashboard Slider Controls */
.dashboard-slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding: 0 2rem;
}

.dashboard-slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dashboard-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dashboard-dot.active {
    background: hsl(var(--accent));
    border-color: hsl(var(--accent));
    box-shadow: 0 0 10px hsla(var(--accent), 0.5);
}

.dashboard-dot:hover {
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dashboard-slider-arrows {
    display: flex;
    gap: 0.5rem;
}

.dashboard-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.dashboard-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    color: hsl(var(--accent));
}

/* Enhanced Dashboard Main */
.dashboard-main {
    background: hsl(var(--muted));
    min-height: 100vh;
}

/* Enhanced Case Overview */
.case-overview {
    margin-bottom: 3rem;
}

.case-card {
    background: linear-gradient(135deg, white, hsl(var(--muted)));
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--accent)));
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.case-info h2 {
    color: var(--primary);
    margin: 0 0 0.5rem 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.case-type {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

.case-status-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.case-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.case-priority {
    background: linear-gradient(135deg, hsl(var(--destructive)), hsl(var(--destructive-dark)));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.case-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.case-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition-fast);
}

.case-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.progress-bar-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--accent)));
    border-radius: 4px;
    transition: width 1s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.progress-text {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

/* Enhanced Progress Tracking */
.progress-tracking {
    background: white;
    border-radius: var(--radius-xl);
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.progress-tracking h2 {
    color: var(--primary);
    margin-bottom: 3rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 30px;
    bottom: 30px;
    width: 3px;
    background: linear-gradient(to bottom, hsl(var(--success)), hsl(var(--warning)), hsl(var(--muted)));
    border-radius: 2px;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-marker {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    z-index: 2;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.timeline-step.completed .step-marker {
    background: linear-gradient(135deg, hsl(var(--success)), hsl(var(--success-dark)));
    color: white;
}

.timeline-step.active .step-marker {
    background: linear-gradient(135deg, hsl(var(--warning)), hsl(var(--warning-dark)));
    color: white;
    animation: pulse-glow 2s infinite;
}

.timeline-step.pending .step-marker {
    background: hsl(var(--muted));
    color: var(--text-muted);
}

.step-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.7);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.step-header h3 {
    color: var(--primary);
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.step-date {
    font-size: 0.9rem;
    color: hsl(var(--accent));
    font-weight: 600;
    background: hsla(var(--accent), 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
}

.step-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.step-details {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.detail-badge {
    background: hsl(var(--muted));
    color: var(--text-muted);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.detail-badge.active {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    color: white;
}

/* Enhanced Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Enhanced Dashboard Cards */
.dashboard-card {
    background: linear-gradient(135deg, white, hsl(var(--muted)));
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.card-header h3 {
    color: var(--primary);
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Live Updates Card */
.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: hsl(var(--success));
    font-weight: 600;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: hsl(var(--success));
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.updates-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 300px;
    overflow-y: auto;
}

.update-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition-fast);
}

.update-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.update-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.update-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.update-title {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

.update-time {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.update-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Agent Card */
.online-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: hsl(var(--success));
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot.online {
    background: hsl(var(--success));
    animation: pulse 2s infinite;
}

.agent-profile {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.agent-avatar {
    position: relative;
}

.agent-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.agent-status-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: linear-gradient(135deg, hsl(var(--accent)), hsl(var(--accent-dark)));
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-weight: 600;
}

.agent-info h4 {
    color: var(--primary);
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.agent-title {
    color: var(--text-muted);
    margin: 0 0 0.75rem 0;
    font-size: 0.9rem;
}

.agent-stats {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.stat-item i {
    color: hsl(var(--accent));
}

.communication-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.comm-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.comm-btn.primary {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-dark)));
    color: white;
    box-shadow: 0 4px 15px hsla(var(--primary), 0.3);
}

.comm-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px hsla(var(--primary), 0.4);
}

.comm-btn.secondary {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.comm-btn.secondary:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Documents Card */
.upload-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, hsl(var(--accent)), hsl(var(--accent-dark)));
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.upload-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px hsla(var(--accent), 0.3);
}

.documents-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition-fast);
}

.document-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.document-preview {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.document-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.document-name {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

.document-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.document-actions {
    display: flex;
    gap: 0.5rem;
}

.doc-action {
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.doc-action:hover {
    background: hsl(var(--primary));
    color: white;
    transform: scale(1.1);
}

/* Actions Card */
.actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: center;
}

.action-item:hover {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.action-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: hsl(var(--primary));
    transition: all var(--transition-fast);
}

.action-item:hover .action-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.action-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

.action-item:hover span {
    color: white;
}

/* Enhanced Recovery Options */
.recovery-options {
    background: white;
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.options-header {
    text-align: center;
    margin-bottom: 3rem;
}

.options-header h2 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
}

.options-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.option-card {
    background: linear-gradient(135deg, white, hsl(var(--muted)));
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--accent)));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.option-card:hover::before {
    transform: scaleX(1);
}

.option-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.option-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.option-content h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.option-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.option-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding-left: 0.5rem;
}

.option-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, hsl(var(--accent)), hsl(var(--accent-dark)));
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.option-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px hsla(var(--accent), 0.4);
}

/* Animations */
@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.7;
        transform: scale(1.05);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 4px 25px hsla(var(--warning), 0.5);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .user-menu {
        flex-direction: column;
        gap: 0.5rem;
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .nav-cta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .case-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .timeline-container {
        padding-left: 1rem;
    }
    
    .timeline-step {
        margin-bottom: 2rem;
    }
    
    .step-content {
        margin-left: 1rem;
    }
    
    .slide-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat {
        text-align: center;
    }
    
    .case-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .case-status-container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .progress-tracking h2 {
        text-align: center;
    }
    
    .no-claims-message {
        padding: 2rem 1rem;
    }
    
    .no-claims-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .slide-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat {
        width: 100%;
        max-width: 200px;
    }
    
    .dashboard-card {
        padding: 1.5rem;
    }
    
    .progress-tracking,
    .case-card,
    .recovery-options {
        padding: 1.5rem;
    }
    
    .step-content {
        padding: 1.5rem;
    }
}

/* Enhanced Animation for Progress Bar */
.progress-fill {
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Pulse Animation for Live Updates */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.live-dot {
    animation: pulse 2s infinite;
}

/* Enhanced Timeline Animations */
.timeline-step {
    transition: all 0.3s ease;
}

.timeline-step:hover {
    transform: translateX(5px);
}

.step-marker {
    transition: all 0.3s ease;
}

.timeline-step.completed .step-marker {
    background: var(--dashboard-success);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

.timeline-step.active .step-marker {
    background: var(--dashboard-primary);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
    animation: pulse 2s infinite;
}

/* Enhanced Card Hover Effects */
.dashboard-card {
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--dashboard-shadow-lg);
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--dashboard-primary);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced Form Elements */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States for Better Accessibility */
.btn:focus,
.nav-link:focus,
.contact-link:focus {
    outline: 2px solid var(--dashboard-primary);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .nav,
    .dashboard-slider-controls,
    .btn {
        display: none !important;
    }
    
    .dashboard-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* Additional Modal Styles */
.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--dashboard-light);
    color: var(--dashboard-dark);
}

/* Alert Styles */
.alert {
    margin: 1rem 1.5rem;
    padding: 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

/* Authentication Notification Styles */
.auth-notification {
    margin: 0 1.5rem 1rem 1.5rem;
    padding: 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    animation: slideInDown 0.3s ease-out;
    position: relative;
}

.notification-success {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
    border: 1px solid #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.notification-error {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #991b1b;
    border: 1px solid #ef4444;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.15);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.notification-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.notification-success .notification-icon {
    color: #10b981;
}

.notification-error .notification-icon {
    color: #ef4444;
}

.notification-message {
    flex: 1;
    font-weight: 500;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
    opacity: 0.7;
}

.notification-close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Login Form Styles */
.login-form {
    padding: 1.5rem;
}

.login-form .form-group {
    margin-bottom: 1.5rem;
}

.login-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dashboard-dark);
}

.login-form input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--dashboard-border);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.login-form input:focus {
    outline: none;
    border-color: var(--dashboard-primary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.password-input {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: var(--dashboard-primary);
}

.form-actions {
    margin-bottom: 1.5rem;
}

.btn-full {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    font-weight: 500;
}

/* Bank Registration Form Styling */
.form-section {
    margin-bottom: 2rem;
}

.form-section h4 {
    color: var(--dashboard-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.form-section hr {
    margin: 0.5rem 0 1rem 0;
    border-color: var(--dashboard-border);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.5rem;
}

.col-md-2, .col-md-3, .col-md-4, .col-md-6, .col-md-8 {
    padding: 0 0.5rem;
    margin-bottom: 1rem;
}

.col-md-2 { flex: 0 0 16.666667%; }
.col-md-3 { flex: 0 0 25%; }
.col-md-4 { flex: 0 0 33.333333%; }
.col-md-6 { flex: 0 0 50%; }
.col-md-8 { flex: 0 0 66.666667%; }

@media (max-width: 768px) {
    .col-md-2, .col-md-3, .col-md-4, .col-md-6, .col-md-8 {
        flex: 0 0 100%;
    }
}

.form-footer {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.form-footer p {
    margin: 0.5rem 0;
}

.form-footer a {
    color: var(--dashboard-primary);
    text-decoration: none;
    font-weight: 500;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* Welcome Section Styles */
.welcome-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--dashboard-primary) 0%, var(--dashboard-secondary) 100%);
    color: white;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.welcome-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.welcome-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.welcome-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.welcome-features {
    display: grid;
    gap: 2rem;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature p {
    opacity: 0.8;
    line-height: 1.5;
}

/* Mobile Responsive for Modal and Welcome */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .welcome-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .welcome-text h1 {
        font-size: 2rem;
    }
    
    .welcome-text p {
        font-size: 1.1rem;
    }
    
    .welcome-actions {
        justify-content: center;
    }
    
    .welcome-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature {
        padding: 1.5rem;
    }
    
    .feature i {
        font-size: 2rem;
    }
    
    .feature h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .modal-header {
        padding: 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.25rem;
    }
    
    .login-form {
        padding: 1rem;
    }
    
    .welcome-section {
        padding: 2rem 0;
    }
    
    .welcome-text h1 {
        font-size: 1.75rem;
    }
    
    .welcome-text p {
        font-size: 1rem;
    }
    
    .welcome-actions {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
        text-align: center;
    }
}

/* Withdrawal Section Styles */
.withdrawal-section {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 0.75rem;
    border: 1px solid var(--dashboard-border);
}

.withdrawal-options {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.withdrawal-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    text-decoration: none;
    border: 2px solid transparent;
}

.withdrawal-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--dashboard-shadow-lg);
}

.withdrawal-btn i {
    font-size: 1.1rem;
}

.withdrawal-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

/* Withdrawal Modal Styles */
.withdrawal-modal-content {
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.withdrawal-form-container {
    padding: 1.5rem;
}

.withdrawal-summary {
    background: var(--dashboard-light);
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    border: 1px solid var(--dashboard-border);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--dashboard-border);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    font-weight: 500;
    color: var(--text-secondary);
}

.summary-value {
    font-weight: 600;
    color: var(--dashboard-primary);
}

.withdrawal-form {
    display: none;
}

.withdrawal-form.active {
    display: block;
}

.withdrawal-form .form-group {
    margin-bottom: 1.5rem;
}

.withdrawal-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.withdrawal-form input,
.withdrawal-form select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--dashboard-border);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.withdrawal-form input:focus,
.withdrawal-form select:focus {
    outline: none;
    border-color: var(--dashboard-primary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-help {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.amount-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.amount-input-group input {
    padding-right: 3rem;
}

.currency-symbol {
    position: absolute;
    right: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    pointer-events: none;
}

/* Responsive Design for Withdrawal */
@media (max-width: 768px) {
    .withdrawal-options {
        flex-direction: column;
    }
    
    .withdrawal-btn {
        justify-content: center;
    }
    
    .withdrawal-modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .withdrawal-form-container {
        padding: 1rem;
    }
    
    .withdrawal-summary {
        padding: 1rem;
    }
    
    .summary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

@media (max-width: 480px) {
    .withdrawal-section {
        padding: 1rem;
    }
    
    .withdrawal-options {
        gap: 0.75rem;
    }
    
    .withdrawal-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Success Message Styling */
.success-content {
    padding: 2rem;
    text-align: center;
}

.success-icon {
    margin-bottom: 1.5rem;
}

.success-icon i {
    font-size: 4rem;
    color: var(--dashboard-success);
    animation: successPulse 0.6s ease-out;
}

.success-title {
    color: var(--dashboard-success);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: slideInUp 0.6s ease-out 0.2s both;
}

.success-message {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: slideInUp 0.6s ease-out 0.4s both;
}

.success-details {
    margin-bottom: 2rem;
    animation: slideInUp 0.6s ease-out 0.6s both;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 0.75rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.detail-item i {
    color: var(--dashboard-success);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.detail-item span {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.success-actions {
    animation: slideInUp 0.6s ease-out 0.8s both;
}

/* Success Animations */
@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideInUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Text center utility */
.text-center {
    text-align: center;
}

/* Pre-filled form indicator */
.prefilled-indicator {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid #10b981;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
    animation: slideInDown 0.5s ease-out;
}

.prefilled-indicator i {
    color: #10b981;
    font-size: 1.1rem;
}

@keyframes slideInDown {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Quick Access Section Styles */
.quick-access-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 3rem 0;
    margin: 2rem 0;
}

.quick-access-content {
    text-align: center;
}

.quick-access-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dashboard-dark);
    margin-bottom: 1rem;
}

.quick-access-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.quick-access-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--dashboard-shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.quick-access-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dashboard-primary), var(--dashboard-secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.quick-access-card:hover::before {
    transform: scaleX(1);
}

.quick-access-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--dashboard-shadow-lg);
    border-color: var(--dashboard-primary);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.funds-access .card-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.claim-access .card-icon {
    background: linear-gradient(135deg, var(--dashboard-primary), var(--dashboard-secondary));
}

.support-access .card-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.quick-access-card:hover .card-icon {
    transform: scale(1.1);
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dashboard-dark);
    margin-bottom: 1rem;
}

.card-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-arrow {
    color: var(--dashboard-primary);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.quick-access-card:hover .card-arrow {
    transform: translateX(8px);
}

/* Responsive Design for Quick Access */
@media (max-width: 768px) {
    .quick-access-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .quick-access-header h2 {
        font-size: 2rem;
    }
    
    .quick-access-card {
        padding: 1.5rem;
    }
}