
    /* =========================================================
   RESPONSIVE — NORMAL PHONES
   481px — 767px
========================================================= */

@media (max-width: 767px) {



    /* =====================================================
       HEADER
    ===================================================== */

    .header {
        position: fixed;

        top: 0;
        left: 0;

        width: 100%;

        padding: 0;

        z-index: 1000;
    }


    .navbar {
        width: 100%;
    }


    .navbar .container {
        max-width: 100%;

        margin: 0;

        padding: .85rem 1.25rem;

        display: flex;
        align-items: center;
        justify-content: space-between;
    }


    /* =====================================================
       LOGO
    ===================================================== */

    .logo {
        margin-left: 0;
    }


    .logo img {
        width: 200px;
        height: auto;

        display: block;
    }


    /* =====================================================
       DESKTOP NAVIGATION
       Hide it on phones
    ===================================================== */
/* =====================================================
   MOBILE NAVIGATION
===================================================== */

.nav-menu {
    position: fixed;

    top: 0;
    right: -100%;

    width: 320px;
    max-width: 85vw;
    height: 100vh;

    margin: 0;
    padding: 2rem 1.5rem;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    gap: 1.5rem;

    background: var(--navy);

    overflow-y: auto;

    transition: right .35s ease;

    z-index: 1001;
}


/* OPEN MENU */

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


/* =====================================================
   MENU TOGGLE
===================================================== */

.menu-toggle {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 65px;
    height: 65px;

    margin-left: auto;

    padding: 0;

    background: transparent;
    border: none;

    color: var(--white);

    font-size: 1.5rem;

    cursor: pointer;

    position: relative;

    z-index: 1002;
}


.menu-toggle i {
    line-height: 1;
}


/* Hide hamburger when menu is open */

.menu-toggle.hide {

    visibility: hidden;
    opacity: 0;
    pointer-events: none;

}


/* =====================================================
   CLOSE BUTTON
===================================================== */

.menu-close-item {

    display: flex;

    justify-content: flex-end;

    width: 100%;
}


.close-menu {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    padding: 0;

    background: transparent;
    border: none;

    color: var(--white);

    font-size: 1.2rem;

    cursor: pointer;
}


/* =====================================================
   MENU ITEMS
===================================================== */

.nav-menu li {

    width: 100%;

}


.nav-menu li:not(.mobile-btn) > a {

    display: block;

    padding: .5rem 0;

    color: var(--white);

    font-size: 1rem;

}


/* Hover line */

.nav-menu li:not(.mobile-btn) > a::after {

    display: block;

    bottom: 0;

}


/* APPLY BUTTON */

.nav-menu .mobile-btn {

    margin-top: .5rem;

}


    /* =====================================================
       MOBILE MENU BUTTON
    ===================================================== */

    

    /* =====================================================
       NAV BUTTON
    ===================================================== */

    .btn-nav {
        gap: .6rem;

        padding: .85rem 1.25rem;

        font-size: .78rem;
    }


    /* =====================================================
       SECTION SUBTITLE
    ===================================================== */

    .section-subtitle {
        margin-bottom: .6rem;

        font-size: .78rem;

        letter-spacing: .11em;
    }


    /* =====================================================
       SECTION DIVIDER
    ===================================================== */

    .section-divider {
        width: 50px;

        height: 2px;

        margin-top: .8rem;
    }


    /* =====================================================
       SECONDARY BUTTON
    ===================================================== */

    .btn-secondary {
        font-size: .8rem;
    }


    .btn-secondary:hover::before {
        transform: translateX(0);
    }


    /* =====================================================
       FOOTER
    ===================================================== */

    .footer {
        padding: 4rem 0 1.5rem;

        margin-top: 3rem;

    }


    .footer-container {
        display: grid;

        grid-template-columns: 1fr;

        gap: 2.5rem;

        padding-bottom: 2.5rem;

        text-align: center;
    }


    /* =====================================================
       FOOTER LOGO
    ===================================================== */

    .footer-logo {

    display: flex;

    flex-direction: column;

    align-items: center;
    }

    .footer-logo img {
        width: 210px;

        height: auto;

        margin-bottom: 1rem;
    }


    .footer-text {
        max-width: 100%;

        margin: 0 auto 1.4rem;

        color: rgba(255,255,255,.72);

        font-family: var(--font-body);
        font-size: .9rem;
        font-weight: 400;

        line-height: 1.7;

        text-align: center;
    }


    /* =====================================================
       SOCIAL
    ===================================================== */

    .footer-social {
        display: flex;

        align-items: center;

        justify-content: center;

        gap: .75rem;
    }


    .footer-social a {
        width: 40px;
        height: 40px;

        font-size: .95rem;
    }


    /* =====================================================
       FOOTER TITLES
    ===================================================== */

    .footer-links,
    .footer-contact {

        display: flex;
        flex-direction: column;
        align-items: center;

        padding: 0;
        margin: 0;

        list-style: none;
    }

    .footer-title {
        margin-bottom: 1rem;

        color: var(--white);

        font-family: var(--font-heading);
        font-size: 1.15rem;
        font-weight: 700;

        text-align: center;
    }

    .footer-links a {

    color: rgba(255,255,255,.72);

    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 400;

    line-height: 1.6;
}

.footer-links li {
    margin-bottom: .8rem;
}


    /* =====================================================
       FOOTER LINKS
    ===================================================== */

    .footer-links li,
    .footer-contact li {
        margin-bottom: .8rem;
    }



    /* =====================================================
       FOOTER CONTACT
    ===================================================== */

    .footer-contact p {
        font-size: .9rem;

        line-height: 1.65;

        text-align: center;
    }


    .footer-contact li {
        display: flex;

        align-items: flex-start;
        justify-content: center;

        width: 100%;

        gap: .7rem;

        margin-bottom: .8rem;

        color: rgba(255,255,255,.72);

        font-family: var(--font-body);
        font-size: .9rem;
        font-weight: 400;

        line-height: 1.6;

        text-align: center;
    }


    .footer-contact i {
        flex-shrink: 0;

    margin-top: 3px;

    color: var(--gold);

    font-size: .9rem;
    }


    .footer-contact a {
        color: rgba(255,255,255,.72);

    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 400;

    line-height: 1.6;

    text-align: center;
    }

    .footer-contact a:hover {
    color: var(--gold);
}


    /* =====================================================
       FOOTER BOTTOM
    ===================================================== */

    .footer-bottom {
    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: .9rem;

    padding: 1.25rem 0 0;

    margin-bottom: 0;

    font-family: var(--font-body);
    font-size: .8rem;

    text-align: center;
    }


    .footer-bottom p {
       margin: 0;

    color: rgba(255,255,255,.55);

    font-family: var(--font-body);
    font-size: .8rem;
    font-weight: 400;

    line-height: 1.5;

    text-align: center;
    }


    /* =====================================================
       FOOTER LEGAL
    ===================================================== */

    .footer-legal {
        display: flex;

    align-items: center;
    justify-content: center;

    gap: .6rem;

    flex-wrap: wrap;

    font-family: var(--font-body);

    text-align: center;
    }


    .footer-legal a,
    .footer-link-button {
        background: none;
    border: none;

    padding: 0;

    color: rgba(255,255,255,.55);

    font-family: var(--font-body);
    font-size: .8rem;
    font-weight: 400;

    line-height: 1.5;

    cursor: pointer;
    }


    .footer-legal span {
        color: rgba(255,255,255,.25);

    font-size: .75rem;
    }



    /* =====================================================
       HERO
    ===================================================== */


.hero {

    min-height: 680px;

    padding-top: 90px;

    background:
        linear-gradient(
            90deg,
            rgba(11,55,103,.98) 0%,
            rgba(11,55,103,.94) 25%,
            rgba(11,55,103,.80) 45%,
            rgba(11,55,103,.55) 62%,
            rgba(11,55,103,.20) 78%,
            rgba(11,55,103,0) 100%
        ),
        
        url("../../images/hero2.png");


    background-repeat: no-repeat;

    background-size: cover;

    background-position: center center;

    background-attachment: scroll;

    display: flex;

    align-items: center;
}


.hero .container {

    max-width: 100%;

    min-height: 590px;

    padding: 2rem 1.5rem;

    display: flex;

    align-items: center;
}


.hero-content {

    width: 100%;

    max-width: 580px;

    margin: 0;

    padding: 0;
}


    .hero-banner {
        max-width: 440px;

        width: 100%;

        gap: .8rem;

        padding: .4rem .85rem;

        margin-bottom: 1.5rem;
    }


    .banner-icon i {
        font-size: 2.5rem;
    }


    .banner-text span {
        font-size: .82rem;
    }


    .banner-text p {
        font-size: .72rem;
    }


    .hero-subtitle {
        margin-bottom: .6rem;

        font-size: .78rem;
        letter-spacing: .1em;
    }


    .hero h1 {
        max-width: 500px;

        font-size: clamp(2.5rem, 8vw, 3.5rem);

        line-height: 1.08;

        margin-bottom: 1rem;
    }


    .hero-divider {
        width: 70px;

        margin-bottom: 1.25rem;
    }


    .hero blockquote {
        max-width: 500px;

        margin-bottom: .75rem;

        font-size: .95rem;

        line-height: 1.7;
    }


    .hero cite {
        margin-bottom: 1.75rem;

        font-size: .9rem;
    }


    .hero-buttons {
        margin-top: 1.5rem;

        display: flex;

        flex-wrap: wrap;

        gap: .8rem;
    }


    .hero-buttons a {
        min-width: 170px;
        height: 52px;

        padding: .85rem 1.4rem;

        font-size: .82rem;
    }


    .hero-image {
        display: none;
    }


    /* =====================================================
       MISSION & VALUES
    ===================================================== */

    .mission-values {
        padding: 4.5rem 0;
    }


    .mission-grid {
        grid-template-columns: 1fr;

        gap: 2.5rem;
    }


    .mission-content {
        padding-right: 0;
    }


    .section-title {
        margin-bottom: .9rem;

        font-size: 2rem;
        line-height: 1.15;
    }


    .section-divider {
        width: 55px;

        margin-bottom: 1.5rem;
    }


    .mission-content p {
        margin-bottom: 1rem;

        font-size: .95rem;

        line-height: 1.75;
    }


    .mission-card {
        padding: 1.5rem 0;

        border-right: none !important;
        border-bottom: 1px solid rgba(11,55,103,.12);
    }


    .mission-card:last-child {
        border-bottom: none;
    }


    .mission-icon {
        margin-bottom: 1rem;
    }


    .mission-icon i {
        font-size: 2.5rem;
    }


    .mission-card h3 {
        margin-bottom: .7rem;

        font-size: 1.3rem;
    }


    .mission-card p {
        font-size: .93rem;

        line-height: 1.7;
    }


    /* =====================================================
       WHY LCS
    ===================================================== */

    .why-lcs {
        padding: 4.5rem 0;
    }


    .section-header {
        max-width: 600px;

        margin: 0 auto 2.5rem;
    }


    .section-subtitle {
        margin-bottom: .6rem;

        font-size: .78rem;
        letter-spacing: .11em;
    }


    .section-header .section-title {
        margin-bottom: .9rem;

        font-size: 2rem;
    }


    .section-header .section-divider {
        margin-bottom: 1.25rem;
    }


    .section-description {
        font-size: .93rem;

        line-height: 1.7;
    }


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

        gap: 2.5rem;
    }


    .why-card {
        padding: 0 1rem;
    }


    .why-card:not(:last-child)::after {
        display: none;
    }


    .why-icon {
        width: 64px;
        height: 64px;

        margin-bottom: 1.2rem;
    }


    .why-icon i {
        font-size: 1.7rem;
    }


    .why-card h3 {
        margin-bottom: .7rem;

        font-size: 1.3rem;
    }


    .why-card p {
        font-size: .93rem;

        line-height: 1.7;
    }


    /* =====================================================
       ACADEMIC PROGRAMME
    ===================================================== */

    .academic-programme {
        padding: 4.5rem 0;
    }


    .programme-wrapper {
        grid-template-columns: 1fr;

        gap: 2.5rem;
    }


    .programme-image {
        order: 1;
    }


    .programme-image img {
        height: 360px;

        object-position: center 70%;
    }


    .programme-content {
        order: 2;
    }


    .programme-content .section-title {
        margin-bottom: .9rem;

        font-size: 2rem;
    }


    .programme-content .section-divider {
        margin-bottom: 1.5rem;
    }


    .programme-content p {
        margin-bottom: 1.75rem;

        font-size: .95rem;

        line-height: 1.75;
    }


    .programme-grid {
        grid-template-columns: 1fr;

        gap: .9rem;

        margin-bottom: 2rem;
    }


    .programme-item {
        gap: .7rem;

        font-size: .92rem;
    }


    .programme-item i {
        font-size: 1rem;
    }


    .programme-content .btn-nav {
        width: auto;
    }


    /* =====================================================
       SCHOOL LIFE
    ===================================================== */

    .school-life {
        padding: 4.5rem 0;
    }


    .school-grid {
        grid-template-columns: 1fr 1fr;

        gap: 1.25rem;
    }


    .school-card {
        border-radius: var(--radius-md);
    }


    .school-card img {
        height: 210px;
    }


    .school-content {
        padding: 1.25rem;
    }


    .school-content h3 {
        margin-bottom: .6rem;

        font-size: 1.15rem;
    }


    .school-content p {
        font-size: .88rem;

        line-height: 1.65;
    }


    /* =====================================================
       ADMISSIONS
    ===================================================== */

    .admissions {
        padding: 3.5rem 0;
    }


    .admissions-wrapper {
        grid-template-columns: 1fr;

        gap: 0;

        border-radius: 18px;
    }


    .admissions-content {
        padding: 2rem 1.5rem;

        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }


    .admissions-content .section-subtitle {
        max-width: 100%;

        font-size: 1.7rem;
    }


    .admissions-content p {
        max-width: 100%;

        font-size: .95rem;

        line-height: 1.7;
    }


    .admissions-steps {
        grid-template-columns: 1fr;

        gap: 1rem;

        padding: 1.5rem;
    }


    .step-card {
        min-height: 260px;

        padding: 1.5rem 1rem;
    }


    .step-card:not(:last-child)::after {
        display: none;
    }


    .step-number {
        width: 48px;
        height: 48px;

        margin-bottom: 1rem;

        font-size: 1.35rem;
    }


    .step-card h3 {
        margin-bottom: .6rem;

        font-size: 1.2rem;
    }


    .step-card p {
        font-size: 1rem;

        line-height: 1.6;
    }


    .admissions-content .btn-nav {
        margin-top: .5rem;
    }


    /* =====================================================
       TESTIMONIALS
    ===================================================== */

    .testimonials {
        padding: 4.5rem 0;
    }


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

        gap: 1.5rem;

        margin-top: 2.5rem;
    }


    .testimonial-card {
        padding: 1.75rem;

        border-radius: 16px;
    }


    .testimonial-rating {
        margin-bottom: 1.1rem;

        font-size: .9rem;
    }


    .testimonial-text {
        margin-bottom: 1.5rem;

        font-size: .95rem;

        line-height: 1.75;
    }


    .testimonial-author {
        gap: .8rem;

        padding-top: 1rem;
    }


    .testimonial-author h4 {
        font-size: 1rem;
    }


    .testimonial-author span {
        font-size: .85rem;
    }


    /* =====================================================
       NEWSLETTER
    ===================================================== */

    .newsletter {
        padding: 0;
    }


    .newsletter-wrapper {
        flex-direction: column;

        align-items: stretch;

        gap: 1.5rem;

        padding: 1.5rem;

        border-radius: 10px;
    }


    .newsletter-content {
        align-items: flex-start;

        gap: .9rem;
    }


    .newsletter-icon {
        width: 54px;
        height: 54px;

        font-size: 1.5rem;
    }


    .newsletter-content h3 {
        margin-bottom: .3rem;

        font-size: 1.2rem;
    }


    .newsletter-content p {
        font-size: .88rem;

        line-height: 1.6;
    }


    .newsletter-form {
        width: 100%;

        min-width: 0;

        display: flex;
    }


    .newsletter-form input {
        min-width: 0;

        width: 100%;

        padding: .9rem 1rem;

        font-size: .88rem;
    }


    .newsletter-form .btn-nav {
        padding: .9rem 1rem;

        font-size: .78rem;
    }



    /*ABOUT US PAGE*/




    /* =========================================================
   ABOUT — NORMAL PHONES
   481px — 767px
========================================================= */


/* =====================================================
   ABOUT HERO
===================================================== */

.about-hero {

    min-height: 650px;

    padding-top: 90px;

    background:
        linear-gradient(
            90deg,
            rgba(11,55,103,.98) 0%,
            rgba(11,55,103,.94) 25%,
            rgba(11,55,103,.80) 45%,
            rgba(11,55,103,.55) 65%,
            rgba(11,55,103,.20) 82%,
            rgba(11,55,103,0) 100%
        ),
        url("../../images/student-8-hero.jpg");

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center center;

    background-attachment: scroll;

    display: flex;

    align-items: center;
}


.about-hero .container {

    max-width: 100%;

    min-height: 560px;

    margin: 0;

    padding: 2rem 1.5rem;

    display: flex;

    align-items: center;
}


.about-content-hero {

    width: 100%;

    max-width: 580px;

    margin: 0;

    padding: 0;
}


.about-content-hero .section-subtitle {

    display: block;

    margin-bottom: .75rem;

    font-size: 1.3rem;

    line-height: 1.2;
}


.about-content-hero h1 {

    max-width: 500px;

    font-size: clamp(2.4rem, 7vw, 3.4rem);

    line-height: 1.08;

    margin-bottom: 0;
}


.about-content-hero .section-divider {

    width: 65px;

    margin-top: 1.5rem;
}


/* =====================================================
   ABOUT STORY
===================================================== */

.about-story {

    padding: 4.5rem 0;

}


.about-story-grid {

    display: grid;

    grid-template-columns: 1fr;

    gap: 2.5rem;

}


.about-story-content {

    max-width: 100%;
}


.about-story-content .section-subtitle {

    display: block;

    margin-bottom: .6rem;

    font-size: .78rem;
}


.about-story-content .section-title {

    margin-bottom: .9rem;

    font-size: 2rem;

    line-height: 1.15;
}


.about-story-content .section-divider {

    width: 55px;

    margin-bottom: 1.5rem;
}


.about-story-content p {

    margin-bottom: 1rem;

    font-size: .95rem;

    line-height: 1.75;
}


.about-story-image {

    width: 100%;

    margin-top: .5rem;
}


.about-story-image::before {

    top: -10px;

    right: -10px;

    width: 60px;

    height: 60px;

    border-width: 2px;
}


.about-story-image img {

    width: 100%;

    height: 340px;

    object-fit: cover;

    border-radius: var(--radius-md);
}


/* =====================================================
   ABOUT APPROACH
===================================================== */

.about-approach {

    padding: 4.5rem 0;

}


.about-approach .section-header {

    max-width: 600px;

    margin: 0 auto 2.5rem;

}


.about-approach .section-header .section-title {

    font-size: 2rem;

    line-height: 1.15;
}


.about-approach .section-divider {

    margin-left: auto;

    margin-right: auto;

}


.approach-grid {

    display: grid;

    grid-template-columns: 1fr;

    gap: 1.25rem;
}


.approach-card {

    padding: 2rem 1.5rem;

    border-radius: var(--radius-md);
}


.approach-icon {

    width: 60px;

    height: 60px;

    margin-bottom: 1.25rem;

    font-size: 1.5rem;
}


.approach-card h3 {

    margin-bottom: .65rem;

    font-size: 1.3rem;
}


.approach-card p {

    font-size: .92rem;

    line-height: 1.7;
}


/* =====================================================
   ABOUT MISSION
===================================================== */

.about-mission {

    padding: 4.5rem 0;

}


.about-mission .mission-grid {

    display: grid;

    grid-template-columns: 1fr;

    gap: 1.5rem;
}


.mission-box {

    padding: 2rem 1.5rem;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 1.25rem;

    border-radius: var(--radius-md);
}


.mission-box .mission-icon {

    width: 60px;

    height: 60px;

    font-size: 1.5rem;
}


.mission-box .section-subtitle {

    margin-bottom: .5rem;

    font-size: .78rem;
}


.mission-box h2 {

    margin-bottom: 1rem;

    font-size: 2rem;

    line-height: 1.15;
}


.mission-box p {

    margin-bottom: .9rem;

    font-size: .94rem;

    line-height: 1.75;
}

.mission-icon i {
    font-size: 1.5rem;
}


.mission-side {

    padding: 2rem 1.5rem;

    border-radius: var(--radius-md);
}


.mission-side .section-subtitle {

    margin-bottom: .5rem;

    font-size: .78rem;
}


.mission-side h2 {

    margin-bottom: 1rem;

    font-size: 2rem;

    line-height: 1.15;
}


.mission-side p {

    margin-bottom: .9rem;

    font-size: .94rem;

    line-height: 1.7;
}


/* =====================================================
   AFFILIATIONS
===================================================== */

.affiliations {

    padding: 4.5rem 0;

}


.affiliations .section-header {

    max-width: 600px;

    margin: 0 auto 2.5rem;

}


.affiliations .section-header .section-title {

    font-size: 2rem;

    line-height: 1.15;
}


.affiliations .section-divider {

    margin-left: auto;

    margin-right: auto;
}


.affiliations-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 1.25rem;
}


.affiliation-item {

    min-height: 210px;

    padding: 1.5rem 1rem;

    border-radius: var(--radius-md);
}


.affiliation-logo {

    width: 130px;

    height: 60px;

    margin-bottom: 1rem;
}


.affiliation-logo img {

    max-width: 120px;

    max-height: 55px;
}


.church-logos {

    width: 58px;

    height: 58px;

    margin-bottom: 1rem;

    font-size: 1.4rem;
}


.affiliation-item h3 {

    margin-bottom: .5rem;

    font-size: 1.15rem;
}


.affiliation-item p {

    max-width: 210px;

    font-size: .84rem;

    line-height: 1.6;
}


/* =====================================================
   PROGRAMME CTA
===================================================== */

.about-programme-cta {

    padding: 4.5rem 0;

}


.programme-cta-wrapper {

    display: grid;

    grid-template-columns: 1fr;

    border-radius: var(--radius-md);

}


.programme-cta-image {

    min-height: 300px;

    order: 1;
}


.programme-cta-image img {

    width: 100%;

    height: 300px;

    object-fit: cover;
}


.programme-cta-content {

    order: 2;

    padding: 2.5rem 1.5rem;

}


.programme-cta-content .section-subtitle {

    display: block;

    margin-bottom: .6rem;

    font-size: .78rem;
}


.programme-cta-content .section-title {

    margin-bottom: .9rem;

    font-size: 2rem;

    line-height: 1.15;
}


.programme-cta-content p {

    max-width: 100%;

    margin-bottom: 1.5rem;

    font-size: .94rem;

    line-height: 1.75;
}


.programme-cta-content .btn-nav {

    align-self: flex-start;


}




/* =========================================================
   PROGRAMME — NORMAL PHONES
   481px — 767px
========================================================= */


/* =====================================================
   PROGRAMME HERO
===================================================== */

.programme-hero {

    min-height: 650px;

    padding-top: 90px;

    background:
        linear-gradient(
            90deg,
            rgba(11,55,103,1) 0%,
            rgba(11,55,103,.98) 35%,
            rgba(11,55,103,.88) 52%,
            rgba(11,55,103,.58) 68%,
            rgba(11,55,103,.15) 85%
        ),

        linear-gradient(
            rgba(0,0,0,.18),
            rgba(0,0,0,.18)
        ),

        url("../../images/material.jpg");

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center center;

    background-attachment: scroll;

    display: flex;

    align-items: center;
}


.programme-hero .container {

    max-width: 100%;

    min-height: 560px;

    margin: 0;

    padding: 2rem 1.5rem;

    display: flex;

    align-items: center;
}


.programme-hero-content {

    width: 100%;

    max-width: 600px;

    margin: 0;
}


.programme-hero-content .section-subtitle {

    display: block;

    margin-bottom: .8rem;

    font-size: 1.35rem;

    line-height: 1.2;
}


.programme-hero-content h1 {

    max-width: 520px;

    color: var(--white);

    font-size: clamp(2.5rem, 8vw, 3.5rem);

    line-height: 1.08;

    margin-bottom: 1rem;
}


.programme-hero-content .section-divider {

    margin-bottom: 1.25rem;
}


.programme-hero-content p {

    max-width: 520px;

    color: rgba(255,255,255,.85);

    font-size: .95rem;

    line-height: 1.7;
}


/* =====================================================
   PROGRAMME INTRO
===================================================== */

.programme-intro {

    padding: 4.5rem 0;

    background: var(--white);
}


.programme-intro-grid {

    display: grid;

    grid-template-columns: 1fr;

    align-items: center;

    gap: 3rem;
}


.programme-intro-content {

    max-width: 100%;
}


.programme-intro-content .section-subtitle {

    display: block;

    margin-bottom: .6rem;

    font-size: .8rem;
}


.programme-intro-content .section-title {

    margin-bottom: .9rem;

    font-size: 2rem;

    line-height: 1.15;
}


.programme-intro-content .section-divider {

    margin-bottom: 1.5rem;
}


.programme-intro-content p {

    margin-bottom: 1rem;

    color: var(--gray-dark);

    font-size: .95rem;

    line-height: 1.75;
}


.programme-intro-content p:last-of-type {

    margin-bottom: 1.5rem;
}


/* =====================================================
   PROGRAMME INTRO IMAGE
===================================================== */

.programme-intro-image {

    position: relative;

    width: 100%;
}


.programme-intro-image::before {

    top: -12px;

    right: -12px;

    width: 60px;

    height: 60px;

    border-top: 2px solid var(--gold);

    border-right: 2px solid var(--gold);
}


.programme-intro-image img {

    position: relative;

    z-index: 1;

    width: 100%;

    height: 360px;

    object-fit: cover;

    border-radius: var(--radius-md);

    box-shadow: var(--shadow-md);
}


/* =====================================================
   PROGRAMME FEATURES
===================================================== */

.programme-features {

    padding: 4.5rem 0;

    background: var(--surface);
}


.programme-features .section-header {

    max-width: 600px;

    margin: 0 auto 2.5rem;

    text-align: center;
}


.programme-features .section-divider {

    margin-left: auto;

    margin-right: auto;
}


.programme-feature-grid {

    display: grid;

    grid-template-columns: 1fr;

    gap: 1.25rem;
}


.programme-feature-card {

    padding: 2rem 1.5rem;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    text-align: center;

    box-shadow: var(--shadow-sm);
}


.programme-feature-card:hover {

    transform: translateY(-4px);

    box-shadow: var(--shadow-md);
}


.programme-feature-icon {

    width: 60px;

    height: 60px;

    margin: 0 auto 1.2rem;

    font-size: 1.5rem;
}


.programme-feature-card h3 {

    margin-bottom: .65rem;

    color: var(--navy);

    font-size: 1.3rem;
}


.programme-feature-card p {

    color: var(--gray-dark);

    font-size: .92rem;

    line-height: 1.7;
}


/* =====================================================
   PROGRAMME EXPERIENCE
===================================================== */

.programme-experience {

    padding: 4.5rem 0;

    background: var(--white);
}


.programme-experience-wrapper {

    display: grid;

    grid-template-columns: 1fr;

    align-items: center;

    gap: 3rem;
}


.programme-experience-image {

    position: relative;

    width: 100%;
}


.programme-experience-image::before {

    top: -12px;

    left: -12px;

    width: 60px;

    height: 60px;

    border-top: 2px solid var(--gold);

    border-left: 2px solid var(--gold);
}


.programme-experience-image img {

    position: relative;

    z-index: 1;

    width: 100%;

    height: 380px;

    object-fit: cover;

    border-radius: var(--radius-md);

    box-shadow: var(--shadow-md);
}


.programme-experience-content {

    max-width: 100%;
}


.programme-experience-content .section-subtitle {

    display: block;

    margin-bottom: .6rem;

    color: var(--gold);

    font-size: .8rem;

    font-weight: var(--fw-bold);

    letter-spacing: .08em;

    text-transform: uppercase;
}


.programme-experience-content .section-title {

    margin-bottom: 1rem;

    color: var(--navy);

    font-size: 2rem;

    line-height: 1.15;
}


.programme-experience-content .section-divider {

    margin-bottom: 1.5rem;
}


.programme-experience-content p {

    margin-bottom: 1rem;

    color: var(--gray-dark);

    font-size: .93rem;

    line-height: 1.75;
}


/* =====================================================
   CHECK LIST
===================================================== */

.programme-check-list {

    display: flex;

    flex-direction: column;

    gap: .8rem;

    margin-top: 1.5rem;
}


.programme-check {

    display: flex;

    align-items: flex-start;

    gap: .7rem;

    color: var(--gray-dark);

    font-size: .9rem;

    line-height: 1.5;
}


.programme-check i {

    flex-shrink: 0;

    color: var(--navy);

    font-size: 1.05rem;

    margin-top: 2px;
}


.programme-check span {

    color: var(--gray-dark);
}


/* =====================================================
   PROGRAMME CTA
===================================================== */

.programme-cta {

    position: relative;

    padding: 4.5rem 1.5rem;

    background: var(--burgundy);
}


.programme-cta::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 4px;

    background: var(--gold);
}


.programme-cta-content {

    max-width: 600px;

    margin: 0 auto;

    text-align: center;
}


.programme-cta-content .section-subtitle {

    display: block;

    margin-bottom: .7rem;

    color: var(--gold);

    font-size: .8rem;

    font-weight: var(--fw-bold);

    letter-spacing: .08em;

    text-transform: uppercase;
}


.programme-cta-content h2 {

    margin-bottom: 1rem;

    color: var(--white);

    font-size: clamp(2rem, 7vw, 2.8rem);

    line-height: 1.15;
}


.programme-cta-content p {

    max-width: 520px;

    margin: 0 auto 1.75rem;

    color: rgba(255,255,255,.78);

    font-size: .93rem;

    line-height: 1.7;
}


/* =====================================================
   CTA BUTTONS
===================================================== */

.programme-cta-buttons {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: .8rem;

    flex-wrap: wrap;
}


.programme-cta-buttons .btn-nav {

    min-width: 145px;

    padding: .85rem 1.25rem;

    font-size: .78rem;
}


.programme-cta-buttons .btn-secondary {

    min-width: 145px;

    padding: .85rem 1.25rem;

    font-size: .78rem;
}


/* =====================================================
   SECONDARY BUTTON
===================================================== */

.btn-secondary {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: .65rem;

    min-width: 145px;

    padding: .85rem 1.25rem;

    border: 1px solid rgba(255,255,255,.5);

    border-radius: 4px;

    color: var(--white);

    font-size: .78rem;

    font-weight: 700;

    text-transform: uppercase;

    transition:
        background var(--transition-slow),
        color var(--transition),
        border-color var(--transition);
}


.btn-secondary:hover {

    background: var(--white);

    border-color: var(--white);

    color: var(--navy);
}


.btn-secondary i {

    transition: transform var(--transition);
}


.btn-secondary:hover i {

    transform: translateX(4px);
}


/* =====================================================
   FOOTER
===================================================== */

.footer {

    background: var(--navy);

    color: rgba(255,255,255,.85);

    padding: 4rem 0 1.5rem;

    margin-top: 0;
}





    /* =====================================================
       ADMISSIONS PAGE
    ===================================================== */

    .admissions-hero {

        min-height: 680px;

        padding-top: 90px;

        background:
            linear-gradient(
                90deg,
                rgba(11,55,103,1) 0%,
                rgba(11,55,103,.98) 35%,
                rgba(11,55,103,.88) 50%,
                rgba(11,55,103,.55) 65%,
                rgba(11,55,103,0) 85%
            ),
            linear-gradient(
                rgba(0,0,0,.18),
                rgba(0,0,0,.18)
            ),
            url("../../images/kids.png");

        background-repeat: no-repeat;

        background-size: cover;

        background-position: center top;

        background-attachment: scroll;

        display: flex;

        align-items: center;
    }


    .admissions-hero .container {

        max-width: 100%;

        min-height: 590px;

        padding: 2rem 1.5rem;

        display: flex;

        align-items: center;
    }


    .admissions-hero-content {

        width: 100%;

        max-width: 580px;

        margin: 0;

        padding: 0;
    }


    .admissions-hero-content .section-subtitle {

        display: block;

        margin-bottom: .7rem;

        font-size: 1.25rem;

        letter-spacing: .08em;
    }


    .admissions-hero-content h1 {

        max-width: 500px;

        font-size: clamp(2.5rem, 8vw, 3.5rem);

        line-height: 1.08;

        margin-bottom: 1rem;
    }


    .admissions-hero-content .section-divider {

        width: 70px;

        margin-top: 1rem;

        margin-bottom: 1.25rem;
    }


    .admissions-hero-content p {

        max-width: 500px;

        margin-bottom: 1.5rem;

        font-size: .95rem;

        line-height: 1.7;
    }


    /* =====================================================
       ENROLLMENT PROCESS
    ===================================================== */

    .enrollment-process {

        padding: 4.5rem 0;
    }


    .enrollment-process .section-header {

        max-width: 600px;

        margin: 0 auto 2.5rem;

        text-align: center;
    }


    .enrollment-process .section-divider {

        width: 55px;

        margin-left: auto;

        margin-right: auto;
    }


    .enrollment-process .section-description {

        margin-top: 1.25rem;

        font-size: .93rem;

        line-height: 1.7;
    }


    /* =====================================================
       ENROLLMENT STEPS
    ===================================================== */

    .enrollment-steps {

        max-width: 100%;

        padding: 0 .5rem;
    }


    .enrollment-steps::before {

        top: 24px;

        bottom: 24px;

        left: 24px;
    }


    .enrollment-step {

        grid-template-columns: 50px 1fr;

        gap: 1.25rem;

        padding-bottom: 2.75rem;
    }


    .step-number {

        width: 48px;

        height: 48px;

        font-size: 1rem;
    }


    .step-content {

        padding-top: .1rem;

        max-width: 100%;
    }


    .step-content h3 {

        margin-bottom: .6rem;

        font-size: 1.35rem;
    }


    .step-content p {

        margin-bottom: .9rem;

        font-size: .92rem;

        line-height: 1.7;
    }


    .step-content p:last-of-type {

        margin-bottom: 1.25rem;
    }


    .step-content .btn-nav {

        margin-top: .4rem;
    }


    /* =====================================================
       ADMISSIONS NEXT
    ===================================================== */

    .admissions-next {

        padding: 4.5rem 0;
    }


    .admissions-next .section-header {

        max-width: 600px;

        margin: 0 auto 2.5rem;
    }


    .admissions-next .section-divider {

        width: 55px;

        margin-left: auto;

        margin-right: auto;
    }


    .next-steps-grid {

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 2.5rem 1rem;
    }


    .next-step {

        padding: 0 1rem;

        text-align: center;
    }


    .next-step:not(:last-child)::after {

        display: none;
    }


    .next-step-icon {

        width: 58px;

        height: 58px;

        margin: 0 auto 1.2rem;
    }


    .next-step-icon span {

        font-size: 1rem;
    }


    .next-step h3 {

        margin-bottom: .6rem;

        font-size: 1.2rem;
    }


    .next-step p {

        font-size: .88rem;

        line-height: 1.65;
    }


    /* =====================================================
       ADMISSIONS POLICY
    ===================================================== */

    .admissions-policy {

        padding: 4.5rem 0;
    }


    .policy-wrapper {

        max-width: 100%;

        margin: 0;

        padding: 2.5rem 1.75rem;

        border-radius: 16px;
    }


    .policy-content {

        max-width: 100%;
    }


    .policy-content .section-subtitle {

        display: block;

        margin-bottom: .6rem;

        font-size: .8rem;
    }


    .policy-content .section-title {

        margin-bottom: .9rem;

        font-size: 2rem;

        line-height: 1.15;
    }


    .policy-content .section-divider {

        width: 55px;

        margin-bottom: 1.5rem;
    }


    .policy-content p {

        margin-bottom: 1.5rem;

        font-size: .93rem;

        line-height: 1.75;
    }


    .policy-content .btn-secondary {

        font-size: .8rem;

        border: 1px solid var(--navy);

        color: var(--navy);


        padding: .85rem 1.25rem;
    }

    .policy-content .btn-secondary:hover {
        background: var(--navy);
        
        color: var(--white);


        
    }


    /* =====================================================
       CTA
    ===================================================== */

    .admissions-cta {

        padding: 4rem 1.5rem;
    }


    .admissions-cta-content {

        max-width: 600px;
    }


    .admissions-cta-content .section-subtitle {

        margin-bottom: .75rem;

        font-size: .8rem;

        letter-spacing: .1em;
    }


    .admissions-cta-content h2 {

        margin-bottom: 1rem;

        font-size: clamp(2rem, 7vw, 2.8rem);

        line-height: 1.12;
    }


    .admissions-cta-content p {

        max-width: 520px;

        margin: 0 auto 1.75rem;

        font-size: .93rem;

        line-height: 1.7;
    }


    .admissions-cta-content .btn-secondary {

        width: auto;

        color: var(--navy);

        min-width: 170px;
    }






    /*CONTACT*/


    /* =====================================================
       CONTACT HERO
    ===================================================== */

    .contact-hero {

        min-height: 620px;

        padding-top: 90px;

        background:
            linear-gradient(
                90deg,
                rgba(11,55,103,1) 0%,
                rgba(11,55,103,.98) 35%,
                rgba(11,55,103,.88) 50%,
                rgba(11,55,103,.55) 65%,
                rgba(11,55,103,0) 85%
            ),
            linear-gradient(
                rgba(0,0,0,.18),
                rgba(0,0,0,.18)
            ),
            url("../../images/hero-contact-1.png");

        background-repeat: no-repeat;

        background-size: cover;

        background-position: center center;

        background-attachment: scroll;

        display: flex;

        align-items: center;
    }


    .contact-hero .container {

        max-width: 100%;

        min-height: 530px;

        margin: 0;

        padding: 2rem 1.5rem;

        display: flex;

        align-items: center;
    }


    .contact-hero-content {

        width: 100%;

        max-width: 580px;

        margin: 0;

        padding: 0;
    }


    .contact-hero-content .section-subtitle {

        display: block;

        margin-bottom: .7rem;

        color: var(--gold);

        font-size: .8rem;

        letter-spacing: .1em;
    }


    .contact-hero-content h1 {

        max-width: 500px;

        margin-bottom: 1rem;

        font-size: clamp(2.5rem, 8vw, 3.5rem);

        line-height: 1.08;
    }


    .contact-hero-content .section-divider {

        width: 65px;

        height: 2px;

        margin-bottom: 1.25rem;
    }


    .contact-hero-content > p {

        max-width: 500px;

        font-size: .95rem;

        line-height: 1.7;
    }


    /* =====================================================
       CONTACT MAIN
    ===================================================== */

    .contact-main {

        padding: 4.5rem 0;
    }


    .contact-grid {

        display: grid;

        grid-template-columns: 1fr;

        gap: 3rem;

        margin-top: 1.5rem;
    }


    /* =====================================================
       CONTACT INFO
    ===================================================== */

    .contact-info {

        padding-top: 0;
    }


    .contact-info .section-subtitle {

        margin-bottom: .6rem;

        font-size: .8rem;

        letter-spacing: .08em;
    }


    .contact-info h2 {

        margin-bottom: .8rem;

        font-size: 2rem;

        line-height: 1.15;
    }


    .contact-info .section-divider {

        width: 50px;

        height: 2px;

        margin-bottom: 1.25rem;
    }


    .contact-intro {

        max-width: 100%;

        margin-top: .5rem;

        margin-bottom: 1.5rem;

        font-size: .93rem;

        line-height: 1.7;
    }


    /* =====================================================
       CONTACT DETAILS
    ===================================================== */

    .contact-detail {

        gap: .85rem;

        padding: .9rem 0;
    }


    .contact-detail-icon {

        width: 44px;

        height: 44px;

        font-size: 1rem;
    }


    .contact-detail-content {

        padding-top: .05rem;
    }


    .contact-detail-content h3 {

        margin-bottom: .15rem;

        font-size: .95rem;
    }


    .contact-detail-content p,
    .contact-detail-content a {

        font-size: .88rem;

        line-height: 1.55;
    }


    /* =====================================================
       CONTACT QUOTE
    ===================================================== */

    .contact-quote {

        gap: .9rem;

        margin-top: 1.5rem;

        padding: 1.2rem;
    }


    .contact-quote-icon {

        font-size: 1.8rem;
    }


    .contact-quote-content p {

        font-size: 1rem;

        line-height: 1.4;
    }


    .contact-quote-content span {

        margin-top: .3rem;

        font-size: .85rem;
    }


    /* =====================================================
       CONTACT FORM
    ===================================================== */

    .contact-form-wrapper {

        padding: 2rem 1.5rem;

        margin-bottom: 0;

        border-radius: 14px;
    }


    .contact-form-wrapper h2 {

        margin-bottom: .7rem;

        font-size: 2rem;

        line-height: 1.15;
    }


    .contact-form-wrapper .section-divider {

        width: 50px;

        height: 2px;

        margin-bottom: 1.2rem;
    }


    .contact-form-intro {

        margin-bottom: 1.5rem;

        font-size: .9rem;

        line-height: 1.7;
    }


    .contact-form {

        gap: 1rem;
    }


    /* =====================================================
       FORM ROW
    ===================================================== */

    .form-row {

        grid-template-columns: 1fr;

        gap: 1rem;
    }


    .form-group {

        gap: .4rem;
    }


    .form-group label {

        font-size: .85rem;
    }


    .form-group input,
    .form-group textarea {

        min-height: 3.2rem;

        padding: .85rem .9rem;

        font-size: .9rem;
    }


    .form-group textarea {

        min-height: 130px;
    }


    .contact-submit {

        min-height: 50px;

        margin-top: .2rem;

        padding: .85rem 1.25rem;

        font-size: .8rem;
    }


    /* =====================================================
       CTA
    ===================================================== */

    .contact-cta {

        padding: 3.5rem 1.5rem;
    }


    .contact-cta-content {

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        gap: 1.5rem;

        text-align: center;
    }


    .contact-cta-text {

        max-width: 600px;
    }


    .contact-cta .section-subtitle {

        margin-bottom: .5rem;

        font-size: .8rem;
    }


    .contact-cta-icon {

        width: 70px;

        height: 70px;

        font-size: 2.1rem;

        order: -1;
    }


    .contact-cta-icon i {

        font-size: 2.1rem;
    }


    .contact-cta h2 {

        margin-bottom: .6rem;

        font-size: clamp(1.9rem, 7vw, 2.6rem);

        line-height: 1.12;
    }


    .contact-cta p {

        font-size: .92rem;

        line-height: 1.7;
    }


    .contact-cta .btn-nav {

        margin-left: 0;

        min-width: 170px;
    }





    /* =====================================================
   APPLICATION PAGE — PHONE
   ===================================================== */

    /* =================================================
       HERO
       ================================================= */

    .application-hero {
        min-height: 520px;

        padding-top: 80px;

        background:
            linear-gradient(
                90deg,
                rgba(11,55,103,.98) 0%,
                rgba(11,55,103,.94) 45%,
                rgba(11,55,103,.70) 75%,
                rgba(11,55,103,.45) 100%
            ),
            linear-gradient(
                rgba(0,0,0,.18),
                rgba(0,0,0,.18)
            ),
            url("../../images/hero-contact-1.png");

        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        background-attachment: scroll;

        display: flex;
        align-items: center;
    }


    .application-hero .container {
        width: 100%;
        max-width: 100%;

        min-height: 520px;

        margin: 0;
        padding: 2rem 1.25rem;

        display: flex;
        align-items: center;
    }


    .application-hero-content {
        width: 100%;
        max-width: 100%;

        margin: 0;
        padding: 0;
    }


    .application-hero-content .section-subtitle {
        margin-bottom: .75rem;

        font-size: .78rem;
        letter-spacing: .1em;
    }


    .application-hero-content h1 {
        max-width: 100%;

        margin-bottom: 1.25rem;

        font-size: clamp(2.5rem, 12vw, 3.5rem);

        line-height: 1.05;
    }


    .application-hero-content .section-divider {
        margin-bottom: 1.25rem;
    }


    .application-hero-content > p {
        max-width: 100%;

        font-size: .95rem;

        line-height: 1.7;
    }


    /* =================================================
       APPLICATION SECTION
       ================================================= */

    .application-section {
        padding: 4rem 1rem 3rem;
    }


    .application-wrapper {
        width: 100%;
        max-width: 100%;
    }


    /* =================================================
       INTRO
       ================================================= */

    .application-intro {
        max-width: 100%;

        margin: 0 auto 2.5rem;

        text-align: center;
    }


    .application-intro .section-subtitle {
        font-size: .75rem;
    }


    .application-intro .section-title {
        margin-bottom: 1rem;

        font-size: 2rem;

        line-height: 1.15;
    }


    .application-intro > p {
        max-width: 100%;

        font-size: .9rem;

        line-height: 1.7;
    }


    /* =================================================
       NOTICE
       ================================================= */

    .application-notice {
        width: 100%;

        margin-top: 1.5rem;

        padding: 1rem;

        gap: .75rem;
    }


    .application-notice > i {
        font-size: 1.1rem;
    }


    .application-notice p {
        font-size: .82rem;

        line-height: 1.6;
    }


    /* =================================================
       FORM WRAPPER
       ================================================= */

    .application-form-wrapper {
        width: 100%;

        border-radius: var(--radius-md);
    }


    /* =================================================
       PROGRESS
       ================================================= */

    .application-progress {
        display: grid;

        grid-template-columns: repeat(4, 1fr);

        align-items: start;

        width: 100%;

        padding: 1.25rem .75rem;

        background: var(--navy);

        overflow: visible;

        gap: 0;
    }


    .progress-step {
        position: relative;

        min-width: 0;

        display: flex;

        flex-direction: column;

        align-items: center;
        justify-content: flex-start;

        gap: .45rem;

        color: rgba(255,255,255,.55);

        text-align: center;
        }


    .progress-number {
        width: 34px;
        height: 34px;

        display: flex;

        align-items: center;
        justify-content: center;

        flex-shrink: 0;

        border: 1px solid rgba(255,255,255,.25);

        border-radius: 50%;

        color: rgba(255,255,255,.6);

        font-size: .75rem;
        font-weight: 700;
    }


    .progress-label {
        display: block;

        width: 100%;

        font-size: .68rem;
        font-weight: 600;

        line-height: 1.2;

        white-space: normal;

        text-align: center;
    }


    .progress-line {
        min-width: 20px;

        margin: 0 .35rem;
    }

    .progress-step.active {
    color: var(--white);
}

.progress-step.active .progress-number {
    background: var(--gold);

    border-color: var(--gold);

    color: var(--navy);
}

.progress-step.completed {
    color: var(--white);
}


.progress-step.completed .progress-number {
    background: rgba(253,188,89,.18);

    border-color: var(--gold);

    color: var(--gold);
}


.progress-line {
    position: absolute;

    top: 17px;
    left: calc(50% + 17px);

    width: calc(100% - 34px);

    height: 1px;

    min-width: 0;

    margin: 0;

    background: rgba(255,255,255,.18);

    z-index: 0;
}


.progress-number {
    position: relative;

    z-index: 2;
}

    /* =================================================
       FORM STEP
       ================================================= */

    .application-step {
        padding: 2rem 1.1rem;
    }


    .application-step-header {
        max-width: 100%;

        margin-bottom: 2rem;
    }


    .application-step-header .section-subtitle {
        font-size: .72rem;
    }


    .application-step-header h3 {
        margin-bottom: .65rem;

        font-size: 1.75rem;

        line-height: 1.2;
    }


    .application-step-header p {
        font-size: .88rem;

        line-height: 1.65;
    }


    /* =================================================
       FORM GRID
       ================================================= */

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

        gap: 1.15rem;

        margin-bottom: 1.5rem;
    }


    .form-group-full {
        grid-column: auto;
    }


    .form-group {
        gap: .4rem;
    }


    .form-group label {
        font-size: .82rem;
    }


    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 50px;

        padding: .8rem .9rem;

        font-size: .9rem;
    }


    .form-group textarea {
        min-height: 120px;
    }


    /* =================================================
       STUDENT FORMS
       ================================================= */

    .students-container {
        gap: 1rem;
    }


    .student-form {
        padding: 1.25rem;

        border-radius: var(--radius-sm);
    }


    .student-form-header {
        align-items: flex-start;

        gap: 1rem;

        margin-bottom: 1.25rem;
    }


    .student-form-header h4 {
        font-size: 1.2rem;
    }


    /* =================================================
       ADD STUDENT
       ================================================= */

    .add-student-wrapper {
        align-items: flex-start;

        flex-direction: column;

        gap: .75rem;

        margin-top: 1.25rem;
    }


    .btn-add-student {
        width: 100%;

        justify-content: center;
    }


    .add-student-wrapper p {
        font-size: .78rem;
    }


    /* =================================================
       APPLICATION NAVIGATION
       ================================================= */

    .application-navigation {
        flex-direction: column;

        align-items: stretch;

        gap: .75rem;

        margin-top: 2rem;

        padding-top: 1.5rem;
    }


    .application-navigation .btn-nav,
    .application-navigation .btn-secondary {
        width: 100%;

        margin-left: 0;

        justify-content: center;
    }


    .btn-secondary {
        width: 100%;

        padding: .85rem 1.2rem;

        font-size: .78rem;
    }


    /* =================================================
       REVIEW
       ================================================= */

    .review-section {
        margin-bottom: 1rem;

        padding: 1.15rem;
    }


    .review-section-header {
        margin-bottom: 1rem;
    }


    .review-section-header h4 {
        font-size: 1.15rem;
    }


    #review-students,
    #review-family,
    #review-education {
        gap: .75rem;
    }


    .review-item {
        grid-template-columns: 1fr;

        gap: .75rem;
    }


    .review-field-label {
        font-size: .7rem;
    }


    .review-field-value {
        font-size: .85rem;
    }


    /* =================================================
       AGREEMENT
       ================================================= */

    .application-agreement {
        margin-top: 1.5rem;

        padding: 1rem;
    }


    .application-agreement label {
        gap: .6rem;
    }


    .application-agreement input {
        width: 17px;
        height: 17px;
    }


    .application-agreement span {
        font-size: .78rem;

        line-height: 1.55;
    }


    /* =================================================
       SUCCESS MESSAGE
       ================================================= */

    .application-success {
        padding: 3rem 1.25rem;

        border-radius: var(--radius-md);
    }


    .application-success-icon {
        width: 65px;
        height: 65px;

        margin-bottom: 1.25rem;

        font-size: 1.7rem;
    }


    .application-success .section-subtitle {
        font-size: .72rem;
    }


    .application-success h2 {
        font-size: 2rem;

        line-height: 1.15;
    }


    .application-success p {
        font-size: .88rem;

        line-height: 1.7;
    }


    .application-success .btn-nav {
        width: 100%;
    }



}

