/* ============================================
   KAKY — Blue Theme Stylesheet (Matching Reference)
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue-dark: #0b2545;
    --blue-primary: #134074;
    --blue-medium: #1b5091;
    --blue-light: #7bafd4;
    --blue-accent: #4a90d9;
    --blue-pale: #a8c9e8;
    --blue-banner: #7eb8e0;
    --white: #ffffff;
    --off-white: #f5f7fa;
    --text-dark: #0b2545;
    --text-light: #c8d8e8;
    --text-muted: #8a9fc0;
    --border-light: rgba(255, 255, 255, 0.12);
    --border-dark: rgba(11, 37, 69, 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 100px;
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ---------- Promo Banner ---------- */
.promo-banner {
    display: none;
    background: #88BCFB;
    text-align: center;
    padding: 12px 24px;
    font-size: 20px;    
    color: white;
    line-height: 1.5;
    align-items: center;
}
.promo-banner p{
    width: 1033px;
    margin: 0 auto;
    font-weight: 700;
}

.promo-banner strong {
    font-weight: 700;
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    /* top: 96px; */
    top: 10px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 24px;
    background: transparent;
    transition: top 0.2s ease;
}

.navbar.scrolled {
    top: 10px;
}

.nav-container {
    max-width: 1106px;
    height: 84px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #054A9E;
    border-radius: var(--radius-full);
    padding: 10px 12px 10px 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    border-radius: 50%;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-link {
    padding: 10px 18px;
    font-size: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    color: var(--white);
    font-weight: 600;
}

/* Nav Buttons */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    white-space: nowrap;
    text-decoration: none;
}

.btn-enroll {
    padding: 10px 24px;
    background: var(--blue-dark);
    color: var(--white);
    border-radius: var(--radius-full);
}

.btn-enroll:hover {
    background: #091e3a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-signup {
    padding: 10px 24px;
    background: var(--white);
    color: var(--blue-dark);
    border-radius: var(--radius-full);
}

.btn-signup:hover {
    background: var(--off-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.nav-toggle .bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-base);
}

.nav-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Page Wrapper (navbar overlays hero) ---------- */
.page-wrapper {
    position: relative;
}

/* ---------- Main Content ---------- */
.main-content {
    min-height: 60vh;
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    height: 85vh;
    min-height: 798px;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 1028px;
}

.hero-title {
    font-size: 74px;
    font-weight: 600;
    color: var(--white);
    line-height: 84px;
    margin-bottom: 20px;
}

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

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    color: #E9E9E9;
    max-width: 740px;
    margin: 0 auto 32px;
    line-height: 1.6;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-learn-more {
    padding: 12px 28px;
    background: #FFFFFF;
    color: #032A5B;
    border: 1px solid #032A5B;
    border-radius: var(--radius-full);
}

.btn-learn-more:hover {
    background: var(--white);
    color: var(--blue-dark);
    transform: translateY(-1px);
}

.hero .btn-enroll {
    padding: 12px 28px;
    background: var(--blue-primary);
}

.hero .btn-enroll:hover {
    background: var(--blue-medium);
}

/* ---------- Scrolling Marquee ---------- */
.marquee {
    background: var(--blue-dark);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    animation: marquee-scroll 30s linear infinite;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
}

.marquee-dot {
    color: var(--blue-light);
    font-size: 20px;
    font-weight: 700;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---------- Shared Section Styles ---------- */
.section-badge {
    display: inline-block;
    padding: 8px 32px;
    border: 1.5px solid var(--blue-accent);
    border-radius: var(--radius-full);
    font-size: 20px;
    font-weight: 700;
    color: #88BCFB;
    margin-bottom: 16px;
}

.section-title {
    font-size: 40px;
    font-weight: 600;
    color: #1F1F1F;
    line-height: 1.25;
    margin-bottom: 16px;
}

.highlight-blue {
    color: #88BCFB;
}

.section-description {
    font-size: 16px;
    color: #696969;
    max-width: 720px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

/* ---------- About Section ---------- */
.about-section {
    padding: 80px 24px 88px;
    text-align: center;
    background: var(--white);
}

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

.about-cta {
    font-size: 18px;
    font-weight:700 ;
    margin-bottom: 48px;

}

/* Feature Pills */
.feature-pills {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: -48px;
    position: relative;
    z-index: 2;
}

.feature-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 8px 8px;
    background:#054A9E;
    color: var(--white);
    border-radius: var(--radius-md);
    max-width:  115px;
    min-width: 115px;
    height: 96px;
    transition: var(--transition-base);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-pill:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    margin-top: 10px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-pill span {
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

/* Vision & Mission Card */
.vm-card {
    display: flex;
    max-width: 1008px;
    height: 296px;
    justify-content: center;
    border: 1px solid #88BCFB;
    background-color: #F5F5F5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: left;
    padding-top: 48px;
    position: relative;
}

.vm-item {
    /* flex: 1; */
    width: 240px;
    margin-top: 32px;
    
}

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

.vm-header svg {
    color: var(--blue-dark);
    flex-shrink: 0;
}

.vm-header h3 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    color: #054A9E;
}

.vm-item p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #1F1F1F;
}

.vm-divider {
    width: 1px;
    background: #88BCFB;
    align-self: center;
    height: 168px;
    margin-right: 144px;
    margin-left: 144px;
}


/* ---------- Program Section ---------- */
.program-section {
    padding: 0px 24px 80px;
    text-align: center;
    background: var(--white);
}

.program-container {
    max-width: 1290px;
    margin: 0 auto;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.program-card {
    width: 410px;
    height: 270px;
    background: #054A9E;
    border-radius: 32px;
    overflow: hidden;
    transition: var(--transition-base);
    text-align: left;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.program-card-top {
    position: relative;
    padding: 20px 27px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.program-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.program-card:hover .program-arrow {
    background: rgba(255, 255, 255, 0.25);
}

.program-img {
    width: 180px;
    height: 140px;
    object-fit: cover;
    border-radius: 16px;
    border-bottom-left-radius: 16px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
}

.program-card-bottom {
    padding: 10px 24px 28px;
}

.program-card-bottom h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: #FFFFFF;
}

.program-card-bottom p {
    font-size: 16px;
    font-weight: 300;
    color:#E9E9E9;
    line-height: 24px;
}

/* ---------- Testimonial Section ---------- */
.testimonial-section {
    display: none;
    padding: 0px 24px 88px;
    text-align: center;
    background: var(--white);
}

.testimonial-container {
    max-width: 1293px;
    margin: 0 auto;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.testimonial-card {
    background: #F5F5F5;
    width: 306px;
    height: 273px;
    /* border: 1px sol; */
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: left;
    transition: var(--transition-base);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.testimonial-quote {
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    font-weight: 400;
    color: #4C4C4C;
    line-height: 24px;
    margin-bottom: 24px;
}

.testimonial-author h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    color: #1F1F1F;
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    color: #1F1F1F;
}

/* ---------- Educators Section ---------- */
.educators-section {
    display: none;
    padding: 0px 24px 100px;
    text-align: center;
    background: var(--white);
}

.educators-container {
    max-width: 1299px;
    margin: 0 auto;
}

.educators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.educator-card {
    position: relative;
    width: 416px;
    height: 392px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    transition: var(--transition-base);
    
}

.educator-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

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

.educator-info {
    position: absolute;
    border-radius: 16px;
    width: 344px;
    height: 80px;
    bottom: 24px;
    left: 0;
    right: 0;
    padding: 20px;
    background-color: #F5F5F533;
    text-align: left;
    margin: 0 auto;
}

.educator-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.educator-info span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ---------- CTA Banner Section ---------- */
.cta-banner-section {
    padding: 0px 24px 88px;
    background: var(--white);
}

.cta-banner {
    max-width: 1296px;
    margin: 0 auto;
    background: #88BCFB;
    border-radius: 32px;
    padding: 60px 40px;
    text-align: center;
}

.cta-logo {
    margin-bottom: 28px;
}

.cta-logo-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto;
    opacity: 0.85;
}

.cta-title {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    color: #1F1F1F;
    max-width: 804px;
    margin: 0 auto 8px;
}

.cta-description {
    font-size: 16px;
    font-weight: 400;
    color: #4C4C4C;
    line-height: 24px;
    max-width: 940px;
    margin: 0 auto 28px;
}

.cta-btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
}

/* ---------- Page Header (Camps + WhyKaky) ---------- */
.page-header {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 100%);
    padding: 80px 24px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123, 175, 212, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.page-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--blue-pale);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
}

.page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    position: relative;
}

.page-title .gradient-text {
    color: var(--blue-light);
    background: none;
    -webkit-text-fill-color: var(--blue-light);
}

.page-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
}

/* ---------- Camps Section ---------- */
.camps-section {
    padding: 60px 24px 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.camps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.camp-card {
    background: var(--white);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.camp-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.camp-image {
    height: 180px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 16px;
}

.camp-tag {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
}

.camp-info {
    padding: 24px;
}

.camp-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.camp-info p {
    color: #5a6a7e;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.camp-meta {
    display: flex;
    gap: 16px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ---------- Why KaKy Section ---------- */
.why-section {
    padding: 60px 24px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.why-card {
    background: var(--white);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-accent);
}

.why-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--blue-pale);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.5;
}

.why-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.why-card p {
    color: #5a6a7e;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ---------- Stats Section ---------- */
.stats-section {
    padding: 60px 24px 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    text-align: center;
}

.stat-item {
    padding: 36px 20px;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--blue-pale);
    font-weight: 500;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--blue-dark);
    color: var(--white);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-container {
    max-width: 1297px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-top .footer-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    justify-content: space-between;
}

.footer-left {
    flex: 0 0 280px;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    border-radius: 50%;
    margin-bottom: 28px;
}

.footer-contact {
    margin-bottom: 24px;
}

.footer-contact-item {
    margin-bottom: 16px;
}

.footer-contact-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--white);
}

.footer-contact-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.footer-social h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 12px;
}

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

.social-icons a {
    color: var(--text-light);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
}

.social-icons a:hover {
    color: var(--white);
    transform: scale(1.15);
}

/* Footer Form */
.footer-right {
    flex: 1;
    max-width: 648px;
}

.footer-form {
    display: flex;
    flex-direction: column;
    
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--white);
    color: var(--text-dark);
    border: none;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aab3c0;
}

.form-group input:focus,
.form-group textarea:focus {
    box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-form-submit {
    width: 100%;
    padding: 14px;
    background: var(--blue-pale);
    color: var(--blue-dark);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition-base);
}

.btn-form-submit:hover {
    background: var(--blue-light);
    transform: translateY(-1px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #FFFFFF;
    width: 85%;
    margin: 0 auto;
    padding: 20px 0;
}

.footer-bottom .footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 100px;
    max-width: 984px;
    gap: 32px;
    flex-wrap: wrap;
    font-size: 14px;
    font-weight: 700;
    color:#E9E9E9;
}

.footer-bottom a {
    color: #E9E9E9;
    transition: var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--white);
}

/* ---------- School Partnership: About Section ---------- */
.sp-about-section {
    padding: 80px 24px 0px;
    text-align: center;
    background: var(--white);
}

.sp-about-container {
    max-width: 1296px;
    margin: 0 auto;
}

.sp-about-header {
    margin-bottom: 48px;
}

.sp-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 69px;
    align-items: center;
}

.sp-about-image {
    width: 552px;
    height: 424px;
    border-radius: 8px;
    overflow: hidden;
}

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

.sp-about-features {
    display: flex;
    padding: 80px 50px;
    border-radius: 8px;
    width: 678px;
    height: 425px;
    flex-direction: column;
    justify-content: center;
    background-color: #F5F5F5;
    gap: 16px;
}

.sp-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border: 1px solid #88BCFB;
    border-radius: 14px;
    padding: 8px 8px;
    text-align: left;
    transition: var(--transition-base);
}

.sp-feature-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.sp-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: #EEF4FF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-feature-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: #4C4C4C;
    line-height: 24px;
    margin-bottom: 4px;
}

.sp-feature-text p {
    font-size: 14px;
    color:#989898;
    line-height: 20px;
    font-weight: 400px;
}

.sp-about-pillars-section {
    padding: 80px 0px 60px;
    text-align: center;
    background: var(--white);
    
}

/* Pillars Row */
.sp-about-pillars {
    align-items: center;
    width: 100vw;
    height: 232px;
    background-color: #F5F5F5;
    display: flex;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
}

.sp-pillar-item {
    width: 160px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 16px 30px 16px;
    background: #F5F5F5;
    border: 1px solid #88BCFB;
    border-radius: 14px;
    min-width: 180px;
    max-width: 220px;
    transition: var(--transition-base);
    justify-content: space-between;
}

.sp-pillar-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.sp-pillar-icon {
    margin-top: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-pillar-item span {
    font-size: 12px;
    font-weight: 400;
    color: #696969;
    text-align: center;
    line-height: 16px;
}

/* ---------- School Partnership: Programs Section ---------- */
.sp-programs-section {
    padding: 20px 24px 80px;
    background: var(--white);
}

.sp-programs-container {
    max-width: 1296px;
    margin: 0 auto;
}

.sp-programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sp-program-card {
    width: 416px;
    height: 412px;
    background: var(--white);
    border: 2px solid #054A9E;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-base);
}

.sp-program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(74, 144, 217, 0.18);
}

.sp-program-card-inner {
    padding: 26px 23px 22px 22px;
    text-align: center;
    flex: 1;
}

.sp-program-card-inner h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: #054A9E;
    margin-bottom: 12px;
}

.sp-program-card-inner p {
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    color: #696969;
}

.sp-program-card-image {
    width: 371px;
    height: 190px;
    margin: 0 auto;
    padding-bottom: 22px;
}

.sp-program-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

/* ---------- School Partnership: Learning Model Section ---------- */
.sp-learning-section {
    padding: 0px 24px 80px;
    text-align: center;
    background: var(--white);
}

.sp-learning-container {
    max-width: 1298px;
    margin: 0 auto;
}

.sp-learning-header {
    margin-bottom: 48px;
}

.sp-learning-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    overflow: hidden;
}

.sp-learning-image {
    width: 528px;
    height: 512px;
    border-radius: 8px 8px 8px 8px;
    overflow: hidden;

}

.sp-learning-image img {
    border-radius: 8px 8px 8px 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sp-learning-steps {
    width: 721px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px 12px 12px 0;
    justify-content: center;
}

.sp-learning-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    align-items: center;
    gap: 16px;
    background: #054A9E;
    padding: 24px 24px;
    flex: 1;
    text-align: left;
    border-radius: 16px;
}

.sp-step-number {
    position: absolute;
    top: 50px;
    left: -20px;
    z-index: 2;

    width: 40px;
    height: 40px;
    min-width: 40px;
    background:#FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    line-height: 20px;
    font-weight: 700;
    color: #054A9E;
    margin-top: 2px;
    border: 1px solid #054A9E;
}

.sp-step-info{
    display: flex;
    align-items: center;
    gap: 12px;
}

.sp-step-info h3 {
    width: 162px;
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 32px;
    margin-left: 10px;
}

.vm-divider-learning {
    width: 1px;
    height: 99px;
    background-color: #BABABA;
    opacity: 1;
}

.sp-step-info p {
    margin-left: 30px;
    width: 433px;
    font-size: 14px;
    color: #E9E9E9;
    line-height: 20px;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        background: var(--blue-dark);
        padding: 100px 32px 40px;
        gap: 4px;
        transition: right var(--transition-base);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }

    .nav-menu.show {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
    }

    .nav-actions {
        display: none;
    }

    .hero {
        height: 60vh;
        min-height: 400px;
    }

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

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero .btn-enroll,
    .btn-learn-more {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

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

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

    .footer-top .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-left {
        flex: none;
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .feature-pills {
        gap: 12px;
    }

    .feature-pill {
        min-width: 110px;
        padding: 16px 18px;
    }

    .vm-card {
        flex-direction: column;
    }

    .vm-divider {
        width: 100%;
        height: 1px;
    }

    .image-layout-container {
        grid-template-columns: 1fr;
    }

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

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

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

    .sp-about-content {
        grid-template-columns: 1fr;
    }

    .sp-about-pillars {
        gap: 16px;
    }

    .sp-pillar-item {
        min-width: 140px;
    }

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

    .sp-learning-content {
        grid-template-columns: 1fr;
    }

    .sp-learning-image {
        border-radius: 20px 20px 0 0;
    }

    .sp-learning-steps {
        padding: 0 0 12px 0;
    }
}

@media (max-width: 480px) {
    .promo-banner {
        font-size: 0.75rem;
        padding: 10px 16px;
    }

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

    .stat-number {
        font-size: 2rem;
    }

    .footer-bottom .footer-container {
        gap: 16px;
    }

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

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

    .feature-pills {
        flex-direction: column;
        align-items: center;
    }
}
