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

:root {
    --primary-color: #1a2a4a;
    --secondary-color: #2d5a4a;
    --accent-color: #d4a574;
    --gold-color: #d4af37;
    --rose-gold: #c1a066;
    --dark-color: #0f1419;
    --light-color: #f5f1e8;
    --text-color: #1a1a1a;
    --border-radius: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #f9f9f9;
}

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

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--rose-gold) 100%);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.logo-img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 50%;
    object-fit: cover;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    padding-bottom: 5px;
}

.nav-link:hover,
.nav-link.active {
    border-bottom-color: var(--accent-color);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: 0.3s;
}

/* Image Styles */
img {
    max-width: 100%;
    height: auto;
}

.section-header-banner, .curriculum-banner {
    animation: slideDown 0.8s ease-out;
    transition: all 0.3s ease;
}

.section-header-banner:hover, .curriculum-banner:hover {
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.hero-icon {
    animation: floatUp 3s ease-in-out infinite;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about {
    background: linear-gradient(180deg, #f5f1e8 0%, white 50%, #f5f1e8 100%);
}

.about img {
    animation: slideInLeft 0.8s ease-out;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

/* Pillar Enhancements */
.pillar {
    background: linear-gradient(135deg, rgba(45, 90, 74, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border-left: 5px solid var(--accent-color);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: scaleInCenter 0.6s ease-out;
    position: relative;
    overflow: hidden;
}

.pillar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.1));
    transition: height 0.3s ease;
}

.pillar:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.25);
}

.pillar:hover::after {
    height: 20px;
}

.pillar h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
    animation: slideDown 0.6s ease-out 0.1s both;
}
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: slideDown 0.8s ease-out;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    animation: slideDown 0.8s ease-out;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: darken(var(--primary-color), 10%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* Sections */
section {
    padding: 60px 20px;
}

.about {
    background-color: white;
}

.about h2,
.curriculum-preview h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.about > .container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Pillars */
.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.pillar {
    background: linear-gradient(135deg, rgba(45, 90, 74, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border-left: 5px solid var(--accent-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2);
}

.pillar h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Mission */
.mission {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--gold-color) 100%);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.mission h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mission p {
    font-size: 1.1rem;
    color: var(--primary-color);
}

/* Curriculum Grid */
.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.curriculum-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-color);
    overflow: hidden;
    animation: bounceIn 0.8s ease-out;
}

.curriculum-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.25);
    border-top-color: var(--gold-color);
}

.curriculum-card img {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 100%;
}

.curriculum-card:hover img {
    transform: scale(1.15) rotate(-3deg);
}

.curriculum-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    animation: slideInRight 0.6s ease-out 0.1s both;
}

.curriculum-card p {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Content Sections */
.content {
    background-color: white;
}

.content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.content h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content > .container > p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content h4 {
    color: var(--dark-color);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

thead {
    background: var(--primary-color);
    color: white;
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

tbody tr:hover {
    background-color: #f5f5f5;
}

tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.fees-table tr:last-child {
    font-weight: bold;
    background: var(--light-color);
}

/* Schedule Table Specific */
.schedule-table tbody tr.highlight-row {
    background-color: var(--accent-color);
    font-weight: 600;
}

/* Checklist */
.checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.checklist-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
}

.checkbox {
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.3rem;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--gold-color) 100%);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.cta-box h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Principles Grid */
.principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.principle {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--secondary-color);
}

.principle h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* Curriculum Details */
.curriculum-detail {
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
    border-left: 5px solid var(--primary-color);
}

.curriculum-content {
    margin-top: 0.5rem;
}

.curriculum-content strong {
    color: var(--primary-color);
}

/* Goals List */
.goals-list {
    list-style: none;
    margin: 2rem 0;
}

.goals-list li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.8;
}

.goals-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Methods Grid */
.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.method {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.method:hover {
    transform: translateY(-3px);
}

/* Schedule Highlights */
.schedule-highlights {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

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

.feature {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

.feature h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Menu Container */
.menu-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.day-menu {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--secondary-color);
}

.day-menu h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.meal {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.meal-type {
    font-weight: 600;
    min-width: 120px;
    color: var(--secondary-color);
}

.meal-item {
    color: var(--text-color);
}

/* Snack Suggestions */
.snack-suggestions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.snack {
    background: var(--light-color);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid var(--secondary-color);
}

/* Highlight Box */
.highlight {
    background: #fff3cd;
    padding: 1.5rem;
    border-left: 5px solid var(--accent-color);
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
    font-style: italic;
}

/* Note Box */
.note-box {
    background: #f0f4ff;
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--secondary-color);
    margin: 2rem 0;
}

.note-box h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.note-box ul {
    margin-left: 1.5rem;
}

.note-box li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* Nutrition Info */
.nutrition-info {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    border-left: 5px solid var(--primary-color);
}

.nutrition-info h3 {
    color: var(--primary-color);
}

.nutrition-info ul {
    margin-left: 1.5rem;
    line-height: 2;
}

.snack-policy {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.snack-policy p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Our School Section */
.our-school {
    background-color: #f9f9f9;
}

.our-school h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 5px solid var(--accent-color);
    overflow: hidden;
    animation: scaleInCenter 0.8s ease-out;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    border-top-color: var(--gold-color);
}

.feature-card img {
    transition: transform 0.5s ease;
    animation: slideDown 0.6s ease-out;
}

.feature-card:hover img {
    transform: scale(1.1) rotate(2deg);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    animation: slideInLeft 0.6s ease-out 0.2s both;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
}

.gallery-section {
    background-color: white;
    padding: 60px 20px;
}

.gallery-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.gallery-section p {
    max-width: 900px;
    margin: 0 auto 2rem auto;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

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

.gallery-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--accent-color);
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(212, 175, 55, 0.22);
}

.gallery-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.gallery-card h3 {
    margin: 1rem 1rem 0.5rem;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.gallery-card p {
    margin: 0 1rem 1rem;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .gallery-card img {
        height: 200px;
    }
}

/* Programs Section */
.programs {
    background-color: white;
}

.programs h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.program-card {
    background: linear-gradient(135deg, rgba(45, 90, 74, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--accent-color);
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    animation: rotateIn 0.8s ease-out;
    overflow: hidden;
    position: relative;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    transition: height 0.4s ease;
    z-index: 0;
}

.program-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 18px 35px rgba(212, 175, 55, 0.3);
    border-left-color: var(--gold-color);
}

.program-card:hover::before {
    height: 100%;
}

.program-card img {
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 8px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

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

.program-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    animation: slideDown 0.6s ease-out;
}

.program-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

/* Operating Hours Section */
.operating-hours {
    background-color: #f9f9f9;
}

.operating-hours h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.hours-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--accent-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: bounceIn 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.hours-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.hours-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
    border-top-color: var(--gold-color);
}

.hours-card:hover::before {
    left: 100%;
}

.hours-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    animation: slideDown 0.6s ease-out;
}

.hours-card p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.hours-note {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--gold-color) 100%);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.hours-note p {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Admissions CTA Section */
.admissions-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.admissions-cta h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.admissions-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* CTA Center Alignment */
.cta-center {
    text-align: center;
    margin-top: 2rem;
}

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

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

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

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

@keyframes scaleInCenter {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes pulseGold {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

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

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.8);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

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

@keyframes imageZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.05);
    }
}

@keyframes borderGlow {
    0%, 100% {
        border-color: var(--accent-color);
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    }
    50% {
        border-color: var(--gold-color);
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    }
}

/* Apply animations to sections */
section {
    animation: fadeInUp 0.8s ease-out;
}

.hero {
    animation: fadeInDown 0.8s ease-out;
}

.hero-content h1 {
    animation: fadeInDown 1s ease-out 0.2s both;
}

.hero-content p {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn-primary {
    animation: fadeInUp 1s ease-out 0.6s both;
    position: relative;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.pillar, .curriculum-card, .feature-card, .program-card, .day-menu, .hours-card {
    animation: scaleInCenter 0.6s ease-out;
}

.pillar h3, .curriculum-card h4, .feature-card h3, .program-card h3 {
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.pillar:hover h3, .curriculum-card:hover h4, .feature-card:hover h3, .program-card:hover h3 {
    color: var(--gold-color);
}

/* Premium Card Hover Effect */
.pillar:hover, .curriculum-card:hover, .feature-card:hover, .program-card:hover {
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

/* Form Styling */
.form-section {
    background: linear-gradient(180deg, #f9f7f4 0%, white 50%, #f5f1e8 100%);
    padding: 40px 20px;
    animation: fadeInUp 0.8s ease-out;
}

.form-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
    position: relative;
    padding-bottom: 1rem;
}

.form-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--gold-color));
    border-radius: 2px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    animation: scaleInCenter 0.8s ease-out;
    border: 2px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.form-group {
    margin-bottom: 1.5rem;
    animation: slideInLeft 0.6s ease-out;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    animation: slideDown 0.4s ease-out;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    transform: scale(1.02);
    background: linear-gradient(135deg, #fafafa, white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-submit {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    animation: pulseGold 2s infinite;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* Fee Structure Styling */
.fees-section {
    background: white;
    padding: 40px 20px;
}

.fees-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

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

/* Center fee cards inside the fees section */
.fees-grid {
    justify-items: center;
    justify-content: center;
}

.fee-card {
    width: 100%;
    max-width: 340px;
}

.fee-card {
    background: linear-gradient(135deg, #f9f7f4 0%, #f5f1e8 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 3px solid var(--accent-color);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: bounceIn 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

/* Payment options card centered inside fees section */
.payment-card {
    margin: 3rem auto 0;
    max-width: 980px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.fee-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: rotate 3s linear infinite;
}

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

.fee-card:hover {
    transform: translateY(-15px) scale(1.05) rotateX(8deg);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4);
    border-color: var(--gold-color);
}

.fee-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: slideDown 0.6s ease-out;
}

.fee-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
    text-align: center;
    margin: 1rem 0;
    position: relative;
    z-index: 1;
    animation: scaleInCenter 0.6s ease-out 0.2s both;
}

.fee-description {
    color: var(--text-color);
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.fee-details {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Download Button */
.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--gold-color) 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-top: 1rem;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    animation: slideInRight 0.6s ease-out;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease;
    z-index: 0;
}

.download-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn span {
    position: relative;
    z-index: 1;
    display: inline-block;
    animation: floatUp 2s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .nav-menu {
        gap: 1rem;
    }
}

/* Button Variants */
.btn-secondary {
    background: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background: #3ab3a8;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

.btn-small {
    display: inline-block;
    padding: 8px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    background: var(--primary-color);
    color: white;
}

.btn-small:hover {
    background: #e55a5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.btn-primary-large {
    display: inline-block;
    padding: 16px 40px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
    background: var(--accent-color);
    color: var(--dark-color);
}

/* Teacher Card Styles */
.teachers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.teacher-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.teacher-image-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.teacher-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid rgba(212,175,55,0.12);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: block;
}

.teacher-image:hover {
    transform: scale(1.03);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.teacher-overlay {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(26,42,74,0.9);
    color: white;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.95rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    opacity: 0.95;
}

.teacher-info h3 {
    margin-top: 0.25rem;
    color: var(--primary-color);
}

.teacher-position {
    color: var(--secondary-color);
    font-weight: 600;
}

.teacher-bio {
    color: #555;
    max-width: 28rem;
}

@media (max-width: 480px) {
    .teacher-image-wrapper {
        width: 160px;
        height: 160px;
    }
    .teacher-bio {
        max-width: 100%;
    }
}

.btn-primary-large:hover {
    background: #FFD700;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(255, 230, 109, 0.4);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: #1a4a3a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(45, 90, 74, 0.3);
}

.btn-small {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-small:hover {
    background: var(--gold-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Footer Improvements */
footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: white;
    padding: 3rem 20px 1rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.footer-section {
    text-align: left;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.social-link {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--primary-color);
        width: 100%;
        text-align: center;
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    table {
        font-size: 0.9rem;
    }

    th, td {
        padding: 8px 10px;
    }

    .pillars,
    .curriculum-grid,
    .principles,
    .features-grid,
    .programs-grid,
    .hours-grid,
    .methods-grid,
    .snack-suggestions,
    .menu-container {
        grid-template-columns: 1fr;
    }

    section {
        padding: 40px 20px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    :root {
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .content h2 {
        font-size: 1.5rem;
    }

    table {
        font-size: 0.8rem;
    }

    .meal {
        flex-direction: column;
    }

    .meal-type {
        min-width: auto;
        margin-bottom: 0.3rem;
    }

}

/* Highlight rows for better visibility */
@media (prefers-reduced-motion: no-preference) {
    * {
        transition: color 0.3s ease, background-color 0.3s ease;
    }
}

/* ===== TEACHERS SECTION ===== */
.teachers {
    background: linear-gradient(180deg, #f5f1e8 0%, white 50%, #f5f1e8 100%);
    padding: 80px 20px;
}

.teachers h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.teachers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.teacher-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: scaleInCenter 0.6s ease-out;
    border: 2px solid transparent;
    position: relative;
}

.teacher-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
    border-color: var(--accent-color);
}

.teacher-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 320px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.teacher-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.teacher-card:hover .teacher-image {
    transform: scale(1.1) rotate(3deg);
}

.teacher-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 42, 74, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.teacher-card:hover .teacher-overlay {
    opacity: 1;
}

.teacher-social {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: scaleInCenter 0.4s ease-out;
}

.teacher-social:hover {
    background: var(--gold-color);
    transform: scale(1.2);
}

.teacher-info {
    padding: 2rem;
    text-align: center;
}

.teacher-info h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    animation: slideDown 0.6s ease-out;
}

.teacher-position {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.teacher-bio {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ===== LOCATION / GOOGLE MAPS SECTION ===== */
.location-section {
    background: white;
    padding: 80px 20px;
}

.location-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: stretch;
}

.map-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
    animation: slideInLeft 0.8s ease-out;
    min-height: 450px;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    min-height: 450px;
    border-radius: var(--border-radius);
}

.location-info {
    background: linear-gradient(135deg, rgba(45, 90, 74, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--accent-color);
    animation: slideInRight 0.8s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-info h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    animation: slideDown 0.6s ease-out;
}

.info-item {
    margin-bottom: 1.8rem;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-item strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.info-item a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--gold-color);
}

.info-item:hover {
    padding-left: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 999;
    animation: none;
    border: 3px solid white;
}

.whatsapp-button:hover {
    transform: none;
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-button:active {
    transform: scale(0.95);
}

.whatsapp-icon {
    font-size: 2rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: none;
}

@keyframes pulseWhatsApp {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.8);
    }
}

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

/* ===== RESPONSIVE DESIGN FOR NEW SECTIONS ===== */
@media (max-width: 1024px) {
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-iframe {
        min-height: 350px;
    }

    .location-info {
        padding: 2rem;
    }
}

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

    .teacher-card {
        margin: 0 auto;
        max-width: 100%;
    }

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

    .map-wrapper {
        min-height: 300px;
    }

    .map-iframe {
        min-height: 300px;
    }

    .location-info {
        padding: 1.5rem;
    }

    .location-section h2,
    .teachers h2 {
        font-size: 1.8rem;
    }

    .teachers,
    .location-section {
        padding: 60px 20px;
    }

    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-icon {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .teachers-grid {
        grid-template-columns: 1fr;
    }

    .teacher-image-wrapper {
        height: 280px;
    }

    .location-content {
        gap: 1rem;
    }

    .map-wrapper {
        min-height: 250px;
    }

    .map-iframe {
        min-height: 250px;
    }

    .location-info {
        padding: 1.25rem;
    }

    .info-item {
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-icon {
        font-size: 1.5rem;
    }
}
