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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #555;
}

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

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

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #DB5627;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #DB5627;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #DB5627;
}

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

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

/* Language Toggle */
.language-toggle {
    background: none;
    border: 2px solid #DB5627;
    color: #DB5627;
    padding: 5px 10px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.language-toggle:hover {
    background: #DB5627;
    color: white;
}

#other-lang {
    opacity: 0.6;
}

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

.btn-primary {
    background: linear-gradient(135deg, #DB5627, #B8451E);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #B8451E, #DB5627);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(219, 86, 39, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #DB5627;
    border: 2px solid #DB5627;
}

.btn-secondary:hover {
    background: #DB5627;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #DB5627;
    border: 2px solid #DB5627;
}

.btn-outline:hover {
    background: #DB5627;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FF8A65, #DB5627);
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-style: italic;
    opacity: 1;
    color: white;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 1;
    color: white;
}

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



/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #FF8A65, #DB5627);
    color: white;
    padding: 120px 0 60px;
    margin-top: 70px;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 1;
    color: white;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

/* Concept Section */
.concept {
    background: #f8f9fa;
}

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

.concept-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

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

/* Activities Section */
.activities-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.activities-reasons {
    width: 100%;
    display: block;
}

.reason-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-5px);
}

.reason-icon {
    font-size: 3rem;
    min-width: 60px;
    text-align: center;
}

.reason-content {
    flex: 1;
}

.reason-content p {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2c3e50;
    margin: 0;
    line-height: 1.4;
}

/* Kids page: make "Why Enroll My Child?" cards match the card style above */
.activities .activities-reasons {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

@media (min-width: 992px) {
    .activities .activities-reasons {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

.activities .reason-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 2.5rem 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.activities .reason-content {
    width: 100%;
}

.activities .reason-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.activities .reason-title {
    font-size: 1.4rem;
    color: #1f2a36;
    margin: 0;
}

.activities .reason-desc {
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.7;
    color: #2c3e50;
}

/* Target Section */
.target {
    background: #f8f9fa;
}

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

.target-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

/* Meetings Section */
.meetings-info {
    max-width: 600px;
    margin: 0 auto;
}

.meeting-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.meeting-date {
    background: linear-gradient(135deg, #DB5627, #B8451E);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    min-width: 100px;
}

.month {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.year {
    display: block;
    font-size: 1rem;
    opacity: 0.8;
}

/* Pricing Section */
.pricing {
    background: #f8f9fa;
}

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

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

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

.pricing-card.popular {
    border: 3px solid #DB5627;
}

.pricing-card.premium {
    border: 3px solid #FF8A65;
}

.popular-badge,
.savings-badge,
.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #DB5627;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.savings-badge {
    background: #FF8A65;
}

/* Enhanced Best Value badge */
.pricing-badge {
    background: linear-gradient(135deg, #FF6B00, #FF8A00);
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 25px;
    box-shadow: 0 3px 15px rgba(255, 107, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 3px 15px rgba(255, 107, 0, 0.4);
        transform: translateX(-50%) scale(1);
    }
    100% {
        box-shadow: 0 5px 20px rgba(255, 107, 0, 0.6);
        transform: translateX(-50%) scale(1.02);
    }
}

.pricing-header {
    margin-bottom: 1rem;
}

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

.pricing-price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #DB5627;
}

.period {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.highlight-feature {
    background: linear-gradient(135deg, #FF8A65, #DB5627);
    color: white !important;
    font-weight: bold;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem !important;
    text-align: center;
    box-shadow: 0 3px 10px rgba(219, 86, 39, 0.3);
    border: none !important;
}

.pricing-btn {
    width: 100%;
    margin-bottom: 1rem;
}

.pricing-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.launch-price-note {
    font-size: 0.8rem;
    color: #e67e22;
    background: rgba(230, 126, 34, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    margin: 0.5rem 0;
    text-align: center;
    font-weight: 500;
}

.age-pricing-note {
    font-size: 0.85rem;
    color: #3498db;
    background: rgba(52, 152, 219, 0.1);
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    margin: 0.3rem 0;
    text-align: center;
    font-weight: 600;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

/* Comparison Table */
.comparison-table {
    overflow-x: auto;
    margin-top: 2rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background: #DB5627;
    color: white;
    font-weight: 600;
}

.table-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

/* Subscription Steps */
.subscription-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-number {
    background: #DB5627;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Payment Methods */
.payment-methods {
    background: #f8f9fa;
    text-align: center;
}

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

.payment-item {
    background: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.payment-security {
    color: #27ae60;
    font-weight: 600;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-item h4 {
    color: #DB5627;
    margin-bottom: 1rem;
}

/* About Page Specific Styles */
.mission {
    background:
        radial-gradient(1200px 400px at 10% -10%, #fff9f6 0%, transparent 60%),
        radial-gradient(1200px 400px at 90% 110%, #f3f9ff 0%, transparent 60%),
        #f8f9fa;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-statement {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #333;
}

.mission-values {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.value-icon {
    font-size: 2rem;
    min-width: 50px;
}

.mission-logo {
    max-width: 100%;
    height: auto;
}

/* New Mission Content Styles */
.mission-story {
    margin-bottom: 2.5rem;
    max-width: 900px;
}

.mission-intro {
    font-size: 1.35rem;
    color: #1f2a36;
    line-height: 1.9;
    margin: 0 auto 1.25rem auto;
    font-weight: 600;
}

.mission-problem {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin: 1.25rem auto 1.75rem auto;
    font-style: normal;
    background: #ffffff;
    padding: 1rem 1.25rem;
    border-left: 4px solid #DB5627;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    max-width: 1000px;
}

.mission-solution {
    display: inline-block;
    font-size: 1.1rem;
    color: #DB5627;
    margin: 0.75rem 0 1.25rem 0;
    text-align: left;
    padding: 0.35rem 0.65rem;
    background: #fff0ea;
    border-radius: 6px;
}

.mission-approach {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #2f3a45;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-weight: 500;
    text-align: left;
    background: #eef6ff;
    padding: 1.25rem 1.5rem;
    border-radius: 14px;
    border: 1px solid #dbe9ff;
}

/* Teens block styled to visually pair with kids block but distinct */
.mission-teens {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    color: #2f3a45;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    text-align: left;
    background: #fff6f3;
    padding: 1.25rem 1.5rem;
    border-radius: 14px;
    border: 1px solid #ffd9cc;
}

.mission-icon {
    font-size: 2.1rem;
    flex-shrink: 0;
}

.mission-text p {
    margin: 0;
}

.why-it-works {
    margin-bottom: 2rem;
}

.why-title {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: bold;
    text-align: center;
}

.benefit-item {
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-left: 4px solid #DB5627;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-item h4 {
    margin: 0 0 0.8rem 0;
    color: #DB5627;
    font-size: 1.1rem;
    font-weight: bold;
}

.benefit-item p {
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.mission-conclusion {
    font-size: 1.3rem;
    color: #DB5627;
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fff5f2, #ffe4dc);
    border-radius: 12px;
    font-weight: 600;
}

/* New Mission Cards */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 1rem auto 0 auto;
}

.mission-card {
    background: white;
    border: 1px solid #e6ecf2;
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.mission-badge {
    display: inline-block;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}

.mission-badge.kids {
    background: #e6f3ff;
    color: #1f5fa8;
}

.mission-badge.teens {
    background: #ffe9e2;
    color: #b24a2f;
}

.mission-card h3 {
    margin: 0 0 0.5rem 0;
    color: #1f2a36;
}

.mission-card p {
    margin-bottom: 0.75rem;
}

.mission-list {
    margin: 0;
    padding-left: 1.1rem;
    color: #555;
}

.mission-list li {
    margin: 0.3rem 0;
}

/* Teacher Section */
.teacher-profile {
    max-width: 800px;
    margin: 0 auto;
}

.teacher-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.teacher-avatar {
    font-size: 4rem;
    background: #DB5627;
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.teacher-credentials {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.credential {
    background: #ecf0f1;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.teacher-story,
.teacher-experience,
.teacher-philosophy {
    margin-bottom: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

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

.experience-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 10px;
}

.experience-country {
    font-size: 2rem;
}

blockquote {
    font-style: italic;
    font-size: 1.1rem;
    padding: 1rem;
    border-left: 4px solid #DB5627;
    background: #ecf0f1;
    margin: 1rem 0;
}

cite {
    font-weight: 600;
    color: #DB5627;
}

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

.method-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

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

.method-benefits {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.method-benefits li {
    padding: 0.3rem 0;
    color: #555;
}

.method-benefits li::before {
    content: "✓ ";
    color: #27ae60;
    font-weight: bold;
}

/* Why Choose Us */
.why-choose {
    background: #f8f9fa;
}

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

.reason-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.reason-number {
    background: #DB5627;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.testimonial-content {
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    font-size: 2rem;
    background: #DB5627;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-info h5 {
    margin-bottom: 0.2rem;
}

.author-info span {
    font-size: 0.9rem;
    color: #666;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #FF8A65, #DB5627);
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 1;
    color: white;
}

.cta * {
    color: white !important;
}

/* White buttons on orange backgrounds */
.hero .btn-secondary,
.cta .btn:not(.btn-primary),
.page-hero .btn {
    background: white;
    color: #DB5627;
    border: 2px solid white;
}

.hero .btn-secondary:hover,
.cta .btn:not(.btn-primary):hover,
.page-hero .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #B8451E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

/* Fix emoji alignment in contact info */
.footer-section .contact-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #DB5627;
}

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

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    margin: 0;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-bottom: 1px solid #eee;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #333;
}

.modal-body {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #DB5627;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 999;
        padding: 1rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-link {
        padding: 1rem;
        display: block;
        border-bottom: 1px solid #eee;
    }
    
    .nav-menu .language-toggle {
        margin: 1rem auto;
        display: block;
        width: fit-content;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    

    
    .activities-content {
        padding: 0 1rem;
    }
    
    .reason-item {
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .reason-icon {
        font-size: 2.5rem;
        min-width: 50px;
    }
    
    .reason-content p {
        font-size: 1.1rem;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .mission-intro {
        font-size: 1.2rem;
    }
    
    .mission-approach {
        font-size: 1.1rem;
        padding: 1.2rem;
    }
    
    .why-title {
        font-size: 1.3rem;
    }
    
    .benefit-item {
        padding: 1rem;
    }
    
    .benefit-item h4 {
        font-size: 1rem;
    }
    
    .mission-conclusion {
        font-size: 1.2rem;
        padding: 1.2rem;
    }
    
    .teacher-header {
        flex-direction: column;
        text-align: center;
    }
    
    .meeting-card {
        flex-direction: column;
        text-align: center;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .payment-icons {
        flex-direction: column;
        align-items: center;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .reason-item {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .subscription-steps {
        grid-template-columns: 1fr;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Programs Overview Styles */
.programs-overview {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.program-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

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

.program-age {
    color: #DB5627;
    font-weight: 600;
    margin-bottom: 1rem;
}

.program-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.program-highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.program-highlights li {
    padding: 0.5rem 0;
    color: #555;
}

/* Teens Page Specific Styles */
.teens-intro {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.intro-highlight {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    background: linear-gradient(135deg, #fff5f2, #ffe4dc);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #DB5627;
}

.teens-included {
    padding: 4rem 0;
}

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

.included-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.included-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.teens-why {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.why-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    overflow: hidden;
}

.why-icon {
    font-size: 2.5rem;
    min-width: 60px;
    margin-bottom: 0.25rem;
}

.why-item h3 {
    margin: 0.25rem 0 0.25rem 0;
    color: #1e2a36;
}

.why-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.why-content h3 {
    margin: 0 0 0.5rem 0;
    color: #333;
}

.why-content p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Media query for better grid layout on larger screens */
@media (min-width: 992px) {
    .why-reasons {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1200px;
        margin: 3rem auto 0;
    }
}

.teens-details {
    padding: 4rem 0;
}

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

.detail-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.detail-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.teens-results {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fff5f2, #ffe4dc);
    text-align: center;
}

.results-content {
    max-width: 600px;
    margin: 0 auto;
}

.results-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    line-height: 1.6;
}

/* Stages Page Styles */
.stages-coming-soon {
    padding: 6rem 0;
    text-align: center;
    background: #f8f9fa;
}

.coming-soon-content {
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-icon {
    margin-bottom: 2rem;
}

.construction-icon {
    font-size: 4rem;
}

.coming-soon-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.coming-soon-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.coming-soon-subtitle {
    font-size: 1rem;
    color: #666;
}

.stages-preview {
    padding: 4rem 0;
}

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

.preview-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.preview-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stages-contact-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fff5f2, #ffe4dc);
    text-align: center;
}

.contact-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Home Page Specific Styles */
.why-choose {
    padding: 4rem 0;
}

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

.free-trial {
    padding: 4rem 0;
    background: linear-gradient(135deg, #DB5627, #FF8A65);
    color: white;
    text-align: center;
}

.trial-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white !important;
}

.trial-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: white !important;
}

.location-contact {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.location-info h3 {
    color: #DB5627;
    margin-bottom: 0.5rem;
}

.location-info p {
    margin-bottom: 1.5rem;
    color: #555;
}

.contact-cta h3 {
    color: #333;
    margin-bottom: 1rem;
}

.contact-cta p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Subscribe Page Styles */
.program-selection {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.subscribe-form-section {
    padding: 4rem 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.subscribe-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #DB5627;
}

.faq {
    padding: 4rem 0;
    background: #f8f9fa;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: white;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #DB5627;
    font-weight: bold;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive Styles for New Components */
@media (max-width: 768px) {
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .program-card {
        margin-bottom: 1rem;
    }
}

/* Stages page styling */
.stages-coming-soon {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.coming-soon-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.coming-soon-icon {
    margin-bottom: 1.5rem;
}

.construction-icon {
    font-size: 3rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.coming-soon-title {
    color: #DB5627;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.coming-soon-message {
    font-size: 1.2rem;
    color: #495057;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.coming-soon-subtitle {
    color: #6c757d;
    font-size: 1rem;
    font-style: italic;
}

.stages-contact-cta {
    background: linear-gradient(135deg, #DB5627 0%, #e67e50 100%);
    padding: 4rem 0;
    color: white;
}

.contact-cta-content {
    text-align: center;
}

.contact-cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.contact-cta-content p {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-buttons .btn {
    min-width: 150px;
}

@media (max-width: 768px) {
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .coming-soon-content {
        margin: 0 1rem;
        padding: 1.5rem;
    }
} 