/* Premium Minimal Orange & White Theme */
:root {
    --primary-color: #ff6f00;   /* Modern orange */
    --primary-light: #ffa040;   /* Light orange accent */
    --primary-dark: #e65c00;
    --secondary-color: #ffffff; /* Pure white */
    --bg-light: #fff7f0;        /* Soft warm white background */
    --text-dark: #222222;       /* Dark gray for readability */
    --text-light: #555555;
    --text-lighter: #888888;
    --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 20px 50px rgba(255, 111, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition-fast: 0.2s ease-in-out;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Responsive Typography */
    --font-heading: clamp(2rem, 5vw, 4.5rem);
    --font-h2: clamp(1.8rem, 4vw, 3rem);
    --font-h3: clamp(1.3rem, 2.5vw, 1.75rem);
    --font-body: clamp(0.95rem, 1.5vw, 1.1rem);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--secondary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

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

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

ul { list-style: none; }

button, .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 111, 0, 0.3);
}

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

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

.btn-secondary {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 1px solid rgba(255,111,0,0.2);
}
.btn-secondary:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    z-index: 1000;
    background: var(--secondary-color);
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.navbar.scrolled {
    padding: 15px 5%;
    box-shadow: var(--shadow-soft);
    background: rgba(255, 255, 255, 0.98);
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links > li {
    position: relative;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    display: inline-block;
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--primary-color);
    transition: var(--transition-fast);
}

.nav-links > li > a:hover::after,
.nav-links > li > a.active::after {
    width: 100%;
}

/* Dropdown Sub-menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--secondary-color);
    min-width: 200px;
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-sm);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

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

.dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    color: var(--text-dark);
    font-weight: 400;
    border: none;
}

.dropdown-menu li a::after { display: none; }
.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 25px; /* slight indent */
}

/* Mobile Nav */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition-fast);
}

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

.mobile-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--secondary-color);
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    padding: 100px 30px 40px;
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    overflow-y: auto;
}

.mobile-nav.open { right: 0; }

.mobile-nav a {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: block;
}

.mobile-dropdown {
    padding-left: 20px;
    display: none;
}
.mobile-dropdown.open { display: block; }
.mobile-nav .has-dropdown > a {
    display: flex; justify-content: space-between; align-items: center;
}

/* Base Sections */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding { padding: clamp(60px, 10vw, 120px) 0; }

.section-title {
    text-align: center;
    margin-bottom: clamp(40px, 8vw, 60px);
}

.section-title h2 {
    font-size: var(--font-h2);
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-title p {
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
    font-size: var(--font-body);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Premium Parallax Effect */
    background-color: var(--text-dark);
    padding: 120px 0 80px;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(10,12,16,0.95) 0%, rgba(10,12,16,0.4) 100%);
    z-index: 1;
}

.hero .container { position: relative; z-index: 2; }

.hero-content {
    max-width: 800px;
    text-align: left;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,111,0,0.15);
    border: 1px solid rgba(255,111,0,0.3);
    color: var(--primary-light);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 3px;
    box-shadow: 0 4px 15px rgba(255,111,0,0.2);
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    filter: blur(4px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 1s ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1; transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Stats / Heavy Overlapping Board */
.highlights { margin-top: -100px; position: relative; z-index: 10; padding: 0 15px; }
.highlights-grid {
    display: flex;
    flex-wrap: wrap;
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08); /* Massive deep drop shadow */
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}
.stat-card { 
    flex: 1; 
    min-width: 250px; 
    text-align: center; 
    padding: 50px 20px; 
    position: relative;
    transition: var(--transition-smooth);
}
.stat-card:hover { transform: translateY(-5px); background: rgba(255,111,0,0.015); }
.stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 2px;
    background: rgba(0,0,0,0.04);
}
.stat-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    color: rgba(255, 111, 0, 0.04);
    z-index: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}
.stat-card:hover .stat-icon { color: rgba(255, 111, 0, 0.08); transform: translate(-50%, -50%) scale(1.1); }
.stat-card h3 { font-size: 3.5rem; color: var(--primary-color); margin-bottom: 5px; position: relative; z-index: 1; line-height: 1; }
.stat-card p { color: var(--text-dark); font-size: 0.95rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; position: relative; z-index: 1;}

/* Horizontal Scrolling Containers */
.horizontal-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0 40px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
.horizontal-scroll::-webkit-scrollbar { display: none; }

.horizontal-scroll > * {
    min-width: 320px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

/* Feature & Program Cards inside Horizontal Scroll */
.feature-card {
    padding: 40px 30px;
    background: var(--secondary-color);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition-smooth);
    min-width: 300px;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: rgba(255, 111, 0, 0.1); }
.feature-icon {
    width: 60px; height: 60px;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin-bottom: 24px;
}
.feature-card h3 { font-size: 1.25rem; margin-bottom: 12px; color: var(--text-dark); }
.feature-card p { color: var(--text-light); font-size: 0.95rem; }

/* Programs Cards / Pillar Design */
.programs-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
    gap: 30px; 
}
.program-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    border: none;
    transition: var(--transition-smooth);
    min-width: 0; /* Auto shrink dynamically */
    position: relative;
    overflow: hidden;
    transform: perspective(1000px) translateZ(0); /* Anti-aliased render */
}
.program-card::after {
    /* Premium neon gradient top-strike */
    content: ''; position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-color));
    z-index: 5;
}
.program-card:hover { transform: translateY(-12px); box-shadow: 0 25px 60px rgba(255,111,0,0.12); }
.program-header {
    height: 140px; position: relative;
    background: var(--bg-light); border-bottom: 1px solid rgba(0,0,0,0.02);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.program-class {
    position: absolute; left: 30px; bottom: -16px; z-index: 10;
    background: #fff; color: var(--primary-color);
    padding: 8px 20px; border-radius: 50px; font-weight: 800; font-size: 0.85rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08); text-transform: uppercase; letter-spacing: 1px;
}
.program-header i {
    font-size: 9rem; color: rgba(255,111,0,0.04);
    position: absolute; right: -25px; top: -15px;
    transition: var(--transition-smooth); pointer-events: none;
}
.program-card:hover .program-header i { transform: scale(1.1) rotate(-15deg); color: rgba(255,111,0,0.08); }
.program-content { padding: 45px 30px 40px; background: #fff; }

/* Testimonials Masonry Grid */
.masonry-grid {
    column-count: 1;
    column-gap: 30px;
    padding: 20px 0;
}
@media (min-width: 768px) {
    .masonry-grid { column-count: 2; }
}
@media (min-width: 992px) {
    .masonry-grid { column-count: 3; }
}

.testimonial-card {
    background: var(--secondary-color);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 30px;
    break-inside: avoid;
    transform: perspective(1000px) rotateX(0) rotateY(0) scale(1);
}
.testimonial-card:hover {
    transform: perspective(1000px) translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255,111,0,0.15);
    border-color: rgba(255,111,0,0.2);
    z-index: 10;
}
.testimonial-card::before {
    content: '\201D';
    position: absolute;
    top: -20px; right: 20px;
    font-size: 10rem;
    font-family: Georgia, serif;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,111,0,0.08); /* hollow stroke effect */
    line-height: 1;
    z-index: 0;
    transition: var(--transition-smooth);
}
.testimonial-card:hover::before {
    transform: rotate(10deg) scale(1.1);
    color: rgba(255,111,0,0.05);
}
.testimonial-stars { color: var(--primary-color); margin-bottom: 20px; font-size: 1rem; position: relative; z-index: 1; letter-spacing: 2px;}
.testimonial-text { color: var(--text-dark); font-size: 1.05rem; font-style: italic; margin-bottom: 30px; line-height: 1.8; position: relative; z-index: 1;}
.author-info { border-top: 2px dashed rgba(0,0,0,0.05); padding-top: 15px; position: relative; z-index: 1; }
.author-info h4 { font-size: 1.15rem; margin-bottom: 4px; color: var(--text-dark);}
.author-info span { color: var(--primary-light); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;}

/* Unique Hatke CTA */
.premium-cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    border-radius: var(--radius-lg);
    padding: clamp(60px, 10vw, 80px) clamp(40px, 8vw, 60px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 30px 60px rgba(255, 111, 0, 0.25);
    position: relative;
    overflow: hidden;
}
.premium-cta::after {
    content: ''; position: absolute; top: 0; right: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.2) 0%, transparent 60%); pointer-events: none;
}
.cta-content { flex: 1; max-width: 600px; position: relative; z-index: 2; }
.cta-accent { flex: 0 0 200px; display: flex; justify-content: center; align-items: center; position: relative; z-index: 2;}
.cta-accent i { font-size: 12rem; color: rgba(255,255,255,0.1); transform: rotate(-15deg); }

/* Common Helper Classes (put back here so we dont lose them) */
.tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Mid-Page Dark Parallax Breakout Layout */
.dark-parallax {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
}
.glass-card {
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.glass-card:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255,111,0,0.3) !important;
    transform: translateY(-8px);
}
.glass-card h3 { color: #fff !important; }
.glass-card p { color: rgba(255,255,255,0.7) !important; }
.glass-card .feature-icon {
    background: rgba(255,111,0,0.15) !important;
    color: var(--primary-light) !important;
}

/* Unique Floating Notice List */
.notice-list { display: flex; flex-direction: column; gap: 20px; max-width: 800px; margin: 0 auto; }
.notice-item {
    display: flex; gap: 25px; align-items: center; 
    padding: 25px; border-radius: var(--radius-md);
    background: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    transition: var(--transition-smooth);
    position: relative; overflow: hidden;
}
.notice-item:hover { transform: translateX(10px); box-shadow: 0 15px 40px rgba(255,111,0,0.1); border-color: rgba(255,111,0,0.2); }
.notice-date {
    flex: 0 0 80px; height: 80px; 
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    border-radius: var(--radius-sm);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    color: #fff; box-shadow: 0 5px 15px rgba(255,111,0,0.3);
}
.notice-date .day { font-size: 1.8rem; font-weight: 800; line-height: 1; }
.notice-date .month { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; }
.notice-body { flex: 1; }
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 80px);
    align-items: center;
}
/* About Preview & General Image Frames */
.about-image {
    position: relative;
    padding: 0 30px 30px 0;
    z-index: 1;
}
.about-image::before {
    content: ''; position: absolute; bottom: 0; right: 0; width: 70%; height: 70%;
    background: radial-gradient(circle at bottom right, rgba(255,111,0,0.15) 0%, rgba(255,111,0,0) 70%);
    border-bottom: 4px solid var(--primary-light); border-right: 4px solid var(--primary-light);
    border-radius: var(--radius-lg); z-index: -1; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-image:hover::before { transform: translate(-10px, -10px); }
.about-image img {
    border-radius: var(--radius-lg); box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    position: relative; z-index: 2; width: 100%; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-image:hover img { transform: translateY(-5px); }

/* Forms & Tables */
.form-group { margin-bottom: 24px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 0.95rem; }
.form-control {
    width: 100%; padding: 14px 20px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    font-family: inherit; font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--secondary-color);
}
.form-control:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 4px rgba(255,111,0,0.1); }

.fees-table { width: 100%; border-collapse: collapse; background: var(--secondary-color); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-soft); }
.fees-table th { background: var(--bg-light); padding: 20px; text-align: left; font-weight: 600; color: var(--text-dark); }
.fees-table td { padding: 20px; border-bottom: 1px solid rgba(0,0,0,0.03); color: var(--text-light); }
.fees-table tr:last-child td { border-bottom: none; }
.fees-table tr:hover { background: #fafafa; }
.fee-amount { font-weight: 700; color: var(--text-dark); font-size: 1.1rem; }

/* Footer */
.footer {
    background: var(--secondary-color);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand h3 { color: var(--primary-color); margin-bottom: 16px; }
.footer-brand p { color: var(--text-light); max-width: 400px; margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--bg-light); color: var(--primary-color);
    display: flex; align-items: center; justify-content: center;
}
.social-links a:hover { background: var(--primary-color); color: var(--secondary-color); transform: translateY(-3px); }
.footer-links h4 { margin-bottom: 24px; font-size: 1.1rem; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a { color: var(--text-light); }
.footer-links ul li a:hover { color: var(--primary-color); padding-left: 5px; }
.footer-bottom { border-top: 1px solid rgba(0,0,0,0.05); padding-top: 24px; text-align: center; color: var(--text-lighter); font-size: 0.9rem; }

/* Media Queries (Premium Mobile Fixes) */
@media (max-width: 992px) {
    .split-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .about-image { order: -1; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .footer-grid { grid-template-columns: 1fr; }
    /* Fix School stats block heavily on mobile layout */
    .highlights { margin-top: -40px; padding: 0 15px; }
    .highlights-grid { flex-direction: column; padding: 15px; border-radius: var(--radius-md); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
    .stat-card { padding: 30px 15px; border-bottom: 1px solid rgba(0,0,0,0.04); min-width: auto; }
    .stat-card:last-child { border-bottom: none; }
    .stat-card:not(:last-child)::after { display: none; }
    .stat-card h3 { font-size: 2.5rem; margin-bottom: 5px; }
    .stat-card p { font-size: 0.85rem; }
    .stat-icon { font-size: 4rem; opacity: 0.8; }

    /* Fix School Name size on mobile */
    .nav-logo { 
        font-size: 1rem; 
        white-space: nowrap; 
        overflow: hidden; 
        text-overflow: ellipsis; 
        max-width: 75%; 
    }
    
    .nav-logo i { font-size: 1.2rem; }

    .horizontal-scroll { gap: 15px; padding-left: 5px; padding-right: 5px; margin: 0 -10px; }
    .horizontal-scroll > * { min-width: 280px !important; width: 280px; max-width: 80%; }

    .feature-card { padding: 25px 20px; }
    .program-content { padding: 20px; }
    
    .testimonial-card { padding: 25px 20px; min-width: 85vw; }
    .testimonial-card::before { font-size: 8rem; top: -10px; right: 10px; }

    .premium-cta {
        flex-direction: column;
        padding: 50px 20px;
        text-align: center;
    }
    .cta-content { margin-bottom: 0; }
    .cta-content p { margin: 0 auto 30px; }
    .cta-content div { justify-content: center; }
    .cta-accent { display: none; }
    
    /* Ensure padding is reasonable on small devices */
    .hero { padding-top: 100px; padding-bottom: 60px; min-height: 80vh; }
    .hero h1 { font-size: 2.2rem; }
    .section-padding { padding: 50px 0; }
    
    /* Responsive Fees Grid (replaces table structure on mobile) */
    .fees-table, .fees-table thead, .fees-table tbody, .fees-table th, .fees-table td, .fees-table tr {
        display: block; width: 100%;
    }
    .fees-table thead { display: none; }
    .fees-table tr {
        margin-bottom: 20px;
        background: #fff;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(0,0,0,0.05);
        box-shadow: var(--shadow-soft);
        padding: 20px;
    }
    .fees-table td {
        padding: 10px 0; border: none; border-bottom: 1px solid rgba(0,0,0,0.03); text-align: left !important;
    }
    .fees-table td:last-child { border-bottom: none; }
    .fees-table td:nth-child(1) { font-size: 1.1rem; color: var(--primary-color); }
    .fees-amount { font-size: 1.3rem !important; }
}

@media (max-width: 480px) {
    .highlights-grid { grid-template-columns: 1fr; }
    .nav-logo { font-size: 0.9rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; }
    
    .cta-content div { flex-direction: column; width: 100%; }
    .cta-content .btn { width: 100%; }
}

/* Premium Kids Animations */
@keyframes delicateFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.feature-icon {
    animation: delicateFloat 6s ease-in-out infinite;
}

.feature-card:nth-child(2) .feature-icon { animation-delay: 1s; }
.feature-card:nth-child(3) .feature-icon { animation-delay: 2s; }

/* Refined non-cartoonish styling */
.feature-card, .program-card, .testimonial-card, .stat-card {
    border-radius: var(--radius-sm); /* Sleeker, less rounded */
}

