/* styles.css */
:root {
    --primary: #272838;
    --secondary: #F3DE8A;
    --accent: #EB9486;
    --light: #f9f9f9;
    --dark: #1a1a1a;
    --gray: #6c757d;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--primary);
    background-color: var(--light);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--primary);
    color: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--accent);
    transform: translateY(-3px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-link {
    padding: 10px 15px;
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: calc(100% - 30px);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--primary) 0%, #3a3a5c 100%);
    color: var(--light);
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.hero-image {
    flex: 1;
    animation: fadeIn 1.5s ease;
}

.hero-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.hero-img:hover {
    transform: perspective(1000px) rotateY(0);
}

/* About Section */
.about {
    padding: 100px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.about-img:hover {
    transform: scale(1.02);
}

.about-text {
    flex: 1;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-text {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: #f5f5f7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary);
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* Languages Section */
/* General Styling for the Section */
.languages-showcase {
    background-color: #f8f9fa; /* Light, elegant background */
    padding: 120px 0;
    text-align: center;
}

.showcase-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50; /* Deep, professional blue */
    margin-bottom: 25px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d; /* Muted gray for subtitle */
    max-width: 600px;
    margin: 0 auto;
}

/* Grid for the Language Cards */
.languages-grid-refined {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

/* Individual Language Card Styling */
.language-card-refined {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: left;
    overflow: hidden; /* Ensures content stays within rounded corners */
}

.language-card-refined:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 40px rgba(44, 62, 80, 0.1);
}

/* Card Header */
.card-header {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #eef2f5;
}

.card-header svg {
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

/* Card Body */
.card-body {
    padding: 25px 30px;
    flex-grow: 1; /* Allows body to take up available space */
}

.card-body p {
    font-size: 1rem;
    line-height: 1.6;
    color: #7f8c8d;
    margin: 0;
}

/* Card Footer with CTA */
.card-footer {
    padding: 20px 30px;
    background-color: #f8f9fa;
}

.cta-link {
    color: #3498db; /* Elegant blue for links */
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease, transform 0.3s ease;
}

.cta-link .arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta-link:hover {
    color: #2980b9;
}

.cta-link:hover .arrow {
    transform: translateX(5px);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: #f5f5f7;
}

.testimonials-slider {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial.active {
    opacity: 1;
}

.testimonial-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.control-btn {
    background: var(--primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.control-btn:hover {
    background: var(--accent);
    color: var(--primary);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #3a3a5c 100%);
    color: var(--light);
    text-align: center;
}

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

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

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

.class-hero {
            padding: 150px 0 100px;
            background: linear-gradient(135deg, var(--primary) 0%, #3a3a5c 100%);
            color: var(--light);
            text-align: center;
        }
        
        .class-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease;
        }
        
        .class-hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            opacity: 0.9;
            animation: fadeInUp 1.2s ease;
        }
        
        .learning-pathway {
    padding: 120px 0;
    background-color: #f7f9fc;
    position: relative;
    overflow: hidden;
}

.pathway-header {
    text-align: center;
    margin-bottom: 80px;
}

.pathway-header .section-title {
    font-size: 2.8rem;
    color: var(--text-dark);
}

.pathway-header .section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 15px auto 0;
}

.pathway-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
}

/* The connecting line - for desktop view */
@media (min-width: 1024px) {
    .pathway-grid::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 15%;
        right: 15%;
        height: 2px;
        background: repeating-linear-gradient(90deg, #dbe2e8, #dbe2e8 10px, transparent 10px, transparent 20px);
        transform: translateY(-50%);
        z-index: 0;
    }
}

.level-pathway-card {
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    transition: var(--transition-fast);
    overflow: hidden;
    border: 1px solid #eef2f5;
}

.level-pathway-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.card-border {
    height: 6px;
    width: 100%;
    background: var(--level1-color);
    transition: var(--transition-fast);
}

.level-pathway-card:nth-child(2) .card-border { background: var(--level2-color); }
.level-pathway-card:nth-child(3) .card-border { background: var(--level3-color); }

.card-content {
    padding: 30px;
    text-align: center;
    position: relative;
}

.level-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 800;
    color: #eef2f5;
    z-index: -1;
    transition: var(--transition-fast);
}

.level-pathway-card:hover .level-number {
    color: #e0e8ef;
}

.level-icon {
    margin-bottom: 20px;
    transition: transform var(--transition-fast);
}

.level-pathway-card:hover .level-icon {
    transform: scale(1.1);
}

.level-pathway-card:nth-child(1) .level-icon svg path { fill: var(--level1-color); }
.level-pathway-card:nth-child(2) .level-icon svg path { fill: var(--level2-color); }
.level-pathway-card:nth-child(3) .level-icon svg path { fill: var(--level3-color); }

.card-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.level-summary {
    color: var(--text-light);
    line-height: 1.6;
    height: 70px; /* Allocate space to prevent layout shift */
    transition: var(--transition-slow);
}

.level-details {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), opacity var(--transition-slow);
}

.level-pathway-card:hover .level-summary {
    opacity: 0;
    height: 0;
}

.level-pathway-card:hover .level-details {
    opacity: 1;
    max-height: 200px; /* Should be enough to show content */
}

.level-details ul {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    text-align: left;
}

.level-details li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.level-details li::before {
    content: '✔';
    position: absolute;
    left: 0;
    font-weight: bold;
    color: var(--level1-color);
}

.level-pathway-card:nth-child(2) .level-details li::before { color: var(--level2-color); }
.level-pathway-card:nth-child(3) .level-details li::before { color: var(--level3-color); }

        .class-types {
            padding: 100px 0;
            background-color: #f5f5f7;
        }
        
        .types-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .type-tab {
            padding: 12px 25px;
            background: white;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .type-tab.active {
            background: var(--accent);
            color: var(--primary);
        }
        
        .types-content {
            display: none;
        }
        
        .types-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        .type-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .type-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .type-image {
            height: 200px;
            overflow: hidden;
        }
        
        .type-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .type-card:hover .type-image img {
            transform: scale(1.05);
        }
        
        .type-details {
            padding: 25px;
        }
        
        .type-details h3 {
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        .type-meta {
            display: flex;
            justify-content: space-between;
            margin: 15px 0;
            font-size: 0.9rem;
            color: var(--gray);
        }
        
        .type-features {
            list-style: none;
            margin: 20px 0;
        }
        
        .type-features li {
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }
        
        .type-features li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--accent);
        }
        
        .schedule {
            padding: 100px 0;
        }
        
        .schedule-container {
            display: flex;
            gap: 50px;
            margin-top: 50px;
        }
        
        .schedule-calendar {
            overflow-x: scroll;
            flex: 1;
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .calendar-header {
            display: flex;
            justify-content: between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 10px;
        }
        
        .calendar-day {
            text-align: center;
            padding: 10px 5px;
            font-weight: bold;
            color: var(--gray);
        }
        
        .calendar-date {
            text-align: center;
            padding: 10px 5px;
            border-radius: 5px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .calendar-date:hover {
            background: var(--secondary);
        }
        
        .calendar-date.active {
            background: var(--accent);
            color: var(--primary);
        }
        
        .calendar-date.has-class {
            position: relative;
        }
        
        .calendar-date.has-class::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 50%;
            transform: translateX(-50%);
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--accent);
        }
        
        .schedule-classes {
            flex: 1;
        }
        
        .class-slot {
            background: white;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .class-info h4 {
            margin-bottom: 5px;
            color: var(--primary);
        }
        
        .class-time {
            color: var(--accent);
            font-weight: 600;
        }
        
        .class-action .btn {
            padding: 8px 20px;
            font-size: 0.9rem;
        }
        
        .specialized {
            padding: 100px 0;
            background-color: #f5f5f7;
        }
        
        .specialized-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .specialized-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        
        .specialized-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .specialized-image {
            height: 200px;
            overflow: hidden;
        }
        
        .specialized-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .specialized-card:hover .specialized-image img {
            transform: scale(1.05);
        }
        
        .specialized-content {
            padding: 25px;
        }
        
        .specialized-content h3 {
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .learning-path {
            padding: 100px 0;
        }
        
        .path-container {
            position: relative;
            margin-top: 50px;
        }
        
        .path-line {
            position: absolute;
            top: 50px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--secondary);
            z-index: 1;
        }
        
        .path-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 10px;
            position: relative;
            z-index: 2;
        }
        
        .path-step {
            text-align: center;
            width: 200px;
        }
        
        .path-icon {
            width: 100px;
            height: 100px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border: 3px solid var(--secondary);
        }
        
        .path-icon img {
            width: 50px;
            height: 50px;
            object-fit: contain;
        }
        
        .path-content {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-top: 20px;
        }
        
        .class-cta {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary) 0%, #3a3a5c 100%);
            color: var(--light);
            text-align: center;
        }
        
        .class-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .class-cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .schedule-container {
                flex-direction: column;
            }
            
            .path-steps {
                flex-direction: column;
                align-items: center;
                gap: 40px;
            }
            
            .path-line {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .class-hero h1 {
                font-size: 2.5rem;
            }
            
            .types-tabs {
                flex-direction: column;
                align-items: center;
            }
            
            .type-tab {
                width: 100%;
                max-width: 300px;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }
        
        @media (max-width: 576px) {
            .class-hero {
                padding: 120px 0 80px;
            }
            
            .class-hero h1 {
                font-size: 2rem;
            }
        }


        .foundation-hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--primary) 0%, #3a3a5c 100%);
    color: var(--light);
    overflow: hidden;
}

.foundation-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.hero-image {
    flex: 1;
    animation: fadeIn 1.5s ease;
}

.hero-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.hero-img:hover {
    transform: perspective(1000px) rotateY(0);
}

/* Mission Section */
.mission {
    padding: 100px 0;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.mission-image {
    flex: 1;
}

.mission-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.mission-img:hover {
    transform: scale(1.02);
}

.mission-text {
    flex: 1;
}

.mission-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.mission-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-text {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Values Section */
.values {
    padding: 100px 0;
    background-color: #f5f5f7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary);
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.value-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* Methodology Section */
.methodology {
    padding: 100px 0;
}

.methodology-content {
    display: flex;
    gap: 50px;
}

.methodology-text {
    flex: 1;
}

.methodology-point {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.methodology-point:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.methodology-point h3 {
    color: var(--accent);
    margin-bottom: 10px;
}

.methodology-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.methodology-image {
    flex: 1;
}

.methodology-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.methodology-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 10px;
}

.step-text {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Research Section */
.research {
    padding: 100px 0;
    background-color: #f5f5f7;
}

.research-content {
    display: flex;
    gap: 50px;
}

.research-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.research-image {
    flex: 1;
}

.research-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.research-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.research-stat {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
}

.research-text {
    flex: 1;
}

.research-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.highlight {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.highlight h4 {
    color: var(--accent);
    margin-bottom: 10px;
}

/* Team Section */
.team {
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.team-member {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 25px;
}

.member-info h3 {
    margin-bottom: 5px;
    color: var(--primary);
}

.member-role {
    display: block;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.expertise-tag {
    background: var(--secondary);
    color: var(--primary);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* CTA Section */
.foundation-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #3a3a5c 100%);
    color: var(--light);
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.tutors-hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--primary) 0%, #3a3a5c 100%);
    color: var(--light);
    overflow: hidden;
}

.tutors-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.hero-image {
    flex: 1;
    animation: fadeIn 1.5s ease;
}

.hero-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.hero-img:hover {
    transform: perspective(1000px) rotateY(0);
}

/* Featured Tutors Section */
.featured-tutors {
    padding: 100px 0;
}

.tutors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.tutor-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.tutor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tutor-image {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.tutor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.tutor-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    display: flex;
    justify-content: flex-end;
}

.tutor-languages {
    display: flex;
    gap: 10px;
}

.language-tag {
    background: var(--accent);
    color: var(--primary);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tutor-info {
    padding: 25px;
}

.tutor-info h3 {
    margin-bottom: 5px;
    color: var(--primary);
}

.tutor-origin {
    display: block;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 15px;
}

.tutor-stats {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-text {
    font-size: 0.8rem;
    color: var(--gray);
}

/* Teaching Philosophy Section */
.teaching-philosophy {
    padding: 100px 0;
    background-color: #f5f5f7;
}

.philosophy-content {
    display: flex;
    gap: 50px;
}

.philosophy-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.philosophy-image {
    flex: 1;
}

.philosophy-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.philosophy-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.philosophy-stat {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
}

.philosophy-text {
    flex: 1;
}

.philosophy-point {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

.philosophy-point:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.philosophy-point h3 {
    color: var(--accent);
    margin-bottom: 10px;
}

/* Tutor Specialties Section */
.tutor-specialties {
    padding: 100px 0;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-button {
    padding: 12px 25px;
    background: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.tab-button.active {
    background: var(--accent);
    color: var(--primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.specialty-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.specialty-text {
    flex: 1;
}

.specialty-text h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

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

.specialty-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.specialty-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.specialty-image {
    flex: 1;
}

.specialty-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Selection Process Section */
.selection-process {
    padding: 100px 0;
    background-color: #f5f5f7;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

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

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

.process-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.process-stat {
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    min-width: 200px;
}

/* Student Reviews Section */
.student-reviews {
    padding: 100px 0;
}

.reviews-slider {
    position: relative;
    height: 300px;
    overflow: hidden;
    margin-bottom: 30px;
}

.review {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.review.active {
    opacity: 1;
}

.review-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
    color: var(--primary);
}

.author-info span {
    color: var(--gray);
    font-size: 0.9rem;
}

.review-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.control-btn {
    background: var(--primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.control-btn:hover {
    background: var(--accent);
    color: var(--primary);
}

.review-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent);
}

/* CTA Section */
.tutors-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #3a3a5c 100%);
    color: var(--light);
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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


.pricing-hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--primary) 0%, #3a3a5c 100%);
    color: var(--light);
    overflow: hidden;
}

.pricing-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.hero-image {
    flex: 1;
    animation: fadeIn 1.5s ease;
}

.hero-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.hero-img:hover {
    transform: perspective(1000px) rotateY(0);
}

/* Pricing Plans Section */
.pricing-plans {
    padding: 100px 0;
    background-color: #f5f5f7;
}

.plan-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

.toggle-label {
    font-weight: 600;
    color: var(--primary);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray);
    transition: var(--transition);
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: var(--transition);
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: var(--accent);
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.plan-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.plan-card.featured {
    border: 2px solid var(--accent);
    transform: scale(1.05);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent);
    color: var(--primary);
    padding: 5px 30px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.plan-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.plan-header h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

.plan-price {
    margin: 20px 0;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
}

.price-period {
    font-size: 1rem;
    color: var(--gray);
}

.hidden {
    display: none;
}

.plan-features {
    padding: 30px;
}

.plan-features ul {
    list-style: none;
}

.plan-features li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.plan-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.plan-features li.excluded {
    color: var(--gray);
    text-decoration: line-through;
}

.plan-features li.excluded:before {
    content: '✕';
    color: var(--gray);
}

.plan-action {
    padding: 0 30px 30px;
    text-align: center;
}

.plan-note {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    color: var(--gray);
}

/* Value Proposition Section */
.value-proposition {
    padding: 100px 0;
}

.value-content {
    display: flex;
    gap: 50px;
}

.value-text {
    flex: 1;
}

.value-point {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.value-point:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.value-point h3 {
    color: var(--accent);
    margin-bottom: 10px;
}

.value-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-image {
    flex: 1;
}

.value-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-stat {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Payment Options Section */
.payment-options {
    padding: 100px 0;
    background-color: #f5f5f7;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.payment-method {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
}

.payment-method:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.payment-method.featured {
    border: 2px solid var(--accent);
}

.savings-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--secondary);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.method-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary);
}

.method-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.payment-method h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

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

.method-features li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.method-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.security-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 0 auto;
}

.security-icon {
    font-size: 2rem;
}

.security-text h4 {
    margin-bottom: 5px;
    color: var(--primary);
}

/* Savings & Discounts Section */
.savings-discounts {
    padding: 100px 0;
}

.discounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.discount-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.discount-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.discount-icon {
    height: 150px;
    overflow: hidden;
}

.discount-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.discount-content {
    padding: 25px;
}

.discount-content h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

.discount-amount {
    background: var(--secondary);
    color: var(--primary);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    margin: 15px 0;
}

.discount-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.discount-link:hover {
    color: var(--primary);
}

.limited-offer {
    background: linear-gradient(135deg, var(--primary) 0%, #3a3a5c 100%);
    color: var(--light);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
}

.limited-offer h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.countdown-unit {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    min-width: 80px;
}

.countdown-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Money-Back Guarantee Section */
.guarantee {
    padding: 100px 0;
    background-color: #f5f5f7;
}

.guarantee-content {
    display: flex;
    gap: 50px;
}

.guarantee-visual {
    flex: 1;
    position: relative;
}

.guarantee-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    z-index: 2;
}

.guarantee-image {
    height: 100%;
}

.guarantee-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.guarantee-text {
    flex: 1;
}

.guarantee-text h3 {
    margin-bottom: 20px;
    color: var(--primary);
}

.guarantee-points {
    margin: 30px 0;
}

.guarantee-point {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.guarantee-point:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.guarantee-point h4 {
    color: var(--accent);
    margin-bottom: 10px;
}

.satisfaction-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.satisfaction-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--gray);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
}

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

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    margin-bottom: 0;
    color: var(--primary);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--accent);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 15px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* CTA Section */
.pricing-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #3a3a5c 100%);
    color: var(--light);
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

.offers-hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--primary) 0%, #3a3a5c 100%);
    color: var(--light);
    overflow: hidden;
}

.offers-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.hero-image {
    flex: 1;
    animation: fadeIn 1.5s ease;
}

.hero-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.hero-img:hover {
    transform: perspective(1000px) rotateY(0);
}

/* Current Offers Section */
.current-offers {
    padding: 100px 0;
    background-color: #f5f5f7;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.offer-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.offer-card.featured {
    border: 2px solid var(--accent);
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent);
    color: var(--primary);
    padding: 5px 30px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 2;
}

.offer-image {
    height: 200px;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.offer-content {
    padding: 25px;
}

.offer-content h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.offer-details {
    margin: 20px 0;
}

.offer-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.original-price {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 1.2rem;
}

.discounted-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
}

.price-period {
    color: var(--gray);
    font-size: 0.9rem;
}

.offer-value {
    text-align: center;
    margin-bottom: 15px;
}

.value-amount {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 5px;
}

.value-description {
    color: var(--gray);
    font-size: 0.9rem;
}

.offer-features ul {
    list-style: none;
}

.offer-features li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.offer-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.offer-expiry {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
}

.expiry-label {
    font-weight: 600;
    color: var(--primary);
}

.countdown {
    display: flex;
    gap: 10px;
    font-weight: 600;
}

.countdown-days, .countdown-hours {
    color: var(--accent);
}

.referral-tools {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

/* Seasonal Promotions Section */
.seasonal-promotions {
    padding: 100px 0;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-button {
    padding: 12px 25px;
    background: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.tab-button.active {
    background: var(--accent);
    color: var(--primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.seasonal-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.seasonal-text {
    flex: 1;
}

.seasonal-text h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.seasonal-highlights {
    margin: 20px 0;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.highlight-icon {
    font-size: 1.2rem;
}

.highlight-text {
    font-weight: 500;
}

.seasonal-period {
    margin: 20px 0;
    padding: 10px 15px;
    background: #f9f9f9;
    border-radius: 8px;
}

.seasonal-image {
    flex: 1;
}

.seasonal-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Group Discounts Section */
.group-discounts {
    padding: 100px 0;
    background-color: #f5f5f7;
}

.discounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.discount-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.discount-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.discount-card.featured {
    border: 2px solid var(--accent);
}

.discount-icon {
    height: 150px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discount-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.discount-content {
    padding: 25px;
}

.discount-content h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

.discount-amount {
    background: var(--secondary);
    color: var(--primary);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    margin: 15px 0;
}

.eligibility {
    margin: 20px 0;
}

.eligibility h4 {
    margin-bottom: 10px;
    color: var(--primary);
}

.eligibility ul {
    list-style: none;
}

.eligibility li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.eligibility li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.group-note {
    text-align: center;
    max-width: 600px;
    margin: 40px auto 0;
    color: var(--gray);
}

/* Limited Time Offers Section */
.limited-time {
    padding: 100px 0;
}

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

.limited-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
}

.limited-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.limited-card.urgent {
    border: 2px solid var(--accent);
}

.urgency-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.limited-content h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.limited-details {
    margin: 20px 0;
}

.savings {
    text-align: center;
    margin-bottom: 20px;
}

.savings-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 5px;
}

.savings-text {
    color: var(--gray);
    font-size: 0.9rem;
}

.time-remaining {
    margin: 20px 0;
}

.time-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.countdown-timer {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.timer-unit {
    text-align: center;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 8px;
    min-width: 70px;
}

.timer-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.timer-label {
    font-size: 0.8rem;
    color: var(--gray);
}

.availability {
    margin: 20px 0;
}

.availability-text {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.progress-bar {
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 4px;
}

.progress-text {
    font-size: 0.8rem;
    color: var(--gray);
}

.limited-notice {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 0 auto;
}

.notice-icon {
    font-size: 2rem;
}

.notice-text h4 {
    margin-bottom: 5px;
    color: var(--primary);
}

/* Bundle Deals Section */
.bundle-deals {
    padding: 100px 0;
    background-color: #f5f5f7;
}

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

.bundle-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
}

.bundle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.bundle-card.featured {
    border: 2px solid var(--accent);
    transform: scale(1.05);
}

.bundle-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.bundle-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent);
    color: var(--primary);
    padding: 5px 30px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.bundle-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.bundle-header h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.bundle-price {
    margin: 15px 0;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
}

.value {
    color: var(--gray);
    font-size: 0.9rem;
}

.bundle-content {
    padding: 25px;
}

.bundle-features {
    list-style: none;
    margin-bottom: 20px;
}

.bundle-features li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.bundle-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.bundle-savings {
    text-align: center;
    margin: 20px 0;
}

.savings {
    background: var(--secondary);
    color: var(--primary);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
}

.custom-bundle {
    background: white;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 0 auto;
}

.custom-content h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* Referral Program Section */
.referral-program {
    padding: 100px 0;
}

.referral-content {
    display: flex;
    gap: 50px;
}

.referral-steps {
    flex: 1;
}

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

.step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 10px;
    color: var(--primary);
}

.referral-rewards {
    flex: 1;
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.rewards-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.rewards-stats {
    display: flex;
    gap: 20px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray);
}

.referral-link {
    margin-bottom: 25px;
}

.referral-link label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary);
}

.link-container {
    display: flex;
}

.link-container input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.copy-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: var(--transition);
}

.copy-btn:hover {
    background: var(--accent);
    color: var(--primary);
}

.share-options h4 {
    margin-bottom: 15px;
    color: var(--primary);
}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 8px 15px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.share-btn:hover {
    background: #f9f9f9;
}

.share-btn.email {
    border-color: #ea4335;
    color: #ea4335;
}

.share-btn.whatsapp {
    border-color: #25d366;
    color: #25d366;
}

.share-btn.facebook {
    border-color: #1877f2;
    color: #1877f2;
}

.share-btn.twitter {
    border-color: #1da1f2;
    color: #1da1f2;
}

/* CTA Section */
.offers-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #3a3a5c 100%);
    color: var(--light);
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

.pictures-hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--primary) 0%, #3a3a5c 100%);
    color: var(--light);
    overflow: hidden;
}

.pictures-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.hero-image {
    flex: 1;
    animation: fadeIn 1.5s ease;
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.hero-img:hover {
    transform: perspective(1000px) rotateY(0);
}

/* Classroom Gallery Section */
.classroom-gallery {
    padding: 100px 0;
    background-color: #f5f5f7;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.gallery-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.gallery-image {
    height: 250px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}

.gallery-caption {
    padding: 25px;
}

.gallery-caption h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

.gallery-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Student Life Section */
.student-life {
    padding: 100px 0;
}

.life-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.life-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.life-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.life-image {
    height: 250px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.life-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.life-content {
    padding: 25px;
}

.life-content h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

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

.meta-item {
    background: var(--secondary);
    color: var(--primary);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Cultural Events Section */
.cultural-events {
    padding: 100px 0;
    background-color: #f5f5f7;
}

.events-carousel {
    position: relative;
    margin-bottom: 50px;
}

.carousel-container {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    display: none;
}

.carousel-slide.active {
    display: block;
}

.event-card {
    display: flex;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.event-image {
    flex: 1;
    height: 400px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.event-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-content h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.event-details {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.event-type, .event-date {
    background: var(--secondary);
    color: var(--primary);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-prev, .carousel-next {
    background: var(--primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-prev:hover, .carousel-next:hover {
    background: var(--accent);
    color: var(--primary);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent);
}

.events-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.events-stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Learning in Action Section */
.learning-action {
    padding: 100px 0;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.action-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.action-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.action-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.action-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.action-item:hover .action-image img {
    transform: scale(1.05);
}

.action-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.action-item:hover .action-overlay {
    opacity: 1;
}

.zoom-btn {
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.zoom-btn:hover {
    background: var(--accent);
    transform: scale(1.1);
}

.action-content {
    padding: 25px;
}

.action-content h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

/* Virtual Tour Section */
.virtual-tour {
    padding: 100px 0;
    background-color: #f5f5f7;
}

.tour-content {
    display: flex;
    gap: 50px;
}

.tour-visual {
    flex: 1;
}

.tour-image {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.tour-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.highlight:hover {
    transform: translateX(5px);
}

.highlight.active {
    border-left-color: var(--accent);
    background: #f9f9f9;
}

.highlight h4 {
    margin-bottom: 10px;
    color: var(--primary);
}

.tour-features {
    flex: 1;
}

.tour-features h3 {
    margin-bottom: 20px;
    color: var(--primary);
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.features-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.tour-cta {
    display: flex;
    gap: 15px;
}

/* Student Showcase Section */
.student-showcase {
    padding: 100px 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.showcase-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.showcase-image {
    height: 250px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.showcase-item:hover .showcase-image img {
    transform: scale(1.05);
}

.showcase-content {
    padding: 25px;
}

.showcase-content h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

.showcase-meta {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.duration, .language {
    background: var(--secondary);
    color: var(--primary);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.showcase-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.showcase-stat {
    text-align: center;
}

/* CTA Section */
.pictures-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #3a3a5c 100%);
    color: var(--light);
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Footer */
.footer {
    background-color: var(--primary);
    color: var(--light);
    padding: 70px 0 20px;
}

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

.footer-section h3, .footer-section h4 {
    margin-bottom: 20px;
    color: var(--secondary);
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--primary);
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 30px 0 0 30px;
    outline: none;
}

.newsletter-form button {
    padding: 0 20px;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container, .about-content {
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    .methodology-content
    {
        flex-direction: column;
    }
    .research-content
    {
        flex-direction: column;
    }
    .foundation-hero .container
    {
        flex-direction: column;
    }
    .mission-content
    {
        flex-direction: column;
    }
    .mission-stats
    {
        flex-wrap: wrap;
    }
    .tutors-hero .container
    {
        flex-direction: column;
    }
    .philosophy-content
    {
        flex-direction: column;
    }
    .tutor-stats
    {
        flex-wrap: wrap;
    }
    .specialty-content
    {
        flex-direction: column;
    }

    .pricing-hero .container
    {
        flex-direction: column;
    }
    .value-content
    {
        flex-direction: column;
    }

    .guarantee-content
    {
        flex-direction: column;
    }
    .faq-content
    {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 20px;
    }

    .offers-hero .container
    {
        flex-direction: column;
    }
    .seasonal-content
    {
        flex-direction: column;
    }

    .pictures-hero .container
    {
        flex-direction: column;
    }

    .tour-content
    {
        flex-direction: column;
    }
}


@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        gap: 20px;
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons, .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .testimonial-content {
        display: inline-block;
        padding: 20px;
    }
}

.legal-hero {
    background-color: var(--neutral-bg);
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid #eef2f5;
}

.legal-page-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.legal-page-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}


/* --- 2. Main Policy Content --- */
.legal-content {
    padding: 80px 0;
}

.legal-content-container {
    max-width: 800px; /* Optimal width for readability */
    margin: 0 auto;
}

.last-updated {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 40px;
    border-bottom: 1px solid #eef2f5;
    padding-bottom: 20px;
}

/* Styling for each article/section */
.legal-content article {
    margin-bottom: 40px;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-teal);
    display: inline-block;
}

.legal-content p,
.legal-content li {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.legal-content strong {
    font-weight: 700;
    color: var(--text-color);
}

/* Custom styling for lists */
.legal-content ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.legal-content li {
    padding-left: 30px;
    position: relative;
}

.legal-content li::before {
    content: '›'; /* A clean, modern bullet */
    position: absolute;
    left: 10px;
    top: 0;
    color: var(--accent-teal);
    font-weight: 900;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Styling for contact info */
.legal-content #contact p {
    margin-bottom: 5px;
}

/* --- 3. Responsive Adjustments --- */
@media (max-width: 768px) {
    .legal-hero {
        padding: 60px 0;
    }

    .legal-page-title {
        font-size: 2.2rem;
    }

    .legal-page-subtitle {
        font-size: 1rem;
    }

    .legal-content {
        padding: 60px 0;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .legal-content p,
    .legal-content li {
        font-size: 0.95rem;
    }
}
/* ==========================================================================
   UTILITY & THANK YOU PAGE STYLES
   ========================================================================== */

/* --- Page Body Setup --- */
.utility-page-body {
    background-color: var(--neutral-bg, #f8f9fa);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    font-family: var(--font-body, 'Lato', sans-serif);
}

/* --- Minimal Header & Footer --- */
.utility-header,
.utility-footer {
    padding: 20px 0;
    text-align: center;
}

.utility-header .logo {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-blue, #2c3e50);
    text-decoration: none;
}

.utility-footer p {
    color: var(--text-muted, #7f8c8d);
    font-size: 0.9rem;
}

/* --- Main Content Area --- */
.thank-you-main {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.thank-you-box {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
    padding: 40px 50px;
    max-width: 550px;
    width: 100%;
    text-align: center;
    border: 1px solid #eef2f5;
}

/* --- Animated Checkmark --- */
.checkmark-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.checkmark-svg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #dbe2e8;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke: var(--accent-teal, #00A79D);
    stroke-width: 3;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

/* --- Text and Button Styling --- */
.thank-you-box h1 {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    color: var(--primary-blue, #2c3e50);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.thank-you-box p {
    color: var(--text-muted, #7f8c8d);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.thank-you-box .btn-primary {
    background-color: var(--accent-teal, #00A79D);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition, 0.3s ease);
    display: inline-block;
}

.thank-you-box .btn-primary:hover {
    background-color: #00897b; /* A slightly darker teal for hover */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 167, 157, 0.2);
}

/* --- Responsive Adjustments --- */
@media (max-width: 600px) {
    .thank-you-box {
        padding: 30px 25px;
    }

    .thank-you-box h1 {
        font-size: 1.8rem;
    }

    .thank-you-box p {
        font-size: 0.95rem;
    }

    .checkmark-container {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
}