:root { --primary-blue:#2D9CDB; --dark-blue:#1A2B49; --accent-orange:#F2994A; --light-bg:#E6F6FF; --white:#FFFFFF; --text-gray:#555555; }
* { margin:0; padding:0; box-sizing:border-box; font-family:'Inter',sans-serif; }
body { background-color:var(--white); overflow-x:hidden; min-height:100vh; position:relative; }
.background-shape { position:absolute; top:0; right:0; width:55%; height:100vh; background-color:var(--light-bg); border-bottom-left-radius:30% 50%; z-index:-1; }
.navbar { display:flex; justify-content:space-between; align-items:center; padding:2rem 5%; max-width:1400px; margin:0 auto; position:sticky; top:0; background-color:rgba(255,255,255,0.35); z-index:1000; border:none; box-shadow:none; transition:background-color 0.2s ease; }
.navbar.navbar--solid{ background-color:#ffffff; }
.logo { height:65px; width:auto; display:block; }
.nav-links { display:flex; gap:3rem; }
.nav-toggle{ display:none; width:40px; height:40px; align-items:center; justify-content:center; border:1px solid rgba(45,156,219,0.25); border-radius:12px; background:rgba(255,255,255,0.9); color:var(--primary-blue); box-shadow:0 6px 16px rgba(0,0,0,0.06); position:relative; z-index:1002; transition:background-color 0.2s ease,border-color 0.2s ease, box-shadow 0.2s ease; }
.nav-toggle:hover{ background-color:rgba(45,156,219,0.06); border-color:rgba(45,156,219,0.38); }
.nav-toggle:focus-visible{ outline:2px solid rgba(45,156,219,0.45); outline-offset:2px; }
.nav-toggle span{ position:absolute; left:50%; transform:translateX(-50%); width:22px; height:2px; background:var(--primary-blue); border-radius:2px; transition:transform 0.25s ease, opacity 0.2s ease, top 0.25s ease; }
.nav-toggle span:nth-child(1){ top:12px; }
.nav-toggle span:nth-child(2){ top:19px; }
.nav-toggle span:nth-child(3){ top:26px; }
.navbar.is-open .nav-toggle{ background-color:#ffffff; border-color:rgba(45,156,219,0.45); }
.navbar.is-open .nav-toggle span:nth-child(1){ top:19px; transform:translateX(-50%) rotate(45deg); }
.navbar.is-open .nav-toggle span:nth-child(2){ opacity:0; }
.navbar.is-open .nav-toggle span:nth-child(3){ top:19px; transform:translateX(-50%) rotate(-45deg); }
.nav-item { text-decoration:none; color:var(--primary-blue); font-weight:500; font-size:0.9rem; transition:color 0.3s ease; }
.nav-item:hover { color:var(--dark-blue); }
.hero-section { display:flex; justify-content:space-between; align-items:center; padding:2rem 5%; max-width:1400px; margin:0 auto; min-height:80vh; }
.hero-content { flex:1; max-width:500px; z-index:1; }
.hero-title{ font-size:3rem; color:var(--dark-blue); line-height:1.2; margin-bottom:1rem; }
.hero-description{ color:var(--text-gray); font-size:1.05rem; line-height:1.8; margin-bottom:1.5rem; }
.hero-buttons{ display:flex; gap:1rem; align-items:center; flex-wrap:wrap; }
.hero-image-container { flex:1; position:relative; display:flex; justify-content:center; align-items:center; }
.hero-img { max-width:100%; height:auto; }
.floating-card { position:absolute; background:rgba(255,255,255,0.9); backdrop-filter:blur(10px); padding:1.5rem; border-radius:10px; box-shadow:0 10px 30px rgba(0,0,0,0.1); bottom:20%; left:10%; width:200px; z-index:2; }
.card-title { font-size:0.7rem; color:var(--primary-blue); font-weight:700; margin-bottom:0.5rem; }
.card-chart { display:flex; gap:10px; margin-bottom:1rem; }
.chart-circle { width:20px; height:20px; border-radius:50%; border:3px solid; }
.c1 { border-color:#FF5B5B; }
.c2 { border-color:#F2994A; }
.c3 { border-color:#2D9CDB; }
.card-btn { background:#FF5B5B; color:white; text-align:center; padding:0.4rem; border-radius:4px; font-size:0.6rem; font-weight:700; }
.shape { position:absolute; border-radius:50%; }
.play-button { width:50px; height:50px; background:white; border-radius:50%; top:20%; left:20%; box-shadow:0 5px 15px rgba(0,0,0,0.1); display:flex; align-items:center; justify-content:center; }
.play-button::after { content:''; width:0; height:0; border-top:8px solid transparent; border-bottom:8px solid transparent; border-left:12px solid var(--primary-blue); margin-left:4px; }
@media (max-width:968px){ .hero-section{ flex-direction:column; text-align:center; padding-top:4rem; } .hero-content{ margin-bottom:3rem; } .background-shape{ width:100%; height:50vh; border-radius:0 0 50% 50%; } .navbar{ padding:1rem 5%; } .nav-toggle{ display:flex; } .nav-links{ position:fixed; inset:0; background-color:#ffffff; display:none; flex-direction:column; gap:1.25rem; padding:2rem; align-items:flex-start; z-index:1000; } .navbar.is-open .nav-links{ display:flex; } body.menu-open{ overflow:hidden; } }
.about-section{ padding:6rem 5%; max-width:1400px; margin:0 auto; background-color:#F8FBFF; }
.about-container{ display:flex; align-items:center; gap:4rem; }
.about-image{ flex:1; position:relative; }
.about-img{ width:100%; border-radius:20px; box-shadow:0 20px 40px rgba(0,0,0,0.1); position:relative; z-index:2; }
.about-shape{ position:absolute; top:-20px; left:-20px; width:100px; height:100px; background-color:var(--accent-orange); border-radius:50%; z-index:1; opacity:0.2; }
.about-content{ flex:1; }
.section-subtitle{ color:var(--accent-orange); font-weight:700; font-size:0.9rem; letter-spacing:2px; margin-bottom:1rem; }
.section-title{ font-size:2.5rem; color:var(--dark-blue); margin-bottom:1.5rem; line-height:1.2; }
.section-text{ color:var(--text-gray); line-height:1.6; margin-bottom:2rem; }
.feature-list{ list-style:none; margin-bottom:2.5rem; }
.feature-item{ display:flex; align-items:center; gap:1rem; margin-bottom:1rem; color:var(--dark-blue); font-weight:500; }

/* Team Section */
.team-section {
    padding: 6rem 5%;
    background-color: var(--white);
}

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

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-card {
    flex: 1 1 300px;
    max-width: 350px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    text-align: center;
    border: 1px solid rgba(45, 156, 219, 0.1);
}

.team-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(45, 156, 219, 0.15);
    background-color: #fcfdff;
}

.team-img-container {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
}

.team-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
    transition: transform 0.5s ease;
}

.team-img.contain {
    object-fit: contain;
    object-position: bottom;
}

.team-card:hover .team-img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 1rem 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    transition: bottom 0.4s ease;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.team-social a:hover {
    background: var(--dark-blue);
    transform: translateY(-3px);
}

.team-info {
    padding: 2rem;
}

.team-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 0.3rem;
}

.team-role {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.team-details {
    text-align: left;
    margin-top: 1rem;
    border-top: 1px solid #f0f0f0;
    padding-top: 1rem;
}

.detail-item {
    margin-bottom: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.detail-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 0.9rem;
    color: var(--dark-blue);
    font-weight: 500;
}

.check-icon{ display:flex; align-items:center; justify-content:center; width:24px; height:24px; background-color:rgba(45,156,219,0.1); color:var(--primary-blue); border-radius:50%; font-size:0.8rem; font-weight:700; }
.cta-button-outline{ display:inline-block; padding:0.8rem 2rem; border:2px solid var(--primary-blue); color:var(--primary-blue); text-decoration:none; border-radius:50px; font-weight:600; transition:all 0.3s ease; }
.cta-button-outline:hover{ background-color:var(--primary-blue); color:white; }
.cta-button{ display:inline-block; padding:0.9rem 1.6rem; background-color:var(--primary-blue); color:white; text-decoration:none; border-radius:50px; font-weight:700; box-shadow:0 8px 20px rgba(45,156,219,0.25); transition:transform 0.2s ease, box-shadow 0.2s ease; }
.cta-button:hover{ transform:translateY(-2px); box-shadow:0 12px 24px rgba(45,156,219,0.35); }
@media (max-width:968px){ .about-container{ flex-direction:column; } .about-image{ margin-bottom:2rem; } }
.services-section{ padding:6rem 5%; max-width:1400px; margin:0 auto; background-color:var(--white); }
.text-center{ text-align:center; }
.max-w-600{ max-width:600px; margin-left:auto; margin-right:auto; }
.services-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:2rem; margin-top:4rem; }
.service-card{ background:white; padding:2.5rem; border-radius:15px; box-shadow:0 10px 30px rgba(0,0,0,0.05); transition:transform 0.3s ease,border-bottom 0.3s ease; border-bottom:4px solid transparent; }
.service-card:hover{ transform:translateY(-10px); border-bottom:4px solid var(--primary-blue); }
.service-icon{ width:60px; height:60px; background-color:rgba(45,156,219,0.1); color:var(--primary-blue); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.5rem; margin-bottom:1.5rem; }
.service-title{ color:var(--dark-blue); margin-bottom:1rem; font-size:1.25rem; }
.service-desc{ color:var(--text-gray); font-size:0.9rem; line-height:1.6; margin-bottom:1.5rem; }
.service-link{ text-decoration:none; color:var(--primary-blue); font-weight:600; font-size:0.9rem; display:flex; align-items:center; gap:0.5rem; transition:gap 0.3s ease; }
.service-link:hover{ gap:0.8rem; }
.contact-section{ padding:6rem 5%; background-color:var(--dark-blue); color:white; }
.contact-container{ max-width:1400px; margin:0 auto; display:flex; gap:4rem; align-items:center; }
.contact-info{ flex:1; }
.light{ color:white !important; }
.section-text.light{ color:#a0b3c6 !important; }
.contact-details{ margin-top:3rem; }
.contact-item{ display:flex; align-items:flex-start; gap:1.5rem; margin-bottom:2rem; }
.contact-icon{ width:50px; height:50px; background-color:rgba(255,255,255,0.1); border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--accent-orange); font-size:1.2rem; }
.contact-text h5{ font-size:1.1rem; margin-bottom:0.3rem; font-weight:600; }
.contact-text p{ color:#a0b3c6; font-size:0.95rem; }
.contact-form-wrapper{ flex:1; background:white; padding:3rem; border-radius:20px; }
.contact-form{ display:flex; flex-direction:column; gap:1.5rem; }
.form-input{ width:100%; padding:1rem; border:1px solid #e0e0e0; border-radius:8px; font-size:0.95rem; transition:border-color 0.3s ease; }
.form-input:focus{ outline:none; border-color:var(--primary-blue); }
.textarea{ height:150px; resize:none; }
.full-width{ width:100%; text-align:center; border:none; cursor:pointer; }
@media (max-width:968px){ .contact-container{ flex-direction:column; } .contact-form-wrapper{ width:100%; padding:2rem; } }

/* Advantages Accordion (scoped) */
.advantages-section .advantages-accordion{ display:flex; gap:1rem; height:500px; margin-top:4rem; width:100%; }
.advantages-section .accordion-item{ position:relative; flex-grow:1; flex-shrink:1; flex-basis:0; border-radius:30px; overflow:hidden; cursor:pointer; transition:flex-grow 0.5s ease-in-out, box-shadow 0.4s ease; box-shadow:0 10px 30px rgba(0,0,0,0.1); will-change: flex-grow; }
.advantages-section .accordion-item.active{ flex-grow:4; box-shadow:0 20px 40px rgba(0,0,0,0.2); }
.advantages-section .accordion-bg{ position:absolute; top:0; left:0; width:100%; height:100%; z-index:1; transition:transform 0.5s ease; transform: translateZ(0); }
.advantages-section .accordion-item:hover .accordion-bg{ transform:scale(1.05); }
.advantages-section .item-1{ background:linear-gradient(180deg,rgba(79, 172, 254, 0.85) 0%,rgba(0, 242, 254, 0.85) 100%), url('../img/kids-celebrating-kindergarten-graduation.jpg'); background-size: cover; background-position: center; }
.advantages-section .item-2{ background:linear-gradient(180deg,rgba(67, 233, 123, 0.85) 0%,rgba(56, 249, 215, 0.85) 100%), url('../img/happy-beautiful-korean-girl-showing-thumbs-up-approval-smiling-pleased-like-smth-recommending-standing-white-background.jpg'); background-size: cover; background-position: center; }
.advantages-section .item-3{ background:linear-gradient(180deg,rgba(250, 112, 154, 0.85) 0%,rgba(254, 225, 64, 0.85) 100%), url('../img/top-view-people-reading-together.jpg'); background-size: cover; background-position: center; }
.advantages-section .item-4{ background:linear-gradient(180deg,rgba(102, 126, 234, 0.85) 0%,rgba(118, 75, 162, 0.85) 100%), url('../img/call-center-senior-manager-providing-guidance-intern.jpg'); background-size: cover; background-position: center; }
.advantages-section .item-5{ background:linear-gradient(180deg,rgba(137, 247, 254, 0.85) 0%,rgba(102, 166, 255, 0.85) 100%), url('../img/youngsters-stacking-hands-with-determination.jpg'); background-size: cover; background-position: center; }
.advantages-section .item-6{ background:linear-gradient(180deg,rgba(252, 203, 144, 0.85) 0%,rgba(213, 126, 235, 0.85) 100%), url('../img/happy-group-friends-with-their-hands-together-middle.jpg'); background-size: cover; background-position: center; }
.advantages-section .accordion-collapsed{ position:absolute; bottom:2rem; left:50%; transform:translateX(-50%); z-index:2; width:100%; height:100%; display:flex; align-items:flex-end; justify-content:center; padding-bottom:2rem; transition:opacity 0.3s ease; }
.advantages-section .accordion-item.active .accordion-collapsed{ opacity:0; pointer-events:none; }
.advantages-section .collapsed-title{ writing-mode:vertical-rl; transform:rotate(180deg); white-space:nowrap; color:white; font-size:1.2rem; font-weight:700; letter-spacing:2px; text-shadow:0 2px 4px rgba(0,0,0,0.2); }
.advantages-section .accordion-expanded{ position:absolute; bottom:0; left:0; width:100%; padding:3rem; z-index:2; opacity:0; transform:translateY(20px); transition:opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s; color:white; background:linear-gradient(to top,rgba(0,0,0,0.6) 0%,rgba(0,0,0,0) 100%); height:100%; display:flex; flex-direction:column; justify-content:flex-end; align-items:flex-start; }
.advantages-section .accordion-item.active .accordion-expanded{ opacity:1; transform:translateY(0); }
.advantages-section .accordion-icon{ font-size:3rem; margin-bottom:1rem; color:white; background:rgba(255,255,255,0.2); width:70px; height:70px; border-radius:50%; display:flex; align-items:center; justify-content:center; backdrop-filter:blur(5px); }
.advantages-section .accordion-title{ font-size:1.8rem; font-weight:700; margin-bottom:1rem; line-height:1.2; }
.advantages-section .accordion-desc{ font-size:1rem; line-height:1.6; max-width:500px; color:rgba(255,255,255,0.9); }
@media (max-width:968px){ .advantages-section .advantages-accordion{ flex-direction:column; height:auto; } .advantages-section .accordion-item{ flex:none; height:80px; } .advantages-section .accordion-item.active{ flex:none; height:400px; } .advantages-section .accordion-collapsed{ left:2rem; transform:none; justify-content:flex-start; align-items:center; padding-bottom:0; bottom:0; } .advantages-section .collapsed-title{ writing-mode:horizontal-tb; transform:none; } .advantages-section .accordion-expanded{ padding:2rem; } }

/* Admission Journey (scoped) */
.journey-section{ padding:6rem 5%; background-color:var(--white); }
.journey-section .journey-container{ max-width:1200px; margin:0 auto; }
.journey-section .timeline{ position:relative; max-width:1000px; margin:4rem auto 0; overflow:hidden; }
.journey-section .timeline::after{ content:''; position:absolute; width:4px; background-color:var(--primary-blue); top:0; bottom:0; left:50%; margin-left:-2px; border-radius:2px; }
.journey-section .timeline-item{ padding:10px 40px; position:relative; background-color:inherit; width:50%; box-sizing:border-box; }
.journey-section .timeline-item:nth-child(odd){ float:left; clear:left; padding-right:40px; padding-left:0; text-align:right; }
.journey-section .timeline-item:nth-child(even){ float:right; clear:right; padding-left:40px; padding-right:0; margin-top:3rem; text-align:left; }
.journey-section .timeline-item::after{ content:''; position:absolute; width:20px; height:20px; background-color:white; border:4px solid var(--primary-blue); top:25px; border-radius:50%; z-index:1; transition:background-color 0.3s ease; }
.journey-section .timeline-item:nth-child(odd)::after{ right:-10px; }
.journey-section .timeline-item:nth-child(even)::after{ left:-10px; }
.journey-section .timeline-item:hover::after{ background-color:var(--accent-orange); border-color:var(--accent-orange); }
.journey-section .timeline-content{ padding:2rem; background-color:white; position:relative; border-radius:15px; box-shadow:0 5px 20px rgba(0,0,0,0.05); border:1px solid rgba(45,156,219,0.1); transition:transform 0.3s ease, box-shadow 0.3s ease; text-align:left; }
.journey-section .timeline-item:hover .timeline-content{ transform:translateY(-5px); box-shadow:0 10px 30px rgba(45,156,219,0.15); }
.journey-section .timeline-item:nth-child(odd) .timeline-content::before{ content:' '; height:0; position:absolute; top:22px; width:0; z-index:1; right:-10px; border:medium solid white; border-width:10px 0 10px 10px; border-color:transparent transparent transparent white; }
.journey-section .timeline-item:nth-child(even) .timeline-content::before{ content:' '; height:0; position:absolute; top:22px; width:0; z-index:1; left:-10px; border:medium solid white; border-width:10px 10px 10px 0; border-color:transparent white transparent transparent; }
.journey-section .step-number{ font-size:2.5rem; font-weight:800; color:rgba(45,156,219,0.1); position:absolute; top:10px; right:20px; line-height:1; }
.journey-section .step-title{ font-size:1.2rem; font-weight:700; color:var(--dark-blue); margin-bottom:0.8rem; padding-right:2rem; }
.journey-section .step-desc{ color:var(--text-gray); font-size:0.95rem; line-height:1.6; }
@media (max-width:768px){ .journey-section .timeline::after{ left:31px; } .journey-section .timeline-item{ width:100%; padding-left:70px; padding-right:0; float:none; clear:both; margin-top:0; margin-bottom:2rem; text-align:left; } .journey-section .timeline-item:nth-child(odd), .journey-section .timeline-item:nth-child(even){ float:none; clear:both; padding-left:70px; padding-right:0; margin-top:0; text-align:left; } .journey-section .timeline-item::after, .journey-section .timeline-item:nth-child(odd)::after, .journey-section .timeline-item:nth-child(even)::after{ left:21px; right:auto; } .journey-section .timeline-item:nth-child(odd) .timeline-content::before, .journey-section .timeline-item:nth-child(even) .timeline-content::before{ left:-10px; right:auto; border-width:10px 10px 10px 0; border-color:transparent white transparent transparent; } }

.text-blue{ color:var(--primary-blue); }

.programs-section{ padding:6rem 5%; background-color:var(--white); }
.programs-container{ max-width:1400px; margin:0 auto; }
.programs-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; margin-top:3rem; }
.program-card{ background:white; padding:2rem; border-radius:15px; box-shadow:0 10px 30px rgba(0,0,0,0.05); transition:transform 0.3s ease,border-bottom 0.3s ease; border-bottom:4px solid transparent; }
.program-card:hover{ transform:translateY(-8px); border-bottom:4px solid var(--primary-blue); }
.program-card.featured-program{ grid-column:1 / -1; background:linear-gradient(135deg,#ffffff 0%,#f0f7ff 100%); }
.program-header{ text-align:center; max-width:800px; margin:0 auto 1.5rem; }
.program-icon{ width:70px; height:70px; background-color:rgba(45,156,219,0.1); color:var(--primary-blue); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.8rem; margin:0 auto 1rem; }
.program-title{ color:var(--dark-blue); font-size:1.5rem; font-weight:700; margin-bottom:0.5rem; }
.program-subtitle{ color:var(--primary-blue); font-weight:600; letter-spacing:0.5px; }
.program-description{ color:var(--text-gray); font-size:0.95rem; line-height:1.7; text-align:center; max-width:800px; margin:0 auto 2rem; }
.program-levels{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:1.5rem; padding-top:1.5rem; border-top:1px solid rgba(45,156,219,0.15); }
.level-item{ background:#fff; border:1px solid rgba(45,156,219,0.12); border-radius:12px; padding:1.2rem; box-shadow:0 8px 20px rgba(0,0,0,0.04); }
.level-title{ color:var(--dark-blue); font-size:1.05rem; font-weight:700; margin-bottom:0.8rem; }
.level-age{ color:var(--primary-blue); font-weight:600; }
.level-features{ list-style:none; color:var(--text-gray); line-height:1.6; display:grid; gap:0.5rem; }
.program-features{ list-style:none; display:grid; gap:0.6rem; color:var(--text-gray); }

@media (max-width:968px){ .programs-grid{ grid-template-columns:1fr; } .program-card.featured-program{ grid-column:auto; } .program-levels{ grid-template-columns:1fr; } }

@media (max-width:968px){ .hero-title{ font-size:2.2rem; } }

.programs-section .program-card:hover .program-icon{ transform:scale(1.05); }
.programs-section .program-features li{ display:flex; align-items:flex-start; gap:0.6rem; }
.programs-section .program-features .check-icon{ width:22px; height:22px; background-color:rgba(45,156,219,0.1); font-size:0.75rem; }
.programs-section .program-subtitle{ margin-top:0.25rem; }
.programs-section .level-item:hover{ box-shadow:0 12px 28px rgba(0,0,0,0.08); transform:translateY(-2px); transition:transform 0.2s ease, box-shadow 0.2s ease; }
@media (max-width:968px){ .programs-section .program-card{ padding:1.6rem; } }

.testimonials-section{ padding:6rem 5%; background-color:var(--white); }
.testimonials-container{ max-width:1200px; margin:0 auto; }
.testimonial-wrapper{ position:relative; max-width:900px; margin:3rem auto 0; min-height:220px; transition:height 0.3s ease; }
.testimonial-slide{ position:absolute; left:0; top:0; width:100%; padding:2.5rem; background:white; border:1px solid rgba(45,156,219,0.12); border-radius:15px; box-shadow:0 12px 32px rgba(0,0,0,0.07); opacity:0; transform:translateX(12px) scale(0.99); transition:opacity 0.35s ease, transform 0.35s ease; }
.testimonial-slide.active{ opacity:1; transform:translateX(0) scale(1); }
.testimonial-quote{ color:var(--dark-blue); font-size:1.2rem; line-height:1.8; font-weight:700; text-align:center; position:relative; }
.testimonial-quote::before{ content:'\201C'; position:absolute; left:0.5rem; top:-0.8rem; font-size:3rem; color:var(--primary-blue); opacity:0.15; }
.testimonial-author{ margin-top:1rem; color:var(--text-gray); font-style:italic; text-align:center; }
.carousel-btn{ position:absolute; top:50%; transform:translateY(-50%); width:44px; height:44px; display:flex; align-items:center; justify-content:center; border:none; border-radius:50%; background-color:white; box-shadow:0 8px 20px rgba(0,0,0,0.1); color:var(--primary-blue); cursor:pointer; }
.carousel-btn.prev{ left:-22px; }
.carousel-btn.next{ right:-22px; }
.carousel-dots{ display:flex; gap:0.5rem; justify-content:center; margin-top:1rem; }

/* Pricing Section */
.pricing-section{ padding:6rem 5%; background-color:#F8FBFF; }
.pricing-container{ max-width:1200px; margin:0 auto; }
.plans-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; margin-top:3rem; }
.plan-card{ background:white; padding:2rem; border-radius:15px; box-shadow:0 10px 30px rgba(0,0,0,0.05); position:relative; display:flex; flex-direction:column; transition:transform 0.3s ease; border:1px solid transparent; }
.plan-card:hover{ transform:translateY(-10px); }
.plan-header{ margin-bottom:1.5rem; text-align:center; }
.plan-meta{ display:block; font-size:0.8rem; color:var(--primary-blue); font-weight:700; text-transform:uppercase; letter-spacing:1px; margin-bottom:0.5rem; }
.plan-name{ font-size:1.25rem; color:var(--dark-blue); margin-bottom:0.5rem; }
.plan-desc{ font-size:0.9rem; color:var(--text-gray); line-height:1.5; }
.plan-card .plan-price{ position:relative; display:flex; align-items:center; gap:0.5rem; }
.plan-card .plan-price:nth-of-type(2){ margin-top:0.6rem; padding-top:0.6rem; border-top:1px dashed rgba(45,156,219,0.18); }
.plan-card .plan-price::before{ content:''; }
.plan-card .plan-price:nth-of-type(1)::before{ content:'Private'; display:inline-block; color:var(--primary-blue); background-color:rgba(45,156,219,0.12); font-size:0.75rem; font-weight:700; letter-spacing:0.3px; padding:0.12rem 0.5rem; border-radius:999px; }
.plan-card .plan-price:nth-of-type(2)::before{ content:'Group'; display:inline-block; color:var(--dark-blue); background-color:rgba(26,43,73,0.08); font-size:0.75rem; font-weight:700; letter-spacing:0.3px; padding:0.12rem 0.5rem; border-radius:999px; }
.plan-price--accent{ color:var(--dark-blue); }
.plan-period{ color:var(--primary-blue); font-weight:800; font-size:0.8rem; background-color:rgba(45,156,219,0.12); padding:0.12rem 0.5rem; border-radius:999px; letter-spacing:0.2px; }
.plan-note{ font-size:0.82rem; color:#666; line-height:1.5; margin-bottom:1rem; }
.plan-card .plan-note{ margin:0.2rem 0 0.4rem; }
.plan-card .plan-note + .plan-price{ margin-top:0.3rem; }
.old-price{ text-decoration:line-through; color:#999; }
.btn-buy{ margin-top:auto; display:inline-block; width:100%; padding:0.8rem 1rem; background:var(--primary-blue); color:#fff; border:none; border-radius:10px; font-weight:700; cursor:pointer; box-shadow:0 6px 16px rgba(45,156,219,0.25); transition:transform 0.2s ease, box-shadow 0.2s ease; text-decoration:none; text-align:center; }
.btn-buy{ background:linear-gradient(90deg,#2D9CDB 0%,#56CCF2 100%); }
.btn-buy:hover{ color:#fff; text-decoration:none; transform:translateY(-2px); box-shadow:0 10px 24px rgba(45,156,219,0.32); }
.btn-buy::after{ content:'\2192'; margin-left:0.4rem; font-weight:800; }
.btn-buy--accent{ background:var(--dark-blue); box-shadow:0 6px 16px rgba(26,43,73,0.25); }
.btn-buy--accent{ background:linear-gradient(90deg,#1A2B49 0%,#2B3E66 100%); }
.plan--popular{ border-color:var(--primary-blue); box-shadow:0 10px 26px rgba(45,156,219,0.12); }
.plan-badge{ position:absolute; top:-12px; left:16px; background:var(--primary-blue); color:#fff; font-weight:800; font-size:0.75rem; padding:0.28rem 0.6rem; border-radius:7px; letter-spacing:0.4px; box-shadow:0 6px 14px rgba(45,156,219,0.28); }
.pricing-cta{ margin-top:2.5rem; display:flex; gap:1rem; justify-content:center; }
@media (max-width:1200px){ .plans-grid{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:968px){ .plans-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:640px){ .plans-grid{ grid-template-columns:1fr; } }

.faq-section{ padding:6rem 5%; background-color:var(--white); }
.faq-container{ max-width:1000px; margin:0 auto; }
.faq-list{ display:grid; gap:1rem; margin-top:2rem; }
.faq-item{ background:#fff; border:1px solid rgba(45,156,219,0.12); border-radius:12px; padding:1.2rem; box-shadow:0 8px 20px rgba(0,0,0,0.04); transition:border-color 0.2s ease, box-shadow 0.2s ease; }
.faq-item.active{ border-color:var(--primary-blue); box-shadow:0 12px 28px rgba(45,156,219,0.12); }
.faq-header{ width:100%; display:flex; align-items:center; justify-content:space-between; background:transparent; border:none; padding:0; cursor:pointer; }
.faq-question{ color:var(--dark-blue); font-size:1.05rem; font-weight:700; }
.faq-icon{ display:flex; align-items:center; justify-content:center; width:24px; height:24px; border-radius:6px; background-color:rgba(45,156,219,0.1); color:var(--primary-blue); font-weight:800; font-size:1.1rem; }
.faq-item.active .faq-icon{ background-color:var(--primary-blue); color:#fff; }
.faq-content{ overflow:hidden; max-height:0; opacity:0; transition:max-height 0.3s ease, opacity 0.3s ease; }
.faq-item.active .faq-content{ max-height:600px; opacity:1; margin-top:0.6rem; }
.faq-answer{ color:var(--text-gray); font-size:0.95rem; line-height:1.7; }
.faq-bullets{ margin-top:0.6rem; list-style:disc; padding-left:1.2rem; color:var(--text-gray); }

/* New Pricing Card Layout */
.pricing-options { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; flex-grow: 1; }
.pricing-option { border: 1px solid rgba(45, 156, 219, 0.2); border-radius: 12px; padding: 1.2rem; text-align: center; background: #F8FBFF; transition: all 0.3s ease; }
.pricing-option:hover { background: #fff; border-color: var(--primary-blue); box-shadow: 0 8px 24px rgba(45, 156, 219, 0.12); transform: translateY(-2px); }
.option-header { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 0.8rem; color: var(--dark-blue); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px; }
.option-header i { color: var(--primary-blue); font-size: 1rem; }
.option-desc { font-size: 0.85rem; color: var(--text-gray); margin-bottom: 0.8rem; line-height: 1.4; }
.option-price { font-size: 1.4rem; font-weight: 700; color: var(--dark-blue); margin-bottom: 0.2rem; }
.option-price small { font-size: 0.85rem; font-weight: 500; color: var(--text-gray); }
.option-old-price { font-size: 0.85rem; color: #999; text-decoration: line-through; margin-top: 0.2rem; }

.closing-cta-section{ padding:6rem 5%; background-color:var(--white); }
.closing-cta-container{ max-width:1000px; margin:0 auto; }
.closing-cta-actions{ margin-top:2rem; display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
.footer-section{ padding:3rem 5%; background-color:var(--dark-blue); color:white; }
.footer-container{ max-width:1400px; margin:0 auto; }
.footer-grid{ display:grid; grid-template-columns:1.5fr 2fr; gap:2rem; align-items:flex-start; }
.footer-main{ display:flex; flex-direction:column; gap:0.5rem; }
.footer-brand{ font-weight:700; font-size:1.2rem; }
.footer-tagline{ color:#a0b3c6; font-size:0.95rem; }
.footer-columns{ display:grid; grid-template-columns:repeat(2,1fr); gap:2rem; }
.footer-column{ display:flex; flex-direction:column; gap:0.75rem; }
.footer-title{ font-size:0.95rem; font-weight:700; letter-spacing:0.5px; color:#fff; }
.footer-list{ list-style:none; display:grid; gap:0.5rem; }
.footer-icon{ display:inline-flex; align-items:center; justify-content:center; width:22px; height:22px; background-color:rgba(255,255,255,0.1); color:var(--accent-orange); border-radius:6px; margin-right:0.6rem; }
.footer-links{ list-style:none; display:grid; gap:0.5rem; }
.footer-links a{ color:#a0b3c6; text-decoration:none; transition:color 0.2s ease; }
.footer-links a:hover{ color:#fff; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,0.15); margin-top:1.5rem; padding-top:1rem; color:#a0b3c6; font-size:0.9rem; text-align:center; }
@media (max-width:968px){ .footer-grid{ grid-template-columns:1fr; } .footer-columns{ grid-template-columns:1fr; } }

@media (max-width:968px){ .hero-title{ font-size:2.4rem; } .section-title{ font-size:2rem; } .hero-description{ font-size:1rem; } .programs-grid{ grid-template-columns:repeat(2,1fr); } .plans-grid{ grid-template-columns:repeat(3,minmax(220px,1fr)); } }
@media (max-width:640px){ .hero-title{ font-size:2rem; } .section-title{ font-size:1.6rem; } .programs-grid{ grid-template-columns:1fr; } .plans-grid{ grid-template-columns:1fr; } .nav-links{ padding:1.5rem; } .nav-item{ font-size:1.05rem; } }

.wa-float{ position:fixed; right:24px; bottom:24px; width:56px; height:56px; border-radius:50%; background:#25D366; color:#fff; display:flex; align-items:center; justify-content:center; font-size:1.6rem; box-shadow:0 12px 26px rgba(0,0,0,0.18); cursor:pointer; z-index:1000; transition:transform 0.2s ease, box-shadow 0.2s ease; }
.wa-float:hover{ transform:translateY(-2px); box-shadow:0 16px 34px rgba(0,0,0,0.22); }
.wa-popup{ position:fixed; right:24px; bottom:90px; width:320px; background:#fff; border:1px solid rgba(45,156,219,0.12); border-radius:14px; box-shadow:0 18px 40px rgba(0,0,0,0.12); z-index:999; opacity:0; pointer-events:none; transform:translateY(8px); transition:opacity 0.2s ease, transform 0.2s ease; }
.wa-popup.active{ opacity:1; pointer-events:auto; transform:translateY(0); }
.wa-popup-header{ display:flex; align-items:center; justify-content:space-between; padding:0.9rem 1rem; border-bottom:1px solid rgba(45,156,219,0.12); }
.wa-popup-title{ font-weight:700; color:var(--dark-blue); }
.wa-popup-close{ background:transparent; border:none; color:#999; font-size:1.2rem; cursor:pointer; }
.wa-popup-body{ padding:1rem; display:grid; gap:0.75rem; }
.wa-popup-text{ color:var(--text-gray); font-size:0.95rem; }
.wa-input{ width:100%; padding:0.7rem 0.8rem; border:1px solid #e0e0e0; border-radius:8px; font-size:0.95rem; }
.wa-send{ width:100%; padding:0.7rem 1rem; border:none; border-radius:8px; background:var(--primary-blue); color:#fff; font-weight:700; cursor:pointer; }
.navbar{ border-bottom:1px solid transparent; }

/* Pricing Carousel */
.pricing-carousel-wrapper {
    position: relative;
    padding: 0 3rem; /* Space for buttons */
    margin-top: 3rem;
}

.pricing-track-container {
    overflow: hidden;
    width: 100%;
}

.pricing-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.4s ease-in-out;
    padding: 40px 4px 40px; /* Added padding to prevent badge/shadow clipping */
}

.pricing-track .plan-card {
    flex: 0 0 calc((100% - 4rem) / 3);
    width: calc((100% - 4rem) / 3);
    margin: 0;
}

.pricing-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid rgba(45, 156, 219, 0.2);
    color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.pricing-nav:hover {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 6px 16px rgba(45, 156, 219, 0.25);
}

.pricing-nav.prev { left: 0; }
.pricing-nav.next { right: 0; }

/* Responsive for Pricing Carousel */
@media (max-width: 992px) {
    .pricing-track .plan-card {
        flex: 0 0 calc((100% - 2rem) / 2);
        width: calc((100% - 2rem) / 2);
    }
}

@media (max-width: 640px) {
    .pricing-track .plan-card {
        flex: 0 0 100%;
        width: 100%;
    }
    .pricing-carousel-wrapper {
        padding: 0;
    }
    .pricing-nav {
        width: 32px;
        height: 32px;
        background: rgba(255,255,255,0.9);
    }
    .pricing-nav.prev { left: -10px; }
    .pricing-nav.next { right: -10px; }
}
