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

:root {
    --primary-color: #FF6B6B;
    --secondary-color: #4ECDC4;
    --accent-color: #FFE66D;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --success: #6BCF7F;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
}

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

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

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Quicksand', sans-serif;
}

.logo-icon {
    font-size: 32px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.btn-call {
    background: var(--success);
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: 25px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFF5F5 0%, #E8F5E9 100%);
    padding: 80px 20px;
    min-height: 600px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Quicksand', sans-serif;
}

.highlight {
    color: var(--primary-color);
    display: inline-block;
}

.subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: var(--shadow);
    font-size: 14px;
    font-weight: 500;
}

.stars {
    color: #FFD700;
    font-size: 16px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-primary:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

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

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

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder,
.image-placeholder {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--bg-light);
}

.hero-placeholder,
.image-placeholder,
.facility-card img,
.program-card img {
    display: block;
}

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

/* Stats Section */
.stats {
    background: var(--white);
    padding: 60px 20px;
    box-shadow: var(--shadow);
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Quicksand', sans-serif;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.4;
}

/* Section Styles */
section {
    padding: 80px 20px;
}

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

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Quicksand', sans-serif;
}

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

/* About Section */
.about {
    background: var(--bg-light);
}

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

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.check-list {
    list-style: none;
    margin-top: 30px;
}

.check-list li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-dark);
    border-bottom: 1px solid #e0e0e0;
}

.check-list li:last-child {
    border-bottom: none;
}

/* Facilities Section */
.facilities {
    background: var(--white);
}

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

.facility-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.facility-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.facility-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.facility-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Program Section */
.program {
    background: linear-gradient(135deg, #E8F5E9 0%, #FFF5F5 100%);
}

.program-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.program-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Quicksand', sans-serif;
}

.program-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.program-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.program-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.program-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.program-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.program-values {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

.program-values h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

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

.value-item {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 18px;
}

/* Testimonials Section */
.testimonials {
    background: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.testimonial-card .stars {
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.google-review {
    text-align: center;
    margin-top: 40px;
}

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

.cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-family: 'Quicksand', sans-serif;
}

.cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.cta .btn-primary:hover {
    background: var(--accent-color);
    color: var(--text-dark);
}

.cta .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-family: 'Quicksand', sans-serif;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.9;
}

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

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

.footer-column a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-rating {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.languages {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.lang-badge {
    background: rgba(255,255,255,0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
}

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

.footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
}

/* Contact Page Styles */
.page-header {
    background: linear-gradient(135deg, #FFF5F5 0%, #E8F5E9 100%);
    padding: 100px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Quicksand', sans-serif;
}

.contact-section {
    padding: 80px 20px;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
}

.contact-info-box h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-family: 'Quicksand', sans-serif;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.info-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.info-content a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
}

.info-content a:hover {
    color: var(--primary-color);
}

.contact-form-box {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.contact-form-box h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-family: 'Quicksand', sans-serif;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-status {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
}

.form-status.success {
    background: #d4edda;
    color: #155724;
}

.form-status.error {
    background: #f8d7da;
    color: #721c24;
}

.map-section {
    background: var(--bg-light);
    padding: 80px 20px;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 450px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Schedule Page Styles */
.schedule-content {
    max-width: 900px;
    margin: 0 auto;
}

.schedule-intro {
    text-align: center;
    margin-bottom: 60px;
}

.schedule-intro p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.schedule-day {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.schedule-day h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-family: 'Quicksand', sans-serif;
}

.schedule-item {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-time {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 18px;
    min-width: 140px;
}

.schedule-activity {
    flex: 1;
}

.schedule-activity h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.schedule-activity p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Program Page Styles */
.program-detail {
    padding: 80px 20px;
}

.program-detail-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.program-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-family: 'Quicksand', sans-serif;
}

.program-section h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--secondary-color);
}

.program-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.program-section ul {
    list-style: none;
    margin: 20px 0;
}

.program-section li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-dark);
    padding-left: 30px;
    position: relative;
}

.program-section li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 20px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        display: none;
    }

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

    .hero {
        padding: 60px 20px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-image img {
        max-width: 100%;
    }

    .stats .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .facility-grid,
    .program-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    section {
        padding: 60px 20px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 40px 15px;
    }

    .hero-text h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .subtitle {
        font-size: 16px;
    }

    .hero-features {
        flex-direction: column;
        gap: 10px;
    }

    .feature-badge {
        width: 100%;
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .stats {
        padding: 40px 15px;
    }

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

    .stat-number {
        font-size: 36px;
    }

    section {
        padding: 40px 15px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .facility-grid,
    .program-features,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .facility-card img,
    .program-card img {
        height: 180px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-header h2,
    .program-header h2,
    .cta h2 {
        font-size: 28px;
    }

    .cta {
        padding: 60px 15px;
    }

    .cta p {
        font-size: 16px;
    }

    .page-header {
        padding: 80px 15px 40px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .schedule-item {
        flex-direction: column;
        gap: 10px;
    }

    .schedule-time {
        min-width: auto;
        font-size: 16px;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 30px 20px;
    }

    .map-container {
        height: 300px;
    }
}

/* Language Toggle */
.lang-toggle {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.lang-toggle:hover {
    background: #45b8b0;
    transform: translateY(-2px);
}

.lang-toggle:active {
    transform: translateY(0);
}
