[x-cloak] {
    display: none !important;
}

:root {
    --bs-primary: #0056B3;
    --bs-secondary: #DC3545;
    --scrollbar-thumb: #0056B3;
    --scrollbar-thumb-hover: #00BED0;
    --scrollbar-track: #f1f1f1;
    --scrollbar-width: 4px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    width: 100%;
    font-size: 15px;
    font-weight: 400;
    overflow-x: hidden;
    color: #1D1D1D;
}

.header-bg {
    background: linear-gradient(0deg, #031228 16.82%, #0056B3 100%);
}

.intake-title {
    font-size: 20px;
}


/* Firefox and modern browsers */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

/* WebKit browsers */
*::-webkit-scrollbar {
    width: var(--scrollbar-width);
    height: var(--scrollbar-width);
}

*::-webkit-scrollbar-track {
    background: var(--scrollbar-track);
}

*::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-thumb);
    border-radius: 4px;
    border: 2px solid var(--scrollbar-track);
}

*::-webkit-scrollbar-thumb:hover {
    background-color: var(--scrollbar-thumb-hover);
}

.form-card {
    border-radius: 40px;
    border: 1px solid #E7E7E7;
    background: #FFF;
    max-width: 600px;
    margin: auto;
    min-height: 400px;
}


.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #fff;
}

.custom-input {
    background-color: #FFF;
    border: 1px solid #E7EEF6;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 15px;
    color: #1D1D1D;
    box-shadow: none;
}

.custom-input::placeholder {
    color: grey;
}

.custom-input:focus {
    border-color: var(--bs-primary);
    box-shadow: none;
}

select.custom-input {
    padding-right: 2.25rem;
    color: #1D1D1D;
}

select.custom-input option {
    color: #1D1D1D;
}

select.custom-input option[value=""] {
    color: grey;
}

select.custom-input:invalid {
    color: grey;
}

.iti {
    display: block;
    width: 100%;
}

.iti:has(.is-invalid)~.invalid-feedback {
    display: block;
}

.iti__search-input {
    padding: 0.5rem 0.75rem;
    font-size: 15px;
}

.fs-24 {
    font-size: 20px;
}

.auto-height .card {
    min-height: 240px;
}


select option:disabled {
    color: grey !important;
    opacity: 1 !important;
}

.custom-input::placeholder,
.custom-input::-webkit-input-placeholder,
.custom-input::-moz-placeholder,
.custom-input:-ms-input-placeholder,
.custom-input::-ms-input-placeholder {
    color: grey !important;
    opacity: 1 !important;
}

.intake-progress {
    display: flex;
    align-items: center;
    gap: 10px;
}

.intake-progress-track {
    flex: 1;
    display: flex;
    gap: 6px;
}

.intake-progress-bar {
    flex: 1;
    height: 6px;
    border-radius: 999px;
    background: #EDF2F7;
    transition: background-color .2s ease;
}

.intake-progress-bar.is-active {
    background: #11E6B1;
}

.intake-success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #E6FBF5;
    color: #11E6B1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intake-progress-label {
    font-size: 13px;
    white-space: nowrap;
}

.intake-section-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1EB892;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.intake-mode-btn {
    width: max-content;
    border: 1px solid #E7EEF6;
    border-radius: 12px;
    background: #FFF;
    padding: 14px 20px;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 500;
    color: #1D1D1D;
    transition: border-color .15s ease, background-color .15s ease, color .15s ease;
}

.intake-mode-btn:hover {
    border-color: var(--bs-primary);
}

.intake-mode-btn.is-active {
    border-color: var(--bs-primary);
    background: #EAF2FF;
    color: var(--bs-primary);
    font-weight: 700;
}

.intake-mode-btn:disabled,
.intake-mode-btn.is-disabled {
    border-color: #E7EEF6;
    background: #F5F6F8;
    color: #A7ACB3;
    cursor: not-allowed;
}

.intake-mode-btn:disabled:hover,
.intake-mode-btn.is-disabled:hover {
    border-color: #E7EEF6;
}

.btn-pink-pill {
    background: #FBD3D7;
    color: #1D1D1D;
    border: none;
}

.btn-pink-pill:hover {
    background: #F8B9C0;
    color: #1D1D1D;
}

.btn-outline-pill {
    background: #FFF;
    border: 1px solid #E7EEF6;
    color: #1D1D1D;
}

.btn-outline-pill:hover {
    background: var(--bs-primary) !important;
    color: #FFF !important;
}

.cta-title {
    font-size: 24px;
}

.cta-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.cta-btn-primary {
    background: var(--bs-secondary);
    color: #FFF;
    border: none;
}

.cta-btn-primary:hover {
    background: #C42E3D;
    color: #FFF;
}

.cta-btn-white {
    background: #FFF;
    color: #1E1B4B;
    border: none;
}

.cta-btn-white:hover {
    background: #EDEDF5;
    color: #1E1B4B;
}

.title {
    font-size: 24px;
}

.thanks-card {
    border-radius: 12px;
    border: 1px solid #2341BA;
    background: #021765;
    box-shadow: 0 209px 59px 0 rgba(4, 19, 78, 0.00), 0 134px 54px 0 rgba(4, 19, 78, 0.01), 0 75px 45px 0 rgba(4, 19, 78, 0.05), 0 33px 33px 0 rgba(4, 19, 78, 0.09), 0 8px 18px 0 rgba(4, 19, 78, 0.10);
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 44px;
    }

    .cta-subtitle {
        font-size: 18px;
    }
}

.recognition-card {
    border-radius: 16px;
    border: 1px solid #F7F7F7;
    background: #FFF;
    box-shadow: 0 417px 117px 0 rgba(214, 214, 214, 0.00), 0 267px 107px 0 rgba(214, 214, 214, 0.01), 0 150px 90px 0 rgba(214, 214, 214, 0.05), 0 67px 67px 0 rgba(214, 214, 214, 0.09), 0 17px 37px 0 rgba(214, 214, 214, 0.10);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.recognition-icon {
    width: 56px;
    height: 56px;
    background: #FFF;
    border-radius: 50%;
    border: 1px solid #E8ECF3;
    box-shadow: 0 2px 4px rgba(207, 207, 207, 0.10), 0 7px 7px rgba(207, 207, 207, 0.09), 0 17px 10px rgba(207, 207, 207, 0.05), 0 30px 12px rgba(207, 207, 207, 0.01), 0 46px 13px rgba(207, 207, 207, 0.00);
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.recognition-divider {
    width: 28px;
    height: 2px;
    background: var(--bs-secondary);
}

.programme-tabs {
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.programme-tabs::-webkit-scrollbar {
    display: none;
}

.programme-tab {
    flex-shrink: 0;
    border: 1px solid #DFE4EC;
    background: #FCFCFD;
    color: #1D1D1D;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    margin-right: 12px;
    transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.programme-tab.is-active {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #FFF;
}

.programme-filter {
    border-radius: 12px;
    background: #F4F9FF;
    padding: 16px 16px;
    color: #1D1D1D;
    font-weight: 500;
}

.programme-filter-divider {
    width: 1px;
    height: 20px;
    background: #E7EEF6;
}

.programme-filter-select {
    border: none;
    background: transparent;
    color: var(--bs-primary);
    font-weight: 700;
}

.programme-filter-select:focus {
    outline: none;
    box-shadow: none;
}

.programme-card {
    border-radius: 16px;
    border: 1px solid #F0F0F0;
    background: #FFF;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.programme-card-img {
    aspect-ratio: 327 / 168;
    background: linear-gradient(135deg, #EAF2FF 0%, #F7FAFF 100%);
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.programme-card-img img {
    transition: all linear .8s;
}

.programme-card-img:hover img {
    transform: scale(1.2);
}

.programme-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 14px;
}

.programme-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #1D1D1D;
    margin: 0;
    flex: 1;
}

.programme-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FFF;
    border: 1px solid #E7EEF6;
    color: #1D1D1D;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color .15s ease, color .15s ease;
}

.programme-nav-btn:hover:not(:disabled) {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #FFF;
}

.programme-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.testimonial-card {
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card.is-photo {
    justify-content: flex-end;
}

.testimonial-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    border: none;
}

.testimonial-card.is-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.75) 100%);
    pointer-events: none;
}

.testimonial-play-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    color: var(--bs-primary);
    transition: opacity .2s ease, background-color .2s ease;
}

.testimonial-card.is-playing .testimonial-play-btn {
    opacity: 0.7;
}

.testimonial-card.is-playing .testimonial-play-btn:hover,
.testimonial-play-btn:hover {
    opacity: 1;
    background: #FFF;
}

.testimonial-overlay-text {
    position: relative;
    z-index: 1;
    padding: 20px;
    color: #FFF;
}

.testimonial-card.is-profile {
    background: #FDF1F1;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px 24px;
}

.testimonial-avatar-ring {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    padding: 0px;
}

.testimonial-avatar-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.testimonial-card.is-quote {
    background: #EAF2FF;
    padding: 32px 24px;
    justify-content: space-between;
}

.testimonialSwiper .swiper-slide {
    width: 260px;
}

.testimonialSwiper .swiper-slide:has(.testimonial-card.is-quote) {
    width: 330px;
}

.scholarship-card {
    min-height: 380px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background-size: cover;
    background-position: center;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.scholarship-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #0F1B33;
    margin-bottom: 12px;
    min-height: 50px;
}

.scholarship-card-desc {
    font-size: 15px;
    margin-bottom: 0;
}

.scholarship-btn {
    background: var(--bs-secondary);
    color: #FFF;
    border: none;
    border-radius: 999px;
    padding: 12px 28px;
    font-weight: 600;
}

.scholarship-btn:hover {
    background: #C42E3D;
    color: #FFF;
}

.scholarshipSwiper .swiper-slide {
    width: 260px;
}

.partnersSwiper {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.partnersSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.partner-slide {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    max-width: 100%;
    height: 36px;
    width: auto;
    object-fit: contain;
}

@media (min-width: 768px) {
    .partner-slide {
        width: 200px;
    }

    .partner-logo {
        height: 44px;
    }
}

.worksSwiper {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.worksSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.work-slide {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.work-logo {
    max-height: 22px;
    width: auto;
    object-fit: contain;
}

.work-logo-mono {
    filter: brightness(0) invert(1);
    opacity: .85;
}

@media (min-width: 768px) {
    .work-slide {
        padding: 0 36px;
    }

    .work-logo {
        max-height: 40px;
    }
}

.campus-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #E7EEF6;
    border-radius: 999px;
    background: #FFF;
    color: #1D1D1D;
    padding: 12px 24px;
    font-weight: 500;
    transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.campus-tab.is-active {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #FFF;
}

.intake .campus-tab.is-active {
    background: #000 !important;
    border-color: var(--bs-primary);
    color: #FFF;
}

.campus-card {
    background: #FFF;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    padding: 10px 10px 16px;
    height: 100%;
}

.campus-card-caption {
    text-align: center;
    padding: 0 8px;
    margin-top: 14px;
}

.campus-card-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 4px;
    color: var(--bs-secondary);
}

.campus-card-desc {
    font-size: 16px;
    line-height: 1.45;
    margin: 0;
}

.campus-video-frame {
    position: relative;
    aspect-ratio: 9 / 16;
    border-radius: 24px;
    overflow: hidden;
}

.campus-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.campus-play-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFF;
    transition: background-color .2s ease;
}

.campus-play-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.campusSwiper .swiper-slide {
    width: 78vw;
    max-width: 280px;
}

@media (min-width: 480px) {
    .campusSwiper .swiper-slide {
        width: 300px;
    }

    .scholarshipSwiper .swiper-slide {
        width: 280px;
    }
}

@media (min-width: 768px) {
    .scholarshipSwiper .swiper-slide {
        width: 300px;
    }

    .campus-card-title {
        font-size: 20px;
    }

    .campus-card-desc {
        font-size: 18px;
    }
}

@media (min-width: 480px) {
    .testimonialSwiper .swiper-slide {
        width: 280px;
    }

    .testimonialSwiper .swiper-slide:has(.testimonial-card.is-quote) {
        width: 350px;
    }
}

@media (min-width: 768px) {
    .testimonialSwiper .swiper-slide {
        width: 280px;
    }

    .testimonialSwiper .swiper-slide:has(.testimonial-card.is-quote) {
        width: 350px;
    }
}

@media (min-width: 1200px) {
    .testimonialSwiper .swiper-slide {
        width: 280px;
    }

    .testimonialSwiper .swiper-slide:has(.testimonial-card.is-quote) {
        width: 350px;
    }
}

@media (min-width: 720px) {
    body {
        font-size: 16px;
    }

    .intake-title {
        font-size: 24px;
    }

    .auto-height .card {
        min-height: 280px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1360px;
    }
}

@media (min-width: 992px) {
    .title {
        font-size: 3.2rem;
    }

    .subtitle {
        font-size: 18px;
    }

    .fs-24 {
        font-size: 22px;
    }
}

/* ---- MMU Intake page (page/index.php) ---- */

.navbar-nav .btn {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
}

.navbar-nav .btn:hover {
    background: var(--hover-color) !important;
    color: var(--hover-text-color);
    border-color: var(--hover-color);
}

.navbar-toggler {
    border: none;
    box-shadow: none !important;
}

.hero-heading {
    font-size: 20px;
    font-weight: 700;
    color: #0F1729;
}

.hero-heading .accent {
    color: var(--bs-secondary);
}

.hero-subtitle {
    font-size: 16px;
}

.border-shadow {
    border-radius: 16px;
    border: 1px solid #F6F6F6;
    background: #FFF;
    box-shadow: 0 447px 125px 0 rgba(209, 209, 209, 0.00), 0 286px 114px 0 rgba(209, 209, 209, 0.01), 0 161px 97px 0 rgba(209, 209, 209, 0.05), 0 72px 72px 0 rgba(209, 209, 209, 0.09), 0 18px 39px 0 rgba(209, 209, 209, 0.10);
}

@media (min-width: 768px) {
    .hero-heading {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }
}

.hero-banner-wrap {
    position: relative;
}

.hero-chat-widget {
    position: absolute;
    right: 16px;
    bottom: -20px;
    background: #FFF;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 200px;
}

@media (min-width: 768px) {
    .hero-chat-widget {
        bottom: -24px;
        right: 32px;
        max-width: 220px;
    }
}

.hero-chat-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bs-primary);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-chat-widget p {
    margin: 0;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 600;
    color: #0F1729;
}

.quicklink-card {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}


.quicklink-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quicklink-title {
    font-weight: 500;
    color: #1E1B4B;
    font-size: 18px;
}

.quicklink-desc {
    color: #5A5E65;
    font-size: 15px;
}

.quicklink-arrow {
    margin-left: auto;
    flex-shrink: 0;
}

.journey-card-dark {
    border-radius: 20px;
    color: #FFF;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 340px;
}

.journey-card-title {
    font-size: 25px;
    font-weight: 700;
    line-height: 28px;
}

.journey-card-desc {
    color: rgba(255, 255, 255, 0.8);
}

.journey-card-dark .btn {
    align-self: flex-start;
}

.journey-card-light {
    padding: 28px 24px;
    border-radius: 16px;
    border: 1px solid #F7F7F7;
    background: #FFF;
    box-shadow: 0 417px 117px 0 rgba(214, 214, 214, 0.00), 0 267px 107px 0 rgba(214, 214, 214, 0.01), 0 150px 90px 0 rgba(214, 214, 214, 0.05), 0 67px 67px 0 rgba(214, 214, 214, 0.09), 0 17px 37px 0 rgba(214, 214, 214, 0.10);
}

.journey-intake-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.journey-intake-row+.journey-intake-row {
    margin-top: 18px;
}

.journey-intake-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.journey-intake-label {
    font-weight: 700;
    margin-bottom: 6px;
    color: #0342B0;
}

.journey-intake-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.journey-divider {
    height: 1px;
    background: #EDEDED;
    margin: 22px 0;
}

.journey-offer-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.journey-offer-link {
    font-weight: 600;
    color: var(--bs-primary);
    border: 1px solid #F4F5FA;
    text-decoration: none;
    white-space: nowrap;
}

.journey-offer-link:hover {
    color: #FFF;
    background-color: var(--bs-primary);
}

.event-card {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
}

.ecard1 {
    border-radius: 24px;
    border: 1px solid #C5DCFF;
    background: #F1F6FD;
    box-shadow: 0 417px 117px 0 rgba(214, 214, 214, 0.00), 0 267px 107px 0 rgba(214, 214, 214, 0.01), 0 150px 90px 0 rgba(214, 214, 214, 0.05), 0 67px 67px 0 rgba(214, 214, 214, 0.09), 0 17px 37px 0 rgba(214, 214, 214, 0.10);
}

.ecard2 {
    border-radius: 24px;
    border: 1px solid #FFCBD0;
    background: #FFF3F3;
    box-shadow: 0 417px 117px 0 rgba(214, 214, 214, 0.00), 0 267px 107px 0 rgba(214, 214, 214, 0.01), 0 150px 90px 0 rgba(214, 214, 214, 0.05), 0 67px 67px 0 rgba(214, 214, 214, 0.09), 0 17px 37px 0 rgba(214, 214, 214, 0.10);
}

.ecard3 {
    border-radius: 24px;
    border: 1px solid #DEDEDE;
    background: #F7F7F7;
    box-shadow: 0 417px 117px 0 rgba(214, 214, 214, 0.00), 0 267px 107px 0 rgba(214, 214, 214, 0.01), 0 150px 90px 0 rgba(214, 214, 214, 0.05), 0 67px 67px 0 rgba(214, 214, 214, 0.09), 0 17px 37px 0 rgba(214, 214, 214, 0.10);
}

.ecard4 {
    border-radius: 24px;
    border: 1px solid #C5DCFF;
    background: #F1F6FD;
    box-shadow: 0 417px 117px 0 rgba(214, 214, 214, 0.00), 0 267px 107px 0 rgba(214, 214, 214, 0.01), 0 150px 90px 0 rgba(214, 214, 214, 0.05), 0 67px 67px 0 rgba(214, 214, 214, 0.09), 0 17px 37px 0 rgba(214, 214, 214, 0.10);
}

.event-card.is-highlight {
    background: #FDF1F1;
    border-color: #FBD3D7;
}

.event-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border: 1px solid #E8ECF3;
}

.event-card.is-highlight .event-icon {
    background: #FBD3D7;
    color: var(--bs-secondary);
}

.event-title {
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 12px;
    color: #0F1729;
}

.event-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 6px;
}

.event-dates {
    font-size: 12px;
    margin: 0px 0 18px;
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;
}


.event-btn {
    margin-top: auto;
    background: var(--bs-primary);
    color: #FFF;
    border: none;
    border-radius: 999px;
    padding: 10px 0;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: block;
}

.event-btn:hover {
    background: #C42E3D;
    color: #FFF;
}

.appointment-banner {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: start;
    background-size: cover;
    background-position: center;
}

.appointment-content {
    position: relative;
    z-index: 1;
    padding: 12px 24px;
    color: #FFF;
}

.appointment-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.appointment-desc {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    font-size: 17px;
}

.font-small {
    font-size: 12px;
}

.fs-16 {
    font-size: 14px;
}

.fs-17 {
    font-size: 14px;
}

@media (min-width: 768px) {
    .fs-16 {
        font-size: 16px;
    }

    .fs-17 {
        font-size: 17px;
    }

    .appointment-banner {
        min-height: 320px;
        align-items: center;
    }

    .appointment-content {
        padding: 48px;
    }

    .appointment-title {
        font-size: 32px;
    }

    .journey-card-title {
        line-height: normal;
    }

    .font-small {
        font-size: 16px;
    }

    .int-title {
        font-size: 14px !important;
    }
}

.gallery-placeholder {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    background: linear-gradient(135deg, #EAF2FF 0%, #F7FAFF 100%);
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mmuland-step-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: #FFF;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mmuland-step-circle.is-blue {
    background: var(--bs-primary);
}

.mmuland-step-circle.is-red {
    background: var(--bs-secondary);
}

.mmuland-step-line {
    height: 2px;
    background: #DFE4EC;
}

.mmuland-step-title {
    font-size: 18px;
}

.mmu-card {
    border-radius: 16px;
    border: 1px solid #FFCED2;
    background: #FFF;
    box-shadow: 0 417px 117px 0 rgba(214, 214, 214, 0.00), 0 267px 107px 0 rgba(214, 214, 214, 0.01), 0 150px 90px 0 rgba(214, 214, 214, 0.05), 0 67px 67px 0 rgba(214, 214, 214, 0.09), 0 17px 37px 0 rgba(214, 214, 214, 0.10);
    height: auto;
    aspect-ratio: 357/406;
}

.mmuland-step-img {
    aspect-ratio: 337 / 217;
    border-radius: 16px;
    width: 100%;
    position: absolute;
    left: 0px;
    bottom: 0px;
    overflow: hidden;
}

.site-footer {
    background: #061A3E;
    color: #FFF;
}

.site-footer h5 {
    color: #FFF;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    transition: background-color .15s ease, border-color .15s ease;
}

.footer-social-icon:hover {
    background: var(--bs-secondary);
    border-color: var(--bs-secondary);
    color: #FFF;
}

.footer-legal-links a:hover {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.footer-legal-links a {
    color: #FFF;
}

/* ---- Download Brochure page ---- */

.brochure-card {
    border-radius: 16px;
    border: 1px solid #F7F7F7;
    background: #FFF;
    box-shadow: 0 417px 117px 0 rgba(214, 214, 214, 0.00), 0 267px 107px 0 rgba(214, 214, 214, 0.01), 0 150px 90px 0 rgba(214, 214, 214, 0.05), 0 67px 67px 0 rgba(214, 214, 214, 0.09), 0 17px 37px 0 rgba(214, 214, 214, 0.10);
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.brochure-icon {
    color: var(--bs-primary);
    margin-bottom: 16px;
    flex-shrink: 0;
}

.brochure-card-title {
    font-weight: 600;
    color: #0F1729;
    min-height: 48px;
    margin-bottom: 16px;
}

.brochure-divider {
    width: 28px;
    height: 2px;
    background: var(--bs-secondary);
    margin-bottom: 12px;
}

.brochure-download-link {
    color: #1D1D1D;
    font-weight: 500;
    text-decoration: none;
}

.brochure-download-link:hover {
    color: var(--bs-primary);
}

.brochure-flex-item {
    flex: 0 0 25%;
    max-width: 25%;
}

@media (min-width: 992px) {
    .brochure-flex-item {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

.brochure-accordion-item {
    border-radius: 8px;
    border: 1px solid #F7F7F7;
    background: #FFF;
    box-shadow: 0 417px 117px 0 rgba(214, 214, 214, 0.00), 0 267px 107px 0 rgba(214, 214, 214, 0.01), 0 150px 90px 0 rgba(214, 214, 214, 0.05), 0 67px 67px 0 rgba(214, 214, 214, 0.09), 0 17px 37px 0 rgba(214, 214, 214, 0.10);
    overflow: hidden;
}

.brochure-accordion-button {
    width: 100%;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    font-weight: 500;
    color: #1D1D1D;
    text-align: left;
}

.brochure-accordion-button .brochure-icon {
    margin-bottom: 0;
}

.brochure-accordion-chevron {
    margin-left: auto;
    flex-shrink: 0;
    transition: transform .2s ease;
}

.brochure-accordion-button[aria-expanded="true"] .brochure-accordion-chevron {
    transform: rotate(180deg);
}

.brochure-accordion-body {
    padding: 0 20px 20px 58px;
}