html,
body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

:root {
    --bg-cream: #fbf6e6;
    --bg-teal: #b6dedc;
    --wave-yellow: #f8cf46;
    --tag-pink: #f5a6b2;
    --text-dark: #1a1e1b;
    --text-white: #ffffff;

    --font-nav: 'Oswald', sans-serif;
    --font-wave: 'Caveat', cursive;
    --font-display: 'Amatic SC', cursive;
    --font-body: 'Quicksand', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    width: 100%;
    min-height: 100vh;
    font-family: var(--font-body);
    color: var(--text-dark);
}

/* --- FADE IN ANIMATION --- */
.page-wrapper {
    opacity: 0;
    animation: fadeIn 1.2s ease-out forwards;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* --- BACKGROUND SVG --- */
.bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.bg-layer svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.curve-text {
    font-family: var(--font-wave);
    font-size: 26px;
    letter-spacing: 2px;
    fill: var(--text-dark);
    text-transform: uppercase;
    transition: font-size 0.3s ease;
    display: none;
    /* Hidden by default */
}

#yellow-wave {
    display: none;
    /* Hidden by default */
}

/* Show only on desktop */
@media (min-width: 1025px) {

    .curve-text,
    #yellow-wave {
        display: block;
    }
}

.curve-mobile {
    display: none;
}

/* --- NAVIGATION --- */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    justify-content: flex-end;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-dark);
    font-family: var(--font-nav);
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active-nav {
    color: #555;
    background-color: #bde2e1;
    border-radius: 8px;
    padding: 8px 15px;
}

.nav-menu li a {
    padding: 8px 15px;
    transition: background-color 0.3s, color 0.3s;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 20;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: 0.3s;
}

/* --- STICKY NAV BAR --- */
.fixed-header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fdfbf3;
    z-index: 999999 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 40px;
    justify-content: flex-end;
    animation: slideDown 0.3s ease-in-out forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.close-menu {
    display: none;
    font-size: 3rem;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--text-dark);
}

@media (min-width: 769px) {
    #sticky-nav {
        display: flex;
    }
}

/* --- MAIN CONTENT AREA --- */
.content-container {
    position: relative;
    z-index: 5;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5% 80px 5%;
}

.logo-wrapper {
    flex: 1;
    text-align: center;
    max-width: 400px;
    margin-top: -50px;
    margin-left: 5%;
}

.logo-placeholder {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder img {
    width: 90%;
    margin-top: -300px;
    margin-left: 225px;
}

.admissions-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: rotate(-3deg);
    margin-top: 100px;
}

.admissions-title {
    background-color: var(--text-white);
    color: #5a6b63;
    font-family: var(--font-display);
    font-size: 4.5rem;
    padding: 10px 30px;
    border-radius: 15px;
    box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.pink-tag {
    background-color: var(--tag-pink);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.3rem;
    padding: 8px 25px;
    border-radius: 25px;
    margin: 5px 0;
    transform: rotate(-2deg);
    box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.1);
}

/* --- DECORATIVE ELEMENTS --- */
.star-green {
    position: absolute;
    top: 15%;
    left: -2%;
    width: 120px;
    height: 120px;
    background-color: #ffffff;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    z-index: 1;
    transform: rotate(15deg);
}

.star-pink {
    position: absolute;
    bottom: 15%;
    right: -2%;
    width: 150px;
    height: 150px;
    background-color: var(--tag-pink);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    z-index: 1;
    transform: rotate(-15deg);
}

/* --- CIRCULAR HERO IMAGE --- */
.circle-image {
    position: absolute;
    bottom: 20px;
    left: 3%;
    width: clamp(200px, 25vw, 400px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 12px solid #fbf6e7;
    overflow: hidden;
    z-index: 10;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- BOTTOM TICKER --- */
.bottom-banner {
    position: absolute;
    bottom: 50px;
    width: 100%;
    text-align: center;
    font-family: var(--font-nav);
    font-size: 1.2rem;
    letter-spacing: 2px;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0 20px;
}

.star-separator {
    font-size: 1.2rem;
    display: inline-block;
    transform: translateY(-2px);
}

/* ========================================================= */
/* ===================== NEW SECTIONS ====================== */
/* ========================================================= */

/* --- FOUNDATION SECTION --- */
.foundation-section {
    display: flex;
    align-items: center;
    justify-content: center;
    /* FIXED: Centered */
    width: 100%;
    box-sizing: border-box;
    padding: 100px 10vw;
    gap: 100px;
    /* FIXED: Static Gap */
    background-color: #FDFBF2;
    font-family: 'Poppins', sans-serif;

    /* Fade-in transition */
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.foundation-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.content-left {
    flex: 1.2;
    max-width: 600px;
    /* FIXED: Prevents over-stretching */
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 30px;
}

.title-teal {
    color: #398C9B;
    display: block;
}

.title-pink {
    color: #F19793;
    display: block;
}

.section-desc {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #000000;
}

.section-cta {
    font-size: 17px;
    font-weight: 600;
    margin-top: 35px;
    color: #000000;
}

.content-right {
    flex: 1;
    display: flex;
    justify-content: center;
    /* FIXED: Centered */
    position: relative;
    max-width: 480px;
}

.graphic-svg {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.sparkle-icon {
    position: absolute;
    bottom: -35px;
    right: -35px;
    width: 120px;
    height: 120px;
    z-index: 10;
}

/* --- PHILOSOPHY SECTION --- */
.philosophy-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* FIXED: Centered */
    width: 100%;
    box-sizing: border-box;
    padding: 100px 10vw;
    gap: 100px;
    /* FIXED: Static Gap */
    background-color: #FCD8D4;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;

    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.philosophy-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.decor-zigzag {
    position: absolute;
    width: 400px;
    height: auto;
    z-index: 0;
    opacity: 0.8;
}

.decor-zigzag.left-top {
    top: 5%;
    left: -20px;
    transform: rotate(-15deg);
}

.decor-zigzag.right-bottom {
    bottom: 10%;
    right: 0%;
    transform: rotate(15deg);
}

.philosophy-image {
    flex: 1;
    display: flex;
    justify-content: center;
    /* FIXED: Centered */
    max-width: 450px;
    z-index: 1;
}

.arch-svg {
    width: 100%;
    height: auto;
    display: block;
}

.philosophy-text {
    flex: 1.2;
    max-width: 600px;
    /* FIXED: Prevents stretching */
    color: #000000;
    z-index: 1;
}

.philosophy-desc {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 25px;
}

.philosophy-list {
    margin: 30px 0 40px 30px;
}

.philosophy-list li {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 8px;
    list-style-type: disc;
}

.philosophy-list li::marker {
    color: #000000;
}

/* --- CURRICULUM SECTION --- */
.curriculum-section {
    width: 100%;
    font-family: 'Poppins', sans-serif;
    color: #000000;
}

.curr-block {
    width: 100%;
    padding: 80px 10vw;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.curr-block.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.curr-beige {
    background-color: #FDFBF2;
}

.curr-pink {
    background-color: #FCD8D4;
}

.curr-blue {
    background-color: #DDEEEA;
}

.curr-row {
    display: flex;
    align-items: center;
    justify-content: center;
    /* FIXED: Centered */
    gap: 100px;
    /* FIXED: Static Gap */
    margin-bottom: 80px;
    max-width: 1200px;
    /* FIXED: Container bounds */
    margin-left: auto;
    margin-right: auto;
}

.curr-row:last-child {
    margin-bottom: 0;
}

.reverse-row {
    flex-direction: row-reverse;
}

.curr-text {
    flex: 1.2;
    position: relative;
    max-width: 600px;
    /* FIXED: Prevents stretching */
}

.curr-heading-teal {
    color: #4499A9;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.curr-heading-black {
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.curr-subheading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
}

.curr-desc {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 15px;
}

.margin-top-sm {
    margin-top: 25px;
}

.curr-highlight {
    color: #4499A9;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    margin-top: 30px;
}

.curr-list {
    margin-left: 0;
    padding-left: 0;
    list-style: none;
    margin-bottom: 20px;
}

.curr-list li {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #000;
    font-weight: 700;
}

.bullet-list li::before {
    content: '•';
    position: absolute;
    left: 5px;
    color: #000;
    font-size: 20px;
    line-height: 1;
    top: -2px;
}

.curr-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    min-width: 300px;
    max-width: 480px;
}

.image-mask {
    overflow: hidden;
    background-color: #DDF4FF;
    width: 100%;
}

.image-mask svg {
    width: 100%;
    height: 100%;
    display: block;
}

.mask-circle {
    width: 350px;
    height: 350px;
    border-radius: 50%;
}

.mask-arch {
    width: 300px;
    height: 400px;
    border-radius: 150px 150px 0 0;
}

.mask-square {
    width: 400px;
    height: 350px;
    border-radius: 20px;
}

.mask-pill {
    width: 450px;
    height: 220px;
    border-radius: 120px;
}

.decor {
    position: absolute;
    z-index: 10;
}

.sun-decor {
    width: 110px;
    height: 110px;
    top: -20px;
    left: -40px;
}

.swirl-decor {
    width: 150px;
    height: 150px;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

.squiggle-decor {
    width: 180px;
    height: auto;
    bottom: -40px;
    right: -20px;
}

.star-blue-decor {
    width: 120px;
    height: 120px;
    bottom: -20px;
    left: -50px;
}


/* ========================================================= */
/* ================= RESPONSIVE MEDIA QUERIES ============== */
/* ========================================================= */

/* Tablet Adjustments */
@media (max-width: 1024px) {
    .admissions-title {
        font-size: 3.5rem;
        text-align: center;
    }

    .pink-tag {
        font-size: 1.1rem;
    }



    .logo-wrapper {
        max-width: 300px;
        margin-top: 0;
    }

    .circle-image {
        border-width: 8px;
        left: 2%;
        bottom: 60px;
    }

    .bottom-banner {
        position: relative;
        bottom: auto;
        padding: 20px 10px;
        margin-top: 10px;
    }

    .foundation-section,
    .philosophy-section {
        gap: 60px;
    }

    .curr-row {
        gap: 60px;
    }
}

/* Mobile Layouts */
@media (max-width: 900px) {

    .foundation-section,
    .philosophy-section,
    .curr-block {
        flex-direction: column;
        padding: 80px 5%;
    }

    .content-left,
    .content-right,
    .philosophy-text,
    .philosophy-image,
    .curr-text,
    .curr-image-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .curr-row,
    .reverse-row {
        flex-direction: column;
        margin-bottom: 60px;
    }

    .title-teal,
    .title-pink {
        display: inline-block;
        margin-right: 8px;
    }

    .decor-zigzag.left-top {
        top: 2%;
        left: -40px;
    }

    .mask-circle {
        width: 300px;
        height: 300px;
    }

    .mask-pill {
        width: 100%;
        max-width: 350px;
        height: 180px;
    }

    .mask-square {
        width: 100%;
        max-width: 350px;
        height: 300px;
    }

    .swirl-decor {
        display: none;
    }

    .sun-decor {
        left: 0;
    }

    .star-blue-decor {
        left: -10px;
    }
}

@media (max-width: 768px) {
    .curve-mobile {
        display: block;
        position: absolute;
        margin-top: -70px;
        width: 428px;
        margin-right: 20px;
    }

    header {
        padding: 15px 20px;
    }

    .hamburger {
        display: flex;
        position: fixed;
        top: 15px;
        right: 15px;
        background-color: #fdfbf3;
        padding: 8px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        z-index: 999999 !important;
        /* Ensure it's above everything */
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: all;
    }

    header.active .hamburger {
        display: none !important;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: var(--bg-cream);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 999998;
        /* Just below the hamburger */
    }

    .nav-menu.active {
        right: 0;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .nav-menu .close-menu {
        display: block;
    }

    .nav-menu li {
        margin: 20px 0;
    }

    .bg-layer {
        height: 100%;
        top: 0;
    }

    .bg-layer svg {
        object-position: center top;
    }

    .bg-path-cream {
        display: block;
        /* Custom wavy path to match curve-mobile.png */
        d: path("M 0,0 L 1575,0 L 1600,350 C 1300,400 1000,200 125,10 C 400,700 200,300 0,550 Z");
        transform: scale(1.1);
        transform-origin: top left;
    }

    .page-wrapper {
        background-color: var(--bg-teal) !important;
    }

    .bg-path-teal {
        display: none;
    }

    .content-container {
        flex-direction: column;
        padding-top: 80px;
        padding-bottom: 20px;
    }

    .logo-wrapper {
        margin-left: 0;
        margin-top: 0;
    }

    .logo-placeholder img {
        width: 100%;
        max-width: 216px;
        margin: 0px 136px 200px 0px;
        display: block;
    }

    .admissions-wrapper {
        transform: rotate(0deg);
        margin-top: 0px;
    }

    .circle-image {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        margin: 40px auto 20px auto;
        width: 250px;
    }

    .bottom-banner {
        position: relative;
        bottom: auto;
        padding: 20px 10px;
        margin-top: 10px;
        flex-direction: column;
        gap: 10px;
    }

    .star-green,
    .star-pink {
        display: none;
    }


}

/* Fixed Mobile Missing CSS block */
@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }

    .section-desc,
    .section-cta {
        font-size: 15px;
    }

    .sparkle-icon {
        width: 80px;
        height: 80px;
        bottom: -20px;
        right: -20px;
    }

    .philosophy-desc,
    .philosophy-list li {
        font-size: 16px;
    }

    .philosophy-list {
        margin-left: 20px;
    }

    .decor-zigzag {
        width: 80px;
    }

    .curr-heading-teal,
    .curr-heading-black {
        font-size: 15px;
    }

    .curr-desc,
    .curr-list li {
        font-size: 15px;
    }

    .curr-highlight {
        font-size: 16px;
    }

    .squiggle-decor {
        width: 120px;
        right: 0;
    }

    .mask-arch {
        width: 250px;
        height: 320px;
    }
}



/* --- FEATURES & PARTNERSHIP SECTION --- */
.features-section {
    width: 100%;
    font-family: 'Poppins', sans-serif;
    color: #000000;
}

.feature-block {
    width: 100%;
    padding: 80px 10vw;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.feature-block.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.relative-overflow {
    position: relative;
    overflow: hidden;
}

/* Background Colors */
.feature-pink {
    background-color: #FCD8D4;
}

.feature-mint {
    background-color: #DDEEEA;
}

.feature-beige {
    background-color: #FDFBF2;
}

/* Layouts */
.feature-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.reverse-row {
    flex-direction: row-reverse;
}

/* Text Blocks */
.feature-text {
    flex: 1;
    max-width: 500px;
}

.feature-center-wrapper {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Headings */
.pill-heading {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 25px;
    border-radius: 50px;
    margin-bottom: 25px;
    color: #000;
}

.bg-white {
    background-color: #FFFFFF;
}

.bg-pink {
    background-color: #FCD8D4;
}

/* In the center wrapper, center the pill heading */
.feature-center-wrapper .pill-heading {
    display: table;
    margin: 0 auto 35px auto;
}

/* Text Elements */
.feature-desc {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 20px;
}

.fw-bold {
    font-weight: 600;
}

.mt-3 {
    margin-top: 25px;
}

.feature-bold-center {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-top: 40px;
}

/* Lists */
.feature-list {
    margin-left: 0;
    padding-left: 0;
    list-style: none;
    margin-bottom: 25px;
}

.feature-list li {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.8;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}

/* Checkmarks and Bullets */
.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #000;
    font-weight: 700;
    font-size: 18px;
}

.bullet-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #000;
    font-size: 22px;
    line-height: 1.5;
    top: -2px;
}

/* Images & Masks */
.feature-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    max-width: 500px;
}

.mask-rounded {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.mask-rounded svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Decorations */
.decor {
    position: absolute;
    z-index: 1;
}

.why-decor {
    width: 250px;
    top: 5%;
    right: 5%;
    opacity: 0.7;
}

.blob-decor {
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    z-index: 0;
}

.semi-circles {
    width: 80px;
    bottom: -20px;
    left: -30px;
}

.wiggle-lines {
    width: 80px;
    bottom: -40px;
    right: 20px;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .feature-block {
        padding: 60px 5vw;
    }

    .feature-row,
    .reverse-row {
        flex-direction: column;
        gap: 50px;
    }

    .feature-text,
    .feature-image-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .why-decor {
        right: -50px;
        top: -20px;
        width: 150px;
    }

    .blob-decor {
        width: 110%;
        height: 110%;
        top: -5%;
        left: -5%;
    }
}

@media (max-width: 480px) {

    .feature-desc,
    .feature-list li {
        font-size: 15px;
    }

    .feature-bold-center {
        font-size: 16px;
    }

    .pill-heading {
        font-size: 14px;
        padding: 6px 20px;
    }

    .semi-circles {
        left: 0px;
        bottom: -10px;
        width: 60px;
    }

    .wiggle-lines {
        right: 0px;
        bottom: -20px;
        width: 60px;
    }
}



/* --- ADMISSIONS CTA SECTION --- */
.admissions-cta-section {
    position: relative;
    width: 100%;
    background-color: var(--bg-teal);
    /* Matches your light mint variable */
    text-align: center;
    overflow: hidden;
    padding-top: 80px;
}

.cta-hills {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1;
}

.cta-river {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 5vw 80px 5vw;
}

.admissions-title-small {
    background-color: var(--text-white);
    color: #5a6b63;
    font-family: var(--font-display);
    font-size: 3.5rem;
    /* Slightly smaller than the hero */
    padding: 8px 25px;
    border-radius: 12px;
    box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.tags-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

/* Override pink tag margin for this stacked layout */
.cta-content .pink-tag {
    transform: rotate(0deg);
    margin: 3px 0;
    font-size: 1.1rem;
    padding: 6px 20px;
}

.cta-subtitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.cta-desc {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 5px;
}

.emoji-list {
    list-style: none;
    text-align: left;
    margin: 15px auto 30px auto;
    padding: 0;
    display: inline-block;
}

.emoji-list li {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.emoji-icon {
    font-size: 20px;
}

/* --- FORM SECTION --- */
.form-section {
    background-color: #FDFBF2;
    /* Beige */
    width: 100%;
}

.form-container {
    max-width: 750px;
    margin: 0 auto;
    width: 100%;
    text-align: left;
}

.form-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
}

.admissions-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: 11px;
    font-weight: 700;
    color: #333;
}

.input-group input[type="text"],
.input-group input[type="email"],
.input-group textarea {
    width: 100%;
    padding: 10px 12px;
    background-color: transparent;
    border: 1px solid #BDBDBD;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: #398C9B;
}

/* Custom Checkbox/Radio Rows */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.checkbox-row {
    background-color: #EFECE3;
    /* Matches the image's light grey row */
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.checkbox-row:hover {
    background-color: #E5E1D5;
}

.checkbox-row input {
    margin: 0;
    cursor: pointer;
}

.submit-btn {
    background-color: #000000;
    color: #FFFFFF;
    font-family: inherit;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #333333;
}

.fine-print {
    font-size: 10px;
    color: #666;
    text-align: center;
    margin-top: -10px;
}

/* --- FOOTER SECTION --- */
.site-footer {
    background-color: #FCD8D4;
    /* Pink */
    width: 100%;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 60px 5vw;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: #555;
    text-decoration: underline;
    text-underline-offset: 4px;
    margin-bottom: 5px;
}

.footer-text {
    font-size: 16px;
    color: #000;
    margin: 0;
}

.footer-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 700;
    color: #398C9B;
    /* Teal color */
    margin-top: 10px;
}

.footer-phone svg {
    width: 24px;
    height: 24px;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
    .admissions-title-small {
        font-size: 2.8rem;
    }

    .cta-hills {
        height: 60px;
    }

    .emoji-list li {
        font-size: 15px;
    }

    .cta-desc {
        font-size: 15px;
    }

    .footer-phone {
        font-size: 18px;
    }
}


/* --- BOTTOM BRANDING SECTION --- */
.bottom-branding {
    background-color: #FDFBF2;
    /* Matches your beige background */
    text-align: center;
    padding: 60px 5vw 100px 5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.branding-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.branding-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 50px;
}

.branding-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12vw;
    /* Scales the gap based on screen size */
    flex-wrap: wrap;
    width: 100%;
    max-width: 1000px;
}

.brand-logo {
    height: 90px;
    /* Adjust this height to match your exported image sizes */
    width: auto;
    object-fit: contain;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .branding-logos {
        gap: 50px;
        flex-direction: column;
    }

    .brand-logo {
        height: 75px;
    }

    .branding-title {
        font-size: 18px;
    }

    .branding-tagline {
        font-size: 12px;
        padding: 0 15px;
        line-height: 1.5;
    }
}

/* --- DESKTOP ZOOM ADJUSTMENT --- */
@media (min-width: 1025px) {
    body>*:not(.page-wrapper):not(header):not(#sticky-nav):not(script) {
        zoom: 1.5;
    }
}