/* ========================================
   ROOT VARIABLES & GLOBALS
   ======================================== */

:root {
    /* Brand Colors - From Logo */
    --primary-color: #00B0D7;
    --primary-dark: #008FB2;
    --primary-light: #DDF4FF;
    --secondary-color: #FF7A59;
    --secondary-dark: #FF5B36;
    --secondary-light: #FFD6C7;
    
    /* Educational Palette - Softer, Warmer */
    --accent-yellow: #FFD93D;
    --accent-green: #4ECDC4;
    --accent-purple: #A8E6CF;
    --warm-beige: #FFF3E8;
    --soft-peach: #FFE5D9;
    --peach-50: #FFF8F3;
    --peach-100: #FFEBDC;
    --peach-200: #FFD8C4;
    --peach-300: #FFBFA4;
    
    /* Semantic Colors */
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
    --danger-color: #ef4444;
    
    /* Neutral Colors - Warmer */
    --text-dark: #2c3e50;
    --text-medium: #5a6c7d;
    --text-light: #8492a6;
    --text-muted: #9ca3af;
    --bg-cream: #FFF5EE;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-light-blue: #F0FAFF;
    --border-color: #e8eff5;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #FFE5D9 0%, #E8FBFF 100%);
    --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 235, 222, 0.6) 100%);
    --gradient-primary: linear-gradient(135deg, #00B0D7 0%, #008FB2 100%);
    --gradient-secondary: linear-gradient(135deg, #FF9E7A 0%, #FF7A59 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    
    /* Spacing */
    --section-padding: 60px 0;
    --section-padding-sm: 40px 0;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-soft: 0 2px 12px rgba(0, 217, 255, 0.08);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.1);
    
    /* Rounded - More Friendly */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    /* Smooth Transitions */
    --transition: 0.3s ease;
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
}

/* ========================================
   GLOBAL STYLES
   ======================================== */

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

  html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: radial-gradient(circle at top left, rgba(255, 235, 220, 0.65) 0%, rgba(255, 248, 243, 0.9) 35%, rgba(242, 248, 255, 0.95) 100%);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka', 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.05rem;
    color: var(--text-medium);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

.min-vh-75 {
    min-height: 75vh;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    font-weight: 500;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 14px rgba(0, 217, 255, 0.25);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 217, 255, 0.35);
    color: white;
}

.btn-secondary {
    background: var(--secondary-color);
    color: white !important;
    box-shadow: 0 4px 14px rgba(255, 59, 59, 0.4);
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 59, 59, 0.5);
    color: white !important;
}

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

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

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
    border: none;
}

.btn-lg {
    padding: 14px 36px;
    font-size: 1.05rem;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.site-header {
    background: rgba(255, 245, 238, 0.94);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-base);
}

.navbar {
    padding: 0.75rem 0;
}

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

.site-logo {
    height: 45px;
    width: auto;
    transition: var(--transition-fast);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-wrapper i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-name {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
}

.brand-tagline {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Navbar toggler button */
.navbar-toggler {
    border: 2px solid var(--primary-color);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(0, 176, 215, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2300B0D7' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Nav links */
.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0.875rem;
    position: relative;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.875rem;
    right: 0.875rem;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

/* Collapsed navbar (mobile menu) styles */
.navbar-collapse {
    transition: var(--transition-base);
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-lg);
        margin-top: 1rem;
        padding: 1rem;
        max-height: 80vh;
        overflow-y: auto;
    }

    .navbar-nav {
        gap: 0.25rem;
    }

    .nav-link {
        padding: 0.75rem 1rem;
        border-radius: var(--radius-sm);
    }

    .nav-link:hover {
        background: rgba(0, 176, 215, 0.08);
    }

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

    /* Auth nav in mobile */
    .auth-nav {
        flex-direction: column;
        width: 100%;
        margin-top: 0.5rem;
        padding-top: 0.75rem;
        border-top: 1px solid var(--border-color);
    }

    .auth-nav .nav-item {
        width: 100%;
    }

    .auth-nav .nav-link {
        width: 100%;
    }

    .auth-nav .btn {
        width: 100%;
        justify-content: center;
    }

    /* User dropdown in mobile */
    .auth-nav .dropdown {
        width: 100%;
    }

    .auth-nav .user-menu {
        width: 100%;
        justify-content: space-between;
    }

    .auth-nav .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        margin-top: 0.5rem;
        box-shadow: none;
        border: 1px solid var(--border-color);
    }
}

/* ========================================
   RESPONSIVE NAVIGATION - TABLET PORTRAIT (768px - 991px)
   ======================================== */
@media (min-width: 768px) and (max-width: 991.98px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .site-logo {
        height: 40px;
    }

    .brand-name {
        font-size: 1.2rem;
    }

    .brand-tagline {
        font-size: 0.75rem;
    }
}

/* ========================================
   RESPONSIVE NAVIGATION - LAPTOP/DESKTOP (992px+)
   ======================================== */
@media (min-width: 992px) {
    .navbar-nav {
        align-items: center;
        gap: 0;
    }

    .nav-link {
        padding: 0.5rem 0.65rem;
        font-size: 0.9rem;
    }

    /* User dropdown styling */
    .auth-nav .dropdown-menu {
        min-width: 240px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--border-color);
        padding: 0.5rem;
        margin-top: 0.5rem;
    }

    .auth-nav .dropdown-item {
        padding: 0.625rem 1rem;
        border-radius: var(--radius-sm);
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .auth-nav .dropdown-item:hover {
        background: rgba(0, 176, 215, 0.08);
    }

    .auth-nav .dropdown-item i {
        width: 1.25rem;
        text-align: center;
        color: var(--text-muted);
    }

    .auth-nav .dropdown-item:hover i {
        color: var(--primary-color);
    }

    .auth-nav .dropdown-divider {
        margin: 0.375rem 0;
    }
}

/* ========================================
   RESPONSIVE NAVIGATION - LARGE LAPTOP (992px - 1199px)
   ======================================== */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .site-logo {
        height: 38px;
    }

    .brand-name {
        font-size: 1.15rem;
    }

    .brand-tagline {
        font-size: 0.7rem;
    }

    .nav-link {
        padding: 0.5rem 0.5rem;
        font-size: 0.85rem;
    }

    .auth-nav .user-menu {
        padding: 6px 12px;
    }

    .auth-nav .user-menu span {
        max-width: 100px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* ========================================
   RESPONSIVE NAVIGATION - DESKTOP (1200px+)
   ======================================== */
@media (min-width: 1200px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .site-logo {
        height: 50px;
    }

    .brand-name {
        font-size: 1.4rem;
    }

    .brand-tagline {
        font-size: 0.85rem;
    }

    .nav-link {
        padding: 0.5rem 0.875rem;
        font-size: 0.95rem;
    }
}

/* ========================================
   RESPONSIVE NAVIGATION - LARGE DESKTOP (1400px+)
   ======================================== */
@media (min-width: 1400px) {
    .nav-link {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf4 100%);
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    top: -100px;
    right: -50px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--gradient-secondary);
    bottom: 50px;
    left: -50px;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--gradient-success);
    top: 50%;
    left: 30%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg);
    }
    75% {
        transform: translate(20px, 30px) rotate(270deg);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
    line-height: 1.1;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-image-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 80px;
    box-shadow: var(--shadow-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 400px;
}

.hero-icon {
    font-size: 10rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.floating-element {
    position: absolute;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    animation: floatElement 3s infinite ease-in-out;
}

.floating-element i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.floating-1 {
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}

.floating-2 {
    bottom: 20px;
    left: 20px;
    animation-delay: 0.5s;
}

.floating-3 {
    top: 50%;
    left: -40px;
    animation-delay: 1s;
}

.floating-4 {
    top: 50%;
    right: -40px;
    animation-delay: 1.5s;
}

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

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

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

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

/* ========================================
   SECTION STYLES
   ======================================== */

section {
    padding: var(--section-padding);
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header {
  margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   ANNOUNCEMENTS SECTION
   ======================================== */

.announcements-section {
    background: var(--bg-light);
}

.announcement-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.announcement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.announcement-image {
    width: 100%;
    height: 300px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-image i {
    font-size: 6rem;
    color: white;
}

.announcement-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.announcement-content h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.announcement-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.announcement-details {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.announcement-details li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-weight: 500;
    color: var(--text-dark);
}

.announcement-details i {
    color: var(--primary-color);
    width: 20px;
}

/* ========================================
   PROGRAMS SECTION
   ======================================== */

.program-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

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

.program-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-base);
}

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

.program-icon i {
    font-size: 2.5rem;
    color: white;
}

.program-card h4 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.program-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.program-features {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.program-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    color: var(--text-dark);
}

.program-features i {
    color: var(--success-color);
    font-size: 0.875rem;
}

.program-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.program-link:hover {
    gap: 12px;
}

/* ========================================
   ABACUS SECTION
   ======================================== */

.abacus-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.abacus-section .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.abacus-section .section-title {
    color: white;
}

.abacus-section .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.abacus-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-2xl);
}

.abacus-display {
    text-align: center;
    margin-bottom: 32px;
}

.abacus-value {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius-lg);
}

.abacus-board {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 32px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abacus-controls {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-image {
    position: relative;
}

.about-card {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    box-shadow: var(--shadow-xl);
}

.about-card i {
    font-size: 8rem;
    color: white;
}

.about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.about-badge i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.about-text {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-features {
    margin-top: 32px;
}

.feature-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--success-color);
    margin-top: 4px;
    flex-shrink: 0;
}

.feature-item h5 {
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.feature-item p {
    color: var(--text-light);
    margin: 0;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
    background: var(--bg-light);
}

.contact-info-card,
.contact-form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.contact-info-card h4,
.contact-form-card h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.map-container {
    margin-bottom: 24px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 16px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 4px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-item a {
    color: var(--text-light);
}

.contact-item a:hover {
    color: var(--primary-color);
}

.form-control {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 60px 0 0;
}

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

.footer-logo {
    height: 50px;
    width: auto;
    border-radius: var(--radius-sm);
}

.footer-brand i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.footer-brand h5 {
    color: white;
    margin: 0;
}

/* Responsive footer */
@media (max-width: 767.98px) {
    .footer-logo {
        height: 40px;
    }

    .footer-brand {
        justify-content: center;
        text-align: center;
    }

    .site-footer .col-lg-4,
    .site-footer .col-lg-3,
    .site-footer .col-lg-2 {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }
}

.footer-description {
    color: rgba(255, 252, 248, 0.75);
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.social-links i {
    font-size: 1.25rem;
    color: white;
}

.footer-heading {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

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

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--secondary-color);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    margin-top: 60px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
    color: white;
}

/* ========================================
   CAROUSEL CUSTOM STYLES
   ======================================== */

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    box-shadow: var(--shadow-md);
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

.carousel-indicators {
    margin-bottom: -40px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: var(--primary-color);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Extra Small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .hero-section {
        padding: 60px 0 40px;
    }

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

    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        gap: 12px;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 20px;
        justify-content: space-around;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .hero-image-card {
        padding: 30px;
        min-height: 200px;
    }

    .hero-icon {
        font-size: 4rem;
    }

    .floating-element {
        width: 50px;
        height: 50px;
    }

    .floating-element i {
        font-size: 1.25rem;
    }

    .floating-3,
    .floating-4 {
        display: none;
    }
    
    section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-description {
        font-size: 1rem;
    }
    
    .announcement-card {
        padding: 20px;
    }
    
    .announcement-image {
        height: 180px;
    }
    
    .announcement-image i {
        font-size: 3rem;
    }
    
    .announcement-content h3 {
        font-size: 1.35rem;
    }
    
    .program-card {
        padding: 20px;
    }

    .program-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }

    .program-icon i {
        font-size: 1.75rem;
    }

    .program-card h4 {
        font-size: 1.25rem;
    }
    
    .abacus-container {
        padding: 20px;
    }
    
    .abacus-value {
        font-size: 2.5rem;
        padding: 14px;
    }
    
    .about-card {
        padding: 30px;
        min-height: 250px;
    }
    
    .about-card i {
        font-size: 4rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .hero-section {
        padding: 70px 0 50px;
    }

    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: space-around;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-image-card {
        padding: 40px;
        min-height: 280px;
    }
    
    .hero-icon {
        font-size: 5rem;
    }
    
    .floating-3,
    .floating-4 {
        display: none;
    }
    
    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.85rem;
    }
    
    .announcement-card {
        padding: 24px;
    }
    
    .announcement-image {
        height: 200px;
    }
    
    .announcement-image i {
        font-size: 4rem;
    }
    
    .announcement-content h3 {
        font-size: 1.5rem;
    }
    
    .program-card {
        padding: 24px;
    }
    
    .about-card {
        padding: 40px;
        min-height: 280px;
    }
    
    .about-card i {
        font-size: 5rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

/* Medium devices (tablets portrait, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .hero-image-card {
        padding: 50px;
        min-height: 320px;
    }
    
    .floating-element {
        width: 60px;
        height: 60px;
    }
    
    .floating-element i {
        font-size: 1.5rem;
    }
    
    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .announcement-image {
        height: 250px;
    }
}

/* Large devices (tablets landscape, laptops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .hero-section {
        padding: 100px 0 70px;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-image-card {
        padding: 60px;
        min-height: 350px;
    }
    
    section {
        padding: 70px 0;
    }
}

/* Extra large devices (desktops, 1200px and up) */
@media (min-width: 1200px) {
    .hero-section {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
    }
    
    .hero-image-card {
        padding: 80px;
        min-height: 400px;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

.bg-gradient-secondary {
    background: var(--gradient-secondary);
}

.shadow-custom {
    box-shadow: var(--shadow-xl);
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

[data-aos] {
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* ========================================
   EVENTS PAGE STYLES
   ======================================== */

.page-header {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf4 100%);
}

.event-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    margin-bottom: 32px;
    position: relative;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.event-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}

.event-badge.winter {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.featured-event .event-badge {
    background: var(--gradient-secondary);
}

.event-image {
    height: 300px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.event-icon {
    font-size: 6rem;
    color: white;
}

.winter-icon {
    color: rgba(255, 255, 255, 0.9);
}

.event-date-badge {
    position: absolute;
    bottom: -30px;
    left: 30px;
    background: white;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    min-width: 80px;
}

.event-date-badge .month {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
}

.event-date-badge .day {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.event-content {
    padding: 50px 32px 32px;
}

.event-content h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.event-description {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.event-details-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.detail-item i {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.detail-item strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 2px;
}

.detail-item span {
    color: var(--text-light);
}

.event-highlights {
    margin-bottom: 24px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
}

.event-highlights h5 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.event-highlights ul {
    margin: 0;
    padding-left: 20px;
}

.event-highlights li {
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

/* Daily Schedule Styles */
.daily-schedule-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.schedule-timeline {
    position: relative;
    padding-left: 40px;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 32px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 8px;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
}

.timeline-item .time {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.timeline-item .activity h5 {
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.timeline-item .activity p {
    color: var(--text-light);
    margin: 0;
}

/* Gallery Styles */
.event-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.gallery-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-base);
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.gallery-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.gallery-icon i {
    font-size: 3rem;
    color: white;
}

.gallery-card h4 {
    margin-bottom: 8px;
}

.gallery-date {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

/* CTA Sections */
.cta-section {
    background: var(--gradient-primary);
    color: white;
}

.cta-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-card h2 {
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Schedule Tabs */
.schedule-tabs .nav-pills {
    gap: 12px;
}

.schedule-tabs .nav-link {
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.schedule-tabs .nav-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.schedule-tabs .nav-link.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

/* ========================================
   SCHEDULE PAGE STYLES
   ======================================== */

.schedule-header {
    padding: 100px 0 40px;
}

.sticky-controls {
    position: sticky;
    top: 70px;
    z-index: 100;
    background: var(--bg-light);
    box-shadow: var(--shadow-sm);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-btn {
    padding: 10px 20px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--text-dark);
    transition: all var(--transition-fast);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.view-toggles {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.view-toggle-btn {
    width: 45px;
    height: 45px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.view-toggle-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.view-toggle-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.legend {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
}

.status-indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.status-indicator.enrolling {
    background: var(--success-color);
}

.status-indicator.available {
    background: var(--info-color);
}

.status-indicator.few-left {
    background: var(--warning-color);
}

/* Day Pills */
.day-pills {
    gap: 12px;
    flex-wrap: wrap;
}

.day-pills .nav-link {
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.day-pills .nav-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.day-pills .nav-link.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

/* Class Cards */
.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.class-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    transition: all var(--transition-base);
    border-left: 4px solid transparent;
}

.class-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-xl);
    border-left-color: var(--primary-color);
}

.time-badge {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: var(--radius-md);
    text-align: center;
    min-width: 120px;
}

.class-info h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.class-description {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 0.9375rem;
}

.class-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.class-category,
.class-age,
.class-duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.class-category i,
.class-age i,
.class-duration i {
    font-size: 0.875rem;
}

.class-category.math {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: var(--primary-color);
}

.class-category.russian {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.class-category.english {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.class-category.art {
    background: rgba(245, 158, 11, 0.1);
    color: var(--secondary-color);
}

.class-category.programming {
    background: rgba(59, 130, 246, 0.1);
    color: var(--info-color);
}

.class-category.early-dev {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

.class-age,
.class-duration {
    background: var(--bg-light);
    color: var(--text-dark);
}

.class-status {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

.status-badge {
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-badge.enrolling {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.status-badge.available {
    background: rgba(59, 130, 246, 0.1);
    color: var(--info-color);
}

.status-badge.few-left {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning-color);
}

.enroll-btn {
    white-space: nowrap;
}

/* Grid View */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.schedule-grid .class-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    text-align: center;
}

.schedule-grid .time-badge {
    margin: 0 auto;
}

.schedule-grid .class-meta {
    justify-content: center;
}

.schedule-grid .class-status {
    margin-top: auto;
}

/* ========================================
   RESPONSIVE DESIGN FOR EVENTS & SCHEDULE
   ======================================== */

@media (max-width: 991px) {
    .event-card {
        margin-bottom: 24px;
    }
    
    .event-image {
        height: 250px;
    }
    
    .event-icon {
        font-size: 4rem;
    }
    
    .event-content {
        padding: 40px 24px 24px;
    }
    
    .event-content h3 {
        font-size: 1.5rem;
    }
    
    .class-card {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .class-status {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .view-toggles {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 80px 0 40px;
    }
    
    .event-image {
        height: 200px;
    }
    
    .event-icon {
        font-size: 3rem;
    }
    
    .event-date-badge {
        bottom: -25px;
        left: 20px;
        padding: 12px 16px;
        min-width: 70px;
    }
    
    .event-date-badge .day {
        font-size: 1.5rem;
    }
    
    .event-actions {
        flex-direction: column;
    }
    
    .event-actions .btn {
        width: 100%;
    }
    
    .schedule-tabs .nav-pills {
        flex-direction: column;
    }
    
    .schedule-tabs .nav-link {
        width: 100%;
    }
    
    .day-pills {
        flex-direction: column;
    }
    
    .day-pills .nav-link {
        width: 100%;
        text-align: center;
    }
    
    .filter-buttons {
        flex-direction: column;
    }
    
    .filter-btn {
        width: 100%;
        justify-content: center;
    }
    
    .legend {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .time-badge {
        min-width: auto;
    }
}

/* ========================================
   AUTHENTICATION PAGES STYLES
   ======================================== */

/* Auth Navigation */
.auth-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.auth-nav .btn-primary {
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
}

.auth-login .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(0, 184, 212, 0.1) 100%);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.user-menu:hover {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2) 0%, rgba(0, 184, 212, 0.2) 100%);
}

.user-menu .user-icon {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.user-menu .user-avatar {
    border: 2px solid rgba(0, 176, 215, 0.3);
}

.user-menu .user-name {
    font-weight: 500;
    color: var(--text-dark);
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-menu .dropdown-arrow {
    font-size: 0.7rem;
    color: var(--text-muted);
    transition: transform var(--transition-fast);
}

.user-menu[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown menu styling */
.auth-nav .dropdown-menu {
    min-width: 260px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    padding: 0.5rem;
    margin-top: 0.5rem !important;
}

.auth-nav .dropdown-header {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(0, 184, 212, 0.05) 100%);
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
}

.auth-nav .dropdown-section-header {
    padding: 0.5rem 0 0.25rem;
}

.auth-nav .dropdown-section-header small {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.auth-nav .dropdown-item {
    padding: 0.625rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-fast);
}

.auth-nav .dropdown-item:hover {
    background: rgba(0, 176, 215, 0.08);
}

.auth-nav .dropdown-item i {
    width: 1.25rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.auth-nav .dropdown-item:hover i {
    color: var(--primary-color);
}

.auth-nav .logout-btn {
    margin-top: 0.25rem;
}

.auth-nav .logout-btn:hover {
    background: rgba(239, 68, 68, 0.1);
}

.auth-nav .logout-btn i {
    color: var(--danger-color);
}

.auth-nav .dropdown-divider {
    margin: 0.375rem 0;
    border-color: var(--border-color);
}

/* Responsive auth nav */
@media (max-width: 575.98px) {
    .user-menu .user-name {
        max-width: 80px;
    }

    .auth-nav .btn-primary {
        padding: 8px 12px;
    }
}

@media (max-width: 991.98px) {
    .auth-nav {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }

    .auth-nav .nav-item {
        width: 100%;
    }

    .auth-nav .dropdown {
        width: 100%;
    }

    .auth-nav .user-menu {
        width: 100%;
        justify-content: space-between;
        padding: 0.75rem 1rem;
    }

    .auth-nav .user-menu .user-name {
        max-width: none;
    }

    .auth-nav .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        margin-top: 0.5rem !important;
        box-shadow: none;
        border: 1px solid var(--border-color);
        max-height: 60vh;
        overflow-y: auto;
    }

    .auth-login,
    .auth-register {
        width: 100%;
    }

    .auth-login .nav-link {
        width: 100%;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-sm);
        justify-content: flex-start;
    }

    .auth-register .btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .user-menu .user-name {
        max-width: 80px;
    }

    .auth-nav .btn-primary {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (min-width: 1200px) {
    .user-menu .user-name {
        max-width: 140px;
    }
}

/* Auth Pages Layout */
.auth-page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf4 100%);
    position: relative;
    overflow: hidden;
}

.auth-page-wrapper::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(255, 59, 59, 0.1) 100%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: float 20s infinite ease-in-out;
}

.auth-page-wrapper::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 59, 59, 0.1) 0%, rgba(0, 217, 255, 0.1) 100%);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    animation: float 15s infinite ease-in-out reverse;
}

.auth-container {
    width: 100%;
    max-width: 560px;
    position: relative;
    z-index: 10;
}

.auth-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    padding: 48px;
    animation: fadeInUp 0.6s ease-out;
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-logo {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: pulse 2s infinite;
}

.auth-logo i {
    font-size: 2.5rem;
    color: white;
}

.auth-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.auth-subtitle {
    color: var(--text-light);
    font-size: 1rem;
}

/* Auth Form Styles */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.auth-form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: block;
    font-size: 0.9375rem;
}

.auth-input-wrapper {
    position: relative;
    width: 100%;
}

.auth-input-wrapper .form-control {
    padding: 14px 16px;
    padding-left: 45px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-fast);
    width: 100%;
}

.auth-input-wrapper .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 217, 255, 0.1);
    outline: none;
}

.auth-input-wrapper .input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.125rem;
    pointer-events: none;
    transition: color var(--transition-fast);
}

.auth-input-wrapper .form-control:focus + .input-icon {
    color: var(--primary-color);
}

/* Validation Messages */
.text-danger {
    color: var(--secondary-color) !important;
    font-size: 0.875rem;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.text-danger::before {
    content: '\f06a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.875rem;
}

.validation-summary-errors {
    background: rgba(255, 59, 59, 0.1);
    border-left: 4px solid var(--secondary-color);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.validation-summary-errors ul {
    margin: 8px 0 0 0;
    padding-left: 20px;
    color: var(--secondary-color);
    font-weight: 500;
}

.validation-summary-errors ul li {
    margin-bottom: 4px;
}

.validation-summary-errors ul li:last-child {
    margin-bottom: 0;
}

/* Input Validation Error State */
.auth-input-wrapper .form-control.input-validation-error,
.auth-input-wrapper .form-control.is-invalid {
    border-color: var(--secondary-color) !important;
    background-color: rgba(255, 59, 59, 0.05);
}

.auth-input-wrapper .form-control.input-validation-error:focus,
.auth-input-wrapper .form-control.is-invalid:focus {
    border-color: var(--secondary-color) !important;
    box-shadow: 0 0 0 4px rgba(255, 59, 59, 0.15) !important;
}

.auth-input-wrapper .form-control.input-validation-error + .input-icon,
.auth-input-wrapper .form-control.is-invalid + .input-icon {
    color: var(--secondary-color);
}

/* Field-validation-error class (ASP.NET MVC) */
.field-validation-error {
    color: var(--secondary-color) !important;
    font-size: 0.875rem;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.field-validation-error::before {
    content: '\f06a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.875rem;
}

.field-validation-valid {
    display: none;
}

/* Remember Me Checkbox */
.auth-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.auth-checkbox label {
    margin: 0;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-dark);
}

/* Auth Buttons */
.auth-submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    background: var(--gradient-primary);
    color: white !important;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.0625rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(0, 217, 255, 0.35);
}

.auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 217, 255, 0.45);
    background: var(--primary-dark);
}

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

.auth-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Form Helper Text */
.form-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 6px;
    display: block;
}

.form-text.text-muted {
    color: var(--text-muted) !important;
}

/* Divider */
.auth-divider {
    text-align: center;
    position: relative;
    margin: 32px 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.auth-divider span {
    background: white;
    padding: 0 16px;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Auth Links */
.auth-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.auth-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.auth-link:hover {
    color: var(--primary-dark);
}

/* Auth Footer */
.auth-footer {
    text-align: center;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.auth-footer p {
    color: var(--text-light);
    margin: 0;
}

.auth-footer a {
    color: var(--primary-color);
    font-weight: 600;
    transition: color var(--transition-fast);
}

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

/* External Login Buttons */
.external-login-section {
    margin-top: 32px;
}

.external-login-btn {
    width: 100%;
    padding: 14px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all var(--transition-fast);
    margin-bottom: 12px;
}

.external-login-btn:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(0, 184, 212, 0.05) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.external-login-btn i {
    font-size: 1.25rem;
}

/* Success Messages */
.alert-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border-left: 4px solid var(--success-color);
    padding: 16px;
    border-radius: var(--radius-md);
    color: var(--success-color);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Note: Removed ::before pseudo-element - icons should be added via HTML to prevent duplicates */

/* Info Messages */
.alert-info {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(0, 184, 212, 0.1) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 16px;
    border-radius: var(--radius-md);
    color: var(--primary-dark);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Note: Removed ::before pseudo-element - icons should be added via HTML to prevent duplicates */

/* Password Strength Indicator */
.password-strength {
    margin-top: 8px;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
}

.password-strength-bar {
    height: 100%;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.password-strength-weak {
    width: 33%;
    background: var(--secondary-color);
}

.password-strength-medium {
    width: 66%;
    background: var(--warning-color);
}

.password-strength-strong {
    width: 100%;
    background: var(--success-color);
}

/* Resend Email Confirmation */
.resend-confirmation {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(0, 184, 212, 0.05) 100%);
    border-radius: var(--radius-md);
    margin-top: 24px;
}

.resend-confirmation p {
    margin-bottom: 16px;
    color: var(--text-dark);
}

/* Two-Factor Authentication */
.two-factor-code {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 24px 0;
}

.two-factor-code input {
    width: 50px;
    height: 60px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.two-factor-code input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 217, 255, 0.1);
    outline: none;
}

/* Responsive Design for Auth Pages */
@media (max-width: 576px) {
    .auth-card {
        padding: 32px 24px;
    }
    
    .auth-title {
        font-size: 1.75rem;
    }
    
    .auth-logo {
        width: 70px;
        height: 70px;
    }
    
    .auth-logo i {
        font-size: 2rem;
    }
    
    .auth-links {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Loading State */
.auth-submit-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.auth-submit-btn.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   LANGUAGE SWITCHER STYLES
   ======================================== */

.language-switcher {
    display: flex;
    align-items: center;
}

.btn-language {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(0, 184, 212, 0.1) 100%);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-md);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
}

.btn-language:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-language .flag {
    font-size: 1.25rem;
    line-height: 1;
}

.btn-language .lang-text {
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.lang-form {
    margin: 0;
    padding: 0;
    width: 100%;
}

.lang-form button {
    width: 100%;
    text-align: left;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    transition: all var(--transition-fast);
}

.lang-form button:hover {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(0, 184, 212, 0.1) 100%);
}

.lang-form button.active {
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
}

.lang-form button .flag {
    font-size: 1.5rem;
}

.lang-form button .lang-name {
    font-weight: 500;
}

.language-switcher .dropdown-menu {
    min-width: 180px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    padding: 8px;
}

.language-switcher .dropdown-item {
    border-radius: var(--radius-sm);
    margin-bottom: 4px;
}

.language-switcher .dropdown-item:last-child {
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .btn-language {
        padding: 6px 12px;
    }
    
    .btn-language .lang-text {
        display: none;
    }
    
    .btn-language .flag {
        font-size: 1.5rem;
    }
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */

.why-choose-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e8ecf4 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 59, 59, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

.feature-box {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-hero);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

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

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-secondary);
}

.feature-box h4 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.feature-box p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Stagger animation on scroll */
.feature-box[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-box[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   ENHANCED ANIMATIONS
   ======================================== */

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

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

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Smooth scroll behavior */
html {
    scroll-padding-top: 80px;
}

/* Section animations on scroll */
section {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

section:nth-child(even) {
    animation-delay: 0.3s;
}

section:nth-child(odd) {
    animation-delay: 0.4s;
}

/* Remove animation after first load */
section.animated {
    opacity: 1;
    animation: none;
}

/* ========================================
   PARENT DASHBOARD
   ======================================== */
.parent-dashboard-section {
    background: linear-gradient(135deg, rgba(255, 252, 248, 0.9) 0%, rgba(232, 251, 255, 0.75) 100%);
}

.parent-dashboard-section .profile-card,
.parent-dashboard-section .student-card {
    border-radius: var(--radius-lg);
    background: white;
}

.parent-dashboard-section .subsection-title {
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.parent-dashboard-section .student-form-wrapper {
    border: 1px dashed rgba(0, 176, 215, 0.2);
    border-radius: var(--radius-lg);
    padding: 24px;
    background: rgba(255, 235, 220, 0.15);
}

.parent-dashboard-section .student-card form.student-form {
    background: rgba(255, 252, 248, 0.75);
    padding: 16px;
    border-radius: var(--radius-md);
}

.parent-dashboard-section .student-card form.student-form .form-control,
.parent-dashboard-section .student-card form.student-form .form-select {
    background: white;
}

.parent-dashboard-section .alert-info {
    background: rgba(0, 176, 215, 0.08);
    border: 1px solid rgba(0, 176, 215, 0.2);
    color: var(--text-medium);
}

/* ========================================
   IMPROVEMENT NOTICE BANNER
   ======================================== */

.improvement-notice-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 0;
    position: relative;
    z-index: 900;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.improvement-notice-banner .notice-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.improvement-notice-banner .notice-icon {
    font-size: 16px;
    animation: pulse 2s ease-in-out infinite;
}

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

.improvement-notice-banner .notice-text {
    transition: opacity 0.5s ease-in-out;
}

@media (max-width: 576px) {
    .improvement-notice-banner {
        padding: 8px 0;
    }
    
    .improvement-notice-banner .notice-content {
        font-size: 12px;
        gap: 8px;
    }
    
    .improvement-notice-banner .notice-icon {
        font-size: 14px;
    }
}

/* ========================================
   FOOTER PHONE NUMBERS STYLING
   ======================================== */

.footer-contact .phone-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact .phone-item i {
    margin-top: 2px;
}

.footer-contact .phone-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-contact .phone-details a {
    font-weight: 500;
}

.footer-contact .phone-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    line-height: 1.4;
    display: block;
}

.footer-contact .phone-description strong {
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .site-header,
    .site-footer,
    .hero-section,
    .btn,
    .schedule-controls,
    .day-tabs-section,
    .filter-buttons,
    .view-toggles,
    .language-switcher,
    .improvement-notice-banner {
        display: none;
    }
}
