:root {
    --yellow: #F5D547;
    --green: #2D8B5A;
    --red: #E54B4B;
    --blue: #4A90D9;
    --cream: #FAF6E9;
    --dark: #1a1a1a;
    --white: #fff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h2 em {
    font-style: italic;
    font-weight: 500;
}

h3 {
    font-size: 1.3rem;
}

p {
    color: #444;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--red);
    margin-bottom: 16px;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--green) 0%, #3da667 100%);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(45, 139, 90, 0.3);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--blue) 0%, var(--green) 50%, var(--red) 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 139, 90, 0.4);
}

/* Navigation */
nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    background: var(--cream);
    border-radius: 100px;
    padding: 16px 48px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    width: 90%;
    max-width: 1200px;
}

nav.scrolled {
    top: 10px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 65px;
    width: auto;
}

.brand-name {
    font-family: 'Fredoka One', cursive;
    font-size: 1.6rem;
    letter-spacing: 0.02em;
}

.brand-name .c1 { color: #4CAF50; } /* Green */
.brand-name .c2 { color: #E54B4B; } /* Red */
.brand-name .c3 { color: #2196F3; } /* Blue */
.brand-name .c4 { color: #FF9800; } /* Orange */

.nav-links {
    display: flex;
    gap: 32px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--dark);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--red);
}

.nav-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--dark) 0%, #333 100%);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.nav-btn:hover::before {
    left: 0;
}

.nav-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

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

.menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s;
}

/* Hero */
.hero {
    min-height: 100vh;
    background: var(--yellow);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 80px;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-logo {
    width: 280px;
    height: auto;
    margin: 0 auto 40px;
    animation: float 4s ease-in-out infinite;
}

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

.hero h1 {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 700;
    line-height: 0.95;
    color: var(--dark);
}

.hero h1 span {
    display: block;
}

.hero .word-1 {
    margin-left: -15%;
}

.hero .word-2 {
    margin-left: 20%;
    font-size: 0.8em;
}

.hero .word-3 {
    margin-left: -5%;
    color: var(--red);
}

.tagline {
    position: absolute;
    bottom: -60px;
    right: -100px;
    font-size: 1rem;
    color: var(--dark);
    text-align: left;
    line-height: 1.4;
}

/* Hero Shapes */
.shape {
    position: absolute;
    border-radius: 50%;
}

.shape-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--green) 0%, #3da667 100%);
    top: 15%;
    right: 25%;
    border-radius: 100px 100px 100px 0;
    animation: pulse1 5s ease-in-out infinite;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--blue) 0%, #6ab0f0 100%);
    top: 30%;
    left: 10%;
    border-radius: 50%;
    animation: pulse2 4s ease-in-out infinite;
}

.shape-3 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--red) 0%, #f07070 100%);
    bottom: 25%;
    right: 15%;
    border-radius: 50%;
    animation: pulse3 6s ease-in-out infinite;
}

.shape-4 {
    width: 100px;
    height: 50px;
    background: linear-gradient(135deg, var(--green) 0%, #4CAF50 100%);
    bottom: 20%;
    left: 20%;
    border-radius: 100px;
    animation: pulse1 5.5s ease-in-out infinite reverse;
}

.shape-5 {
    width: 40px;
    height: 40px;
    background: var(--dark);
    bottom: 30%;
    left: 12%;
    border-radius: 50%;
    animation: pulse2 3s ease-in-out infinite;
}

@keyframes pulse1 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
}

@keyframes pulse2 {
    0%, 100% { transform: translateX(0) scale(1); }
    50% { transform: translateX(10px) scale(1.08); }
}

@keyframes pulse3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-8px, -8px) rotate(10deg); }
}

/* Hero Photos */
.hero-photo {
    position: absolute;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

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

.photo-1 {
    width: 320px;
    height: 320px;
    top: 15%;
    right: 8%;
    border-radius: 16px;
}

/* Mobile decorative shapes - hidden on desktop */
.mobile-shape {
    display: none;
    position: absolute;
    border-radius: 50%;
    z-index: 5;
}

.hero-badge {
    position: absolute;
    bottom: 10%;
    left: 8%;
    background: var(--white);
    padding: 20px 28px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.hero-badge span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
}

.hero-badge strong {
    font-size: 1.8rem;
    color: var(--green);
}

/* About */
.about {
    padding: 120px 0;
    background: var(--cream);
}

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

.about-image img {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.about-text h2 {
    margin-bottom: 24px;
}

.about-text > p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    color: #555;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: default;
}

.feature:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.feature:hover .feature-dot {
    transform: scale(1.3);
}

.feature-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.feature-dot.green { background: var(--green); }
.feature-dot.red { background: var(--red); }
.feature-dot.blue { background: var(--blue); }

.feature span {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Goal Section */
.goal {
    padding: 120px 0;
    background: var(--white);
    text-align: center;
}

.goal h2 {
    margin-bottom: 16px;
}

.goal > .container > p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 60px;
    color: #555;
}

.curriculum-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto 60px;
}

.curriculum-item {
    background: var(--cream);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.curriculum-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.curriculum-item h3 {
    color: var(--green);
    margin-bottom: 12px;
}

.curriculum-item p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.curriculum-logo {
    display: block;
    max-width: 180px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0 auto 20px;
}

.certifications {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.certifications img {
    max-height: 120px;
    width: auto;
    transition: transform 0.3s ease;
}

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

/* Philosophy */
.philosophy {
    padding: 120px 0;
    background: var(--white);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.philosophy-card {
    padding: 48px;
    background: var(--cream);
    border-radius: 16px;
    transition: all 0.3s ease;
}

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

.philosophy-card h2 {
    margin-bottom: 24px;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.philosophy-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.philosophy-card p:last-child {
    margin-bottom: 0;
}

/* Programs */
.programs {
    padding: 120px 0;
    background: var(--white);
}

.programs h2 {
    margin-bottom: 60px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.program-card {
    background: var(--cream);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.program-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.program-img {
    height: 200px;
    overflow: hidden;
}

.program-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.program-card h3 {
    padding: 24px 24px 8px;
}

.program-card .ages {
    padding: 0 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 8px;
}

.program-card > p:last-child {
    padding: 0 24px 24px;
    font-size: 0.95rem;
    color: #666;
}

.schedules {
    padding: 48px;
    background: var(--yellow);
    border-radius: 16px;
    text-align: center;
}

.schedules h3 {
    margin-bottom: 24px;
}

.schedule-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.schedule-tags span {
    padding: 10px 20px;
    background: var(--white);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
}

.schedule-tags span:hover {
    background: var(--dark);
    color: var(--white);
    transform: scale(1.08);
}

/* Rates */
.rates {
    padding: 120px 0;
    background: var(--cream);
}

.rates h2 {
    margin-bottom: 60px;
}

.rates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.rate-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.rate-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.rate-card h3 {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--yellow);
}

.rate-card:hover h3 {
    border-color: var(--green);
}

.rate-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rate-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.rate-option:last-child {
    border-bottom: none;
}

.rate-type {
    font-size: 0.9rem;
    color: #666;
}

.rate-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green);
}

.rate-price small {
    font-size: 0.7rem;
    font-weight: 400;
    color: #888;
}

.additional-rates {
    background: var(--yellow);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
}

.additional-rates h3 {
    margin-bottom: 32px;
}

.additional-rates-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.additional-rate {
    background: var(--white);
    padding: 24px 32px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 180px;
    transition: all 0.3s ease;
}

.additional-rate:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.additional-rate .rate-type {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.additional-rate .rate-price {
    font-size: 1.5rem;
}

/* Contact */
.contact {
    padding: 120px 0;
    background: var(--green);
    color: var(--white);
}

.contact .label {
    color: rgba(255,255,255,0.7);
}

.contact h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-text > p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-item strong {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
}

.contact-item span,
.contact-item a {
    font-size: 1.1rem;
    color: var(--white);
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-cta {
    background: var(--white);
    padding: 48px;
    border-radius: 16px;
    text-align: center;
}

.cta-logo {
    width: 100px;
    margin: 0 auto 24px;
}

.contact-cta h3 {
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-cta p {
    color: #666;
    margin-bottom: 24px;
}

.cta-phone {
    margin-top: 16px;
    font-size: 0.95rem;
    color: #666;
}

.cta-phone a {
    color: var(--green);
    font-weight: 600;
}

.cta-phone a:hover {
    text-decoration: underline;
}

/* Staff Contacts */
.staff-contacts {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.staff-contacts h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--white);
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.staff-member {
    background: rgba(255,255,255,0.1);
    padding: 16px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.3s ease;
}

.staff-member:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

.staff-member strong {
    font-size: 0.95rem;
    color: var(--white);
}

.staff-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.6);
}

.staff-member a {
    font-size: 0.9rem;
    color: var(--white);
    margin-top: 4px;
}

.staff-member a:hover {
    text-decoration: underline;
}

/* Social Links */
.social-links {
    margin-top: 24px;
}

.social-link {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(5px);
}

/* Policies */
.policies {
    padding: 120px 0;
    background: var(--cream);
}

.policies h2 {
    margin-bottom: 60px;
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.policy {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.policy:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.policy h3 {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--yellow);
    transition: border-color 0.3s ease;
}

.policy:hover h3 {
    border-color: var(--green);
}

.policy p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.policy-link {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 20px;
    background: var(--green);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.policy-link:hover {
    background: var(--dark);
    transform: translateY(-2px);
}

/* Footer */
footer {
    padding: 80px 0 40px;
    background: var(--dark);
    color: var(--white);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 80px;
}

.footer-logo .brand-name {
    font-size: 1.8rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.footer-col strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}

.footer-col a,
.footer-col p {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

.dev-credit {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.dev-credit:hover {
    color: rgba(255,255,255,0.7);
}

/* Tablet */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: clamp(2.5rem, 8vw, 5rem);
    }

    .hero .word-1,
    .hero .word-2,
    .hero .word-3 {
        margin-left: 0;
    }

    .tagline {
        position: static;
        margin-top: 24px;
        text-align: center;
    }

    .hero-photo {
        display: none;
    }

    .shape {
        transform: scale(0.7);
    }

    .about-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image {
        order: -1;
    }

    .programs-grid,
    .policies-grid,
    .curriculum-info {
        grid-template-columns: 1fr;
    }

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

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .philosophy-card {
        padding: 32px;
    }

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

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

@media (max-width: 768px) {
    nav {
        left: 20px;
        right: 20px;
        transform: none;
        border-radius: 16px;
        padding: 12px 24px;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        left: auto;
        transform: none;
        background: var(--cream);
        flex-direction: column;
        align-items: center;
        gap: 8px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        z-index: 100;
        text-align: center;
        width: 180px;
        padding: 16px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        margin-top: 10px;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-size: 1rem;
        padding: 12px 16px;
        display: block;
        width: 100%;
        background: var(--white);
        border-radius: 8px;
        transition: all 0.2s ease;
    }

    .nav-links a:hover,
    .nav-links a:active {
        background: var(--yellow);
    }

    .nav-btn {
        display: none;
    }

    .menu-btn {
        display: flex;
        z-index: 101;
    }

    .menu-btn.open span:first-child {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-btn.open span:last-child {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .container {
        padding: 0 24px;
    }

    .hero {
        padding: 140px 24px 80px;
    }

    .hero-badge {
        position: static;
        margin-top: 40px;
        display: inline-block;
    }

    .shape {
        display: none;
    }

    /* Show mobile shapes around the tree */
    .mobile-shape {
        display: block;
    }

    .ms-1 {
        width: 35px;
        height: 35px;
        background: linear-gradient(135deg, var(--green) 0%, #4CAF50 100%);
        top: 22%;
        left: 8%;
        animation: mfloat1 4s ease-in-out infinite;
    }

    .ms-2 {
        width: 25px;
        height: 25px;
        background: linear-gradient(135deg, var(--red) 0%, #f07070 100%);
        top: 18%;
        right: 12%;
        animation: mfloat2 3.5s ease-in-out infinite;
    }

    .ms-3 {
        width: 40px;
        height: 20px;
        background: linear-gradient(135deg, var(--blue) 0%, #6ab0f0 100%);
        border-radius: 100px;
        top: 35%;
        left: 5%;
        animation: mfloat3 5s ease-in-out infinite;
    }

    .ms-4 {
        width: 30px;
        height: 30px;
        background: linear-gradient(135deg, var(--green) 0%, #3da667 100%);
        border-radius: 8px;
        top: 32%;
        right: 8%;
        animation: mfloat4 4.5s ease-in-out infinite;
    }

    .ms-5 {
        width: 20px;
        height: 20px;
        background: linear-gradient(135deg, var(--red) 0%, #E54B4B 100%);
        top: 45%;
        left: 12%;
        animation: mfloat1 3s ease-in-out infinite reverse;
    }

    .ms-6 {
        width: 28px;
        height: 28px;
        background: linear-gradient(135deg, var(--blue) 0%, #4A90D9 100%);
        border-radius: 50% 50% 50% 0;
        top: 48%;
        right: 15%;
        animation: mfloat2 4s ease-in-out infinite;
    }

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

    @keyframes mfloat2 {
        0%, 100% { transform: translateX(0); }
        50% { transform: translateX(6px); }
    }

    @keyframes mfloat3 {
        0%, 100% { transform: translateY(0) scaleX(1); }
        50% { transform: translateY(-5px) scaleX(1.1); }
    }

    @keyframes mfloat4 {
        0%, 100% { transform: rotate(15deg); }
        50% { transform: rotate(25deg) translateY(-6px); }
    }

    .about,
    .goal,
    .philosophy,
    .programs,
    .rates,
    .contact,
    .policies {
        padding: 80px 0;
    }

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

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

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

    .additional-rates {
        padding: 32px 24px;
    }

    .additional-rates-grid {
        flex-direction: column;
        gap: 16px;
    }

    .additional-rate {
        min-width: auto;
    }

    .schedules {
        padding: 32px 24px;
    }
}
