/* Modern CSS Reset and Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Green Color Palette */
    --primary-green: #10b981;
    --primary-green-dark: #059669;
    --primary-green-light: #34d399;
    --secondary-green: #065f46;
    --accent-green: #6ee7b7;
    --light-green: #ecfdf5;
    --dark-green: #064e3b;

    /* Neutral Colors */
    --white: #ffffff;
    --black: #000000;
    --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;

    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

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

/* Typography */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--gray-50);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 576px) {
    .container {
        padding: 0 2rem;
    }
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.875rem;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

/* Card Styles */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
    transition: var(--transition-normal);
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

@media (max-width: 768px) {
    .grid {
        gap: 1rem;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Status Display Styles */
.status-display {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: var(--transition-normal);
}

.status-display.holiday-status {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border-color: var(--error);
    color: #991b1b;
}

.status-display.weekend-status {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-color: var(--warning);
    color: #92400e;
}

.status-display.open-status {
    background: linear-gradient(135deg, var(--light-green), #bbf7d0);
    border-color: var(--success);
    color: #166534;
}

.status-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.status-text-content {
    flex: 1;
}

.status-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.status-description {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.status-metadata {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.status-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Badge Styles */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

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

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

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

/* Animation Utilities */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

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

.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--gray-200);
    border-top: 4px solid var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 2rem; }

/* Responsive Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

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

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    h4 { font-size: 1.25rem; }
    h5 { font-size: 1.125rem; }
    h6 { font-size: 1rem; }
}

/* Main Content */
main {
    flex: 1;
    padding-top: 2rem;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-600);
}

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

/* Modern Navigation */
.modern-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-normal);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.logo-section i {
    font-size: 2rem;
    color: var(--primary-green);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: var(--transition-normal);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: var(--light-green);
    color: var(--primary-green);
    transform: translateY(-2px);
}

.nav-dropdown {
    position: relative;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border: none;
    background: transparent;
    color: var(--gray-700);
    font-weight: 500;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
}

.dropdown-btn:hover {
    background: var(--light-green);
    color: var(--primary-green);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-normal);
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: var(--gray-700);
    transition: var(--transition-fast);
    border-bottom: 1px solid var(--gray-100);
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: var(--light-green);
    color: var(--primary-green);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 50%, var(--light-green) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
    font-weight: 500;
    width: fit-content;
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

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

.btn-outline:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
    font-weight: 500;
}

.feature-item i {
    font-size: 1.25rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    animation: floatCard 6s ease-in-out infinite;
    width: 100%;
    max-width: 300px;
}

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

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.status-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.status-icon {
    width: 60px;
    height: 60px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.5rem;
}

.status-text {
    font-weight: 600;
    color: var(--gray-800);
}

/* Quick Status Section */
.quick-status-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
}

.quick-status-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.quick-status-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    position: relative;
    z-index: 2;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.quick-status-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green), var(--primary-green-light));
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.status-header h2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gray-900);
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 0;
}

.status-header i {
    color: var(--primary-green);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.3));
    flex-shrink: 0;
}

.current-date {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    white-space: nowrap;
}

.current-date::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.status-content {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Enhanced Status Display Cards */
.status-display {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    border: 2px solid transparent;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12), 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
    width: 100%;
    min-height: 180px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.status-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 1) 100%);
    z-index: 0;
}

.status-display::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #e5e7eb, #d1d5db);
    transition: all var(--transition-normal);
    z-index: 1;
}

.status-display:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Holiday Status Styling */
.status-display.holiday-status {
    background: linear-gradient(135deg, #fee2e2 0%, #ffffff 100%);
    border-color: #ef4444;
}

.status-display.holiday-status::after {
    background: linear-gradient(90deg, #ef4444, #dc2626, #b91c1c);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.status-display.holiday-status:hover {
    border-color: #dc2626;
    box-shadow: 0 25px 70px rgba(239, 68, 68, 0.2), 0 10px 30px rgba(239, 68, 68, 0.15);
}

/* Open Status Styling */
.status-display.open-status {
    background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 100%);
    border-color: var(--primary-green);
}

.status-display.open-status::after {
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green), #34d399);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.status-display.open-status:hover {
    border-color: var(--primary-green-dark);
    box-shadow: 0 25px 70px rgba(16, 185, 129, 0.2), 0 10px 30px rgba(16, 185, 129, 0.15);
}

/* Weekend Status Styling */
.status-display.weekend-status {
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
    border-color: var(--warning);
}

.status-display.weekend-status::after {
    background: linear-gradient(90deg, var(--warning), #fbbf24);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.status-display.weekend-status:hover {
    border-color: #d97706;
    box-shadow: 0 25px 70px rgba(245, 158, 11, 0.2), 0 10px 30px rgba(245, 158, 11, 0.15);
}

.status-display.weekend-status .status-icon {
    color: var(--warning);
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.25);
    border-color: rgba(245, 158, 11, 0.15);
}

/* Enhanced Status Icon */
.status-icon {
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 3rem;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.25);
    position: relative;
    flex-shrink: 0;
    transition: all var(--transition-normal);
    border: 4px solid rgba(16, 185, 129, 0.15);
    z-index: 2;
}

.status-display.holiday-status .status-icon {
    color: #dc2626;
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.25);
    border-color: rgba(220, 38, 38, 0.15);
}

.status-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 36px;
    background: conic-gradient(from 0deg, transparent, rgba(16, 185, 129, 0.3), transparent);
    animation: rotate 6s linear infinite;
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.status-display.holiday-status .status-icon::before {
    background: conic-gradient(from 0deg, transparent, rgba(220, 38, 38, 0.3), transparent);
}

.status-display:hover .status-icon::before {
    opacity: 1;
}

.status-display:hover .status-icon {
    transform: scale(1.08);
    box-shadow: 0 15px 50px rgba(16, 185, 129, 0.35);
}

.status-display.holiday-status:hover .status-icon {
    box-shadow: 0 15px 50px rgba(220, 38, 38, 0.35);
}

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

/* Enhanced Text Content */
.status-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 2;
    position: relative;
}

.status-title {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--gray-900);
    margin: 0;
    line-height: 1.05;
    letter-spacing: -0.03em;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.status-display.holiday-status .status-title {
    color: #b91c1c;
}

.status-display.open-status .status-title {
    color: var(--primary-green-dark);
}

.status-description {
    font-size: 1.25rem;
    color: var(--gray-800);
    margin: 0;
    line-height: 1.5;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.status-display.holiday-status .status-description {
    color: #991b1b;
}

.status-display.open-status .status-description {
    color: var(--secondary-green);
}

/* Enhanced Holiday Badge */
.holiday-badge {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: var(--white);
    padding: 1rem 2.25rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 800;
    align-self: flex-start;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    animation: pulseGlow 2.5s infinite;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.holiday-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 2.5s infinite;
}

@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 10px 30px rgba(220, 38, 38, 0.6);
        transform: scale(1.02);
    }
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Open Status Badge */
.open-badge {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--white);
    padding: 1rem 2.25rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 800;
    align-self: flex-start;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: successPulse 3s infinite;
}

/* Weekend Badge */
.weekend-badge {
    background: linear-gradient(135deg, var(--warning), #d97706);
    color: var(--white);
    padding: 1rem 2.25rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 800;
    align-self: flex-start;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: weekendPulse 3s infinite;
}

@keyframes weekendPulse {
    0%, 100% { 
        box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 10px 30px rgba(245, 158, 11, 0.6);
        transform: scale(1.02);
    }
}

.open-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3.5s infinite;
}

@keyframes successPulse {
    0%, 100% { 
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 10px 30px rgba(16, 185, 129, 0.6);
        transform: scale(1.02);
    }
}

/* Additional Status Elements */
.status-metadata {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    z-index: 2;
    position: relative;
}

.status-time {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
    font-size: 0.95rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.status-time i {
    color: var(--primary-green);
    font-size: 1rem;
}

.status-display.holiday-status .status-time {
    background: rgba(254, 242, 242, 0.9);
    border-color: rgba(220, 38, 38, 0.2);
    color: #7f1d1d;
}

.status-display.holiday-status .status-time i {
    color: #dc2626;
}

/* Responsive Design for Status Cards */
@media (max-width: 768px) {
    .status-display {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        min-height: 200px;
        border-radius: 20px;
        margin: 0 1rem;
    }

    .status-loading {
        flex-direction: column;
        padding: 2rem 1.5rem;
        min-height: 160px;
        border-radius: 20px;
        margin: 0 1rem;
    }

    .status-icon {
        width: 90px;
        height: 90px;
        font-size: 2.5rem;
        border-radius: 22px;
        margin: 0 auto;
    }

    .status-text-content {
        width: 100%;
        max-width: 100%;
    }

    .status-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .status-description {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .holiday-badge,
    .open-badge,
    .weekend-badge {
        align-self: center;
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
        border-radius: 30px;
        margin: 0 auto;
        max-width: 200px;
    }

    .status-metadata {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        width: 100%;
    }

    .status-time {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        border-radius: 25px;
        max-width: 250px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .status-display {
        padding: 1.5rem 1rem;
        gap: 1.25rem;
        min-height: 180px;
        border-radius: 18px;
        margin: 0 0.5rem;
    }

    .status-loading {
        padding: 1.5rem 1rem;
        min-height: 140px;
        border-radius: 18px;
        margin: 0 0.5rem;
    }

    .status-icon {
        width: 80px;
        height: 80px;
        font-size: 2.25rem;
        border-radius: 20px;
        margin: 0 auto;
    }

    .status-text-content {
        padding: 0 0.5rem;
    }

    .status-title {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }

    .status-description {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 1.25rem;
        padding: 0 0.5rem;
    }

    .holiday-badge,
    .open-badge,
    .weekend-badge {
        padding: 0.625rem 1.25rem;
        font-size: 0.8rem;
        border-radius: 25px;
        margin: 0 auto;
        max-width: 180px;
        text-align: center;
    }

    .status-time {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        max-width: 200px;
    }

    .status-metadata {
        gap: 0.75rem;
        flex-direction: column;
        align-items: center;
    }
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 3rem;
    min-height: 200px;
    justify-content: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--gray-200);
    border-left: 5px solid var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.3));
}

.loading-text {
    color: var(--gray-600);
    font-size: 1.1rem;
    font-weight: 500;
    animation: pulse 2s infinite;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .quick-status-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .status-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        align-items: center;
        margin-bottom: 2rem;
    }

    .status-header h2 {
        font-size: clamp(1.25rem, 4vw, 1.75rem);
        justify-content: center;
        text-align: center;
        gap: 0.75rem;
        word-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
    }

    .status-header i {
        font-size: clamp(1.5rem, 4vw, 2rem);
        flex-shrink: 0;
    }

    .current-date {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        order: 2;
        max-width: 90%;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .status-display {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
        padding: 2rem 1.25rem;
        min-height: 180px;
        margin: 0 auto;
        max-width: 100%;
        box-sizing: border-box;
    }

    .status-icon {
        width: 80px;
        height: 80px;
        font-size: 2.25rem;
        margin: 0 auto;
        flex-shrink: 0;
    }

    .status-text-content {
        max-width: 100%;
        text-align: center;
    }

    .status-title {
        font-size: 1.5rem;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
        margin-bottom: 0.75rem;
    }

    .status-description {
        font-size: 1rem;
        line-height: 1.4;
        word-wrap: break-word;
        hyphens: auto;
        padding: 0 0.5rem;
        margin-bottom: 1rem;
    }

    .status-metadata {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        align-items: center;
    }

    .holiday-badge,
    .open-badge {
        align-self: center;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .status-time {
        align-self: center;
        white-space: nowrap;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .quick-status-card {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
        border-radius: 16px;
    }

    .status-header {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .status-header h2 {
        font-size: clamp(1rem, 4.5vw, 1.4rem);
        gap: 0.5rem;
        line-height: 1.3;
        word-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .status-header i {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
        flex-shrink: 0;
    }

    .current-date {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
        border-radius: 25px;
        max-width: 95%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .status-display {
        padding: 1.5rem 0.75rem;
        gap: 1rem;
        min-height: 160px;
        border-radius: 16px;
        margin: 0;
    }

    .status-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        border-radius: 18px;
        flex-shrink: 0;
    }

    .status-text-content {
        max-width: 100%;
        padding: 0 0.25rem;
    }

    .status-title {
        font-size: 1.25rem;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
        margin-bottom: 0.5rem;
    }

    .status-description {
        font-size: 0.9rem;
        line-height: 1.4;
        padding: 0 0.25rem;
        word-wrap: break-word;
        hyphens: auto;
        margin-bottom: 1rem;
    }

    .holiday-badge,
    .open-badge {
        padding: 0.65rem 1.25rem;
        font-size: 0.8rem;
        border-radius: 25px;
        white-space: nowrap;
        flex-shrink: 0;
        max-width: 90%;
        text-align: center;
    }

    .status-time {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
        border-radius: 25px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .status-metadata {
        gap: 0.75rem;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
}

/* Filter Section */
.filter-section {
    padding: 3rem 0;
    background: var(--white);
}

.filter-header {
    text-align: center;
    margin-bottom: 3rem;
}

.filter-header h2 {
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.filter-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
}

.filter-controls {
    display: flex;
    justify-content: center;
}

.select-wrapper {
    position: relative;
    display: inline-block;
}

.select-wrapper i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-green);
    font-size: 1.25rem;
    z-index: 2;
}

.modern-select {
    appearance: none;
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    padding: 1rem 1rem 1rem 3rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-700);
    min-width: 300px;
    cursor: pointer;
    transition: var(--transition-normal);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5em;
}

.modern-select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Holidays Section */
.holidays-section {
    padding: 3rem 0;
    background: var(--gray-50);
}

.loading-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 0;
}

.loading-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.loading-dots {
    display: flex;
    gap: 0.5rem;
}

.loading-dots span {
    width: 12px;
    height: 12px;
    background: var(--primary-green);
    border-radius: 50%;
    animation: loadingDots 1.4s ease-in-out infinite both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes loadingDots {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

/* Holiday Cards */
.today-section,
.upcoming-section {
    margin-bottom: 3rem;
}

.today-header,
.upcoming-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 2rem;
    color: var(--gray-900);
    margin-bottom: 2rem;
    font-weight: 700;
}

.today-header i,
.upcoming-label i {
    color: var(--primary-green);
    font-size: 2.25rem;
}

.holiday-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.holiday-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition-normal);
    display: flex;
    min-height: 140px;
}

.holiday-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-green);
}

.holiday-card.today-holiday {
    border: 2px solid var(--error);
    background: linear-gradient(135deg, #fef2f2, var(--white));
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { 
        box-shadow: var(--shadow-lg);
    }
    50% { 
        box-shadow: var(--shadow-xl), 0 0 20px rgba(239, 68, 68, 0.3);
    }
}

.date-badge {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--white);
    padding: 1.5rem;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.holiday-card.today-holiday .date-badge {
    background: linear-gradient(135deg, var(--error), #dc2626);
}

.date-badge .month {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.date-badge .day {
    font-size: 2rem;
    font-weight: 800;
    margin-top: 0.25rem;
}

.today-tag {
    background: var(--white);
    color: var(--error);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
}

.holiday-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.holiday-name {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.holiday-card.today-holiday .holiday-name {
    color: var(--error);
}

.holiday-details {
    color: var(--gray-600);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.location-tag {
    background: var(--light-green);
    color: var(--primary-green);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    align-self: flex-start;
    border: 1px solid var(--accent-green);
}

.holiday-card.today-holiday .location-tag {
    background: #fef2f2;
    color: var(--error);
    border-color: #fecaca;
}

/* No Holiday Message */
.no-holiday-msg {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    margin: 2rem 0;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

.no-holiday-msg i {
    font-size: 3rem;
    color: var(--gray-400);
}

.no-holiday-content h3 {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.no-holiday-content p {
    font-size: 1.1rem;
    color: var(--gray-600);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.page-btn {
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    background: var(--white);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    font-weight: 500;
    color: var(--gray-700);
}

.page-btn:hover {
    background: var(--light-green);
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.page-btn.active {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

/* Popular States Section */
.popular-states-section {
    padding: 4rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
}

.states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.state-card-modern {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-decoration: none;
    color: var(--gray-800);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.state-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.state-card-modern:hover::before {
    transform: scaleX(1);
}

.state-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-green);
}

.state-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.state-card-modern h3 {
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.state-card-modern p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.card-arrow {
    color: var(--primary-green);
    font-size: 1.25rem;
    transition: var(--transition-normal);
}

.state-card-modern:hover .card-arrow {
    transform: translateX(5px);
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: var(--gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-green);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-green);
    font-size: 2rem;
}

.feature-card h3 {
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--gray-50);
    transition: var(--transition-normal);
}

.faq-question:hover {
    background: var(--light-green);
}

.faq-question h3 {
    color: var(--gray-900);
    font-size: 1.1rem;
    margin: 0;
}

.faq-question i {
    color: var(--primary-green);
    transition: var(--transition-normal);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Modern Footer */
.modern-footer {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: var(--white);
    margin-top: auto;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-brand h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--gray-300);
    line-height: 1.6;
    margin-top: 1rem;
    font-size: 1rem;
}

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

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

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
    font-size: 0.95rem;
    font-weight: 400;
}

.footer-links a:hover {
    color: var(--primary-green);
    transform: translateX(4px);
}

.footer-social {
    margin-top: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gray-700);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-content p {
    color: var(--gray-300);
    margin: 0;
    font-size: 0.9rem;
    font-weight: 400;
}

.footer-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-400);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0 1rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-brand h3 {
        justify-content: center;
        font-size: 1.3rem;
    }
    
    .footer-brand p {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links a {
        justify-content: center;
        font-size: 0.9rem;
        padding: 0.25rem 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-bottom-content p {
        font-size: 0.85rem;
    }
    
    .footer-note {
        justify-content: center;
        font-size: 0.8rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 1.5rem 0 1rem;
        gap: 1.5rem;
    }
    
    .footer-brand h3 {
        font-size: 1.2rem;
        gap: 0.4rem;
    }
    
    .footer-brand p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
        padding: 0.2rem 0;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
    }
    
    .footer-bottom-content p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .footer-note {
        font-size: 0.75rem;
        line-height: 1.3;
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .hero-actions {
        justify-content: center;
        width: 100%;
        gap: 0.75rem;
    }

    .btn {
        flex: 1;
        min-width: 120px;
        max-width: 180px;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem 1rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-normal);
        z-index: 1000;
        border-top: 1px solid var(--gray-200);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        margin-bottom: 0.5rem;
        border-radius: var(--radius-sm);
    }

    .nav-link {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: var(--gray-50);
        border: none;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-features {
        justify-content: center;
    }

    .status-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .modern-select {
        min-width: 100%;
        max-width: 350px;
    }

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

    .holiday-card {
        min-height: 120px;
    }

    .date-badge {
        min-width: 100px;
        padding: 1rem;
    }

    .date-badge .day {
        font-size: 1.75rem;
    }

    .states-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }

    .hero-section {
        padding: 2rem 0;
    }

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

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

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .feature-item {
        justify-content: center;
        text-align: center;
    }

    .quick-status-card,
    .feature-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }

    .holiday-card {
        min-height: 110px;
        margin-bottom: 1rem;
    }

    .date-badge {
        min-width: 80px;
        padding: 0.75rem 0.5rem;
    }

    .date-badge .month {
        font-size: 0.875rem;
    }

    .date-badge .day {
        font-size: 1.5rem;
    }

    .holiday-content {
        padding: 0.75rem;
    }

    .holiday-name {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .holiday-details {
        font-size: 0.85rem;
    }

    .location-tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }

    .states-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .state-card-modern {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .state-card-modern h3 {
        font-size: 1.1rem;
    }

    .state-card-modern p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .modern-select {
        min-width: 100%;
        padding: 0.875rem 1rem 0.875rem 2.5rem;
    }

    .select-wrapper i {
        font-size: 1rem;
    }

    .pagination {
        flex-direction: column;
        gap: 0.5rem;
    }

    .page-numbers {
        order: 1;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.25rem;
    }

    .page-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
        min-width: 40px;
    }

    .quick-nav-grid,
    .monthly-links-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .nav-card,
    .month-card {
        padding: 1rem;
    }

    .nav-icon,
    .month-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .nav-card h3,
    .month-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .nav-card p,
    .month-card p {
        font-size: 0.8rem;
    }
}

/* Page Transitions */
body {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

body.loaded {
    opacity: 1;
}

/* Utility Classes */
.fade-in {
    animation: fadeIn 0.6s ease;
}

.slide-up {
    animation: slideUp 0.6s ease;
}

.smooth-transition {
    transition: all 0.3s ease;
}

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

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

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Performance Optimizations */
.holiday-card,
.state-card-modern,
.feature-card,
.nav-card,
.month-card {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Lazy loading images */
img {
    loading: lazy;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-green: #006400;
        --gray-600: #000000;
        --gray-700: #000000;
        --gray-800: #000000;
        --gray-900: #000000;
    }
    
    .holiday-card,
    .state-card-modern,
    .feature-card {
        border: 2px solid var(--gray-900);
    }
}

/* Improved loading spinner */
.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    min-height: 200px;
}

.loading-text {
    color: var(--gray-600);
    font-weight: 500;
    animation: pulse 2s infinite;
}

/* Error states */
.error-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--radius-md);
    color: var(--error);
}

.error-state i {
    font-size: 2rem;
}

.retry-button {
    background: var(--error);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition-normal);
}

.retry-button:hover {
    background: #dc2626;
    transform: translateY(-1px);
}

/* State-specific page styles */
.state-hero-section {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 50%, var(--light-green) 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.state-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    animation: float 15s ease-in-out infinite;
}

.state-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.state-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.state-hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 2rem;
}

.current-date-display {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    color: var(--gray-700);
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.current-date-display i {
    color: var(--primary-green);
    font-size: 1.25rem;
}

.today-status-card {
    max-width: 500px;
    margin: 0 auto;
}

.status-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12), 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--gray-200);
    min-height: 180px;
    transition: all var(--transition-normal);
}

.status-loading:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 8px 25px rgba(0, 0, 0, 0.1);
}

.status-badge {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition-normal);
}

.status-badge.holiday-status {
    border-color: var(--error);
    background: linear-gradient(135deg, #fef2f2, var(--white));
}

.status-badge.open-status {
    border-color: var(--success);
    background: linear-gradient(135deg, var(--light-green), var(--white));
}

.status-badge i {
    font-size: 3rem;
    padding: 1rem;
    border-radius: 50%;
    background: var(--light-green);
}

.status-badge.holiday-status i {
    color: var(--error);
    background: #fef2f2;
}

.status-badge.open-status i {
    color: var(--success);
    background: var(--light-green);
}

.status-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.status-content p {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.holiday-name {
    background: var(--error);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* State Info Section */
.state-info-section {
    padding: 3rem 0;
    background: var(--white);
}

.state-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Holidays Table Section */
.holidays-table-section {
    padding: 3rem 0;
    background: var(--gray-50);
}

.table-header {
    text-align: center;
    margin-bottom: 3rem;
}

.table-header h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.table-header i {
    color: var(--primary-green);
}

.table-header p {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.holidays-table-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.table-wrapper {
    overflow-x: auto;
}

.holidays-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.holidays-table thead {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--white);
}

.holidays-table th {
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 600;
    border: none;
}

.holidays-table th i {
    margin-right: 0.5rem;
}

.holidays-table tbody tr {
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition-fast);
}

.holidays-table tbody tr:hover {
    background: var(--light-green);
}

.holidays-table tbody tr.today-row {
    background: linear-gradient(135deg, #fef2f2, var(--white));
    border-color: var(--error);
}

.holidays-table td {
    padding: 1.25rem 1rem;
    vertical-align: middle;
}

.date-cell {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.date-text {
    font-weight: 600;
    color: var(--gray-900);
}

.today-badge {
    background: var(--error);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.holiday-cell .holiday-name {
    font-weight: 600;
    color: var(--gray-900);
}

.type-badge {
    background: var(--light-green);
    color: var(--primary-green);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--accent-green);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

.status-holiday {
    background: #fef2f2;
    color: var(--error);
    border: 1px solid #fecaca;
}

.status-upcoming {
    background: var(--gray-100);
    color: var(--gray-600);
    border: 1px solid var(--gray-300);
}

.loading-cell,
.no-holidays-cell {
    text-align: center;
    padding: 3rem;
}

.table-loading,
.no-holidays-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--gray-600);
}

.no-holidays-message i {
    font-size: 3rem;
    color: var(--gray-400);
}

/* SEO Content Section */
.seo-content-section {
    padding: 4rem 0;
    background: var(--white);
}

.seo-content h2 {
    color: var(--gray-900);
    margin-bottom: 2rem;
    text-align: center;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.main-content h3 {
    color: var(--gray-900);
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
}

.main-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.quick-facts,
.helpful-tips {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.quick-facts h4,
.helpful-tips h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.quick-facts ul,
.helpful-tips ul {
    list-style: none;
    padding: 0;
}

.quick-facts li,
.helpful-tips li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
    position: relative;
    padding-left: 1.5rem;
}

.quick-facts li:last-child,
.helpful-tips li:last-child {
    border-bottom: none;
}

.quick-facts li::before,
.helpful-tips li::before {
    content: '•';
    color: var(--primary-green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Quick Navigation Section - Unified Design */
.quick-nav-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.quick-nav-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: floatPattern 20s ease-in-out infinite;
}

@keyframes floatPattern {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

.quick-nav-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.quick-nav-section .section-header h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.quick-nav-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.quick-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.nav-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

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

.nav-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.nav-card.featured {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    border-color: #ffd700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.nav-card.featured:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
}

.nav-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: inherit;
    transition: var(--transition-normal);
    display: block;
}

.nav-card:hover .nav-icon {
    transform: scale(1.1) rotate(5deg);
}

.nav-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: inherit;
}

.nav-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.4;
    color: inherit;
}

.card-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #ef4444;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
    animation: pulse 2s infinite;
}

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

/* Monthly Links Section - Unified Design */
.monthly-links-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.monthly-links-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: floatPattern 20s ease-in-out infinite reverse;
}

.monthly-links-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.monthly-links-section .section-header h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.monthly-links-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.monthly-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.month-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 1.5rem;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.month-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    transform: scaleX(0);
    transition: var(--transition-normal);
}

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

.month-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    background: white;
}

.month-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    transition: var(--transition-normal);
}

.month-card:hover .month-icon {
    transform: scale(1.1) rotate(5deg);
}

.month-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    transition: var(--transition-normal);
}

.month-card:hover h3 {
    color: var(--primary-green);
}

.month-card p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Related States Section */
.related-states-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.related-states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.related-state-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.related-state-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.related-state-card .state-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.related-state-card h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.related-state-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.card-arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--primary-color);
    font-size: 1rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.related-state-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Enhanced Tomorrow Page Styles */
.quick-nav-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--light-green);
    border-radius: var(--radius-md);
    border: 1px solid var(--accent-green);
    transition: var(--transition-normal);
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.service-item i {
    color: var(--primary-green);
    font-size: 1.25rem;
    min-width: 24px;
}

.service-item span {
    color: var(--gray-800);
    font-weight: 500;
}

.emergency-info {
    background: linear-gradient(135deg, #fef2f2, var(--white));
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid #fecaca;
    margin-top: 2rem;
}

.emergency-info h4 {
    color: var(--error);
    margin-bottom: 1rem;
}

.emergency-info p {
    color: var(--gray-700);
    margin: 0;
}

.tomorrow-badge {
    background: var(--warning);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-left: 0.5rem;
}

.tomorrow-row {
    background: linear-gradient(135deg, #fff7ed, var(--white));
    border-left: 4px solid var(--warning);
}

.weekend-status {
    border-color: var(--warning);
    background: linear-gradient(135deg, #fff7ed, var(--white));
}

.weekend-status i {
    color: var(--warning);
    background: #fff7ed;
}

.holiday-type,
.holiday-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0.25rem 0.25rem 0 0;
}

.holiday-type {
    background: var(--light-green);
    color: var(--primary-green);
    border: 1px solid var(--accent-green);
}

.holiday-category {
    background: var(--gray-100);
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.type-badge.hindu {
    background: #fef3c7;
    color: #d97706;
    border-color: #fbbf24;
}

.type-badge.christian {
    background: #dbeafe;
    color: #2563eb;
    border-color: #60a5fa;
}

.type-badge.sikh {
    background: #f3e8ff;
    color: #7c3aed;
    border-color: #a78bfa;
}

.type-badge.national {
    background: #fee2e2;
    color: #dc2626;
    border-color: #fca5a5;
}

.type-badge.state {
    background: #ecfdf5;
    color: var(--primary-green);
    border-color: var(--accent-green);
}

.type-badge.cultural {
    background: #fdf4ff;
    color: #c026d3;
    border-color: #e879f9;
}

.type-badge.labor {
    background: #f0f9ff;
    color: #0284c7;
    border-color: #38bdf8;
}

.status-upcoming {
    background: #fff7ed;
    color: var(--warning);
    border: 1px solid #fed7aa;
}

.status-future {
    background: var(--gray-100);
    color: var(--gray-600);
    border: 1px solid var(--gray-300);
}

/* Enhanced Info Cards */
.state-info-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.info-card {
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    transform: scaleX(0);
    transition: var(--transition-normal);
}

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

.info-card:nth-child(2)::before {
    background: linear-gradient(90deg, var(--warning), #fbbf24);
}

.info-card:nth-child(3)::before {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.info-card:nth-child(4)::before {
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
}

/* Enhanced Monthly Links Section */
.monthly-links-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.monthly-links-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: floatPattern 20s ease-in-out infinite;
}

@keyframes floatPattern {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.monthly-links-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.monthly-links-section .section-header h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.monthly-links-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.monthly-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.month-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.month-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    transform: scaleX(0);
    transition: var(--transition-normal);
}

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

.month-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    background: white;
}

.month-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    transition: var(--transition-normal);
}

.month-card:hover .month-icon {
    transform: scale(1.1) rotate(5deg);
}

.month-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    transition: var(--transition-normal);
}

.month-card:hover h3 {
    color: var(--primary-green);
}

.month-card p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Enhanced Related States Section */
.related-states-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.related-states-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
}

.related-states-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.related-states-section .section-header h2 {
    color: var(--gray-900);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.related-states-section .section-header p {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.related-states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.related-state-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.related-state-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.related-state-card:hover::before {
    transform: scaleX(1);
}

.related-state-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.related-state-card .state-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    transition: var(--transition-normal);
}

.related-state-card:hover .state-icon {
    transform: scale(1.1) rotate(5deg);
}

.related-state-card h3 {
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition-normal);
}

.related-state-card:hover h3 {
    color: var(--primary-green);
}

.related-state-card p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    font-size: 0.85rem;
    line-height: 1.4;
}

.card-arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--primary-green);
    font-size: 1rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.related-state-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Enhanced Table Styles */
.holidays-table tbody tr.tomorrow-row:hover {
    background: linear-gradient(135deg, #fff7ed, #fef3c7);
}

.date-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .state-hero-title {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
    }

    .current-date-display {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .status-badge {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .status-badge i {
        font-size: 2.5rem;
    }

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

    .holidays-table {
        font-size: 0.875rem;
    }

    .holidays-table th,
    .holidays-table td {
        padding: 1rem 0.75rem;
    }

    .date-cell {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .related-states-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .state-info-grid {
        grid-template-columns: 1fr;
    }

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

    .quick-nav-buttons {
        flex-direction: column;
        align-items: center;
    }

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

@media (max-width: 480px) {
    .holidays-table-container {
        margin: 0 -1rem;
        border-radius: 0;
    }

    .holidays-table {
        font-size: 0.8rem;
    }

    .holidays-table th,
    .holidays-table td {
        padding: 0.75rem 0.5rem;
    }

    .status-badge {
        padding: 1.5rem;
    }

    .related-state-card {
        padding: 1.5rem;
    }

    .quick-facts,
    .helpful-tips {
        padding: 1.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for accessibility */
.nav-link:focus,
.dropdown-btn:focus,
.modern-select:focus,
.page-btn:focus,
.state-card-modern:focus,
.faq-question:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}