@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --bg-main: #030712;
    --bg-secondary: #0f172a;
    --primary: #3b82f6;
    --primary-glow: rgba(59, 130, 246, 0.5);
    --secondary: #8b5cf6;
    --accent: #10b981;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(15, 23, 42, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Outfit', sans-serif;
}



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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none; /* Custom cursor */
}

/* --- Custom Cursor --- */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 99999;
    pointer-events: none;
    transition: width 0.3s, height 0.3s, background-color 0.3s, opacity 0.3s;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    transition: all 0.15s ease-out;
}

/* --- Scroll Progress Bar --- */
#scrollProgressBar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    width: 0%;
    z-index: 9999;
    transition: width 0.1s ease;
}

/* --- Page Transition Overlay --- */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-main);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    pointer-events: none;
}
.page-transition.active {
    transform: translateY(0);
}

/* --- Background Effects --- */
.bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    filter: blur(100px);
    opacity: 0.4;
    border-radius: 50%;
    animation: drift 20s infinite alternate ease-in-out;
}

.blob-1 { width: 400px; height: 400px; background: var(--primary); top: -100px; left: -100px; }
.blob-2 { width: 500px; height: 500px; background: var(--secondary); bottom: -200px; right: -100px; animation-delay: -5s; }
.blob-3 { width: 300px; height: 300px; background: var(--accent); top: 40%; left: 50%; opacity: 0.15; animation-duration: 25s; }

.noise-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    mix-blend-mode: overlay;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* --- Typography Utilities --- */
.gradient-text {
    background: linear-gradient(135deg, #60a5fa, #c084fc, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

h1, h2, h3, h4, h5 { font-family: var(--font-heading); }
.w-100 { width: 100%; }
.mt-4 { margin-top: 1rem; }
.text-center { text-align: center; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font-heading);
    cursor: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-decoration: none;
}

/* Premium Select Styling */
select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px !important;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

select option {
    background: #0f172a;
    color: white;
    padding: 12px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn-outline-light {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--bg-main);
}

.btn-login {
    background: transparent;
    color: white;
    padding: 8px 22px;
    border: 1px solid rgba(255,255,255,0.3);
    white-space: nowrap;
    flex-shrink: 0;
    border-radius: 12px;
    font-size: 0.95rem;
}

.btn-login:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--primary);
}

.btn-icon {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: all 0.3s;
}
.btn-icon:hover {
    background: rgba(128, 128, 128, 0.1);
    color: var(--primary);
}

/* --- Glass Panels --- */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(3, 7, 18, 0.85);
    backdrop-filter: blur(16px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: white;
    cursor: none;
    flex-shrink: 0;
}

.brand-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

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

.brand-text .title {
    font-size: 1.35rem;
    font-weight: 400;
    font-family: var(--font-heading);
    white-space: nowrap;
    line-height: 1;
    letter-spacing: -0.5px;
}

.brand-text .title strong { font-weight: 800; }

.brand-text .subtitle {
    font-size: 0.65rem;
    color: var(--text-secondary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 12px;
    background: rgba(255,255,255,0.04);
    padding: 8px 25px;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    cursor: none;
}

.nav-link:hover, .nav-link.active {
    color: white;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s;
}

.nav-link.active::after {
    opacity: 1;
    width: 100%;
    height: 2px;
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: none;
    z-index: 1001;
}

.bar {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: 0.4s;
}

.hamburger.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(3, 7, 18, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-20px);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.mobile-link {
    color: white;
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s;
}

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

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 30px;
    color: #93c5fd;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
    100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

.hero-title {
    font-size: clamp(3rem, 5vw, 5.5rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-visual {
    position: relative;
    height: 600px;
    perspective: 1000px;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover {
    transform: rotateY(0) rotateX(0);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, rgba(15, 23, 42, 0.8), transparent);
}

.floating-card {
    position: absolute;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    animation: floatCard 6s infinite alternate ease-in-out;
}

.card-1 {
    top: 50px;
    left: -40px;
}

.card-2 {
    bottom: 80px;
    right: -30px;
    animation-delay: -3s;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.floating-card h4 { font-size: 1.1rem; color: white; margin-bottom: 2px; }
.floating-card p { font-size: 0.8rem; color: var(--text-secondary); }

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-secondary);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { top: 8px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

/* --- Stats Section --- */
.stats-section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: linear-gradient(to bottom, rgba(3,7,18,0), rgba(15,23,42,0.3));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-box {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    transition: all 0.3s;
}

.stat-box:hover {
    background: rgba(59, 130, 246, 0.07);
    transform: translateY(-12px);
    border-color: rgba(59, 130, 246, 0.45);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.15);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.stat-box h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    display: inline-block;
}

.stat-box span {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-box p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 5px;
    font-weight: 500;
}

/* --- Sections Common --- */
.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-subtitle {
    color: var(--primary);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
    padding: 6px 15px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 20px;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 700px;
}

/* --- Text Highlight Anim --- */
.highlight {
    background: linear-gradient(120deg, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0.1) 100%);
    background-repeat: no-repeat;
    background-size: 0% 100%;
    transition: background-size 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    padding: 0 4px;
    border-radius: 4px;
    color: inherit;
}
.highlight.active {
    background-size: 100% 100%;
}

/* --- About Section --- */
.about-section {
    padding: 120px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.lead-text {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 40px;
    line-height: 1.8;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.f-icon {
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 5px;
}

.feature-item p {
    color: var(--text-secondary);
}

.about-visual {
    position: relative;
}

.image-grid {
    position: relative;
    height: 600px;
}

.image-grid img {
    position: absolute;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transition: transform 0.5s;
}

.img-1 {
    width: 70%;
    height: 70%;
    top: 0;
    right: 0;
    z-index: 2;
}

.img-2 {
    width: 60%;
    height: 60%;
    bottom: 0;
    left: 0;
    z-index: 1;
    border: 10px solid var(--bg-main);
}

.image-grid:hover .img-1 { transform: translate(-10px, -10px); }
.image-grid:hover .img-2 { transform: translate(10px, 10px); }

/* --- Programs Section --- */
.programs-section {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent, rgba(15,23,42,0.5), transparent);
}

.programs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.program-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px;
    group: hover;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.program-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    border-color: rgba(255,255,255,0.2);
}

.card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
    z-index: 1;
}

.program-card:hover .card-bg {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3,7,18,1) 0%, rgba(3,7,18,0.8) 50%, rgba(3,7,18,0.3) 100%);
    z-index: 2;
    transition: opacity 0.5s;
}

.program-card:hover .card-overlay {
    opacity: 0.9;
}

.card-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 30px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.icon-wrapper.natyror { color: var(--accent); box-shadow: 0 0 30px rgba(16,185,129,0.2); }
.icon-wrapper.shoqeror { color: var(--secondary); box-shadow: 0 0 30px rgba(139,92,246,0.2); }

.card-content h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
}

.card-content p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.card-features {
    list-style: none;
    margin-bottom: 40px;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: white;
    font-weight: 500;
}

.card-features i { color: var(--primary); }

/* --- Booking Section --- */
.booking-section {
    padding: 120px 0;
}

.booking-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    padding: 0;
}

.booking-info {
    padding: 40px 60px 20px 60px;
    background: rgba(15,23,42,0.4);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.booking-info .section-title { font-size: 2.8rem; }

.instruction-list {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.instruction {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.03);
    padding: 12px 25px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.05);
}

.step-num {
    width: 35px;
    height: 35px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: var(--font-heading);
}

.instruction p {
    color: #e2e8f0;
    font-weight: 500;
}

.booking-app {
    display: grid;
    grid-template-columns: 350px 1fr;
    background: rgba(3,7,18,0.5);
}

.teachers-panel {
    border-right: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.02);
}


.search-box {
    position: relative;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

/* Teacher filter polish */
.panel-head {
    padding: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.panel-head h3 {
    font-size: 1.2rem;
    color: white;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-box {
    margin: 0;
}

.search-box + .search-box {
    margin-top: 10px;
}

.search-box input,
.search-box select {
    width: 100%;
    min-height: 44px;
    background: rgba(2, 6, 23, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-body);
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.search-box select {
    padding: 11px 42px 11px 40px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.search-box input::placeholder {
    color: rgba(148, 163, 184, 0.9);
}

.search-box:focus-within i {
    color: #93c5fd;
}

.search-box input:focus,
.search-box select:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.9);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
    background: rgba(2, 6, 23, 0.92);
}


.teachers-list {
    height: 450px;
    overflow-y: auto;
    padding: 0 15px;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }

.t-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 10px;
    cursor: none;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.t-item:hover { background: rgba(255,255,255,0.05); }

.t-item.active {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.15), transparent);
    border-left: 3px solid var(--primary);
    border-color: rgba(59, 130, 246, 0.3) transparent rgba(59, 130, 246, 0.3) transparent;
}

.t-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #334155, #1e293b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    border: 1px solid rgba(255,255,255,0.1);
}

.t-item.active .t-avatar {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.t-info h4 { color: white; font-size: 1.05rem; }
.t-info p { color: var(--text-secondary); font-size: 0.85rem; }

.calendar-panel {
    display: flex;
    flex-direction: column;
}

.badge-date {
    background: rgba(16,185,129,0.1);
    color: var(--accent);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.selected-teacher-info {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.s-avatar {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.selected-teacher-info h4 { font-size: 1.5rem; color: white; }
.selected-teacher-info p { color: var(--primary); font-weight: 500; }

.slots-grid {
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
    flex: 1;
}

.slot {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    color: white;
    font-weight: 600;
    cursor: none;
    transition: all 0.3s;
}

.slot:not(.booked):hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.slot.selected {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.slot.booked {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    text-decoration: line-through;
    opacity: 0.5;
    pointer-events: none;
}

.empty-state {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: var(--text-secondary);
    gap: 15px;
}

.empty-state i { font-size: 3rem; opacity: 0.2; }

.hidden-form { display: none; }
.hidden-form.active {
    display: block;
    padding: 30px;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.05);
    animation: slideUp 0.4s ease;
}

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

.hidden-form h4 { margin-bottom: 20px; color: white; font-size: 1.2rem; }

.form-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group { position: relative; }
.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}
.input-group input, .input-wrapper input, .input-wrapper select {
    width: 100%;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 14px 15px 14px 45px;
    border-radius: 10px;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s;
}

.input-group input:focus, .input-wrapper input:focus, .input-wrapper select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

/* --- Gallery Section --- */
.gallery-section { padding: 120px 0; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: none;
}

.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.g-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .g-overlay { opacity: 1; }

.g-overlay span {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .g-overlay span { transform: translateY(0); }

/* --- Testimonials --- */
.testimonial-section {
    padding: 80px 0 120px 0;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: rgba(59, 130, 246, 0.2);
    position: absolute;
    top: 40px;
    left: 40px;
}

.quote-text {
    font-size: 1.4rem;
    color: white;
    line-height: 1.8;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    font-style: italic;
}

.quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), #047857);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.quote-author h4 { color: white; font-size: 1.2rem; }
.quote-author span { color: var(--text-secondary); font-size: 0.9rem; }

/* --- Footer --- */
.footer {
    background: #02040a;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-desc {
    color: var(--text-secondary);
    margin: 20px 0 30px 0;
    max-width: 400px;
}

.socials {
    display: flex;
    gap: 15px;
}

.socials a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
    text-decoration: none;
    cursor: none;
}

.socials a:hover {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--primary-glow);
}

.footer h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.footer-links ul, .footer-contact ul {
    list-style: none;
}

.footer-links li { margin-bottom: 15px; }
.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    cursor: none;
}
.footer-links a:hover { color: var(--primary); }

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.footer-contact i { color: var(--primary); font-size: 1.2rem; width: 20px; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--text-secondary); text-decoration: none; cursor: none; transition: color 0.3s; }
.footer-bottom-links a:hover { color: white; }

/* --- News Section --- */
.news-section { padding: 100px 0; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.news-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s;
    cursor: none;
}
.news-card:hover { transform: translateY(-10px); border-color: rgba(59, 130, 246, 0.3); }
.n-img { height: 200px; overflow: hidden; }
.n-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.news-card:hover .n-img img { transform: scale(1.1); }
.n-content { padding: 30px; }
.n-date { display: inline-block; color: var(--primary); font-size: 0.85rem; font-weight: 600; margin-bottom: 10px; }
.n-content h3 { color: white; font-size: 1.3rem; margin-bottom: 15px; }
.n-content p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 20px; }
.n-link { color: white; text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; transition: color 0.3s; cursor: none; }
.n-link:hover { color: var(--primary); }

/* --- FAQ Section --- */
.faq-section { padding: 100px 0; }
.accordion { display: flex; flex-direction: column; gap: 15px; }
.accordion-item { border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; overflow: hidden; }
.accordion-btn {
    width: 100%;
    background: rgba(255,255,255,0.03);
    color: white;
    text-align: left;
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-heading);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: none;
    transition: background 0.3s;
}
.accordion-btn:hover { background: rgba(59, 130, 246, 0.1); }
.accordion-btn i { color: var(--primary); transition: transform 0.3s; }
.accordion-btn.active i { transform: rotate(45deg); }
.accordion-content {
    background: rgba(0,0,0,0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.accordion-content p {
    padding: 20px 25px;
    color: var(--text-secondary);
    margin: 0;
}

/* --- Map Section --- */
.map-section { margin-top: 100px; }

/* --- Modals --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 2.5rem;
    color: white;
    cursor: none;
    transition: transform 0.3s;
    z-index: 2001;
}

.modal-close:hover { transform: rotate(90deg); color: var(--primary); }

#lightboxImg {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active #lightboxImg { transform: scale(1); }

.video-container {
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16 / 9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #000;
}

.modal-overlay.active .video-container { transform: scale(1); }

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.auth-card {
    width: 100%;
    max-width: 450px;
    padding: 40px;
    position: relative;
    background: rgba(15,23,42,0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .auth-card { transform: translateY(0); }

.auth-header { text-align: center; margin-bottom: 30px; }
.auth-icon { font-size: 3rem; color: var(--primary); margin-bottom: 15px; }
.auth-header h2 { color: white; font-size: 2rem; margin-bottom: 10px; }
.auth-header p { color: var(--text-secondary); font-size: 0.9rem; }

.auth-tabs {
    display: flex;
    background: rgba(0,0,0,0.4);
    border-radius: 12px;
    padding: 5px;
    margin-bottom: 30px;
}

.auth-tab {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 8px;
    cursor: none;
    transition: all 0.3s;
}

.auth-tab.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.auth-form { display: none; flex-direction: column; gap: 15px; }
.auth-form.active { display: flex; animation: fadeIn 0.4s; }

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

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

.input-wrapper i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: color 0.3s;
    pointer-events: none;
}

.input-wrapper input {
    width: 100%;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 16px 16px 16px 50px;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.input-wrapper input::placeholder {
    color: rgba(255,255,255,0.3);
}

.input-wrapper input:focus {
    border-color: var(--primary);
    background: rgba(0,0,0,0.6);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.input-wrapper:focus-within i {
    color: var(--primary);
}

select { appearance: none; }

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0 20px 0;
    font-size: 0.9rem;
}

.remember { display: flex; align-items: center; gap: 8px; color: var(--text-secondary); cursor: none; }
.forgot { color: var(--primary); text-decoration: none; cursor: none; }
.forgot:hover { text-decoration: underline; }

/* --- Custom Cursor Disabled Globally (Performance) --- */
body {
    cursor: auto;
}

.cursor-dot,
.cursor-outline {
    display: none !important;
}

a,
button,
input,
select,
textarea,
.btn,
.nav-link,
.mobile-link {
    cursor: pointer;
}

input,
textarea {
    cursor: text;
}

/* --- Toast System --- */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.toast {
    background: rgba(15,23,42,0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 4px solid var(--accent);
}

.toast.error { border-left-color: #ef4444; }

.toast.show { transform: translateX(0); }
.toast i { font-size: 1.5rem; }
.toast.success i { color: var(--accent); }
.toast.error i { color: #ef4444; }

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

.fade-up { opacity: 0; transform: translateY(30px); animation: fadeUpAnim 0.8s forwards ease-out; }
.fade-in { opacity: 0; animation: fadeInAnim 1s forwards ease-out; }
@keyframes fadeUpAnim { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInAnim { to { opacity: 1; } }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* --- Admissions Section --- */
.admissions-section {
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.registration-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    margin: 0 auto 40px auto;
    max-width: 900px;
    border-left: 4px solid #fbbf24;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.status-indicator strong {
    color: white;
}

.pulse-dot.yellow {
    background: #fbbf24;
    box-shadow: 0 0 10px #fbbf24;
    animation: pulseYellow 2s infinite;
}

@keyframes pulseYellow {
    0% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(251, 191, 36, 0); }
    100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}

.admissions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.admission-card {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.admission-card .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: inset 0 0 20px rgba(59, 130, 246, 0.1);
}

.admission-card h3 {
    font-size: 1.8rem;
    color: white;
}

.points-box {
    background: rgba(0,0,0,0.3);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.03);
    margin-bottom: 15px;
}

.points-box h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.natyror-points h4 { color: #38bdf8; }
.shoqeror-points h4 { color: #a78bfa; }

.points-box ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.points-box ul li {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    padding-bottom: 8px;
}

.points-box ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.points-box ul li strong { color: white; font-size: 1.1rem; }

.docs-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.docs-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: rgba(255,255,255,0.02);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.03);
    transition: all 0.3s ease;
}

.docs-list li:hover {
    background: rgba(255,255,255,0.05);
    transform: translateX(5px);
    border-color: rgba(59, 130, 246, 0.2);
}

.doc-check {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.doc-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.doc-info strong {
    color: white;
    font-size: 1.1rem;
}

.doc-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.text-secondary {
    color: var(--text-secondary);
}

/* --- Responsive --- */
@media (max-width: 1280px) {
    .nav-links {
        gap: 20px;
        padding: 10px 20px;
    }

    .hero-visual {
        height: 520px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 1100px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-desc {
        margin: 0 auto 32px auto;
    }

    .hero-btns {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-visual {
        max-width: 760px;
        width: 100%;
        margin: 0 auto;
        height: 500px;
    }

    .about-content,
    .programs-grid,
    .admissions-grid,
    .footer-top,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .section-header.center,
    .footer-top {
        text-align: center;
    }

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

    .booking-info {
        padding: 32px 30px 20px 30px;
    }

    .booking-app {
        grid-template-columns: 300px 1fr;
    }

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

@media (max-width: 900px) {
    .nav-links,
    .btn-login {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .brand-text .title {
        font-size: 1.15rem;
    }

    .hero {
        padding-top: 110px;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.4rem);
    }

    .hero-visual {
        height: 430px;
    }

    .floating-card {
        transform: scale(0.9);
    }

    .about-section,
    .programs-section,
    .admissions-section,
    .booking-section,
    .gallery-section,
    .news-section,
    .faq-section {
        padding: 90px 0;
    }

    .image-grid {
        height: 380px;
        margin-top: 20px;
    }

    .booking-app {
        grid-template-columns: 1fr;
    }

    .teachers-panel {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .teachers-list {
        max-height: 320px;
    }

    .map-overlay-info {
        left: 5% !important;
        width: min(320px, 88vw) !important;
    }

    .testimonial-card {
        padding: 40px 28px;
    }

    .quote-text {
        font-size: 1.15rem;
    }
}

@media (max-width: 640px) {
    .container,
    .nav-container,
    .hero-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .mobile-link {
        font-size: 1.7rem;
    }

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

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

    .hero-btns {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero-visual {
        height: 340px;
    }

    .floating-card {
        display: none;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .stat-box h2 {
        font-size: 2.6rem;
    }

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

    .booking-info,
    .selected-teacher-info,
    .slots-grid,
    .hidden-form.active,
    .n-content,
    .faq-wrapper,
    .auth-card,
    .admission-card {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

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

    .instruction-list {
        flex-direction: column;
        align-items: stretch;
    }

    .instruction {
        border-radius: 14px;
    }

    .panel-head {
        padding: 16px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .search-box {
        margin: 0;
    }

    .search-box + .search-box {
        margin-top: 10px;
    }

    .form-inputs {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .g-overlay {
        opacity: 1;
    }

    .g-overlay span {
        transform: translateY(0);
        font-size: 1.05rem;
    }

    .accordion-btn {
        font-size: 1rem;
        padding: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .toast-container {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }

    .toast {
        padding: 12px 14px;
    }

    .modal-close {
        top: 12px;
        right: 14px;
        font-size: 2rem;
    }

    .map-overlay-info {
        position: static !important;
        transform: none !important;
        margin: 12px;
        width: auto !important;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    body,
    a,
    button,
    .slot,
    .t-item,
    .auth-tab {
        cursor: auto !important;
    }
}

/* --- Minimal & Artistic Map --- */
.map-section-minimal {
    padding: 120px 0;
    position: relative;
}

.map-artistic-container {
    max-width: 1000px;
    margin: 0 auto;
}

.map-frame {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    height: 500px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.map-frame iframe {
    filter: invert(90%) hue-rotate(180deg) brightness(0.9) contrast(1.1) grayscale(0.2);
    transition: filter 0.5s ease;
}

.map-frame:hover iframe {
    filter: invert(0%) hue-rotate(0deg) brightness(1) contrast(1) grayscale(0);
}

.map-floating-action {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.map-floating-action .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
    backdrop-filter: blur(10px);
}

/* --- Extra Responsiveness Tweaks --- */
@media (max-width: 768px) {
    .map-frame {
        height: 350px;
        border-radius: 25px;
    }
    .map-floating-action {
        bottom: 20px;
        width: 90%;
        text-align: center;
    }
    .map-floating-action .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    .map-section-minimal {
        padding: 60px 0;
    }
    
    /* Fix for the grid in contact form */
    #contactForm div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.7rem;
    }
    .map-header h2 {
        font-size: 1.5rem;
    }
    .map-badge {
        font-size: 0.8rem;
        padding: 6px 14px;
    }
}

@media (max-width: 400px) {
    .auth-card {
        padding: 30px 15px !important;
    }
    .auth-header h2 {
        font-size: 1.6rem;
    }
    .nav-container {
        padding: 0 15px;
    }
    .brand-text .title {
        font-size: 1rem;
    }
}

/* --- Pulse News Ticker --- */
.pulse-ticker-wrap {
    background: rgba(3, 7, 18, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: sticky;
    top: 85px;
    z-index: 998;
    backdrop-filter: blur(10px);
}

.pulse-label {
    background: var(--primary);
    color: white;
    padding: 4px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    margin-left: 20px;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 10px 0 20px rgba(3, 7, 18, 1);
}

.pulse-ticker {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 30s linear infinite;
}

.ticker-content span {
    display: inline-block;
    padding-right: 50px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.ticker-content i {
    color: var(--primary);
    margin-right: 8px;
}

@keyframes ticker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* --- Pulse Section --- */
.pulse-section {
    padding: 100px 0;
    background: radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
}

.pulse-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.pulse-news-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.news-mini-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.news-mini-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(10px);
}

.news-mini-card.active {
    background: rgba(59, 130, 246, 0.08);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.news-date {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.8rem;
    text-align: center;
    min-width: 70px;
    color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.news-mini-card.active .news-date {
    background: var(--primary);
    color: white;
}

.news-body h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 5px;
}

.news-body p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.news-mini-card i {
    margin-left: auto;
    color: var(--text-secondary);
    opacity: 0.3;
    transition: all 0.3s;
}

.news-mini-card:hover i {
    opacity: 1;
    color: var(--primary);
    transform: translateX(5px);
}

.pulse-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pulse-quote-card {
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.quote-icon-top {
    font-size: 3rem;
    color: rgba(59, 130, 246, 0.1);
    position: absolute;
    top: 20px;
    left: 20px;
}

.pulse-quote-card p {
    font-size: 1.3rem;
    font-style: italic;
    color: white;
    position: relative;
    z-index: 2;
    margin-bottom: 25px;
    line-height: 1.6;
}

.quote-author-mini {
    display: flex;
    flex-direction: column;
}

.quote-author-mini strong { color: var(--primary); font-size: 1.1rem; }
.quote-author-mini span { color: var(--text-secondary); font-size: 0.85rem; }

.live-status-card {
    padding: 25px;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-info span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-info strong {
    font-size: 1.1rem;
    color: var(--accent);
}

.pulse-dot-green {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 992px) {
    .pulse-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* --- Partners Section --- */
.partners-section {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(3, 7, 18, 0.5);
}

.partners-wrap {
    text-align: center;
}

.partners-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 700;
}

.partners-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0.5;
    transition: all 0.4s ease;
    cursor: pointer;
}

.partner-logo:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.partner-logo i {
    font-size: 2.2rem;
    color: white;
}

.partner-logo span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .partners-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* --- Ecosystem Section --- */
.ecosystem-section {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(3, 7, 18, 0.5), transparent);
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.eco-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.eco-item {
    display: flex;
    gap: 20px;
}

.eco-item i {
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.eco-item h4 { color: white; margin-bottom: 5px; }
.eco-item p { color: var(--text-secondary); font-size: 0.95rem; }

.ecosystem-visual {
    position: relative;
}

.dashboard-mockup {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.mockup-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dots { display: flex; gap: 6px; }
.dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); }

.url-bar {
    flex: 1;
    background: rgba(0,0,0,0.3);
    padding: 4px 15px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.mockup-content {
    flex: 1;
    display: flex;
}

.mockup-sidebar {
    width: 60px;
    background: rgba(255, 255, 255, 0.02);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 15px;
}

.m-s-item { width: 30px; height: 30px; border-radius: 8px; background: rgba(255,255,255,0.05); }
.m-s-item.active { background: var(--primary); }

.mockup-main {
    flex: 1;
    padding: 30px;
}

.m-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.m-card { height: 60px; border-radius: 10px; background: rgba(255,255,255,0.03); }
.m-chart { height: 120px; border-radius: 10px; background: linear-gradient(90deg, rgba(59, 130, 246, 0.1), transparent); border: 1px solid rgba(59, 130, 246, 0.2); }

.floating-admin-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.4);
    animation: float 4s infinite ease-in-out;
}

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

@media (max-width: 992px) {
    .ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

/* --- Verified Badge --- */
.verified-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(16, 185, 129, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.verified-badge i {
    font-size: 1rem;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}
.event-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.event-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: rgba(255,255,255,0.06);
}
.event-date-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 15px;
    color: white;
    font-weight: 700;
}
.event-date-box span { font-size: 1.5rem; line-height: 1; }
.event-date-box small { font-size: 0.75rem; text-transform: uppercase; opacity: 0.9; }
.event-info-c h4 { color: white; margin-bottom: 5px; font-size: 1.1rem; }
.event-info-c p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.4; }
.event-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 10px;
}
.tag-exam { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
.tag-holiday { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.tag-activity { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.tag-other { background: rgba(255, 255, 255, 0.1); color: #fff; }

/* --- Interactive Polishing --- */
.btn-glow {
    box-shadow: 0 0 20px var(--primary-glow);
    animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {
    0% { box-shadow: 0 0 10px var(--primary-glow); }
    50% { box-shadow: 0 0 25px var(--primary-glow); }
    100% { box-shadow: 0 0 10px var(--primary-glow); }
}

.brand:hover img {
    transform: rotate(10deg) scale(1.1);
}

.brand img {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.socials a:hover {
    box-shadow: 0 0 15px var(--primary-glow);
    border-color: var(--primary);
}

/* --- Section Spacing Fixes --- */
.ecosystem-section {
    padding-top: 150px;
}

#currentYear {
    font-weight: 700;
    color: var(--primary);
}

/* --- Interactive Stats --- */
/* --- Stat Box Premium Animation --- */
.stat-box {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.35s ease,
                border-color 0.35s ease,
                box-shadow 0.35s ease;
    position: relative;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    overflow: hidden;
}

/* Shimmer sweep on hover */
.stat-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
        transparent 30%,
        rgba(255,255,255,0.06) 50%,
        transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.stat-box:hover::after {
    transform: translateX(100%);
}

/* Icon gentle pulse on hover */
.stat-box:hover .stat-icon {
    animation: statIconPop 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    color: #93c5fd;
}

@keyframes statIconPop {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.25) rotate(-8deg); }
    100% { transform: scale(1.1); }
}

/* Number glow */
.stat-box:hover h2.counter {
    background: linear-gradient(135deg, #60a5fa, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Global Responsive + Animation Safety Layer --- */
img,
video {
    max-width: 100%;
    height: auto;
}

textarea {
    max-width: 100%;
    resize: vertical;
}

@media (max-width: 1024px) {
    .feed-wrapper {
        flex-direction: column !important;
        gap: 24px;
        padding: 22px 14px !important;
    }

    .feed-info {
        padding-left: 0 !important;
        text-align: center;
    }

    .feed-info ul {
        text-align: left;
        margin-inline: auto;
        max-width: 560px;
    }

    .pulse-ticker-wrap {
        top: 72px;
    }
}

@media (max-width: 768px) {
    .pulse-label {
        margin-left: 10px;
        padding: 4px 10px;
        font-size: 0.72rem;
    }

    .ticker-content span {
        font-size: 0.8rem;
        padding-right: 30px;
    }

    .registration-status {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 16px;
    }

    .points-box ul li {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .docs-list li:hover,
    .news-mini-card:hover,
    .stat-box:hover,
    .program-card:hover,
    .btn-primary:hover,
    .btn-glass:hover {
        transform: none;
    }

    .news-mini-card {
        padding: 16px;
        gap: 12px;
    }

    .news-date {
        min-width: 56px;
        font-size: 0.7rem;
    }

    .news-body h4 {
        font-size: 1rem;
    }

    .news-body p {
        font-size: 0.82rem;
    }

    .map-frame {
        height: 300px;
    }

    .partner-logo {
        opacity: 0.9;
    }
}

@media (max-width: 520px) {
    .mobile-link {
        font-size: 1.35rem;
    }

    .brand-text .subtitle {
        display: none;
    }

    .auth-card {
        max-width: calc(100vw - 20px);
        border-radius: 16px;
    }

    .status-indicator {
        font-size: 0.95rem;
    }

    .card-content h3 {
        font-size: 1.7rem;
    }

    .card-content p,
    .section-desc,
    .lead-text {
        font-size: 0.98rem;
    }

    .hero-image-wrapper,
    .program-card,
    .admission-card,
    .glass-panel {
        border-radius: 16px;
    }
}

@media (hover: none), (pointer: coarse) {
    body,
    a,
    button,
    .slot,
    .t-item,
    .gallery-item,
    .auth-tab,
    .accordion-btn {
        cursor: auto !important;
    }

    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }
}

@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;
    }

    .blob,
    .ticker-content,
    .btn-glow,
    .pulse-dot,
    .pulse-dot-green,
    .floating-admin-badge {
        animation: none !important;
    }
}

/* Cursor safety (pa override global agresiv) */
.cursor-dot,
.cursor-outline {
    display: none !important;
}

/* FORCE CURSOR ALWAYS VISIBLE */
html, body, * {
    cursor: auto !important;
}

a,
button,
select,
label,
[role="button"],
.btn,
.nav-link,
.mobile-link,
.slot,
.t-item,
.gallery-item,
.accordion-btn {
    cursor: pointer !important;
}

input,
textarea {
    cursor: text !important;
}



