:root {
    --primary: #FF6B6B;
    --secondary: #4ECDC4;
    --accent: #FFE66D;
    --text: #2F2F2F;
}

body { 
    margin: 0; 
    font-family: 'Quicksand', sans-serif; 
    color: var(--text); 
    overflow-x: hidden; 
    scroll-behavior: smooth; 
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 230, 109, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Components */
nav { 
    display: flex; 
    justify-content: space-between; 
    padding: 15px 50px; 
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    align-items: center; 
    box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 0 0 1px rgba(255,255,255,0.5) inset;
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    transition: all 0.3s ease;
}
.nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
}
nav.scrolled {
    padding: 10px 50px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15), 0 0 0 1px rgba(255,255,255,0.6) inset;
    background: rgba(255, 255, 255, 0.95);
}
.logo { 
    display: flex; 
    align-items: center; 
    transition: transform 0.3s ease;
}
.logo:hover { 
    transform: scale(1.05); 
}
.logo-img { 
    height: 65px; 
    width: auto; 
    object-fit: contain; 
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
.logo a {
    display: inline-block;
    text-decoration: none;
}
nav h1 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    display: inline-block;
    white-space: nowrap;
}
ul { 
    display: flex; 
    list-style: none; 
    gap: 10px; 
    margin: 0; 
    padding: 0;
}
nav ul li { 
    position: relative;
}
nav ul li a { 
    text-decoration: none; 
    color: var(--text); 
    font-weight: 600; 
    padding: 12px 24px; 
    border-radius: 25px; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    display: block;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}
nav ul li a:hover::before {
    left: 100%;
}
nav ul li a:hover { 
    background: linear-gradient(135deg, var(--secondary), #45b8b0); 
    color: white; 
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.5), 0 0 20px rgba(78, 205, 196, 0.3);
    backdrop-filter: blur(20px);
}
.btn { 
    background: linear-gradient(135deg, var(--secondary), #45b8b0); 
    color: white; 
    border: none; 
    padding: 15px 30px; 
    border-radius: 50px; 
    cursor: pointer; 
    font-weight: bold; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.4), 0 0 0 0 rgba(78, 205, 196, 0.5);
    position: relative;
    overflow: hidden;
}

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

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

.btn:hover { 
    transform: translateY(-3px) scale(1.05); 
    background: linear-gradient(135deg, var(--primary), #ff5252); 
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5), 0 0 30px rgba(255, 107, 107, 0.3);
}

/* Hero */
.hero { 
    min-height: 30vh; 
    background: linear-gradient(135deg, #fff9e6 0%, #ffeaa7 50%, #fdcb6e 100%); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    position: relative; 
    padding: 30px 20px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -50%) rotate(180deg); }
}
.hero-with-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fdcb6e; /* Fallback color if image doesn't load */
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text);
}
.hero-content h1 {
    color: var(--primary);
    font-size: 2rem;
    margin: 0;
    font-weight: 700;
}
.hero-with-image .hero-content h1 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 2rem;
    margin: 0;
}
.hero-with-image .hero-content p {
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-size: 1rem;
    margin: 15px 0;
}
.bounce { animation: bounce 2s infinite; color: var(--primary); font-size: 2rem; margin: 0; }
.hero-content p { font-size: 1rem; margin: 15px 0; color: var(--text); font-weight: 500; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

/* Sections */
.info, .video-tour, .gallery-section, .checklist-section, .faq-section, .contact-section { padding: 60px 20px; text-align: center; }
.info h2, .video-tour h2, .gallery-section h2, .checklist-section h2, .faq-section h2, .contact-section h2 { font-size: 2rem; margin-bottom: 30px; }

/* Background Colors for Sections */
.info {
    background: linear-gradient(135deg, rgba(240, 249, 255, 0.9) 0%, rgba(224, 242, 254, 0.9) 100%);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.video-tour {
    background: linear-gradient(135deg, rgba(254, 243, 199, 0.9) 0%, rgba(253, 230, 138, 0.9) 100%);
    padding: 30px 20px !important;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.video-tour::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 230, 109, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.video-tour h2 {
    font-size: 1.5rem !important;
    margin-bottom: 20px !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.gallery-section {
    background: linear-gradient(135deg, rgba(252, 231, 243, 0.9) 0%, rgba(251, 207, 232, 0.9) 100%);
    padding: 50px 20px !important;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 107, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.gallery-section h2 {
    font-size: 2.2rem !important;
    margin-bottom: 40px !important;
    color: var(--text);
    text-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.checklist-section {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.testimonials-section {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    padding: 60px 20px;
}

.testimonials-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: block;
    min-height: 300px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    display: none;
    margin: 0 auto;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.testimonial-card.active {
    display: block;
    opacity: 1;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.testimonials-nav {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    color: var(--text);
    font-weight: bold;
    line-height: 1;
}

.testimonials-nav:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.testimonials-prev {
    left: 10px;
}

.testimonials-next {
    right: 10px;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--secondary);
    transform: scale(1.3);
}

.testimonial-dot:hover {
    background: var(--primary);
    transform: scale(1.2);
}

.testimonial-stars {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
    text-align: center;
}

.testimonial-author {
    text-align: center;
    color: var(--primary);
    font-size: 1rem;
}

.quick-links-section {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 60px 20px;
    text-align: center;
}

.quick-links-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.quick-link-card {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-decoration: none;
    color: var(--text);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quick-link-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.quick-link-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.quick-link-card h3 {
    color: var(--primary);
    margin: 0 0 10px 0;
    font-size: 1.3rem;
}

.quick-link-card p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Programs Page Styles */
.programs-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.program-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.program-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 0 0 1px rgba(255,255,255,0.5) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.program-card:hover::before {
    opacity: 1;
}

.program-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15), 0 0 0 1px rgba(255,255,255,0.8) inset;
}

.program-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 20px;
}

.program-card h2 {
    font-size: 2rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 10px;
}

.program-age {
    text-align: center;
    font-size: 1.2rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 30px;
}

.program-content h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 25px;
    margin-bottom: 15px;
}

.program-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

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

.program-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

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

.schedule {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.schedule p {
    margin: 8px 0;
    font-size: 1rem;
}

.montessori-method-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
    text-align: center;
}

.method-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.method-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.method-card h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.method-card p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

/* Admission Page Styles */
.admission-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

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

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.step-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.documents-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    text-align: center;
}

.documents-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.document-list {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: left;
}

.document-list h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.document-list ul {
    list-style: none;
    padding: 0;
}

.document-list li {
    padding: 10px 0;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.fee-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
    text-align: center;
}

.fee-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.fee-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.fee-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.fee-amount {
    font-size: 1.8rem;
    color: var(--secondary);
    font-weight: bold;
    margin: 15px 0;
}

.fee-note {
    margin-top: 30px;
    font-style: italic;
    color: #666;
}

.important-dates-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    text-align: center;
}

.dates-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.date-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.date-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.date-card p {
    color: #555;
    margin: 10px 0;
    font-size: 1.05rem;
}

/* Resources Page Styles */
.resources-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.resources-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.resource-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.resource-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.resource-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1rem;
}

.parenting-tips-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    text-align: center;
}

.tips-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.tip-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: left;
}

.tip-card h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.tip-card p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

.montessori-resources-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
    text-align: center;
}

.montessori-resources-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.montessori-resource-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: left;
}

.montessori-resource-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.montessori-resource-card p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.montessori-resource-card ul {
    list-style: none;
    padding: 0;
}

.montessori-resource-card li {
    padding: 8px 0;
    color: #555;
    font-size: 1rem;
}

/* Facilities Showcase */
.facilities-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    text-align: center;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.facility-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 0 0 1px rgba(255,255,255,0.5) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.facility-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.facility-card:hover::after {
    opacity: 1;
}

.facility-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15), 0 0 0 1px rgba(255,255,255,0.8) inset;
}

.facility-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.facility-card h3 {
    padding: 20px;
    color: var(--primary);
    font-size: 1.5rem;
    margin: 0;
}

.facility-card p {
    padding: 0 20px 20px;
    color: #555;
    line-height: 1.7;
}

/* Calendar Section */
.calendar-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    text-align: center;
}

.calendar-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.calendar-events {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.calendar-event {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    border-left: 4px solid var(--secondary);
}

.calendar-event h4 {
    color: var(--primary);
    margin: 0 0 10px 0;
    font-size: 1.3rem;
}

.calendar-event p {
    color: #666;
    margin: 5px 0;
}

/* Social Media */
.social-media-section {
    padding: 40px 20px;
    background: linear-gradient(135deg, #fff9e6 0%, #ffeaa7 100%);
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
}

/* Google Maps */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 30px;
}

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

.about-section {
    background: linear-gradient(135deg, rgba(224, 242, 254, 0.9) 0%, rgba(186, 230, 253, 0.9) 100%);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.owner-section {
    background: linear-gradient(135deg, rgba(254, 243, 199, 0.9) 0%, rgba(253, 230, 138, 0.9) 100%);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.owner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 70%, rgba(255, 230, 109, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.teachers-section {
    background: linear-gradient(135deg, rgba(252, 231, 243, 0.9) 0%, rgba(251, 207, 232, 0.9) 100%);
    padding: 60px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.teachers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 107, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.teachers-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.teachers-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* About Page Styles */
.about-section {
    padding: 60px 20px;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-container h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text);
}

.about-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 40px 60px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 0 0 1px rgba(255,255,255,0.5) inset;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: left;
    padding: 0 20px;
}

.about-text h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Owner Section */
.owner-section {
    padding: 60px 20px;
}

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

.owner-container h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text);
}

.owner-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 40px 60px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 0 0 1px rgba(255,255,255,0.5) inset;
}

.owner-image-wrapper {
    flex-shrink: 0;
}

.owner-image {
    width: 200px !important;
    height: 200px !important;
    min-width: 200px;
    min-height: 200px;
    max-width: 200px;
    max-height: 200px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: block;
}

.owner-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.owner-text {
    flex: 1;
}

.owner-text h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.owner-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    padding: 0 20px;
}

.owner-quote {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--secondary);
    border-left: 4px solid var(--secondary);
    padding-left: 20px;
    margin-top: 30px;
}

/* Teachers Gallery - Grid Layout */
.teachers-gallery-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.teachers-nav {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    color: var(--text);
    font-weight: bold;
    line-height: 1;
}

.teachers-nav:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.teachers-prev {
    left: 10px;
}

.teachers-next {
    right: 10px;
}

.teachers-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.teachers-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.teachers-dots .dot.active {
    background: var(--secondary);
    transform: scale(1.3);
}

.teachers-dots .dot:hover {
    background: var(--primary);
    transform: scale(1.2);
}

.teachers-gallery {
    position: relative;
    width: 100%;
    overflow: visible;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    min-height: 360px;
    padding: 20px 0;
    box-sizing: border-box;
    background: transparent;
}

.teacher-card {
    flex: 0 0 auto;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 0 0 1px rgba(255,255,255,0.5) inset;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    visibility: visible;
    width: 280px;
}

.teacher-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

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

.teacher-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15), 0 0 0 1px rgba(255,255,255,0.8) inset;
}

.teacher-card:hover img {
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.teacher-card img {
    width: 100% !important;
    height: 280px !important;
    min-width: 280px;
    min-height: 280px;
    max-width: 100%;
    max-height: 280px;
    object-fit: cover;
    object-position: center top;
    display: block !important;
    margin: 0;
    border-radius: 20px 20px 0 0;
    transition: transform 0.3s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    image-rendering: auto;
    visibility: visible;
    opacity: 1;
}

.teacher-name-input {
    width: 100%;
    padding: 15px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Quicksand', sans-serif;
    color: var(--text);
    background: white;
    border: none;
    border-top: 2px solid #f0f0f0;
    border-radius: 0 0 20px 20px;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    cursor: text;
}

.teacher-name-input:hover {
    background: #f8f9fa;
}

.teacher-name-input:focus {
    background: #fff;
    border-top-color: var(--secondary);
    box-shadow: 0 -2px 0 0 var(--secondary);
}

.teacher-name-input::placeholder {
    color: #999;
    font-weight: normal;
    font-style: italic;
}

.teacher-placeholder {
    width: 280px !important;
    height: 100% !important;
    min-width: 280px;
    min-height: 280px;
    max-width: 280px;
    max-height: 100%;
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border-radius: 20px;
    margin: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.faq-section {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
}

/* Cards */
.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 0 0 1px rgba(255,255,255,0.5) inset;
    min-width: 200px;
    max-width: 300px;
    flex: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15), 0 0 0 1px rgba(255,255,255,0.8) inset;
}
.card.purple { border-top: 5px solid #9b59b6; }
.card.orange { border-top: 5px solid #e67e22; }
.card.green { border-top: 5px solid #27ae60; }
.card h3 { margin: 0 0 10px 0; color: var(--text); }
.card p { margin: 0; color: #666; }

/* Video */
.video-wrapper { padding: 10px; }
.video-container { position: relative; padding-bottom: 30%; height: 0; border-radius: 15px; overflow: hidden; border: 2px solid white; box-shadow: 0 5px 15px rgba(0,0,0,0.1); max-width: 500px; margin: 15px auto; }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* Polaroid */
.gallery-wrapper {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.gallery-nav {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2), 0 0 0 0 rgba(78, 205, 196, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text);
    font-weight: bold;
    line-height: 1;
}
.gallery-nav:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4), 0 0 0 4px rgba(78, 205, 196, 0.2);
    border-color: var(--secondary);
}
.gallery-prev {
    left: 10px;
}
.gallery-next {
    right: 10px;
}
.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    backdrop-filter: blur(5px);
}
.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.dot.active {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: scale(1.4);
    box-shadow: 0 3px 10px rgba(78, 205, 196, 0.4);
}
.dot:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.3);
    box-shadow: 0 3px 8px rgba(255, 107, 107, 0.3);
}
.polaroid-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    gap: 0;
    min-height: 320px;
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.05);
}
.polaroid {
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    display: none;
    margin: 0 auto;
    flex-shrink: 0;
    background: transparent;
    padding: 0;
    transition: opacity 0.6s ease-in-out, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(0.9) translateX(30px);
}
.polaroid.active {
    display: block;
    opacity: 1;
    transform: scale(1) translateX(0);
}
.photo-placeholder {
    width: 100%;
    max-width: 400px;
    height: 280px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    font-size: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 15px;
    border: 3px solid white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.polaroid img {
    width: 100%;
    max-width: 400px;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
    display: block;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15), 0 0 0 3px rgba(255,255,255,0.5);
    border: 3px solid white;
}
.polaroid img:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25), 0 0 0 4px rgba(255,255,255,0.8);
    border-radius: 18px;
}
.p-yellow { transform: rotate(-3deg); }
.p-blue { transform: rotate(3deg); }
.p-pink { transform: rotate(-1deg); }
.p-green { transform: rotate(2deg); }
.p-purple { transform: rotate(-2deg); }
.p-orange { transform: rotate(1deg); }
.polaroid.active {
    transform: rotate(0deg) !important;
}
.polaroid:hover {
    transform: scale(1.05) rotate(0deg) !important;
    z-index: 5;
}

/* Checklist */
.checklist-card { background: white; padding: 30px; border-radius: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); max-width: 500px; margin: auto; border: 3px dashed var(--secondary); }
.check-container { display: block; position: relative; padding-left: 45px; margin-bottom: 15px; cursor: pointer; text-align: left; }
.check-container input { opacity: 0; }
.checkmark { position: absolute; top: 0; left: 0; height: 25px; width: 25px; background: #eee; border-radius: 5px; }
.check-container input:checked ~ .checkmark { background: #2ecc71; }

/* FAQ */
.faq-container { max-width: 600px; margin: auto; text-align: left; }
.faq-item { background: #f9f9f9; margin-bottom: 10px; border-radius: 15px; }
.faq-answer { padding: 5px 15px 10px 15px; }
summary { padding: 15px; cursor: pointer; font-weight: bold; }

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
}
.contact-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 40px auto 0;
}
.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 0 0 1px rgba(255,255,255,0.5) inset;
    flex: 1;
    min-width: 250px;
    max-width: 400px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

.contact-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15), 0 0 0 1px rgba(255,255,255,0.8) inset;
}
.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}
.contact-card h3 {
    color: var(--primary);
    margin: 0 0 15px 0;
    font-size: 1.5rem;
}
.contact-card p {
    margin: 10px 0;
    color: var(--text);
    line-height: 1.6;
}
.contact-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}
.contact-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Questionnaire Section */
.questionnaire-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    text-align: center;
}
.questionnaire-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.questionnaire-intro {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}
.questionnaire-form {
    text-align: left;
}
.form-group {
    margin-bottom: 25px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
    font-size: 1rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.checkbox-group {
    margin-top: 20px;
}
.checkbox-group .check-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding-left: 35px;
}
.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}
.questionnaire-form .btn {
    width: 100%;
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 1.1rem;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}
.form-section-title {
    font-size: 1.4rem;
    color: var(--primary);
    margin: 30px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary);
    font-weight: 700;
}
.form-section-title:first-of-type {
    margin-top: 0;
}

/* Loading Animation */
.loading-message {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #fff9e6 0%, #ffeaa7 100%);
    border-radius: 20px;
    margin: 20px 0;
    animation: pulse 2s ease-in-out infinite;
}
.loading-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    min-height: 120px;
}
.bouncing-ball {
    font-size: 4rem;
    animation: bounce 1s ease-in-out infinite;
    transform-origin: center;
}
@keyframes bounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.1);
    }
}
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(255, 107, 107, 0);
    }
}
.loading-message h3 {
    color: var(--text);
    font-size: 2rem;
    margin: 0 0 15px 0;
    animation: fadeInOut 2s ease-in-out infinite;
}
.loading-message p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}
@keyframes fadeInOut {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-radius: 20px;
    margin: 20px 0;
    animation: successPop 0.5s ease-out;
}
@keyframes successPop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
.success-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 20px;
    font-weight: bold;
    animation: checkmark 0.6s ease-out;
}
@keyframes checkmark {
    0% {
        transform: scale(0) rotate(-45deg);
    }
    50% {
        transform: scale(1.2) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}
.success-message h3 {
    color: var(--text);
    font-size: 2rem;
    margin: 0 0 15px 0;
}
.success-message p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

/* Footer & Rocket */
.main-footer { background: var(--text); color: white; padding: 40px; text-align: center; border-top: 10px solid var(--secondary); }
.footer-logo-img { height: 80px; width: auto; object-fit: contain; margin-bottom: 10px; }
.footer-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}
.footer-link:hover {
    color: white;
    text-decoration: underline;
}
.main-footer p {
    margin: 10px 0;
    line-height: 1.6;
}
.fixed-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}
#rocketBtn { 
    font-size: 2.5rem; 
    background: rgba(255, 255, 255, 0.9);
    border: none; 
    cursor: pointer; 
    transition: 0.3s;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
#rocketBtn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.whatsapp-btn {
    background: #25D366;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: 0.3s;
    color: white;
    text-decoration: none;
    animation: whatsappPulse 2s ease-in-out infinite;
}
.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    background: #20BA5A;
}
.whatsapp-btn svg {
    width: 28px;
    height: 28px;
}
@keyframes blastOff { 
    0% { transform: translateY(0); } 
    100% { transform: translateY(-100vh); } 
}
@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
    }
}
@keyframes whatsappBounce {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.2) rotate(5deg);
    }
    50% {
        transform: scale(0.9) rotate(-5deg);
    }
    75% {
        transform: scale(1.1) rotate(3deg);
    }
}

/* Image Modal/Lightbox */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease-in-out;
    overflow: hidden;
}
.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.modal-image {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    transition: transform 0.3s ease;
}
.modal-image:hover {
    transform: scale(1.02);
}
@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}
.modal-close:hover {
    transform: rotate(90deg) scale(1.2);
    background: rgba(255, 255, 255, 0.2);
    color: var(--secondary);
}
.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 3rem;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: bold;
    line-height: 1;
}
.modal-nav:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(78, 205, 196, 0.5);
}
.modal-prev {
    left: 30px;
}
.modal-next {
    right: 30px;
}
.modal-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}