/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Client Portal Button Styles */
.client-portal-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.client-portal-btn:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6b4190 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.mobile-client-portal {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 1200px;
    width: 100%;
    margin: 10px 0;
    justify-content: center;
}

.mobile-client-portal:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6b4190 100%);
}

/* Client Portal Modal Styles */
.client-portal-modal {
    width: 1200px;
    height: 100%;
    overflow-y: auto;
}

.client-portal-content {
    padding: 0;
}

.client-welcome {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.client-avatar {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.client-info h3 {
    margin: 0;
    font-size: 24px;
}

.client-info p {
    margin: 5px 0 0;
    opacity: 0.9;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 30px;
    background: #f8f9fa;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.stat-icon.pending {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.stat-icon.active {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.stat-icon.invoices {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.stat-details h4 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    margin: 5px 0;
    color: #2d3748;
}

.stat-label {
    font-size: 14px;
    color: #718096;
    margin: 0;
}

.quick-actions {
    padding: 30px;
}

.quick-actions h3 {
    margin-bottom: 20px;
    color: #2d3748;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.action-btn {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #4a5568;
}

.action-btn:hover {
    border-color: #667eea;
    background: #f7fafc;
    transform: translateY(-2px);
    color: #667eea;
}

.action-btn i {
    font-size: 28px;
}

.recent-activity {
    padding: 0 30px 30px;
}

.recent-activity h3 {
    margin-bottom: 20px;
    color: #2d3748;
}

.activity-list {
    background: white;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
    transition: background 0.3s ease;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-item:hover {
    background: #f8f9fa;
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.activity-icon.success {
    background: #48bb78;
}

.activity-icon.pending {
    background: #ed8936;
}

.activity-icon.payment {
    background: #4299e1;
}

.activity-details {
    flex: 1;
}

.activity-details p {
    margin: 0;
}

.activity-time {
    font-size: 14px;
    color: #718096;
    margin-top: 5px;
}

.mock-login-section {
    background: #f8f9fa;
    border-top: 1px solid #e2e8f0;
    padding: 30px;
}

.mock-login-info {
    background: #e6f7ff;
    border: 1px solid #91d5ff;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.mock-login-info i {
    color: #1890ff;
    font-size: 20px;
    margin-top: 2px;
}

.mock-login-form {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mock-login-form h4 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #2d3748;
}

.demo-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
    justify-content: center;
}

.demo-btn:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6b4190 100%);
    transform: translateY(-2px);
}

/* Responsive styles */
@media (max-width: 768px) {
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .actions-grid {
        grid-template-columns: 1fr;
    }
    
    .client-welcome {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .client-portal-modal {
        margin: 20px;
    }
}
:root {
    --primary-blue: #1e40af;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --blue-800: #1e40af;
    --blue-900: #1e3a8a;
    --green-600: #059669;
    --green-700: #047857;
    --purple-600: #7c3aed;
    --purple-700: #6d28d9;
    --yellow-500: #eab308;
    --red-500: #ef4444;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 6px 8px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --radius-sm: 0.25rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.25rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-900);
    background-color: white;
    line-height: 1.5;
    font-size: 0.9375rem;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Top Bar - Fixed and Sticky */
.top-bar {
    background: linear-gradient(to right, var(--blue-900), var(--blue-800));
    color: white;
    padding: 0.5rem 1rem;
    position: sticky;
    top: 0;
    z-index: 1100;
    box-shadow: var(--shadow-md);
    height: 46px;
    display: flex;
    align-items: center;
    font-size: 0.6rem;
}

.top-bar-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

@media (min-width: 668px) {
    .top-bar-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.hotline span a {
    background-color: #FFD700; /* Golden yellow */
    color: black;
    font-weight: bold;
    text-decoration: none;
    padding: 8px 15px 8px 35px; /* Extra left padding for icon */
    display: inline-block;
    border-radius: 25px; /* Smooth edges - fully rounded */
    position: relative;
    transition: all 0.3s ease;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Exclamation icon using Font Awesome */
.hotline span a::before {
    font-family: "Font Awesome 6 Free";
    content: "\f12a"; /* Unicode for exclamation icon */
    font-weight: 900;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: black;
    font-size: 14px;
}

/* Hover effect - enlargement and brighter gold */
.hotline span a:hover {
    background-color: #FFE55C; /* Bright gold on hover */
    transform: scale(1.1); /* Enlargement effect */
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4); /* Golden glow */
    color: black;
}

/* Optional: Slight rotation of icon on hover for extra effect */
.hotline span a:hover::before {
    transform: translateY(-50%) rotate(20deg);
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .news-ticker {
        width: 65%;
    }
}

.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: inline-block;
    white-space: nowrap;
    padding-right: 100%;
    animation: ticker 30s linear infinite;
    font-size: 0.7125rem;
    color: white;
    letter-spacing: 0.025em;
    line-height: 1;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

@keyframes ticker {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Pause animation on hover */
.ticker-wrapper:hover .ticker-content {
    animation-play-state: paused;
}

/* Header - Fixed and Sticky below top bar */
.header {
    background: white;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 36px;
    z-index: 1000;
    border-bottom: 1px solid var(--gray-200);
}

.header-content {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1.2rem;
    }
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.logo-container {
    position: relative;
}

.logo-circle {
    width: 2.95rem;
    height: 2.95rem;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue-600), var(--green-600));
    padding: 2px;
    box-shadow: var(--shadow-md);
}

.logo-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 50%;
    z-index: 1;
}

.logo-img {
    width: 2.95rem;
    height: 2.95rem;
    object-fit: contain;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.logo-dot {
    position: absolute;
    bottom: -0.125rem;
    right: -0.125rem;
    width: 1.25rem;
    height: 1.25rem;
    background: var(--green-500);
    border-radius: 50%;
    border: 2px solid white;
}

.logo-text h1 {
    font-size: 0.8125rem;
    font-weight: 900;
    color: var(--gray-900);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .logo-text h1 {
        font-size: 1.45rem;
    }
}

.tagline {
    font-size: 0.8125rem;
    color: var(--gray-600);
    margin-top: 0.125rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.tagline i {
    color: var(--green-600);
}

.nav-section {
    display: flex;
    align-items: center;
    gap: 1.95rem;
    margin-left: auto;
    flex-shrink: 0;
}

.desktop-nav {
    display: none;
    gap: 1.25rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-link {
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.65rem;
    position: relative;
    text-decoration: none;
    transition: color 0.2s;
    padding: 0.375rem 0;
    font-size: 0.695rem;
}

.nav-link:hover {
    color: var(--blue-600);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--blue-600);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link i {
    transition: transform 0.2s;
    font-size: 0.875rem;
}

.nav-link:hover i {
    transform: scale(1.1);
}

/* Downloads nav link specific style */
.downloads-nav {
    color: black;
}

.downloads-nav:hover {
    color:var(--blue-600);
}

.downloads-nav::after {
    background:var(--blue-600);
}

.staff-login-btn {
    background: linear-gradient(to right, var(--blue-600), var(--blue-700));
    color: white;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius);
    border: none;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
    font-size: 0.875rem;
}

.staff-login-btn:hover {
    background: linear-gradient(to right, var(--blue-700), var(--blue-800));
    box-shadow: var(--shadow);
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: flex;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-700);
    border-radius: var(--radius);
    transition: background-color 0.2s;
    font-size: 1.125rem;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn:hover {
    background-color: var(--gray-100);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    padding-bottom: 0.75rem;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 1rem;
    box-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: var(--radius);
    transition: all 0.2s;
    font-size: 0.9375rem;
}

.mobile-nav-link:hover {
    color: var(--blue-600);
    background: white;
}

.mobile-nav-link i {
    width: 18px;
    font-size: 0.875rem;
}

.mobile-staff-login {
    margin-top: 0.75rem;
    background: linear-gradient(to right, var(--blue-600), var(--blue-700));
    color: white;
    font-weight: 500;
    padding: 0.75rem;
    border-radius: var(--radius);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.875rem;
}

.mobile-staff-login:hover {
    background: linear-gradient(to right, var(--blue-700), var(--blue-800));
}

/* AI Assistant */
.ai-assistant-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.375rem;
}

.ai-assistant-header {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
    pointer-events: none;
    max-width: 200px;
}

.ai-assistant-header.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.ai-talk-text {
    display: block;
    font-size: 0.4875rem;
    font-weight: 600;
    color: var(--blue-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.125rem;
}

.ai-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.125rem;
}

.ai-subtitle {
    font-size: 0.8125rem;
    color: var(--gray-600);
}

.ai-assistant {
    position: relative;
}

.ai-chat-container {
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 0.75rem;
    width: 320px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.ai-chat-container.active {
    display: flex;
}

.ai-chat-header {
    background: linear-gradient(to right, var(--blue-600), var(--purple-600));
    color: white;
    padding: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.ai-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.ai-info {
    flex: 1;
}

.ai-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.125rem;
}

.ai-info p {
    font-size: 0.8125rem;
    opacity: 0.9;
}

.ai-close-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background-color: rgba(168, 166, 166, 0.884);
    border: none;
    color: rgb(255, 253, 253);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: var(--radius-sm);
    transition: background-color 0.2s;
    font-size: 0.875rem;
}

.ai-close-btn:hover {
    background-color: rgb(255, 0, 0);
}

.ai-chat-messages {
    flex: 1;
    max-height: 300px;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.ai-message {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.ai-message.ai-bot .message-content {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 0.75rem;
    border: 1px solid var(--gray-200);
    font-size: 0.875rem;
}

.ai-message.ai-user .message-content {
    background: linear-gradient(to right, var(--blue-50), var(--blue-100));
    border-radius: var(--radius);
    padding: 0.75rem;
    border: 1px solid var(--blue-200);
    margin-left: auto;
    max-width: 80%;
    font-size: 0.875rem;
}

.message-content p {
    color: var(--gray-800);
    line-height: 1.4;
}

.message-content ul {
    margin-top: 0.375rem;
    padding-left: 1rem;
}

.message-content li {
    color: var(--gray-700);
    margin-bottom: 0.125rem;
    font-size: 0.8125rem;
}

.message-time {
    font-size: 0.6875rem;
    color: var(--gray-500);
    text-align: right;
}

/* Typing indicator */
.typing-indicator .message-content {
    background: var(--gray-100) !important;
}

.typing-dots {
    display: flex;
    gap: 0.25rem;
    padding: 0.375rem;
}

.typing-dots span {
    width: 0.375rem;
    height: 0.375rem;
    background: var(--gray-400);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typing {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.ai-chat-input {
    padding: 0.875rem;
    border-top: 1px solid var(--gray-200);
    display: flex;
    gap: 0.5rem;
}

.ai-chat-input input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 0.8125rem;
    transition: border-color 0.2s;
}

.ai-chat-input input:focus {
    outline: none;
    border-color: var(--blue-500);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

.ai-chat-input button {
    background: linear-gradient(to right, var(--blue-600), var(--blue-700));
    color: white;
    border: none;
    border-radius: var(--radius);
    width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.875rem;
}

.ai-chat-input button:hover {
    background: linear-gradient(to right, var(--blue-700), var(--blue-800));
    transform: translateY(-1px);
}

.ai-quick-questions {
    padding: 0 0.875rem 0.875rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.quick-question {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 0.5rem;
    font-size: 0.6875rem;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    justify-content: center;
}

.quick-question:hover {
    background: var(--gray-100);
    border-color: var(--blue-300);
    color: var(--blue-600);
}

.quick-question i {
    font-size: 0.75rem;
}

.ai-toggle-btn {
    background: linear-gradient(to right, var(--purple-600), var(--blue-600));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    font-size: 0.875rem;
}

.ai-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.ai-toggle-btn i {
    font-size: 1rem;
}

/* Modals */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    display: none;
}

.modal-overlay.active {
    display: flex;
}

.modal-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal {
    position: relative;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 24rem;
    padding: 1.5rem;
    z-index: 10;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-900);
}

.modal-header p {
    color: var(--gray-600);
    font-size: 0.8125rem;
    margin-top: 0.125rem;
}

.modal-close {
    color: var(--gray-500);
    background: none;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s;
    font-size: 1.125rem;
}

.modal-close:hover {
    color: var(--gray-700);
    background-color: var(--gray-100);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 1.125rem;
}

.input-with-icon input {
    width: 100%;
    padding-left: 2.75rem;
    padding-right: 0.875rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    transition: all 0.2s;
}

.input-with-icon input:focus {
    outline: none;
    border-color: var(--blue-500);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

.form-error {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 0.75rem;
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
    display: none;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
}

.form-error.active {
    display: flex;
}

.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8125rem;
    margin-bottom: 1.25rem;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--gray-600);
}

.forgot-password {
    color: var(--blue-600);
    font-weight: 500;
    text-decoration: none;
}

.forgot-password:hover {
    color: var(--blue-800);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(to right, var(--blue-600), var(--blue-700));
    color: white;
    font-weight: 600;
    padding: 0.5rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
    font-size: 0.875rem;
}

.submit-btn:hover {
    background: linear-gradient(to right, var(--blue-700), var(--blue-800));
    box-shadow: var(--shadow);
}

.modal-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    text-align: center;
    font-size: 0.8125rem;
    color: var(--gray-600);
}

.modal-footer a {
    color: var(--blue-600);
    font-weight: 500;
    text-decoration: none;
}

.modal-footer a:hover {
    color: var(--blue-800);
}

/* Share Modal */
.share-content {
    margin-top: 0.75rem;
}

.share-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.share-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
    font-size: 0.8125rem;
}

.share-btn.whatsapp {
    background-color: #dcfce7;
    color: #166534;
}

.share-btn.whatsapp:hover {
    background-color: #bbf7d0;
}

.share-btn.email {
    background-color: #dbeafe;
    color: #1e40af;
}

.share-btn.email:hover {
    background-color: #bfdbfe;
}

.share-btn.facebook {
    background-color: #dbeafe;
    color: #1e40af;
}

.share-btn.facebook:hover {
    background-color: #bfdbfe;
}

.share-btn.instagram {
    background-color: #fce7f3;
    color: #be185d;
}

.share-btn.instagram:hover {
    background-color: #fbcfe8;
}

.share-btn.twitter {
    background-color: black;
    color: white;
}

.share-btn.twitter:hover {
    background-color: #1a1a1a;
}

.share-btn i {
    font-size: 1.25rem;
    margin-bottom: 0.375rem;
}

.copy-link-section {
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-200);
}

.copy-link-section p {
    font-size: 0.8125rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.copy-link-input {
    display: flex;
}

.copy-link-input input {
    flex: 1;
    background-color: var(--gray-100);
    padding: 0.375rem 0.75rem;
    border: none;
    border-radius: var(--radius) 0 0 var(--radius);
    font-size: 0.8125rem;
    color: var(--gray-700);
    overflow: hidden;
    text-overflow: ellipsis;
}

.copy-btn {
    background-color: var(--gray-800);
    color: white;
    padding: 0.375rem 0.75rem;
    border: none;
    border-radius: 0 var(--radius) var(--radius) 0;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 0.8125rem;
}

.copy-btn:hover {
    background-color: var(--gray-900);
}

/* Gallery Modal */
.gallery-modal {
    position: relative;
    width: 100%;
    max-width: 56rem;
    max-height: 85vh;
    z-index: 10;
}

.gallery-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 20;
    color: white;
    background: none;
    border: none;
    padding: 0.375rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.2s;
    font-size: 1.125rem;
}

.gallery-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.gallery-content {
    position: relative;
    height: 100%;
}

.gallery-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 0.5rem;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 0.875rem;
}

.gallery-nav:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.gallery-nav.prev {
    left: 0.75rem;
}

.gallery-nav.next {
    right: 0.75rem;
}

.gallery-indicators {
    position: absolute;
    bottom: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.375rem;
}

.gallery-indicator {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.gallery-indicator.active {
    background-color: white;
}

.gallery-indicator:not(.active) {
    background-color: rgba(255, 255, 255, 0.5);
}

.gallery-indicator:not(.active):hover {
    background-color: rgba(255, 255, 255, 0.7);
}

/* Hero Carousel - Full Height & Width with no gaps */
.hero {
    position: relative;
    height: calc(100vh - 91px); /* Subtract total header height (36px top-bar + 55px header) */
    min-height: 500px;
    max-height: 800px;
    background-color: var(--gray-900);
    overflow: hidden;
    margin-top: 0;
    width: 100%;
    /* Remove any potential spacing */
    padding: 0;
    border: none;
}

.carousel {
    position: relative;
    height: 100%;
    width: 100%;
    /* Ensure no spacing inside carousel */
    margin: 0;
    padding: 0;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 1s ease;
    opacity: 0;
    /* Ensure no spacing around the slide */
    margin: 0;
    padding: 0;
    border: none;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide:not(.active) {
    opacity: 0;
    z-index: 0;
    transform: none;
}

.carousel-slide .slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Remove any potential spacing */
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: none;
}

/* KEY FIX: Ensure images completely fill the container with no gaps */
.carousel-slide .slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    
    /* Force image to cover entire container and extend slightly to eliminate gaps */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.01); /* Slightly scale up to eliminate gaps */
    
    /* Ensure minimum dimensions */
    min-width: 100%;
    min-height: 100%;
    
    /* Remove any default image spacing */
    margin: 0;
    padding: 0;
    border: none;
}

/* Optional: Add gradient overlay */
.carousel-slide .slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 2;
    /* Ensure no spacing */
    margin: 0;
}

.slide-text {
    text-align: center;
    max-width: 56rem;
    /* Remove any default margins */
    margin: 0;
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    padding: 0.375rem 1.25rem;
    border-radius: 9999px;
    margin-bottom: 1.25rem;
    color: white;
    font-weight: 500;
    font-size: 0.8125rem;
}

.slide-badge i {
    color: #facc15;
}

.slide-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .slide-title {
        font-size: 3.5rem;
    }
}

.slide-subtitle {
    font-size: 1.125rem;
    color: var(--gray-200);
    margin-bottom: 1.5rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
}

.slide-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.slide-btn {
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
    font-size: 0.875rem;
}

.slide-btn.primary {
    background-color: white;
    color: var(--blue-900);
}

.slide-btn.primary:hover {
    background-color: #eff6ff;
    box-shadow: var(--shadow);
    transform: translateY(-1px);
}

.slide-btn.secondary {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.slide-btn.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
    z-index: 3;
    font-size: 0.875rem;
}

.carousel-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.carousel-btn.prev {
    left: 1rem;
}

.carousel-btn.next {
    right: 1rem;
}

.carousel-indicators {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.carousel-indicator {
    width: 2rem;
    height: 0.375rem;
    border-radius: 0.25rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicator.active {
    background-color: white;
    width: 2.5rem;
}

.carousel-indicator:not(.active):hover {
    background-color: rgba(255, 255, 255, 0.7);
}
/* Section Styles */
section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background-color: var(--blue-50);
    color: var(--blue-700);
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 0.8125rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.5;
}

/* About Section */
.about-section {
    background-color: white;
}

.about-content {
    display: grid;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        align-items: center;
    }
}

.about-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.feature-card {
    background: linear-gradient(135deg, var(--blue-50), white);
    padding: 0.75rem;
    border-radius: var(--radius);
    border: 1px solid var(--blue-100);
}

.feature-card h4 {
    font-weight: 700;
    color: var(--blue-900);
    margin-bottom: 0.125rem;
    font-size: 0.875rem;
}

.feature-card p {
    font-size: 0.8125rem;
    color: var(--blue-700);
    margin: 0;
}

.about-map {
    height: 400px;
    width: 100%;
}

.map-container {
    height: 100%;
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: var(--radius);
}

.mission-cards {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .mission-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mission-card {
    background: linear-gradient(135deg, var(--blue-50), white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--blue-100);
    transition: all 0.3s;
}

.mission-card:hover {
    box-shadow: var(--shadow);
}

.mission-card:nth-child(2) {
    background: linear-gradient(135deg, #f0fdf4, white);
    border-color: #d1fae5;
}

.mission-card:nth-child(3) {
    background: linear-gradient(135deg, #faf5ff, white);
    border-color: #e9d5ff;
}

.mission-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
    font-size: 1.25rem;
}

.mission-card:nth-child(2) .mission-icon {
    background: linear-gradient(135deg, #059669, #047857);
}

.mission-card:nth-child(3) .mission-icon {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

.mission-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.mission-card p {
    color: var(--gray-700);
    line-height: 1.5;
    font-size: 0.875rem;
}

/* Staff Section */
.staff-section {
    background-color: white;
}

.staff-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .staff-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .staff-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.staff-card {
    background: linear-gradient(to bottom, var(--gray-50), white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
}

.staff-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.staff-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.staff-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.staff-card:hover .staff-image img {
    transform: scale(1.05);
}

.staff-info {
    padding: 1rem;
}

.staff-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.125rem;
}

.staff-position {
    color: var(--blue-600);
    font-weight: 600;
    margin-bottom: 0.375rem;
    font-size: 0.875rem;
}

.staff-department {
    background-color: var(--gray-100);
    color: var(--gray-600);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.staff-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--gray-600);
}

.contact-item i {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.contact-item a {
    color: var(--gray-600);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--blue-600);
}

.staff-meta {
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-100);
    display: flex;
    justify-content: space-between;
    font-size: 0.6875rem;
    color: var(--gray-500);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.125rem;
    font-size: 0.6875rem;
}

/* Payments Section */
.payments-section {
    background: linear-gradient(135deg, #eff6ff 0%, white 50%, #f0fdf4 100%);
}

.payment-methods {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .payment-methods {
        grid-template-columns: repeat(3, 1fr);
    }
}

.payment-method {
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid #d1fae5;
    transition: all 0.3s;
}

.payment-method:hover {
    border-color: #86efac;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.payment-method:nth-child(2) {
    border-color: #dbeafe;
}

.payment-method:nth-child(2):hover {
    border-color: #93c5fd;
}

.payment-method:nth-child(3) {
    border-color: #e9d5ff;
}

.payment-method:nth-child(3):hover {
    border-color: #c4b5fd;
}

.method-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.method-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #f0f9ff, white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.method-icon i {
    font-size: 1.5rem;
    color: #059669;
}

.payment-method:nth-child(2) .method-icon {
    background: linear-gradient(135deg, #eff6ff, white);
}

.payment-method:nth-child(2) .method-icon i {
    color: #2563eb;
}

.payment-method:nth-child(3) .method-icon {
    background: linear-gradient(135deg, #faf5ff, white);
}

.payment-method:nth-child(3) .method-icon i {
    color: #7c3aed;
}

.method-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.method-tag {
    color: #047857;
    font-weight: 500;
    font-size: 0.875rem;
}

.payment-method:nth-child(2) .method-tag {
    color: #1d4ed8;
}

.payment-method:nth-child(3) .method-tag {
    color: #6d28d9;
}

.payment-method p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.method-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #047857;
    background-color: #f0fdf4;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.8125rem;
}

.payment-method:nth-child(2) .method-note {
    color: #1d4ed8;
    background-color: #eff6ff;
}

.payment-method:nth-child(3) .method-note {
    color: #6d28d9;
    background-color: #faf5ff;
}

/* Bank Details */
.bank-details {
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    margin-bottom: 2.5rem;
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.bank-header {
    background: linear-gradient(to right, #1d4ed8, #2563eb, #059669);
    padding: 1.5rem;
    color: white;
}

.bank-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .bank-info {
        margin-bottom: 0;
    }
}

.bank-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.bank-icon i {
    font-size: 1.5rem;
}

.bank-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.125rem;
}

.bank-info p {
    color: #bfdbfe;
    font-size: 0.875rem;
}

.bank-logo {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
}

.bank-logo img {
    height: 2rem;
    width: auto;
}

.account-details {
    padding: 1.5rem;
}

@media (min-width: 1024px) {
    .account-details {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

.account-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.account-card {
    background: linear-gradient(135deg, #f0f9ff, white);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid #dbeafe;
    box-shadow: var(--shadow-md);
}

.account-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.account-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.account-icon i {
    color: white;
    font-size: 1.25rem;
}

.account-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.account-tag {
    color: #1d4ed8;
    font-weight: 500;
    font-size: 0.875rem;
}

.account-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.account-number p {
    font-size: 0.75rem;
    color: var(--gray-600);
    font-weight: 500;
    margin-bottom: 0.375rem;
}

.number-display {
    display: flex;
    align-items: center;
}

.number-display span {
    background-color: var(--gray-900);
    color: white;
    font-family: monospace;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    flex: 1;
}

.copy-btn {
    margin-left: 0.5rem;
    padding: 0.375rem;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: var(--radius);
    color: var(--gray-500);
    transition: all 0.2s;
    font-size: 0.875rem;
}

.copy-btn:hover {
    background-color: var(--gray-100);
    color: var(--gray-700);
}

.account-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.account-meta p {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin-bottom: 0.125rem;
}

.meta-value {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 0.875rem;
}

/* Instructions Card */
.instructions-card {
    background: linear-gradient(135deg, #fefce8, white);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid #fef08a;
    box-shadow: var(--shadow-md);
}

.instructions-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.instructions-header i {
    font-size: 1.25rem;
    color: #ca8a04;
}

.instructions-header h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
}

.instructions-list {
    list-style: none;
    padding: 0;
}

.instructions-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.375rem;
    color: #854d0e;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.instructions-list li:last-child {
    margin-bottom: 0;
}

.instructions-list li i {
    margin-top: 0.125rem;
    flex-shrink: 0;
    font-size: 0.75rem;
}

/* Swift Card */
.swift-card {
    background: linear-gradient(135deg, #eff6ff, white);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid #dbeafe;
    box-shadow: var(--shadow-md);
}

.swift-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.swift-header i {
    font-size: 1.25rem;
    color: #2563eb;
}

.swift-header h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
}

.swift-header p {
    color: #1d4ed8;
    font-size: 0.875rem;
}

.swift-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.swift-item p {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin-bottom: 0.375rem;
}

.code-display {
    display: flex;
    align-items: center;
}

.code-display span {
    background-color: var(--gray-100);
    font-family: monospace;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius);
    flex: 1;
    font-size: 0.875rem;
}

/* Payment Categories */
.payment-categories {
    margin-bottom: 2rem;
}

.payment-categories h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-categories h4 i {
    color: #2563eb;
    margin-left: 40px;
}

.categories-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.category-card {
    background: linear-gradient(to bottom, #eff6ff, white);
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid #dbeafe;
    margin-left: 20px;
}

.category-card:nth-child(2) {
    background: linear-gradient(to bottom, #f0fdf4, white);
    border-color: #d1fae5;
}

.category-card:nth-child(3) {
    background: linear-gradient(to bottom, #faf5ff, white);
    border-color: #e9d5ff;
}

.category-card:nth-child(4) {
     margin-right:20px ;
    background: linear-gradient(to bottom, #fefce8, white);
    border-color: #fef08a;
}

.category-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #dbeafe;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.category-card:nth-child(2) .category-icon {
    background-color: #d1fae5;
}

.category-card:nth-child(3) .category-icon {
    background-color: #e9d5ff;
}

.category-card:nth-child(4) .category-icon {
    background-color: #fef08a;
}

.category-icon i {
    color: #2563eb;
    font-size: 1.25rem;
}

.category-card:nth-child(2) .category-icon i {
    color: #059669;
}

.category-card:nth-child(3) .category-icon i {
    color: #7c3aed;
}

.category-card:nth-child(4) .category-icon i {
    color: #ca8a04;
}

.category-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 0.375rem;
}

.category-card:nth-child(2) h5 {
    color: #047857;
}

.category-card:nth-child(3) h5 {
    color: #6d28d9;
}

.category-card:nth-child(4) h5 {
    color: #854d0e;
}

.category-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-card li {
    font-size: 0.75rem;
    color: #1e40af;
    margin-bottom: 0.125rem;
}

.category-card:nth-child(2) li {
    color: #047857;
}

.category-card:nth-child(3) li {
    color: #6d28d9;
}

.category-card:nth-child(4) li {
    color: #854d0e;
}

/* Process Guide */
.process-guide {
    background: linear-gradient(to right, #f9fafb, white);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid #f3f4f6;
    margin-bottom: 2rem;
}

.process-guide h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 1.5rem;
}

.process-steps {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 0.75rem;
    box-shadow: var(--shadow-md);
    position: relative;
}

.step-icon {
    position: absolute;
    top: -0.375rem;
    right: -0.375rem;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.625rem;
}

.process-step h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.375rem;
}

.process-step p {
    color: var(--gray-600);
    font-size: 0.75rem;
}

/* Support Info */
.support-info {
    text-align: center;
}

.support-card {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(to right, #2563eb, #059669);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .support-card {
        flex-direction: row;
    }
}

.support-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.support-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-icon i {
    font-size: 1.25rem;
}

.support-item p:first-child {
    font-weight: 600;
    color: #bfdbfe;
    font-size: 0.75rem;
}

.support-number {
    font-size: 1.125rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .support-number {
        font-size: 1.25rem;
    }
}

.support-divider {
    width: 1px;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.3);
    display: none;
}

@media (min-width: 768px) {
    .support-divider {
        display: block;
    }
}

.support-note {
    color: var(--gray-600);
    max-width: 48rem;
    margin: 0 auto;
    font-size: 0.875rem;
}

/* Projects Section */
.projects-section {
    background: linear-gradient(to bottom, #f9fafb, white);
}

.projects-carousel {
    position: relative;
    height: 500px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2.5rem;
}

.carousel-container {
    position: relative;
    height: 100%;
}

.project-slide {
    position: absolute;
    inset: 0;
    transition: opacity 1s;
}

.project-slide.active {
    opacity: 1;
}

.project-slide:not(.active) {
    opacity: 0;
}

.project-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.project-info {
    color: white;
    width: 100%;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.project-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.project-tag.completed {
    background-color: #059669;
    color: white;
}

.project-tag.ongoing {
    background-color: #eab308;
    color: var(--gray-900);
}

.project-tag.info {
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    color: white;
}

.project-info h3 {
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    line-height: 1.1;
}

.project-info p {
    font-size: 1rem;
    color: var(--gray-200);
    max-width: 48rem;
    line-height: 1.4;
}

.project-stats {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .project-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-card {
    background: linear-gradient(135deg, #eff6ff, white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid #dbeafe;
    text-align: center;
    transition: box-shadow 0.3s;
}

.stat-card:hover {
    box-shadow: var(--shadow);
}

.stat-card:nth-child(2) {
    background: linear-gradient(135deg, #fefce8, white);
    border-color: #fef08a;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.375rem;
}

.stat-card:nth-child(2) .stat-number {
    color: #eab308;
}

.stat-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.375rem;
}

.stat-card p {
    color: var(--gray-500);
    font-size: 0.75rem;
}

/* Programmes Section */
.programmes-section {
    background: linear-gradient(to bottom, white, #eff6ff);
}

.programmes-content {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
    .programmes-content {
        grid-template-columns: 1fr 1fr;
    }
}

.events-container {
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    overflow: hidden;
}

.events-header {
    background: linear-gradient(to right, #7c3aed, #6d28d9);
    padding: 1.5rem;
    color: white;
}

.events-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    backdrop-filter: blur(4px);
}

.events-icon i {
    font-size: 1.5rem;
}

.events-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.125rem;
}

.events-header p {
    color: #e9d5ff;
    font-size: 0.875rem;
}

.events-list {
    padding: 1.5rem;
}

.event-item {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 1rem;
}

.event-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.event-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.event-icon {
    background-color: #f5f3ff;
    padding: 0.5rem;
    border-radius: var(--radius);
    flex-shrink: 0;
}

.event-icon i {
    color: #7c3aed;
    font-size: 1rem;
}

.event-content {
    flex: 1;
}

.event-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.375rem;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    color: var(--gray-600);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.event-content p {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.event-link {
    color: #7c3aed;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
}

.event-link:hover {
    color: #6d28d9;
}

/* Festive Message */
.festive-message {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #fef08a;
}

.festive-content {
    background: linear-gradient(to right, #fefce8, #fef9c3);
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid #fef08a;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.festive-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(to right, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.festive-icon i {
    color: white;
    font-size: 1.25rem;
}

.festive-text {
    font-weight: 700;
    color: #854d0e;
    font-size: 1rem;
    margin-bottom: 0.125rem;
}

.festive-note {
    color: #ca8a04;
    font-size: 0.75rem;
}

.activities-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.activity-card {
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    transition: all 0.3s;
}

.activity-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.activity-header {
    padding: 1rem;
}

.activity-main {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.activity-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #059669, #047857);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.activity-icon i {
    color: white;
    font-size: 1.25rem;
}

.activity-content {
    flex: 1;
}

.activity-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.375rem;
}

.activity-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
}

.activity-badge {
    background-color: var(--gray-100);
    color: var(--gray-700);
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
}

.activity-status {
    background-color: #f0fdf4;
    color: #059669;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 0.125rem;
}

.activity-status::before {
    content: '';
    width: 0.375rem;
    height: 0.375rem;
    background-color: #10b981;
    border-radius: 50%;
}

.activity-content p {
    color: var(--gray-600);
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.activity-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.activity-participants {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--gray-500);
}

.activity-link {
    color: #2563eb;
    font-weight: 500;
    font-size: 0.75rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.activity-link:hover {
    color: #1d4ed8;
}

/* Recent Activities */
.recent-activities {
    margin-bottom: 2.5rem;
}

.activities-header {
    margin-bottom: 1.5rem;
}

.activities-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.125rem;
}

.activities-header p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.activities-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .activities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.activity-grid-item {
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
}

.activity-grid-item:hover {
    box-shadow: var(--shadow);
}

.activity-image {
    height: 10rem;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.activity-grid-item:hover .activity-image img {
    transform: scale(1.05);
}

.activity-details {
    padding: 1rem;
}

.activity-date {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 0.375rem;
}

.activity-details h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.375rem;
}

.activity-details p {
    color: var(--gray-600);
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.activity-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
}

.view-gallery {
    color: #2563eb;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.view-gallery:hover {
    color: #1d4ed8;
}

.share-activity {
    color: var(--gray-500);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.125rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
}

.share-activity:hover {
    color: var(--gray-700);
}

/* Calendar Section */
.calendar-section {
    background: linear-gradient(to right, #eff6ff, #f5f3ff);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid #dbeafe;
}

.calendar-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .calendar-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.calendar-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.125rem;
}

.calendar-header p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.view-toggle {
    display: flex;
    background-color: white;
    border-radius: var(--radius);
    padding: 0.125rem;
}

.view-btn {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius);
    border: none;
    background: none;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: all 0.2s;
}

.view-btn.active {
    background-color: #2563eb;
    color: white;
}

.view-btn:not(.active):hover {
    background-color: var(--gray-100);
}

.calendar-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .calendar-info {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.calendar-info p {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.calendar-actions {
    display: flex;
    gap: 0.75rem;
}

.download-calendar {
    background-color: white;
    border: 1px solid var(--gray-300);
    color: var(--gray-700);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.75rem;
}

.download-calendar:hover {
    background-color: var(--gray-50);
}

.view-schedule {
    background: linear-gradient(to right, #2563eb, #1d4ed8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 500;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.75rem;
}

.view-schedule:hover {
    background: linear-gradient(to right, #1d4ed8, #1e40af);
}

.calendar-quarters {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .calendar-quarters {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .calendar-quarters {
        grid-template-columns: repeat(4, 1fr);
    }
}

.calendar-quarter {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border-radius: var(--radius);
    padding: 1rem;
    border: 1px solid white;
}

.quarter-header {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.375rem;
}

.quarter-title {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.quarter-description {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin-bottom: 0.75rem;
}

.quarter-events {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.quarter-event {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--gray-700);
}

.quarter-dot {
    width: 0.375rem;
    height: 0.375rem;
    background-color: #2563eb;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Downloads Section */
/* Downloads Section - Compact Version */
.downloads-section {
    background: linear-gradient(to bottom, #f9fafb, white);
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.filter-btn {
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-weight: 500;
    border: 1px solid var(--gray-200);
    background-color: white;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.75rem;
}

.filter-btn.active {
    background: linear-gradient(to right, #2563eb, #1d4ed8);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-sm);
}

.filter-btn:not(.active):hover {
    border-color: #93c5fd;
}

.documents-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .documents-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .documents-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .documents-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.document-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-100);
    transition: all 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.document-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
    border-color: #dbeafe;
}

.document-content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.document-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.document-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #dbeafe, white);
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.document-card:hover .document-icon {
    transform: scale(1.05);
}

.document-icon i {
    color: #2563eb;
    font-size: 1rem;
}

.document-info {
    flex: 1;
    min-width: 0;
}

.document-meta {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-bottom: 0.375rem;
}

.document-category {
    background-color: #eff6ff;
    color: #1d4ed8;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.document-size {
    color: var(--gray-500);
    font-size: 0.625rem;
    font-weight: 500;
}

.document-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.document-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.625rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-100);
}

.document-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.document-downloads {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.document-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

.action-btn {
    flex: 1;
    background-color: var(--gray-50);
    color: var(--gray-800);
    padding: 0.5rem;
    border-radius: 0.375rem;
    border: none;
    font-weight: 500;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    cursor: pointer;
    transition: all 0.2s;
}

.action-btn.primary {
    background: linear-gradient(to right, #2563eb, #1d4ed8);
    color: white;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.action-btn.primary:hover {
    background: linear-gradient(to right, #1d4ed8, #1e40af);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.action-btn.secondary:hover {
    background-color: var(--gray-100);
}

.document-extra {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-100);
}

.extra-btn {
    color: var(--gray-400);
    background: none;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
    border-radius: 0.25rem;
    transition: all 0.2s;
    font-size: 0.75rem;
}

.extra-btn:hover {
    color: #2563eb;
    background-color: #eff6ff;
}

.empty-state {
    text-align: center;
    padding: 2rem 1rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    grid-column: 1 / -1;
}

.empty-state i {
    font-size: 2rem;
    color: var(--gray-300);
    margin-bottom: 0.75rem;
}

.empty-state h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--gray-500);
    max-width: 24rem;
    margin: 0 auto;
    font-size: 0.75rem;
}

/* Status indicator for documents */
.document-status {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background-color: #10b981;
    box-shadow: 0 0 0 2px white;
}

.document-status.new {
    background-color: #3b82f6;
}

.document-status.updated {
    background-color: #f59e0b;
}

/* Compact view toggle */
.view-toggle {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.view-toggle-btn {
    background: none;
    border: none;
    color: var(--gray-500);
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    border-radius: 0.25rem;
}

.view-toggle-btn:hover {
    color: var(--gray-700);
    background-color: var(--gray-100);
}

.view-toggle-btn.active {
    color: #2563eb;
    background-color: #eff6ff;
    font-weight: 500;
}

.view-toggle-btn i {
    font-size: 0.875rem;
}

/* Document list view (alternative layout) */
.documents-grid.list-view {
    grid-template-columns: 1fr;
}

.documents-grid.list-view .document-card {
    flex-direction: row;
}

.documents-grid.list-view .document-header {
    margin-bottom: 0;
    flex: 0 0 auto;
    margin-right: 1rem;
}

.documents-grid.list-view .document-icon {
    width: 2rem;
    height: 2rem;
}

.documents-grid.list-view .document-icon i {
    font-size: 0.875rem;
}

.documents-grid.list-view .document-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.documents-grid.list-view .document-meta {
    margin-bottom: 0.125rem;
}

.documents-grid.list-view .document-title {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    -webkit-line-clamp: 1;
    line-clamp: 1;
}

.documents-grid.list-view .document-footer {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    font-size: 0.625rem;
}

.documents-grid.list-view .document-actions {
    flex: 0 0 auto;
    margin-left: auto;
}

.documents-grid.list-view .document-extra {
    display: none;
}
/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937, #1e40af);
    color: white;
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.footer-content {
    display: grid;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-logo-img img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
    border-radius: 50%;
}

.footer-logo h3 {
    font-size: 1.125rem;
    font-weight: 700;
}

.footer-tagline {
    color: #93c5fd;
    font-size: 0.75rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: #bfdbfe;
    font-size: 0.875rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: #93c5fd;
    font-size: 1rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: #bfdbfe;
    text-decoration: none;
}

.footer-contact a:hover {
    color: white;
}

.footer-column h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #bfdbfe;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: white;
}

.footer-links a i {
    width: 0.875rem;
    transition: transform 0.2s;
    font-size: 0.75rem;
}

.footer-links a:hover i {
    transform: scale(1.1);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 1rem;
}

.social-link:hover {
    background-color: #2563eb;
    transform: scale(1.1);
}

.social-link.twitter:hover {
    background-color: black;
}

.social-link.share-link:hover {
    background-color: #059669;
}

.footer-support {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: var(--radius);
}

.footer-support p:first-child {
    color: #bfdbfe;
    margin-bottom: 0.375rem;
    font-size: 0.875rem;
}

.support-details {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    font-size: 0.75rem;
    color: #93c5fd;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .footer-copyright {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-copyright p {
    color: #bfdbfe;
    font-size: 0.75rem;
}

.footer-links-bottom {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: #93c5fd;
}

.footer-links-bottom a {
    color: #93c5fd;
    text-decoration: none;
}

.footer-links-bottom a:hover {
    color: white;
}

.footer-certifications {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-certifications {
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
    }
}

.certification {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: #4ade80;
}

.certification i {
    color: #4ade80;
    font-size: 0.875rem;
}

.footer-divider {
    height: 0.75rem;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    display: none;
}

@media (min-width: 768px) {
    .footer-divider {
        display: block;
    }
}

.version {
    font-size: 0.75rem;
    color: #bfdbfe;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 6rem;
    right: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(to right, #2563eb, #1d4ed8);
    color: white;
    border-radius: 50%;
    border: none;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 800;
    display: none;
    font-size: 1rem;
}

.back-to-top:hover {
    transform: scale(1.1);
}


/* About Section Features with Soft Colors */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature-card {
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.feature-card.governance {
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
    border-color: #bfdbfe;
}

.feature-card.development {
    background: linear-gradient(135deg, #d1fae5, #f0fdf4);
    border-color: #a7f3d0;
}

.feature-card.community {
    background: linear-gradient(135deg, #fce7f3, #fdf2f8);
    border-color: #fbcfe8;
}

.feature-card.innovation {
    background: linear-gradient(135deg, #e0e7ff, #eef2ff);
    border-color: #c7d2fe;
}

.feature-icon {
    width: 2.125rem;
    height: 2.125rem;
    border-radius: 0.55rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-card.governance .feature-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.feature-card.development .feature-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.feature-card.community .feature-icon {
    background: linear-gradient(135deg, #ec4899, #db2777);
    color: white;
}

.feature-card.innovation .feature-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.feature-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: #4b5563;
}

/* QR Code Styles */
.qr-payment-btn {
    margin-top: 1rem;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    justify-content: center;
}

.qr-payment-btn:hover {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    transform: translateY(-2px);
}

/* Modal container positioning */
.qr-modal {
    max-width: 600px; /* Increased from 500px */
    width: 90%; /* Responsive width */
    max-height: 90vh; /* Limit height to 90% of viewport */
    margin: auto; /* Center horizontally */
    position: fixed; /* For centering */
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Perfect centering */
    background: white;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1000; /* Ensure it's on top */
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Hide overflow from rounded corners */
}

.qr-content {
    padding: 1.5rem;
    overflow-y: auto; /* Enable vertical scrolling */
    max-height: calc(90vh - 3rem); /* Account for padding */
    scrollbar-width: thin; /* For Firefox */
}

/* Custom scrollbar for Webkit browsers */
.qr-content::-webkit-scrollbar {
    width: 6px;
}

.qr-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.qr-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.qr-content::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

.qr-code-container {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px dashed #d1d5db;
    min-height: 250px; /* Ensure minimum height */
}

.qr-placeholder {
    text-align: center;
    padding: 2rem;
    width: 100%;
}

.qr-placeholder i {
    font-size: 4rem;
    color: #7c3aed;
    margin-bottom: 1rem;
}

.qr-placeholder p {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    word-break: break-word; /* Prevent text overflow */
}

.qr-info {
    font-size: 0.875rem;
    color: #6b7280;
    overflow-wrap: break-word; /* Handle long text */
}

.qr-details {
    background: #f9fafb;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    overflow-wrap: break-word; /* Handle long text */
}

.qr-details p {
    margin: 0.5rem 0;
}

.qr-instructions {
    margin: 1.5rem 0;
}

.qr-instructions h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.qr-instructions ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.qr-instructions li {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.qr-note {
    font-size: 0.875rem;
    color: #6b7280;
    font-style: italic;
    padding: 1rem;
    background: #f0fdf4;
    border-radius: 0.5rem;
    border-left: 4px solid #10b981;
    overflow-wrap: break-word; /* Handle long text */
}

.qr-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap; /* Wrap buttons on smaller screens */
}

.qr-btn {
    flex: 1;
    min-width: 120px; /* Ensure buttons don't get too small */
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.qr-btn:not(.secondary) {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.qr-btn.secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.qr-btn:hover {
    transform: translateY(-2px);
}

/* Modal backdrop */
.qr-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .qr-modal {
        width: 95%; /* More width on mobile */
        max-height: 85vh;
    }
    
    .qr-content {
        max-height: calc(85vh - 3rem);
    }
    
    .qr-actions {
        flex-direction: column; /* Stack buttons vertically on mobile */
    }
    
    .qr-btn {
        width: 100%;
    }
    
    .qr-code-container {
        padding: 1.5rem;
    }
}
/* Calendar Modal Styles */
.calendar-modal {
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
}

.calendar-modal-content {
    padding: 1.5rem;
}

.calendar-filter {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.calendar-filter select {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #d1d5db;
    background: white;
    font-size: 0.875rem;
}

.calendar-grid {
    margin-bottom: 1.5rem;
}

.calendar-month-header {
    text-align: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.5rem;
}

.calendar-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-day-header {
    padding: 0.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: #374151;
    background: #f3f4f6;
    border-radius: 0.25rem;
}

.calendar-day {
    padding: 0.75rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    border-radius: 0.25rem;
    position: relative;
    min-height: 60px;
    cursor: pointer;
    transition: all 0.2s;
}

.calendar-day:hover {
    background: #f9fafb;
}

.calendar-day.empty {
    background: #f9fafb;
    border: none;
}

.calendar-day.today {
    background: #dbeafe;
    border-color: #3b82f6;
    font-weight: 600;
}

.calendar-day.has-event {
    background: #f0f9ff;
}

.calendar-day.holiday {
    background: #fef2f2;
    border-color: #fecaca;
}

.calendar-day.event {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.calendar-day.meeting {
    background: #fefce8;
    border-color: #fef08a;
}

.calendar-day.activity {
    background: #faf5ff;
    border-color: #e9d5ff;
}

.calendar-event-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1f2937;
    color: white;
    padding: 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    white-space: nowrap;
    display: none;
    z-index: 10;
}

.calendar-day:hover .calendar-event-tooltip {
    display: block;
}

.calendar-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.legend-color {
    width: 1rem;
    height: 1rem;
    border-radius: 0.25rem;
}

.legend-color.holiday {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.legend-color.event {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.legend-color.meeting {
    background: #fefce8;
    border: 1px solid #fef08a;
}

.legend-color.activity {
    background: #faf5ff;
    border: 1px solid #e9d5ff;
}

/* Share Options */
.share-options {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.share-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
}

/* Explore page placeholder */
.explore-placeholder {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 2rem;
}

.explore-content {
    max-width: 600px;
}

.explore-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.explore-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.back-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #667eea;
    padding: 1rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.back-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Ticker animation fix */
@keyframes ticker {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.ticker-content {
    animation: ticker 60s linear infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .calendar-days-grid {
        gap: 0.25rem;
    }
    
    .calendar-day {
        min-height: 40px;
        padding: 0.25rem;
        font-size: 0.75rem;
    }
    
    .qr-actions {
        flex-direction: column;
    }
}