/* ========== VERASOL GROUP - MAIN STYLESHEET ========== */

:root {
    --verasol-cyan: #3CC8EB;
    --verasol-yellow: #F7D000;
    --verasol-teal: #2AB0AA;
    --verasol-dark: #333333;
    --verasol-light: #F8FAFA;
    --verasol-white: #FFFFFF;
    --gradient-hero: linear-gradient(135deg, #3CC8EB 0%, #2AB0AA 100%);
}

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

body {
    font-family: 'Nunito', sans-serif;
    color: var(--verasol-dark);
    background: var(--verasol-light);
    line-height: 1.6;
}

/* ========== HEADER ========== */
header {
    background: var(--verasol-white);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 45px;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

nav a:hover {
    color: var(--verasol-teal);
}

.lang-switch {
    display: flex;
    gap: 5px;
    background: var(--verasol-light);
    padding: 5px;
    border-radius: 25px;
}

.lang-btn {
    padding: 8px 15px;
    border: none;
    background: transparent;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: all 0.3s;
}

.lang-btn.active {
    background: var(--verasol-yellow);
    color: var(--verasol-dark);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--verasol-dark);
}

/* ========== HERO ========== */
.hero {
    background: var(--gradient-hero);
    padding: 160px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--verasol-yellow);
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--verasol-yellow);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero p {
    color: rgba(255,255,255,0.95);
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn {
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
}

.btn-primary {
    background: var(--verasol-yellow);
    color: var(--verasol-dark);
}

.btn-primary:hover {
    background: #e5c000;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
}

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

/* ========== MISSION SECTION ========== */
.mission {
    padding: 80px 20px;
    background: var(--verasol-white);
}

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

.mission-image {
    position: relative;
}

.mission-image-main {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.mission-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--verasol-yellow);
    color: var(--verasol-dark);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(247, 208, 0, 0.3);
}

.mission-badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

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

.mission-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--verasol-dark);
}

.mission-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.mission-points {
    list-style: none;
}

.mission-points li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.mission-points li i {
    width: 30px;
    height: 30px;
    background: var(--verasol-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--verasol-teal);
    flex-shrink: 0;
    margin-top: 3px;
}

/* ========== ACTIVITIES SECTION ========== */
.activities {
    padding: 80px 20px;
    background: var(--verasol-light);
}

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

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

.btn-scroll-latest {
    margin-top: 20px;
    padding: 12px 30px;
    background: var(--gradient-hero);
    color: white;
    border: none;
    border-radius: 25px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(60, 200, 235, 0.3);
}

.btn-scroll-latest:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(60, 200, 235, 0.4);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--verasol-dark);
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

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

.activity-card {
    background: var(--verasol-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.activity-header {
    padding: 30px;
    text-align: center;
}

.activity-card.korean .activity-header {
    background: linear-gradient(135deg, #3CC8EB 0%, #2AB0AA 100%);
    color: white;
}

.activity-card.choir .activity-header {
    background: linear-gradient(135deg, #F7D000 0%, #FFB800 100%);
    color: var(--verasol-dark);
}

.activity-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
}

.activity-card.korean .activity-icon {
    color: white;
}

.activity-card.choir .activity-icon {
    color: var(--verasol-dark);
}

/* Korean Flag */
.korean-flag {
    width: 40px;
    height: auto;
    border-radius: 3px;
}

.activity-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.activity-header p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.activity-body {
    padding: 30px;
}

.activity-facts {
    list-style: none;
    margin-bottom: 25px;
}

.activity-facts li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.fact-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--verasol-teal);
    flex-shrink: 0;
}

.activity-card.choir .fact-icon {
    color: #D4A600;
}

.activity-btn {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s;
}

.activity-card.korean .activity-btn {
    background: var(--verasol-teal);
    color: white;
}

.activity-card.korean .activity-btn:hover {
    background: #239690;
}

.activity-card.choir .activity-btn {
    background: var(--verasol-yellow);
    color: var(--verasol-dark);
}

.activity-card.choir .activity-btn:hover {
    background: #e5c000;
}

/* ========== STATS SECTION ========== */
.stats {
    padding: 60px 20px;
    background: var(--gradient-hero);
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h4 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}

.stat-item p {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}

/* ========== PARTNERS SECTION ========== */
.partners {
    padding: 60px 20px;
    background: var(--verasol-white);
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.partners-container h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--verasol-dark);
    margin-bottom: 30px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-logo {
    height: 60px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ========== FOOTER ========== */
footer {
    background: var(--verasol-dark);
    color: white;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer-brand .logo-link img {
    height: 50px;
    width: auto;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: var(--verasol-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--verasol-yellow);
    color: var(--verasol-dark);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--verasol-cyan);
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
    .mission-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        gap: 15px;
    }
    
    nav.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item h4 {
        font-size: 2.5rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .partners-logos {
        gap: 20px;
    }
    
    .partner-logo {
        height: 45px;
    }
}
/* ========== KOREAN COURSES PAGE STYLES ========== */

/* Additional color variables */
:root {
    --light-cyan: #D0F3F7;
    --light-teal: #E0F7F5;
}

/* Hero Section - Korean Courses */
.hero-korean {
    margin-top: 75px;
    min-height: 500px;
    background: linear-gradient(135deg, rgba(60,200,235,0.9) 0%, rgba(42,176,170,0.9) 100%),
                url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?w=1600') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding: 2rem;
}

.hero-korean .hero-content {
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
}

.hero-korean h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    color: white;
}

.hero-korean h1 .hangul {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.hero-korean p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: white;
}

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

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

/* Level Test Section */
.level-test-section {
    padding: 5rem 2rem;
    background: white;
}

.level-test-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--verasol-light);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.test-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.progress-step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    position: relative;
}

.progress-step.active {
    background: var(--verasol-teal);
}

.progress-step.completed {
    background: var(--verasol-cyan);
}

.progress-step::after {
    content: '';
    position: absolute;
    right: -100%;
    top: 50%;
    width: 100%;
    height: 3px;
    background: #ddd;
}

.progress-step:last-child::after {
    display: none;
}

.progress-step.completed::after {
    background: var(--verasol-cyan);
}

.test-question {
    display: none;
    animation: fadeIn 0.5s;
}

.test-question.active {
    display: block;
}

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

.question-text {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.question-hangul {
    font-size: 2rem;
    color: var(--verasol-teal);
    margin-bottom: 0.5rem;
}

.answer-options {
    display: grid;
    gap: 1rem;
}

.answer-option {
    padding: 1rem 1.5rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}

.answer-option:hover {
    border-color: var(--verasol-teal);
    background: var(--light-teal);
}

.answer-option.selected {
    border-color: var(--verasol-teal);
    background: var(--light-teal);
}

.test-result {
    display: none;
    text-align: center;
    padding: 2rem;
}

.test-result.active {
    display: block;
    animation: fadeIn 0.5s;
}

.result-level {
    font-size: 4rem;
    font-weight: 800;
    color: var(--verasol-teal);
    margin-bottom: 1rem;
}

.result-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

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

.btn-teal {
    background: var(--verasol-teal);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-teal:hover {
    background: #239490;
}

.btn-teal:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Courses Section */
.courses-section {
    padding: 5rem 2rem;
    background: var(--verasol-light);
}

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

.level-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.level-tab {
    padding: 1rem 2rem;
    border: none;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    font-family: 'Nunito', sans-serif;
}

.level-tab:hover {
    transform: translateY(-2px);
}

.level-tab.active {
    background: var(--gradient-hero);
    color: white;
}

.level-content {
    display: none;
}

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

.level-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

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

.level-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.level-info p {
    color: #666;
}

.level-meta {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.meta-item svg {
    width: 18px;
    height: 18px;
    fill: var(--verasol-teal);
}

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

.course-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

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

.course-card-header {
    padding: 1.5rem;
    background: var(--light-teal);
    border-bottom: 3px solid var(--verasol-teal);
}

.course-card-header.online {
    background: var(--light-cyan);
    border-color: var(--verasol-cyan);
}

.course-format {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--verasol-teal);
    color: white;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.course-format.online {
    background: var(--verasol-cyan);
}

.course-title {
    font-size: 1.1rem;
    font-weight: 700;
}

.course-card-body {
    padding: 1.5rem;
}

.course-details {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.course-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.course-detail-icon {
    width: 20px;
    text-align: center;
    color: var(--verasol-teal);
}

.course-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--verasol-teal);
    margin-bottom: 1rem;
}

.course-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
}

.btn-course {
    width: 100%;
    padding: 0.75rem;
    background: var(--verasol-teal);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Nunito', sans-serif;
}

.btn-course:hover {
    background: #239490;
}

/* Private Lessons Section */
.private-section {
    padding: 5rem 2rem;
    background: white;
}

.private-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.private-image {
    position: relative;
}

.private-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.private-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--verasol-yellow);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(247,208,0,0.3);
}

.private-badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--verasol-dark);
}

.private-badge-text {
    font-size: 0.85rem;
    font-weight: 600;
}

.private-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.private-content > p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.private-features {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--light-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--verasol-teal);
    flex-shrink: 0;
}

.private-pricing {
    background: var(--verasol-light);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-label {
    font-weight: 600;
}

.pricing-value {
    font-weight: 800;
    color: var(--verasol-teal);
}

/* Value Props Section */
.value-section {
    padding: 5rem 2rem;
    background: var(--gradient-hero);
    color: white;
}

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

.value-header {
    text-align: center;
    margin-bottom: 3rem;
}

.value-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

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

.value-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
}

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

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.value-card p {
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Teachers Section */
.teachers-section {
    padding: 5rem 2rem;
    background: white;
}

.teachers-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

.teacher-card {
    text-align: center;
}

.teacher-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 5px solid var(--light-teal);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.teacher-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.teacher-role {
    color: var(--verasol-teal);
    font-weight: 600;
    margin-bottom: 1rem;
}

.teacher-bio {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

.teacher-tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.teacher-tag {
    padding: 0.25rem 0.75rem;
    background: var(--light-teal);
    color: var(--verasol-teal);
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    background: var(--verasol-light);
    text-align: center;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.cta-container h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-container p {
    color: #666;
    margin-bottom: 2rem;
}

/* Responsive - Korean Courses */
@media (max-width: 968px) {
    .private-container {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .hero-korean h1 {
        font-size: 2rem;
    }

    .hero-korean h1 .hangul {
        font-size: 2.5rem;
    }

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

    .level-tabs {
        gap: 0.25rem;
    }

    .level-tab {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .level-header {
        flex-direction: column;
        text-align: center;
    }
}

/* ========== K-POP CHOIR PAGE STYLES ========== */

/* Additional color variables for K-pop */
:root {
    --kpop-purple: #9B59B6;
    --kpop-pink: #E91E8C;
    --light-purple: #F3E5F5;
    --gradient-kpop: linear-gradient(135deg, #E91E8C 0%, #9B59B6 50%, #3CC8EB 100%);
}

/* Hero Section - K-pop Choir */
.hero-kpop {
    margin-top: 75px;
    min-height: 550px;
    background: linear-gradient(135deg, rgba(233,30,140,0.85) 0%, rgba(155,89,182,0.85) 50%, rgba(60,200,235,0.85) 100%),
                url('assets/images/choir_performance.webp') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding: 2rem;
}

.hero-kpop .hero-content {
    max-width: 800px;
}

.hero-kpop h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: white;
}

.hero-kpop h1 .sub {
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
    margin-top: 0.5rem;
    opacity: 0.95;
}

.hero-kpop p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: white;
}

.btn-pink {
    background: var(--kpop-pink);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
}

.btn-pink:hover {
    background: #c41874;
}

/* Early Bird Banner */
.early-bird-banner {
    background: linear-gradient(90deg, var(--verasol-yellow) 0%, #FFE066 100%);
    padding: 1rem 2rem;
    text-align: center;
}

.early-bird-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.early-bird-badge {
    background: var(--verasol-dark);
    color: var(--verasol-yellow);
    padding: 0.25rem 0.75rem;
    border-radius: 5px;
    font-weight: 800;
    font-size: 0.85rem;
}

.early-bird-text {
    font-weight: 700;
    color: var(--verasol-dark);
}

.early-bird-price {
    text-decoration: line-through;
    opacity: 0.7;
}

.early-bird-new-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--kpop-pink);
}

/* About Section - K-pop */
.about-section-kpop {
    padding: 5rem 2rem;
    background: white;
}

.about-container-kpop {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-kpop {
    position: relative;
}

.about-image-kpop img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.about-badge-kpop {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--gradient-kpop);
    color: white;
    padding: 1.5rem;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(233,30,140,0.3);
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-badge-kpop .badge-text {
    font-size: 0.7rem;
    font-weight: 600;
}

.about-badge-kpop .badge-number {
    font-size: 1.5rem;
    font-weight: 800;
}

.about-content-kpop h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-content-kpop > p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-highlights-kpop {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-item-kpop {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.highlight-icon-kpop {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--light-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.highlight-text-kpop {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Term Info Section */
.term-section {
    padding: 5rem 2rem;
    background: var(--verasol-light);
}

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

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

.term-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.term-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.term-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: var(--gradient-kpop);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.term-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.term-card ul {
    list-style: none;
}

.term-card li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #555;
}

.term-card li::before {
    content: '✓';
    color: var(--kpop-pink);
    font-weight: 700;
}

/* Pricing Section - K-pop */
.pricing-section-kpop {
    padding: 5rem 2rem;
    background: var(--gradient-kpop);
    color: white;
}

.pricing-container-kpop {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-header-kpop {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header-kpop h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}

.pricing-cards-kpop {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.pricing-card-kpop {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    color: var(--verasol-dark);
    position: relative;
    overflow: hidden;
}

.pricing-card-kpop.featured {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.pricing-card-kpop.featured::before {
    content: 'EARLY BIRD';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--verasol-yellow);
    color: var(--verasol-dark);
    padding: 0.5rem 3rem;
    font-weight: 800;
    font-size: 0.75rem;
    transform: rotate(45deg);
}

.pricing-card-kpop h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #666;
}

.pricing-amount-kpop {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--kpop-pink);
    margin-bottom: 0.5rem;
}

.pricing-amount-kpop span {
    font-size: 1rem;
    font-weight: 600;
    color: #666;
}

.pricing-period-kpop {
    color: #888;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

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

.pricing-features-kpop li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features-kpop li:last-child {
    border-bottom: none;
}

.pricing-features-kpop li::before {
    content: '✓';
    color: var(--verasol-teal);
    font-weight: 700;
}

.pricing-note-kpop {
    font-size: 0.85rem;
    color: #888;
    margin-top: 1rem;
}

/* Schedule Section */
.schedule-section {
    padding: 5rem 2rem;
    background: white;
}

.schedule-container {
    max-width: 1000px;
    margin: 0 auto;
}

.schedule-card {
    background: var(--verasol-light);
    border-radius: 20px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.schedule-main h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--kpop-pink);
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
}

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

.schedule-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.schedule-info strong {
    display: block;
    font-size: 1rem;
}

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

.schedule-performances h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--kpop-pink);
}

.performance-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid var(--kpop-pink);
}

.performance-date {
    font-weight: 800;
    color: var(--kpop-pink);
    margin-bottom: 0.25rem;
}

.performance-event {
    font-weight: 600;
}

.performance-note {
    font-size: 0.85rem;
    color: #666;
}

/* Materials Section */
.materials-section {
    padding: 5rem 2rem;
    background: var(--verasol-light);
}

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

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

.materials-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.materials-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.materials-card h3 span {
    font-size: 1.5rem;
}

.materials-list {
    display: grid;
    gap: 0.75rem;
}

.material-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--verasol-light);
    border-radius: 10px;
}

.material-icon {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: var(--gradient-kpop);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

/* Community Section */
.community-section {
    padding: 5rem 2rem;
    background: white;
}

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

.community-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.community-card {
    background: var(--verasol-light);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.community-card:hover {
    transform: translateY(-5px);
    background: var(--light-purple);
}

.community-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-kpop);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.community-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.community-card p {
    font-size: 0.85rem;
    color: #666;
}

/* Conductor Section */
.conductor-section {
    padding: 5rem 2rem;
    background: var(--verasol-light);
}

.conductor-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.conductor-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--light-purple);
}

.conductor-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.conductor-role {
    color: var(--kpop-pink);
    font-weight: 600;
    margin-bottom: 1rem;
}

.conductor-bio {
    color: #666;
    line-height: 1.8;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 2rem;
    background: white;
}

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

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
}

.faq-question {
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--kpop-pink);
}

.faq-item.open .faq-question::after {
    content: '−';
}

.faq-answer {
    padding-top: 1rem;
    color: #666;
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
}

/* CTA Section - K-pop */
.cta-section-kpop {
    padding: 5rem 2rem;
    background: var(--gradient-kpop);
    text-align: center;
    color: white;
}

.cta-section-kpop .cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.cta-section-kpop h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #333;
}

.cta-section-kpop p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: #666;
}

/* Responsive - K-pop Choir */
@media (max-width: 968px) {
    .about-container-kpop,
    .schedule-card,
    .materials-grid,
    .pricing-cards-kpop {
        grid-template-columns: 1fr;
    }

    .term-grid,
    .community-grid {
        grid-template-columns: 1fr 1fr;
    }

    .conductor-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .conductor-image {
        margin: 0 auto;
    }

    .pricing-card-kpop.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .hero-kpop h1 {
        font-size: 2.5rem;
    }

    .term-grid,
    .community-grid {
        grid-template-columns: 1fr;
    }

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

/* ===================================
   REGISTRATION FORM & TERMS PAGE STYLES
   =================================== */

/* Terms Page Styles */
.page-hero {
    background: linear-gradient(135deg, var(--verasol-cyan) 0%, var(--verasol-teal) 100%);
    padding: 80px 20px 60px;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.terms-content {
    padding: 60px 20px;
    background: #f8f9fa;
}

.terms-box {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.terms-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--verasol-cyan);
}

.terms-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--verasol-dark);
    margin-bottom: 20px;
}

.terms-header p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

.terms-section {
    margin-bottom: 40px;
}

.terms-section h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--verasol-cyan);
    margin-bottom: 15px;
}

.terms-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.terms-section a {
    color: var(--verasol-cyan);
    text-decoration: underline;
}

.terms-section a:hover {
    color: var(--verasol-teal);
}

/* Registration Page Styles */
.registration-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.registration-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.registration-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--verasol-dark);
    margin-bottom: 30px;
}

.selected-course {
    background: linear-gradient(135deg, var(--verasol-cyan) 0%, var(--verasol-teal) 100%);
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.selected-course i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.selected-course .course-label {
    margin-right: 8px;
}

.selected-course strong {
    font-weight: 700;
}

/* Success Message */
.success-message {
    background: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 30px;
}

.success-message i {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.success-message p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Form Sections */
.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--verasol-cyan);
    margin-bottom: 25px;
}

.form-section .info-text {
    background: #e7f5ff;
    border-left: 4px solid var(--verasol-cyan);
    padding: 15px;
    margin-bottom: 25px;
    color: #004085;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Form Groups */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--verasol-dark);
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group label.required::after {
    content: " *";
    color: #dc3545;
    font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--verasol-cyan);
    box-shadow: 0 0 0 3px rgba(60, 200, 235, 0.1);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #dc3545;
}

.form-group small {
    display: block;
    font-size: 0.875rem;
    color: #666;
    margin-top: 5px;
}

.form-group .error-message {
    display: none;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
    font-weight: 600;
}

/* Checkbox Groups */
.checkbox-group {
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 3px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label a {
    color: var(--verasol-cyan);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: var(--verasol-teal);
}

/* Form Actions */
.form-actions {
    text-align: center;
    margin-top: 40px;
}

.btn-large {
    padding: 16px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-large i {
    margin-right: 10px;
}

.btn-primary.active {
    opacity: 1;
    cursor: pointer;
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #999;
}

.btn-primary:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .page-hero {
        padding: 60px 15px 40px;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .terms-box {
        padding: 30px 20px;
    }
    
    .terms-header h2 {
        font-size: 1.5rem;
    }
    
    .terms-section h3 {
        font-size: 1.2rem;
    }
    
    .registration-section {
        padding: 40px 15px;
    }
    
    .registration-container {
        padding: 25px 20px;
    }
    
    .registration-title {
        font-size: 1.5rem;
    }
    
    .selected-course {
        padding: 15px;
        font-size: 1rem;
    }
    
    .selected-course i {
        font-size: 1.2rem;
    }
    
    .form-section h3 {
        font-size: 1.3rem;
    }
    
    .success-message {
        padding: 30px 20px;
    }
    
    .success-message i {
        font-size: 3rem;
    }
    
    .success-message h3 {
        font-size: 1.5rem;
    }
    
    .btn-large {
        padding: 14px 35px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .registration-container {
        padding: 20px 15px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 10px 12px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .btn-large {
        width: 100%;
        padding: 14px 20px;
    }
}
/* ============================================
   FOOTER - GROUPED SOCIAL MEDIA STYLES
   ============================================ */

.footer-social-groups {
    display: flex;
    gap: 40px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-label {
    font-size: 11px;
    text-transform: uppercase;
    color: #999;
    font-weight: 600;
    letter-spacing: 0.8px;
    font-family: inherit;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: rgba(60, 200, 235, 0.2);
    transform: translateY(-2px);
    color: #3CC8EB;
}

.social-icons a i {
    font-size: 16px;
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 768px) {
    .footer-social-groups {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }
    
    .social-group {
        width: 100%;
    }
    
    .social-icons {
        gap: 12px;
    }
    
    .social-icons a {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .footer-social-groups {
        gap: 20px;
    }
    
    .social-label {
        font-size: 10px;
    }
}

/* ============================================
   EVENTS PAGE STYLES
   ============================================ */

/* Hero Section - Events */
.hero-events {
    position: relative;
    margin-top: 75px;
    min-height: 450px;
    background: #9B59B6; /* Fallback */
    background: linear-gradient(135deg, var(--kpop-purple) 0%, var(--kpop-pink) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    overflow: hidden;
}

/* Coming Soon Banner */
.coming-soon-banner {
    position: absolute;
    top: 60px;
    right: -60px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #333;
    padding: 10px 80px;
    transform: rotate(45deg);
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-events .hero-content {
    max-width: 800px;
    z-index: 5;
}

.hero-events h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: white;
}

.hero-events h1 .sub {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.95;
    color: white;
}

.hero-events p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-top: 1rem;
    color: white;
}

/* Events Section */
.events-section {
    padding: 5rem 2rem 3rem 2rem;
    background: var(--verasol-light);
}

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

.events-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.events-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1rem;
}

.events-section .section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.events-section .events-grid .event-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.events-section .events-grid .event-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.events-section .events-grid .event-content h3 {
    min-height: 2.6rem;
}

.events-section .events-grid .event-preview {
    min-height: 4.5rem;
    flex-grow: 1;
}

.events-section .events-grid .event-media-links {
    margin-top: auto;
}

/* Event-specific buttons (to avoid conflicts with other pages) */
.event-btn-more {
    background: var(--verasol-teal);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    font-family: 'Nunito', sans-serif;
    align-self: flex-start;
}

.event-btn-more:hover {
    background: var(--verasol-cyan);
    transform: scale(1.05);
}

.event-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: var(--kpop-purple);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.event-link:hover {
    background: var(--kpop-pink);
    transform: scale(1.05);
}

.events-section .event-media-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

/* Event Card */
.event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* Event Image Placeholder */
.event-image-placeholder {
    height: 250px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #999;
}

.event-image-placeholder i {
    font-size: 4rem;
    opacity: 0.3;
}

.event-image-placeholder span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* When you add real images, use this class instead */
.event-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

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

/* Event Content */
.event-content {
    padding: 1.5rem;
}

.event-preview {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-more {
    background: var(--verasol-teal);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    font-family: 'Nunito', sans-serif;
}

.btn-more:hover {
    background: var(--verasol-cyan);
    transform: scale(1.05);
}

.event-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--kpop-purple);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.event-date i {
    font-size: 1rem;
}

.event-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.event-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

/* Event Media Links */
.event-media-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.media-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--kpop-purple);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.media-link:hover {
    background: var(--kpop-pink);
    transform: scale(1.05);
}

.media-link.disabled {
    background: #ccc;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.6;
}

/* ========== EVENT MODAL ========== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2.5rem;
    border-radius: 15px;
    max-width: 800px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
}

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

.modal-close {
    color: #aaa;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.modal-close:hover,
.modal-close:focus {
    color: var(--verasol-teal);
}

#modalTitle {
    font-size: 2rem;
    font-weight: 800;
    color: var(--verasol-dark);
    margin-bottom: 1.5rem;
    padding-right: 2rem;
}

#modalBody {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
}

#modalBody p {
    margin-bottom: 1rem;
}

#modalBody strong {
    color: var(--verasol-dark);
    font-weight: 700;
}

#modalBody a {
    color: var(--verasol-teal);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

#modalBody a:hover {
    color: var(--verasol-cyan);
    text-decoration: underline;
}

/* Responsive - Events */
@media (max-width: 968px) {
    .hero-events h1 {
        font-size: 2.2rem;
    }

    .hero-events h1 .sub {
        font-size: 1.1rem;
    }

    .events-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .coming-soon-banner {
        top: 50px;
        right: -70px;
        padding: 8px 70px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .hero-events {
        min-height: 350px;
        padding: 3rem 1.5rem;
    }

    .hero-events h1 {
        font-size: 1.8rem;
    }

    .events-section {
        padding: 3rem 1.5rem;
    }

    .events-section .section-header h2 {
        font-size: 2rem;
    }

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

@media (max-width: 480px) {
    .coming-soon-banner {
        top: 40px;
        right: -80px;
        padding: 6px 60px;
        font-size: 0.7rem;
    }

    .event-content h3 {
        font-size: 1.2rem;
    }

    .media-link {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}