/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-yellow: #F4D03F;
    --color-navy: #1A3A52;
    --color-pink: #FFB6C1;
    --color-green: #4A7C59;
    --color-light-green: #E8F5E9;
    --color-white: #FFFFFF;
    --color-gray-light: #F5F5F5;
    --color-gray-medium: #E0E0E0;
    --color-gray-dark: #666666;
    --color-text: #333333;
}

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

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

/* Typography */
h1, h2, h3 {
    font-family: 'Fredoka', sans-serif;
}

/* Navigation */
.navbar {
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

.logo-container:hover {
    opacity: 0.8;
}

.logo {
    height: 60px;
    width: auto;
}

.brand-name {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-navy);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-hidden {
    display: none !important;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-navy);
    font-weight: 600;
    transition: color 0.3s;
}

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

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 0.5rem;
    transition: transform 0.3s;
}

.nav-dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--color-navy);
    transition: all 0.3s;
}

.dropdown-menu li a:hover {
    background: var(--color-light-green);
    color: var(--color-green);
}

/* Mobile dropdown active state */
.nav-dropdown.dropdown-active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-enroll {
    background: var(--color-pink);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-enroll:hover {
    background: var(--color-navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--color-light-green) 0%, var(--color-white) 100%);
    padding: 6rem 0 8rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="%234A7C59" opacity="0.05" d="M40,100 Q50,50 100,50 T160,100 Q150,150 100,150 T40,100 Z"/></svg>');
    background-repeat: repeat;
    opacity: 0.3;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.hero-tagline {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
    font-family: 'Fredoka', cursive;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-dark);
    margin-bottom: 2rem;
    font-style: italic;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
}

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

.btn-primary:hover {
    background: var(--color-navy);
    border-color: var(--color-navy);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

.btn-secondary:hover {
    background: var(--color-navy);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-white);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: 600;
}

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

/* Programs Overview */
.programs-overview {
    padding: 6rem 0;
    background: var(--color-white);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--color-gray-dark);
    margin-bottom: 4rem;
}

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

.program-card {
    background: var(--color-white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 3px solid;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.program-math {
    border-color: var(--color-yellow);
}

.program-math::before {
    background: var(--color-yellow);
}

.program-money {
    border-color: var(--color-navy);
}

.program-money::before {
    background: var(--color-navy);
}

.program-mind {
    border-color: var(--color-pink);
}

.program-mind::before {
    background: var(--color-pink);
}

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

.program-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.program-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.program-math h3 {
    color: var(--color-navy);
}

.program-money h3 {
    color: var(--color-navy);
}

.program-mind h3 {
    color: var(--color-pink);
}

.program-focus {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-green);
    margin-bottom: 1rem;
}

.program-description {
    color: var(--color-gray-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.btn-learn-more {
    background: transparent;
    border: 2px solid var(--color-navy);
    color: var(--color-navy);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.btn-learn-more:hover {
    background: var(--color-navy);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.program-money .btn-learn-more:hover {
    background: var(--color-navy);
}

.program-math .btn-learn-more {
    border-color: var(--color-yellow);
    color: var(--color-navy);
}

.program-math .btn-learn-more:hover {
    background: var(--color-yellow);
    border-color: var(--color-yellow);
}

.program-mind .btn-learn-more {
    border-color: var(--color-pink);
    color: var(--color-pink);
}

.program-mind .btn-learn-more:hover {
    background: var(--color-pink);
    color: var(--color-white);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--color-light-green);
}

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

.about-text h2 {
    font-size: 2.5rem;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--color-gray-dark);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--color-white);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    background: var(--color-green);
    color: var(--color-white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.flyer-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Details Section */
.details-section {
    padding: 6rem 0;
    background: var(--color-white);
}

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

.detail-card {
    background: linear-gradient(135deg, var(--color-light-green) 0%, var(--color-white) 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--color-green);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.detail-card h3 {
    color: var(--color-navy);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.detail-card p {
    margin-bottom: 0.5rem;
    color: var(--color-gray-dark);
}

.important-note {
    margin-top: 2rem;
    text-align: center;
    color: var(--color-gray-dark);
    font-style: italic;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-green) 100%);
    color: var(--color-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.btn-founder {
    display: inline-block;
    margin: 1rem 0 1.5rem 0;
    padding: 0.75rem 1.5rem;
    background: var(--color-yellow);
    color: var(--color-navy);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-founder:hover {
    background: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.contact-section-title {
    font-size: 2.2rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--color-yellow);
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

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

.contact-item a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--color-yellow);
}

.enrollment-card {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.enrollment-card h3 {
    color: var(--color-pink);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.enrollment-card > p {
    color: var(--color-navy);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.enrollment-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.enrollment-form input,
.enrollment-form textarea {
    padding: 1rem;
    border: 2px solid var(--color-gray-medium);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.enrollment-form button {
    background: var(--color-pink);
    color: var(--color-white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.enrollment-form button:hover {
    background: var(--color-navy);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.form-note {
    color: var(--color-gray-dark);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--color-navy);
    color: var(--color-white);
    padding: 3rem 0 2rem;
}

.footer-content {
    text-align: center;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-family: 'Fredoka', cursive;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--color-yellow);
}

.footer-info p {
    margin: 0.5rem 0;
    color: var(--color-gray-medium);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-content {
        position: relative;
    }

    .hamburger {
        display: flex !important;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        width: 250px;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        border-radius: 10px;
        margin-top: 1rem;
        gap: 0;
        z-index: 1000;
    }

    .nav-links.mobile-active {
        display: flex !important;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        padding: 1rem;
        display: block;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin: 0;
        padding-left: 1rem;
        background: var(--color-gray-light);
        border-radius: 0;
        display: none;
    }

    .nav-dropdown.dropdown-active .dropdown-menu {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-info {
        flex-direction: column;
        gap: 1rem;
    }

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

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Intro Section */
.intro-section {
    padding: 4rem 0;
    background: var(--color-gray-light);
    text-align: center;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray-dark);
    margin-bottom: 1.5rem;
}

/* Pillars Section */
.pillars-section {
    padding: 4rem 0;
    background: var(--color-white);
}

.pillar-detail {
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.pillar-math-detail {
    background: linear-gradient(to right, rgba(244, 208, 63, 0.1), transparent);
    border-left: 5px solid var(--color-yellow);
}

.pillar-money-detail {
    background: linear-gradient(to right, rgba(26, 58, 82, 0.05), transparent);
    border-left: 5px solid var(--color-navy);
}

.pillar-mind-detail {
    background: linear-gradient(to right, rgba(255, 182, 193, 0.2), transparent);
    border-left: 5px solid var(--color-pink);
}

.pillar-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pillar-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-navy);
}

.pillar-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-green);
}

.pillar-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.pillar-list li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--color-gray-dark);
}

.pillar-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-green);
    font-weight: bold;
    font-size: 1.3rem;
}

.pillar-expanded p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-gray-dark);
    margin-bottom: 1.5rem;
}

/* Sticky CTA Banner */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-navy) 100%);
    color: var(--color-white);
    padding: 1rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 1rem;
}

.sticky-cta-text {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.sticky-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cta {
    background: var(--color-white);
    color: var(--color-navy);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-cta:hover {
    background: var(--color-yellow);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Our Story Page Styles */
.our-story-hero {
    background: linear-gradient(135deg, var(--color-light-green) 0%, var(--color-white) 100%);
    padding: 4rem 0 2rem;
    text-align: center;
}

.story-content {
    padding: 4rem 0;
    background: var(--color-white);
}

.story-text {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray-dark);
    margin-bottom: 1.5rem;
}

.story-text h2 {
    font-size: 2.5rem;
    color: var(--color-navy);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.story-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.story-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--color-gray-dark);
}

.story-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-green);
    font-weight: bold;
    font-size: 1.5rem;
}

.founder-signature {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--color-gray-medium);
}

.founder-signature p {
    margin-bottom: 0.5rem;
}

.contact-cta {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-green) 100%);
    color: var(--color-white);
    padding: 4rem 0;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--color-white);
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 10001;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-pink);
    color: var(--color-white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10002;
}

.modal-close:hover {
    background: var(--color-navy);
    transform: rotate(90deg);
}

.modal-body {
    padding: 3rem 2.5rem;
}

.modal-body h2 {
    font-size: 2.5rem;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.modal-body h3 {
    font-size: 1.8rem;
    color: var(--color-green);
    margin-bottom: 1rem;
}

.modal-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray-dark);
    margin-bottom: 1.5rem;
}

.modal-body ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.modal-body ul li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--color-gray-dark);
}

.modal-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-green);
    font-weight: bold;
    font-size: 1.3rem;
}

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

.program-card,
.detail-card,
.feature {
    animation: fadeInUp 0.6s ease-out;
}

/* Pillar Page Styles */
.pillar-hero {
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
}

.pillar-math-hero {
    background: linear-gradient(135deg, rgba(244, 208, 63, 0.2) 0%, var(--color-white) 100%);
}

.pillar-money-hero {
    background: linear-gradient(135deg, rgba(26, 58, 82, 0.1) 0%, var(--color-white) 100%);
}

.pillar-mind-hero {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.3) 0%, var(--color-white) 100%);
}

.pillar-hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-navy);
    margin: 1rem 0;
}

.pillar-icon-large {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.pillar-hero-tagline {
    font-size: 1.5rem;
    color: var(--color-green);
    font-weight: 600;
}

.pillar-page-content {
    padding: 4rem 0;
    background: var(--color-white);
}

.pillar-content-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pillar-content-inner h2 {
    font-size: 2.5rem;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.pillar-content-inner h3 {
    font-size: 1.8rem;
    color: var(--color-green);
    margin-bottom: 1.5rem;
}

.pillar-content-inner h4 {
    font-size: 1.5rem;
    color: var(--color-navy);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-gray-dark);
    margin-bottom: 2rem;
}

.key-highlights {
    background: var(--color-light-green);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.detailed-description {
    margin: 2rem 0;
}

.detailed-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray-dark);
    margin-bottom: 1.5rem;
}

.pillar-cta {
    text-align: center;
    padding: 3rem 0 2rem;
}

.pillar-cta h3 {
    font-size: 2rem;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
}

/* Pricing Page Styles */
.pricing-hero {
    background: linear-gradient(135deg, #E8F5E9 0%, #F0F9FF 50%, #FFFFFF 100%);
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 124, 89, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.pricing-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
}

.pricing-subtitle {
    font-size: 1.3rem;
    color: var(--color-gray-dark);
    margin-bottom: 2rem;
    font-weight: 500;
}

.pricing-info-bar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.pricing-info-bar span {
    background: var(--color-white);
    padding: 1rem 2rem;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.pricing-info-bar span:hover {
    border-color: var(--color-green);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(74, 124, 89, 0.2);
}

/* Schedule Section */
.schedule-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-gray-light) 100%);
}

.month-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: left;
}

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

.week-card {
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-navy) 100%);
    color: var(--color-white);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.week-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.week-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px rgba(74, 124, 89, 0.4);
}

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

.week-number {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.week-dates {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.week-days {
    font-size: 0.9rem;
    opacity: 0.9;
}

.capacity-note {
    text-align: center;
    background: linear-gradient(135deg, var(--color-yellow) 0%, #FFD700 100%);
    padding: 1.5rem 2.5rem;
    border-radius: 50px;
    margin-top: 3rem;
    font-weight: 700;
    color: var(--color-navy);
    box-shadow: 0 8px 25px rgba(244, 208, 63, 0.3);
    border: 2px solid rgba(74, 124, 89, 0.2);
    font-size: 1.1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Pricing Tables Section */
.pricing-tables-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--color-gray-light) 0%, var(--color-white) 100%);
    position: relative;
}

.pricing-tables-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(232, 245, 233, 0.3));
    pointer-events: none;
}

.pricing-notes {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--color-gray-light);
    border-radius: 15px;
    border-left: 5px solid var(--color-green);
}

.pricing-notes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-notes li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    color: var(--color-text);
}

.pricing-notes li strong {
    color: var(--color-navy);
}

.pricing-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-table {
    background: var(--color-white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
}

.pricing-table::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(135deg, var(--color-green), var(--color-navy));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
}

.pricing-table:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(74, 124, 89, 0.25);
}

.pricing-table:hover::after {
    opacity: 1;
}

.pricing-header {
    padding: 2rem;
    color: var(--color-white);
    text-align: center;
}

.pricing-full-week {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-green) 100%);
}

.pricing-three-day {
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-navy) 100%);
}

.pricing-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.pricing-days {
    font-size: 1.1rem;
    opacity: 0.9;
}

.pricing-body {
    padding: 2rem;
}

.price-option {
    text-align: center;
    padding: 1.5rem 0;
}

.price-badge {
    background: var(--color-yellow);
    color: var(--color-navy);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-navy);
    margin: 1rem 0;
}

.price-amount span {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-gray-dark);
}

.price-condition {
    color: var(--color-gray-dark);
    margin-bottom: 0.5rem;
}

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

.price-divider {
    height: 1px;
    background: var(--color-gray-medium);
    margin: 1.5rem 0;
}

/* Discounts Note Section */
.discounts-note-section {
    padding: 2rem 0;
    background: var(--color-gray-light);
}

.discounts-note-box {
    background: linear-gradient(135deg, var(--color-yellow) 0%, var(--color-white) 100%);
    border-left: 5px solid var(--color-green);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.discounts-note-box > strong {
    color: var(--color-navy);
    font-size: 1.1rem;
}

.discount-item {
    color: var(--color-gray-dark);
    font-size: 0.95rem;
}

.discount-item strong {
    color: var(--color-navy);
}

.divider {
    color: var(--color-green);
    font-weight: 800;
    font-size: 1.2rem;
}

/* Fees Section */
.fees-section {
    padding: 4rem 0;
    background: var(--color-gray-light);
}

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

.fees-column {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.fees-column h3 {
    font-size: 1.8rem;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    border-bottom: 3px solid var(--color-green);
    padding-bottom: 0.5rem;
}

.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-gray-medium);
}

.fee-name {
    font-weight: 600;
    color: var(--color-navy);
}

.fee-amount {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-green);
}

.fee-note {
    font-size: 0.9rem;
    color: var(--color-gray-dark);
    font-style: italic;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.payment-deadline {
    background: var(--color-yellow);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 600;
    color: var(--color-navy);
}

/* Guarantee Section */
.guarantee-section {
    padding: 4rem 0;
    background: var(--color-white);
}

.guarantee-box {
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-navy) 100%);
    color: var(--color-white);
    padding: 3rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 15px 50px rgba(74, 124, 89, 0.3);
    position: relative;
    overflow: hidden;
}

.guarantee-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.guarantee-icon {
    font-size: 4rem;
    background: var(--color-white);
    color: var(--color-green);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 800;
}

.guarantee-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.guarantee-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Registration Process Section */
.registration-process-section {
    padding: 4rem 0;
    background: var(--color-white);
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.step-card {
    background: linear-gradient(135deg, var(--color-light-green) 0%, var(--color-white) 100%);
    border: 3px solid var(--color-green);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    min-width: 280px;
    flex: 1;
    max-width: 350px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    position: relative;
}

.step-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--color-green), var(--color-navy));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.step-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px rgba(74, 124, 89, 0.2);
}

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

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

.step-card h3 {
    font-size: 1.5rem;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--color-gray-dark);
    margin-bottom: 0.5rem;
}

.step-note {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--color-green);
    font-weight: 600;
}

.step-arrow {
    font-size: 3rem;
    color: var(--color-green);
    font-weight: 800;
}

.important-info {
    background: var(--color-gray-light);
    padding: 2rem;
    border-radius: 20px;
    margin: 3rem 0;
}

.important-info h3 {
    font-size: 1.8rem;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-grid .info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: 15px;
}

.info-grid .info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-content strong {
    color: var(--color-navy);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--color-gray-dark);
    line-height: 1.6;
}

.required-forms {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--color-navy);
    margin: 2rem 0;
}

.required-forms h3 {
    font-size: 1.8rem;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.required-forms > p {
    color: var(--color-gray-dark);
    margin-bottom: 1rem;
}

.forms-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.forms-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: var(--color-gray-dark);
    font-size: 1.1rem;
}

.forms-list li::before {
    content: '📋';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.forms-note {
    font-size: 0.9rem;
    color: var(--color-green);
    font-style: italic;
    margin-top: 1rem;
}

.payment-methods {
    text-align: center;
    margin-top: 3rem;
}

.payment-methods h3 {
    font-size: 1.8rem;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.payment-methods > p {
    color: var(--color-gray-dark);
    margin-bottom: 2rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.payment-option {
    text-align: center;
}

.payment-badge {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-green) 100%);
    color: var(--color-white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    margin-bottom: 0.5rem;
    box-shadow: 0 8px 25px rgba(74, 124, 89, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

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

.payment-badge:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(74, 124, 89, 0.4);
}

.payment-badge:hover::before {
    left: 100%;
}

.payment-option p {
    color: var(--color-gray-dark);
    font-size: 0.9rem;
}

/* Enrollment CTA Section */
.enrollment-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-navy) 100%);
    color: var(--color-white);
    text-align: center;
}

.enrollment-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.enrollment-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
}

/* Additional Responsive Styles */
@media (max-width: 768px) {
    .sticky-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta-text {
        font-size: 1rem;
    }

    .sticky-cta-buttons {
        justify-content: center;
        width: 100%;
    }

    .pillar-content h2 {
        font-size: 1.8rem;
    }

    .pillar-content h3 {
        font-size: 1.4rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .modal-content {
        width: 95%;
        max-height: 90vh;
    }

    .modal-body {
        padding: 2rem 1.5rem;
    }

    .modal-body h2 {
        font-size: 1.8rem;
    }

    .modal-body h3 {
        font-size: 1.4rem;
    }

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

    .pillar-icon-large {
        font-size: 3rem;
    }

    .pillar-hero-tagline {
        font-size: 1.1rem;
    }

    .pillar-content-inner h2 {
        font-size: 1.8rem;
    }

    .pillar-content-inner h3 {
        font-size: 1.4rem;
    }

    .pillar-content-inner h4 {
        font-size: 1.2rem;
    }

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

    .pricing-subtitle {
        font-size: 1rem;
    }

    .pricing-info-bar {
        flex-direction: column;
        gap: 1rem;
    }

    .schedule-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }

    .week-card {
        padding: 1rem;
    }

    .week-dates {
        font-size: 1.2rem;
    }

    .pricing-tables {
        grid-template-columns: 1fr;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .guarantee-content h3 {
        font-size: 1.5rem;
    }

    .enrollment-cta-section h2 {
        font-size: 1.8rem;
    }

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

    .discounts-note-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 1.5rem;
    }

    .discounts-note-box > strong {
        font-size: 1rem;
    }

    .discount-item {
        font-size: 0.9rem;
    }

    .divider {
        display: none;
    }

    .process-steps {
        flex-direction: column;
        gap: 1rem;
    }

    .step-arrow {
        transform: rotate(90deg);
        font-size: 2rem;
    }

    .step-card {
        min-width: 100%;
    }

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

    .payment-icons {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-tables,
.schedule-grid,
.process-steps,
.fees-grid,
.important-info,
.required-forms,
.payment-methods {
    animation: fadeInUp 0.8s ease-out;
}

.section-title {
    position: relative;
    padding-bottom: 1rem;
}

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

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Add depth to sections */
.pricing-tables-section,
.schedule-section,
.registration-process-section {
    position: relative;
}

/* Enhanced gradient backgrounds */
.fees-section {
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-gray-light) 50%, var(--color-white) 100%);
}

/* Daily Schedule Page Styles */
.schedule-hero {
    background: linear-gradient(135deg, #E8F5E9 0%, #F0F9FF 50%, #FFFFFF 100%);
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.schedule-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 124, 89, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.schedule-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
}

.schedule-subtitle {
    font-size: 1.3rem;
    color: var(--color-gray-dark);
    margin-bottom: 2rem;
    font-weight: 500;
}

.schedule-info-bar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.schedule-info-bar span {
    background: var(--color-white);
    padding: 1rem 2rem;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.schedule-info-bar span:hover {
    border-color: var(--color-green);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(74, 124, 89, 0.2);
}

/* Sessions Section */
.sessions-section {
    padding: 5rem 0;
    background: var(--color-white);
}

.sessions-section.alternate-bg {
    background: var(--color-gray-light);
}

/* Schedule Table */
.schedule-table {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.schedule-row {
    display: grid;
    grid-template-columns: 150px 2fr 150px 2fr;
    border-bottom: 1px solid var(--color-gray-medium);
    transition: all 0.3s;
}

.schedule-row:hover {
    background: var(--color-light-green);
    transform: translateX(5px);
}

.schedule-row.schedule-header {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-green) 100%);
    color: var(--color-white);
    font-weight: 700;
}

.schedule-row.schedule-header:hover {
    transform: none;
}

.schedule-cell {
    padding: 1.5rem 1rem;
    display: flex;
    align-items: center;
    border-right: 1px solid var(--color-gray-medium);
}

.schedule-cell:nth-child(3) {
    justify-content: center;
}

.schedule-cell:last-child {
    border-right: none;
}

.schedule-header .schedule-cell {
    border-right-color: rgba(255, 255, 255, 0.2);
}

.time-cell {
    font-weight: 700;
    color: var(--color-navy);
    background: rgba(244, 208, 63, 0.1);
    font-size: 1.1rem;
}

.schedule-header .time-cell {
    background: transparent;
    color: var(--color-white);
}

/* Pillar Badges */
.pillar-math {
    background: linear-gradient(135deg, rgba(244, 208, 63, 0.2), rgba(244, 208, 63, 0.4));
    color: var(--color-navy);
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-align: center;
}

.pillar-money {
    background: linear-gradient(135deg, rgba(26, 58, 82, 0.2), rgba(26, 58, 82, 0.4));
    color: var(--color-navy);
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-align: center;
}

.pillar-mind {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.3), rgba(255, 182, 193, 0.5));
    color: var(--color-navy);
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-align: center;
}

.pillar-all {
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.2), rgba(74, 124, 89, 0.4));
    color: var(--color-navy);
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-align: center;
}

/* SME Rotation Section */
.sme-rotation-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-green) 100%);
    color: var(--color-white);
}

.sme-rotation-section .section-title,
.sme-rotation-section .section-subtitle {
    color: var(--color-white);
}

.sme-rotation-section .section-title::after {
    background: linear-gradient(90deg, var(--color-yellow), var(--color-white));
}

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

.sme-card {
    background: var(--color-white);
    color: var(--color-navy);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.sme-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-yellow), var(--color-pink));
}

.sme-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.sme-day {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-green);
    margin-bottom: 1rem;
}

.sme-expert {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

.sme-topic {
    font-size: 1rem;
    color: var(--color-gray-dark);
    font-style: italic;
}

/* Schedule Notes Section */
.schedule-notes-section {
    padding: 5rem 0;
    background: var(--color-gray-light);
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.note-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.note-card:hover {
    border-color: var(--color-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 124, 89, 0.2);
}

.note-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.note-card h3 {
    font-size: 1.5rem;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.note-card p {
    color: var(--color-gray-dark);
    line-height: 1.7;
}

/* Schedule CTA Section */
.schedule-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-navy) 100%);
    color: var(--color-white);
    text-align: center;
}

.schedule-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.schedule-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

/* Responsive Styles for Schedule Page */
@media (max-width: 768px) {
    .schedule-hero h1 {
        font-size: 2rem;
    }

    .schedule-subtitle {
        font-size: 1rem;
    }

    .schedule-info-bar {
        flex-direction: column;
        gap: 1rem;
    }

    .schedule-row {
        grid-template-columns: 1fr;
        border-left: 5px solid var(--color-green);
    }

    .schedule-cell {
        border-right: none;
        border-bottom: 1px solid var(--color-gray-medium);
        padding: 1rem;
    }

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

    .time-cell {
        font-size: 1.2rem;
        background: linear-gradient(135deg, rgba(244, 208, 63, 0.3), rgba(244, 208, 63, 0.1));
    }

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

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

    .schedule-cta-section h2 {
        font-size: 1.8rem;
    }
}

/* Facility Page Styles */
.facility-hero {
    background: linear-gradient(135deg, #E8F5E9 0%, #F0F9FF 50%, #FFFFFF 100%);
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.facility-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 124, 89, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.facility-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.facility-name {
    font-size: 2rem;
    color: var(--color-green);
    margin-bottom: 0.5rem;
}

.facility-address {
    font-size: 1.3rem;
    color: var(--color-gray-dark);
    font-weight: 500;
}

/* Why Location Section */
.why-location-section {
    padding: 5rem 0;
    background: var(--color-white);
}

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

.location-feature {
    background: linear-gradient(135deg, var(--color-light-green) 0%, var(--color-white) 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.location-feature:hover {
    transform: translateY(-10px);
    border-color: var(--color-green);
    box-shadow: 0 15px 40px rgba(74, 124, 89, 0.2);
}

.feature-checkmark {
    width: 60px;
    height: 60px;
    background: var(--color-green);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.location-feature h3 {
    font-size: 1.5rem;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.location-feature p {
    color: var(--color-gray-dark);
    line-height: 1.6;
}

/* Facility Highlights Section */
.facility-highlights-section {
    padding: 5rem 0;
    background: var(--color-gray-light);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.highlight-card:hover {
    border-color: var(--color-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 124, 89, 0.2);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    font-size: 1.3rem;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.highlight-card p {
    color: var(--color-gray-dark);
    line-height: 1.7;
}

/* Pros for Parents Section */
.pros-parents-section {
    padding: 5rem 0;
    background: var(--color-white);
}

.pros-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pro-card {
    background: linear-gradient(135deg, var(--color-light-green) 0%, var(--color-white) 100%);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border-left: 5px solid var(--color-green);
}

.pro-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(74, 124, 89, 0.2);
}

.pro-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.pro-content h3 {
    font-size: 1.4rem;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.pro-content p {
    color: var(--color-gray-dark);
    line-height: 1.7;
}

/* Location Map Section */
.location-map-section {
    padding: 5rem 0;
    background: var(--color-gray-light);
}

.map-container {
    margin-top: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    overflow: hidden;
}

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

.location-info-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.location-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 124, 89, 0.2);
}

.location-info-card h3 {
    font-size: 1.5rem;
    color: var(--color-navy);
    margin-bottom: 1rem;
    border-bottom: 3px solid var(--color-green);
    padding-bottom: 0.5rem;
}

.location-info-card p {
    color: var(--color-gray-dark);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.location-info-card a {
    color: var(--color-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.location-info-card a:hover {
    color: var(--color-navy);
}

/* Photo Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: var(--color-white);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.photo-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--color-light-green) 0%, var(--color-gray-light) 100%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px dashed var(--color-green);
    transition: all 0.3s;
}

.photo-placeholder:hover {
    transform: scale(1.05);
    border-color: var(--color-navy);
}

.photo-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.photo-placeholder p {
    color: var(--color-navy);
    font-weight: 600;
}

.photo-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    background: var(--color-white);
    cursor: pointer;
}

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

.photo-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.photo-item p {
    padding: 1rem;
    text-align: center;
    color: var(--color-navy);
    font-weight: 600;
    margin: 0;
    background: var(--color-white);
}

.gallery-note {
    text-align: center;
    margin-top: 2rem;
    color: var(--color-gray-dark);
    font-style: italic;
    font-size: 1.1rem;
}

/* Photo Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--color-white);
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--color-yellow);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    transition: all 0.3s;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(0, 0, 0, 0.8);
    color: var(--color-yellow);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    font-size: 1.3rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 30px;
    border-radius: 10px;
    max-width: 80%;
    text-align: center;
}

/* Visit CTA Section */
.visit-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-navy) 100%);
    color: var(--color-white);
    text-align: center;
}

.visit-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.visit-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

/* Tablet view - 2 columns for photo grid and pros grid */
@media (max-width: 1024px) and (min-width: 769px) {
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* Responsive Styles for Facility Page */
@media (max-width: 768px) {
    .facility-hero h1 {
        font-size: 2rem;
    }

    .facility-name {
        font-size: 1.5rem;
    }

    .facility-address {
        font-size: 1rem;
    }

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

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

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

    .location-details {
        grid-template-columns: 1fr;
    }

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

    .lightbox-image {
        max-width: 95%;
        max-height: 70vh;
    }

    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 35px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 25px;
        padding: 10px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-caption {
        bottom: 15px;
        font-size: 1rem;
        padding: 10px 20px;
        max-width: 90%;
    }

    .visit-cta-section h2 {
        font-size: 1.8rem;
    }
}

/* Projected Outcomes Page Styles */
.outcomes-hero {
    background: linear-gradient(135deg, #E8F5E9 0%, #F0F9FF 50%, #FFFFFF 100%);
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.outcomes-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 124, 89, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.outcomes-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.outcomes-subtitle {
    font-size: 1.3rem;
    color: var(--color-gray-dark);
    font-weight: 500;
}

/* Walkaway Section */
.walkaway-section {
    padding: 5rem 0;
    background: var(--color-white);
}

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

.walkaway-card {
    background: linear-gradient(135deg, var(--color-light-green) 0%, var(--color-white) 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.walkaway-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-yellow), var(--color-pink));
}

.walkaway-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--color-green);
    box-shadow: 0 15px 40px rgba(74, 124, 89, 0.2);
}

.walkaway-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.walkaway-card h3 {
    font-size: 1.5rem;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.walkaway-card p {
    color: var(--color-gray-dark);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Pros Section */
.pros-section {
    padding: 5rem 0;
    background: var(--color-gray-light);
}

.competitive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.competitive-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border-left: 5px solid var(--color-green);
}

.competitive-card:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(74, 124, 89, 0.2);
}

.competitive-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-green);
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-light-green) 0%, var(--color-white) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(74, 124, 89, 0.15);
}

.competitive-content h3 {
    font-size: 1.4rem;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.competitive-content p {
    color: var(--color-gray-dark);
    line-height: 1.7;
}

/* ROI Comparison Section */
.roi-comparison-section {
    padding: 5rem 0;
    background: var(--color-white);
}

.roi-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}

.roi-card {
    background: var(--color-white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.roi-card.traditional {
    border: 3px solid var(--color-gray-medium);
}

.roi-card.skillsprout {
    border: 3px solid var(--color-green);
    background: linear-gradient(135deg, var(--color-light-green) 0%, var(--color-white) 100%);
}

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

.roi-card h3 {
    font-size: 1.8rem;
    color: var(--color-navy);
    margin-bottom: 2rem;
    text-align: center;
}

.roi-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.roi-item {
    background: var(--color-white);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--color-green);
    font-size: 1.05rem;
}

.roi-card.traditional .roi-item {
    border-left-color: var(--color-gray-dark);
}

.roi-outcome {
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-green);
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.1), transparent);
    border-radius: 10px;
}

.roi-card.traditional .roi-outcome {
    color: var(--color-gray-dark);
    background: linear-gradient(135deg, rgba(102, 102, 102, 0.1), transparent);
}

.roi-divider {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-navy);
    background: linear-gradient(135deg, var(--color-yellow) 0%, var(--color-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Investment CTA Section */
.investment-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-green) 100%);
}

.investment-box {
    background: var(--color-white);
    padding: 4rem 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.investment-box h2 {
    font-size: 2.5rem;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
}

.investment-box p {
    font-size: 1.2rem;
    color: var(--color-gray-dark);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles for Outcomes Page */
@media (max-width: 768px) {
    .outcomes-hero h1 {
        font-size: 2rem;
    }

    .outcomes-subtitle {
        font-size: 1rem;
    }

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

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

    .competitive-card {
        flex-direction: column;
        text-align: center;
        border-left: none;
        border-top: 5px solid var(--color-green);
    }

    .competitive-number {
        margin: 0 auto;
    }

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

    .roi-divider {
        transform: rotate(90deg);
        font-size: 2rem;
    }

    .investment-box {
        padding: 2.5rem 1.5rem;
    }

    .investment-box h2 {
        font-size: 1.8rem;
    }

    .investment-box p {
        font-size: 1rem;
    }
}

/* Our Vision Page Styles */
.vision-hero {
    background: linear-gradient(135deg, #E8F5E9 0%, #F0F9FF 50%, #FFFFFF 100%);
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vision-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 124, 89, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.vision-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    position: relative;
    font-family: 'Fredoka', cursive;
}

.vision-intro {
    font-size: 1.4rem;
    color: var(--color-navy);
    max-width: 900px;
    margin: 0 auto 2rem;
    font-weight: 600;
    line-height: 1.8;
}

.vision-statement {
    font-size: 1.2rem;
    color: var(--color-gray-dark);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Compound Skills Section */
.compound-skills-section {
    padding: 5rem 0;
    background: var(--color-white);
}

.vision-framework {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.framework-card {
    background: var(--color-white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.framework-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.problem-card::before {
    background: linear-gradient(90deg, var(--color-pink), var(--color-navy));
}

.vision-card::before {
    background: linear-gradient(90deg, var(--color-green), var(--color-yellow));
}

.framework-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.framework-label {
    background: var(--color-navy);
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.vision-card .framework-label {
    background: var(--color-green);
}

.framework-card p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-gray-dark);
}

.framework-card strong {
    color: var(--color-navy);
    font-weight: 700;
}

.vision-lead {
    font-weight: 600;
    color: var(--color-navy);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Vision Pillars */
.vision-pillars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.vision-pillar {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, var(--color-light-green) 0%, var(--color-white) 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--color-green);
    transition: all 0.3s;
}

.vision-pillar:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(74, 124, 89, 0.15);
}

.vision-check {
    width: 40px;
    height: 40px;
    background: var(--color-green);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.vision-pillar-content strong {
    display: block;
    color: var(--color-navy);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.vision-pillar-content p {
    color: var(--color-gray-dark);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

/* Why Ages 7-10 Section */
.why-ages-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-navy) 100%);
    color: var(--color-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.why-ages-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.why-ages-content {
    position: relative;
    z-index: 1;
}

.why-ages-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'Fredoka', cursive;
}

.ages-tagline {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 500;
}

/* Long Game Section */
.long-game-section {
    padding: 5rem 0;
    background: var(--color-gray-light);
}

.long-game-content {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.long-game-text {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--color-green);
    margin-bottom: 3rem;
}

.long-game-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-gray-dark);
    margin: 0;
}

/* Timeline Visual */
.timeline-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 3rem 2rem;
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.timeline-point {
    background: linear-gradient(135deg, var(--color-light-green) 0%, var(--color-white) 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 3px solid var(--color-green);
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    transition: all 0.3s;
    position: relative;
}

.timeline-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 124, 89, 0.2);
}

.timeline-age {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-green);
    margin-bottom: 1rem;
}

.timeline-label {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.timeline-desc {
    font-size: 1.05rem;
    color: var(--color-gray-dark);
    line-height: 1.6;
}

.timeline-arrow {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-green);
}

/* Vision CTA Buttons */
.vision-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

/* Vision Statement Section */
.vision-statement-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-green) 100%);
    position: relative;
    overflow: hidden;
}

.vision-statement-section::before {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.vision-statement-box {
    position: relative;
    z-index: 1;
    background: var(--color-white);
    padding: 4rem 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin: 0 auto;
}

.vision-quote-icon {
    font-size: 6rem;
    font-family: Georgia, serif;
    color: var(--color-yellow);
    line-height: 0.5;
    margin-bottom: 2rem;
    opacity: 0.7;
}

.vision-statement-box h3 {
    font-size: 2.5rem;
    color: var(--color-navy);
    margin-bottom: 1rem;
    font-family: 'Fredoka', cursive;
}

.vision-statement-box p {
    font-size: 1.8rem;
    color: var(--color-green);
    font-weight: 700;
    margin-bottom: 2.5rem;
    font-family: 'Fredoka', cursive;
}

.vision-cta {
    margin-top: 2rem;
}

/* Responsive Styles for Vision Page */
@media (max-width: 768px) {
    .vision-hero h1 {
        font-size: 2rem;
    }

    .vision-intro {
        font-size: 1.1rem;
    }

    .vision-statement {
        font-size: 1rem;
    }

    .vision-framework {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .framework-card {
        padding: 2rem 1.5rem;
    }

    .framework-label {
        font-size: 1rem;
    }

    .framework-card p {
        font-size: 1.05rem;
    }

    .vision-lead {
        font-size: 1.1rem;
    }

    .vision-pillar {
        padding: 1.25rem;
    }

    .vision-pillar-content strong {
        font-size: 1.1rem;
    }

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

    .why-ages-content h2 {
        font-size: 2rem;
    }

    .ages-tagline {
        font-size: 1.1rem;
    }

    .long-game-text {
        padding: 2rem 1.5rem;
    }

    .long-game-text p {
        font-size: 1.05rem;
    }

    .timeline-visual {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .timeline-point {
        min-width: 100%;
    }

    .timeline-arrow {
        transform: rotate(90deg);
        font-size: 2rem;
    }

    .vision-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .vision-statement-box {
        padding: 2.5rem 1.5rem;
    }

    .vision-quote-icon {
        font-size: 4rem;
    }

    .vision-statement-box h3 {
        font-size: 1.8rem;
    }

    .vision-statement-box p {
        font-size: 1.3rem;
    }
}
