:root {
    --zlc-navy: #1A3C5E;
    --zlc-navy-dark: #0F2235;
    --zlc-gold: #D4A017;
    --zlc-gold-light: #E8B93A;
    --zlc-teal: #2EAE8F;
    --zlc-ivory: #F8F6F1;
    --zlc-text: #1C1C1C;
    --zlc-orange-cta: #c67a33;
    --vh-unit: 1vh;
    --screen-height: 100vh;
    --screen-height: 100dvh;
    --hero-min-height: calc(100vh - var(--site-header-height, 84px));
    --hero-min-height: calc(100dvh - var(--site-header-height, 84px));
    --hero-min-height: calc((var(--vh-unit, 1vh) * 100) - var(--site-header-height, 84px));
    --page-hero-min-height: calc(100vh - var(--site-header-height, 84px));
    --page-hero-min-height: calc(100dvh - var(--site-header-height, 84px));
    --page-hero-min-height: calc((var(--vh-unit, 1vh) * 100) - var(--site-header-height, 84px));
    --page-hero-image-inner-min-height: calc(100vh - var(--site-header-height, 84px));
    --page-hero-image-inner-min-height: calc(100dvh - var(--site-header-height, 84px));
    --page-hero-image-inner-min-height: calc((var(--vh-unit, 1vh) * 100) - var(--site-header-height, 84px));
    --zlc-btn-font: 'Poppins', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --zlc-btn-blue-start: #0A74DA;
    --zlc-btn-blue-end: #003366;
    --zlc-btn-gradient: linear-gradient(135deg, var(--zlc-btn-blue-start) 0%, var(--zlc-btn-blue-end) 100%);
    --zlc-btn-gradient-hover: linear-gradient(135deg, #1a84ea 0%, #004080 100%);
    --zlc-btn-radius: 8px;
    --zlc-btn-fs: clamp(0.8125rem, 2.2vw, 0.9375rem);
    --zlc-btn-py: clamp(0.5rem, 1.5vw, 0.6875rem);
    --zlc-btn-px: clamp(1rem, 3vw, 1.5rem);
    --zlc-btn-fs-sm: clamp(0.75rem, 2vw, 0.8125rem);
    --zlc-btn-py-sm: clamp(0.4rem, 1.2vw, 0.5rem);
    --zlc-btn-px-sm: clamp(0.75rem, 2.5vw, 1rem);
    --zlc-btn-fs-lg: clamp(0.9rem, 2.5vw, 1.0625rem);
    --zlc-btn-py-lg: clamp(0.625rem, 1.8vw, 0.8125rem);
    --zlc-btn-px-lg: clamp(1.125rem, 3.5vw, 1.75rem);
    --zlc-scrollbar-size: 10px;
    --zlc-scrollbar-track: #e8eef4;
    --zlc-scrollbar-thumb: #1A3C5E;
    --zlc-scrollbar-thumb-hover: #D4A017;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    max-width: 100%;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scrollbar-width: thin;
    scrollbar-color: var(--zlc-scrollbar-thumb) var(--zlc-scrollbar-track);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--zlc-scrollbar-thumb) var(--zlc-scrollbar-track);
}

::-webkit-scrollbar {
    width: var(--zlc-scrollbar-size);
    height: var(--zlc-scrollbar-size);
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--zlc-navy) 0%, var(--zlc-navy-dark) 100%);
    border-radius: 999px;
    border: 2px solid var(--zlc-scrollbar-track);
    background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--zlc-gold-light) 0%, var(--zlc-gold) 55%, var(--zlc-orange-cta) 100%);
    border: 2px solid var(--zlc-scrollbar-track);
    background-clip: padding-box;
}

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

@media (max-width: 991.98px) {
    html,
    body.zlc-site,
    body.zlc-site * {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    html::-webkit-scrollbar,
    body.zlc-site::-webkit-scrollbar,
    body.zlc-site *::-webkit-scrollbar {
        width: 0;
        height: 0;
        display: none;
    }
}

body.zlc-site {
    width: 100%;
    min-height: 100%;
    min-height: var(--screen-height);
    padding-top: var(--site-header-height, 84px);
    overflow-x: hidden;
    max-width: 100%;
}

body.zlc-site main#main-content {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

/* Even wrapping for titles; cleaner paragraph breaks (no leftover single words) */
body.zlc-site h1,
body.zlc-site h2,
body.zlc-site h3,
body.zlc-site h4,
body.zlc-site h5,
body.zlc-site h6,
body.zlc-site .page-hero-title,
body.zlc-site .section-heading,
body.zlc-site .course-card-title,
body.zlc-site .gallery-card-title,
body.zlc-site .why-feature-card-title,
body.zlc-site .services-card-title,
body.zlc-site .staff-card-name,
body.zlc-site .contact-block-heading,
body.zlc-site .faq-page-heading,
body.zlc-site .apply-heading,
body.zlc-site .director-message-heading,
body.zlc-site .page-cta .section-heading,
body.zlc-site legend,
body.zlc-site .zlc-accordion-title {
    text-wrap: balance;
}

body.zlc-site .hero-title,
body.zlc-site p.hero-title {
    text-wrap: wrap;
    white-space: normal;
}

body.zlc-site .hero-title-line1,
body.zlc-site .hero-title-line2 {
    text-wrap: balance;
    white-space: normal;
}

body.zlc-site p:not(.hero-title),
body.zlc-site li,
body.zlc-site dd,
body.zlc-site dt,
body.zlc-site blockquote,
body.zlc-site figcaption,
body.zlc-site address,
body.zlc-site .lead,
body.zlc-site .page-hero-subtitle,
body.zlc-site .hero-desc,
body.zlc-site .text-muted,
body.zlc-site .small,
body.zlc-site .course-card-desc,
body.zlc-site .gallery-card-desc,
body.zlc-site .why-feature-card-text,
body.zlc-site .services-card-desc,
body.zlc-site .about-story-lead,
body.zlc-site .about-story-text,
body.zlc-site .about-story-quote,
body.zlc-site .director-message-paragraph,
body.zlc-site .director-message-greeting,
body.zlc-site .zlc-accordion-body,
body.zlc-site .testimonial-card p,
body.zlc-site .trust-bar-text,
body.zlc-site .contact-block-line,
body.zlc-site .contact-block-body,
body.zlc-site .apply-letterhead-meta,
body.zlc-site .page-cta p,
body.zlc-site .alert,
body.zlc-site .footer-zlc p {
    text-wrap: pretty;
}

img,
video,
svg,
canvas,
iframe {
    max-width: 100%;
    height: auto;
}

.zlc-site .container {
    width: 100%;
    max-width: 100%;
}

@media (min-width: 576px) {
    .zlc-site .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .zlc-site .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .zlc-site .container {
        max-width: 960px;
    }
}

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

.site-header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: transparent;
    box-shadow: none;
    border: none;
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
    padding-top: env(safe-area-inset-top, 0);
}

.site-header-fixed .utility-bar,
.site-header-fixed .utility-bar-mobile {
    flex-shrink: 0;
    transition:
        transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.22s ease,
        max-height 0.22s ease,
        min-height 0.22s ease,
        padding 0.22s ease;
    will-change: transform, opacity;
}

.utility-bar.utility-bar--hidden,
.utility-bar-mobile.utility-bar--hidden {
    transform: translateY(-100%);
    opacity: 0;
    max-height: 0 !important;
    min-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    overflow: hidden;
    pointer-events: none;
    visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
    .site-header-fixed .utility-bar,
    .site-header-fixed .utility-bar-mobile {
        transition: none;
    }
}

.site-header-fixed .navbar-main {
    flex-shrink: 0;
}

@media (min-width: 992px) {
    :root {
        --site-header-height: 128px;
    }

    .utility-bar-inner {
        padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
        padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
    }
}

@media (max-width: 991.98px) {
    :root {
        --site-header-height: 84px;
    }
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--zlc-text);
    background: #fff;
}

.font-heading { font-family: 'Playfair Display', serif; }
.font-mono-label { font-family: 'DM Mono', monospace; letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.75rem; }

/* Utility bar */
.utility-bar {
    background: var(--zlc-navy);
    color: #fff;
    min-height: 40px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.utility-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
}

.utility-bar-contact,
.utility-bar-social {
    font-family: 'Poppins', 'Roboto', var(--zlc-btn-font);
    font-size: clamp(0.85rem, 1.05vw, 0.95rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.25;
}

.utility-bar-contact {
    flex: 0 1 auto;
    margin-right: auto;
    text-align: left;
    white-space: nowrap;
}

.utility-bar-contact a,
.utility-bar-social a {
    font-weight: 400;
    text-transform: none;
}

.utility-bar-contact i {
    font-size: 0.85em;
    color: var(--zlc-gold);
    opacity: 0.95;
}

.utility-bar-social {
    flex: 0 0 auto;
    margin-left: auto;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    white-space: nowrap;
}

.utility-bar-social .dot-sep {
    margin: 0 0.6rem;
}

.utility-bar a {
    color: #fff;
    transition: color 0.2s ease;
}

.utility-bar a:hover {
    color: var(--zlc-gold);
    text-decoration: none;
}

.utility-bar .dot-sep {
    color: var(--zlc-gold);
    margin: 0 0.6rem;
    font-weight: 400;
}

/* Main nav */
.navbar-main {
    background-color: #fff;
    background-image: url('../assets/logo/nav_bg.jpg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 100%;
    box-shadow: none;
    border: none;
    border-bottom: 0;
    padding: 0.75rem 0;
}

/* Navbar dropdowns — styled + smooth (desktop hover, mobile tap) */
.navbar-main .dropdown-menu {
    border-radius: 12px;
    border: 2px solid rgba(198, 122, 51, 0.55);
    border-top-width: 3px;
    box-shadow: 0 14px 34px rgba(15, 34, 53, 0.18);
    padding: 0.5rem;
    margin-top: 0.5rem;
    font-family: var(--zlc-btn-font);
}

.navbar-main .dropdown-item,
.navbar-main .dropdown-header {
    font-family: var(--zlc-btn-font);
}

.navbar-main .dropdown-header {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(26, 60, 94, 0.75);
    padding: 0.5rem 0.75rem;
}

.navbar-main .dropdown-item {
    border-radius: 10px;
    padding: 0.55rem 0.75rem;
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(15, 34, 53, 0.92);
    transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.navbar-main .dropdown-item:hover,
.navbar-main .dropdown-item:focus {
    background: rgba(10, 116, 218, 0.1);
    color: #003366;
    transform: translateX(2px);
    outline: none;
}

/* Smooth show/hide animation */
@media (min-width: 992px) {
    .navbar-main .dropdown-menu {
        /* Keep dropdown "still" on hover (no hover gap) */
        margin-top: 0;
        top: calc(100% - 2px);
        left: 0;
        right: auto;
        padding-top: 0.6rem;
        display: block;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(10px);
        transition: none;
    }

    /* Invisible hover-bridge so menu doesn't disappear */
    .navbar-main .dropdown-menu::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: -10px;
        height: 10px;
    }

    /* Auto-open on hover OR when JS marks open (desktop) */
    .navbar-main .dropdown:hover > .dropdown-menu,
    .navbar-main .dropdown.zlc-open > .dropdown-menu,
    .navbar-main .dropdown > .dropdown-toggle:focus + .dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .navbar-main .dropdown > .dropdown-toggle {
        transition: color 0.2s ease;
    }
}

/* Mobile/tablet: keep Bootstrap collapse/tap behavior, but animate when .show is applied */
@media (max-width: 991.98px) {
    .navbar-main .dropdown-menu {
        border-radius: 10px;
        transform-origin: top;
    }

    .navbar-main .dropdown-menu.show {
        animation: zlcDropIn 160ms ease-out;
    }
}

@keyframes zlcDropIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Desktop navbar layout like reference screenshot */
@media (min-width: 992px) {
    .navbar-main {
        padding: 0;
        background-image: url('../assets/logo/nav_bg.jpg');
        background-repeat: no-repeat;
        background-position: right center;
        background-size: auto 100%;
        box-shadow: none;
    }

    .site-header-fixed {
        box-shadow: none;
    }

    .navbar-main > .container,
    .navbar-main > .navbar-main-inner {
        max-width: 100%;
        width: 100%;
        padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
        padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
        min-height: 76px;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
    }

    .navbar-main .navbar-brand-logo {
        flex: 0 0 auto;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0.5rem;
    }

    .navbar-main .navbar-collapse {
        flex: 1 1 auto;
        justify-content: center;
    }

    .navbar-main .nav-cta-btn {
        flex: 0 0 auto;
        margin-left: auto;
        margin-right: 0;
    }

    .navbar-main .navbar-nav,
    .navbar-main .nav-mobile-menu {
        align-items: center;
        gap: 0.85rem;
    }

    .navbar-main .navbar-nav .nav-item {
        margin: 0 0.2rem;
    }

    .navbar-main .nav-link {
        font-family: var(--zlc-btn-font);
        font-size: clamp(1.05rem, 1.2vw, 1.12rem);
        font-weight: 400;
        letter-spacing: 0.03em;
        padding: 0.55rem 1rem !important;
        transition: color 0.2s ease;
    }

    .navbar-main .nav-link:hover,
    .navbar-main .nav-link:focus {
        font-weight: 400;
    }

    .navbar-main .nav-link.active {
        font-weight: 400;
        letter-spacing: 0.03em;
    }

    .navbar-main .nav-mobile-menu > .nav-item:not(:last-child)::after {
        display: inline-block;
    }

    /* Right CTA block */
    .navbar-main .nav-cta-btn {
        font-family: var(--zlc-btn-font);
        padding: 0.95rem 2.25rem;
        border-radius: 0;
        min-height: 76px;
        font-size: clamp(0.9rem, 1.05vw, 0.98rem);
        font-weight: 700;
        letter-spacing: 0.04em;
        background: transparent !important;
        border: none !important;
        box-shadow: none;
        color: #fff !important;
        clip-path: polygon(26px 0, 100% 0, 100% 100%, 0 100%);
    }

    .navbar-main .nav-cta-btn:hover,
    .navbar-main .nav-cta-btn:focus {
        background: rgba(255, 255, 255, 0.12) !important;
        transform: none;
        box-shadow: none;
    }
}
.navbar-main .nav-link {
    color: var(--zlc-navy) !important;
}
.navbar-main .nav-link:hover,
.navbar-main .nav-link.active { color: var(--zlc-orange-cta) !important; }

@media (max-width: 991.98px) {
    .navbar-main .nav-link {
        font-weight: 400;
        font-size: 0.95rem;
        padding: 0.5rem 0.75rem !important;
    }
}
.navbar-main .nav-link-icon {
    display: none;
}

.navbar-main .nav-link-inner {
    display: inline;
}

.navbar-main .dropdown-toggle::after {
    display: none;
}

.navbar-main .nav-mobile-menu > .nav-item {
    display: flex;
    align-items: center;
}

.navbar-main .nav-mobile-menu > .nav-item:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--zlc-navy);
    margin-left: 0.75rem;
    margin-right: 0.15rem;
    flex-shrink: 0;
    vertical-align: middle;
}

@media (min-width: 992px) {
    .navbar-main .nav-mobile-menu > .nav-item:not(:last-child)::after {
        width: 4px;
        height: 4px;
        margin-left: 0.75rem;
        margin-right: 0.15rem;
    }
}

.navbar-brand-logo {
    padding: 0.35rem 0.5rem 0.35rem 0.75rem;
    margin-right: 0.75rem;
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.navbar-brand-logo:hover,
.navbar-brand-logo:focus {
    text-decoration: none;
    opacity: 0.92;
}

.navbar-brand-logo:focus-visible {
    outline: 2px solid rgba(10, 116, 218, 0.65);
    outline-offset: 3px;
    border-radius: 4px;
}

.navbar-logo-img {
    display: block;
    height: 52px;
    width: auto;
    max-width: min(200px, 48vw);
    object-fit: contain;
    object-position: left center;
    pointer-events: none;
}

/* ZLC buttons — mobile-first, Poppins/Roboto, blue gradient */
.btn-primary-zlc,
.btn-enroll,
.btn-auth-glass,
.cta-enroll .btn-light.cta-btn-primary,
.cta-enroll .btn-primary-zlc {
    font-family: var(--zlc-btn-font);
    font-size: var(--zlc-btn-fs);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-transform: none;
    padding: var(--zlc-btn-py) var(--zlc-btn-px);
    border: none;
    border-radius: var(--zlc-btn-radius);
    color: #fff !important;
    background: var(--zlc-btn-gradient);
    clip-path: none;
    box-shadow: 0 4px 14px rgba(0, 51, 102, 0.28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    text-align: center;
    white-space: normal;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary-zlc:hover,
.btn-enroll:hover,
.btn-auth-glass:hover,
.cta-enroll .btn-light.cta-btn-primary:hover,
.cta-enroll .btn-primary-zlc:hover {
    background: var(--zlc-btn-gradient-hover);
    color: #fff !important;
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.38);
}

.btn-primary-zlc:active,
.btn-enroll:active,
.btn-auth-glass:active,
.cta-enroll .btn-light.cta-btn-primary:active,
.cta-enroll .btn-primary-zlc:active {
    transform: scale(0.98);
    box-shadow: 0 2px 10px rgba(0, 51, 102, 0.3);
}

.btn-primary-zlc:focus,
.btn-enroll:focus,
.btn-auth-glass:focus,
.cta-enroll .btn-light.cta-btn-primary:focus,
.cta-enroll .btn-primary-zlc:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(10, 116, 218, 0.45);
    color: #fff !important;
}

.btn-outline-zlc {
    font-family: var(--zlc-btn-font);
    font-size: var(--zlc-btn-fs);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.02em;
    padding: calc(var(--zlc-btn-py) - 2px) calc(var(--zlc-btn-px) - 2px);
    border: 2px solid var(--zlc-btn-blue-start);
    border-radius: var(--zlc-btn-radius);
    color: var(--zlc-btn-blue-end) !important;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: normal;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-outline-zlc:hover,
.btn-outline-zlc:focus {
    background: var(--zlc-btn-gradient);
    border-color: transparent;
    color: #fff !important;
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.32);
    outline: none;
}

.btn-outline-zlc:active {
    transform: scale(0.98);
}

.btn-outline-light-zlc {
    font-family: var(--zlc-btn-font);
    font-size: var(--zlc-btn-fs);
    font-weight: 600;
    line-height: 1.35;
    padding: calc(var(--zlc-btn-py) - 2px) calc(var(--zlc-btn-px) - 2px);
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--zlc-btn-radius);
    color: #fff !important;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn-outline-light-zlc:hover,
.btn-outline-light-zlc:focus {
    background: var(--zlc-btn-gradient);
    border-color: transparent;
    color: #fff !important;
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.35);
    outline: none;
}

.btn-outline-light-zlc:active {
    transform: scale(0.98);
}

.btn-primary-zlc.btn-sm,
.btn-enroll.btn-sm,
.btn-outline-zlc.btn-sm,
.btn-outline-light-zlc.btn-sm {
    font-size: var(--zlc-btn-fs-sm);
    padding: var(--zlc-btn-py-sm) var(--zlc-btn-px-sm);
}

.btn-outline-zlc.btn-sm {
    padding: calc(var(--zlc-btn-py-sm) - 2px) calc(var(--zlc-btn-px-sm) - 2px);
}

.btn-outline-light-zlc.btn-sm {
    padding: calc(var(--zlc-btn-py-sm) - 2px) calc(var(--zlc-btn-px-sm) - 2px);
}

.btn-primary-zlc.btn-lg,
.btn-enroll.btn-lg,
.btn-outline-zlc.btn-lg,
.btn-outline-light-zlc.btn-lg {
    font-size: var(--zlc-btn-fs-lg);
    padding: var(--zlc-btn-py-lg) var(--zlc-btn-px-lg);
}

.btn-outline-zlc.btn-lg {
    padding: calc(var(--zlc-btn-py-lg) - 2px) calc(var(--zlc-btn-px-lg) - 2px);
}

.btn-outline-light-zlc.btn-lg {
    padding: calc(var(--zlc-btn-py-lg) - 2px) calc(var(--zlc-btn-px-lg) - 2px);
}

/* Page CTA — Apply Now + Talk to Us pair */
body.zlc-site .page-cta .page-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.9rem;
}

body.zlc-site .page-cta .page-cta-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 11.75rem;
    min-height: 3.35rem;
    padding: 0.9rem 2rem;
    margin: 0;
    border-radius: 10px;
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0.055em;
    line-height: 1.2;
    text-transform: none;
    text-decoration: none;
    white-space: nowrap;
    vertical-align: middle;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

body.zlc-site .page-cta .page-cta-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -130%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
    transition: left 0.55s ease;
}

body.zlc-site .page-cta .page-cta-btn:hover::after,
body.zlc-site .page-cta .page-cta-btn:focus::after {
    left: 140%;
}

body.zlc-site .page-cta .page-cta-btn--primary {
    color: #fff !important;
    background: var(--zlc-orange-cta);
    border: 2px solid var(--zlc-orange-cta);
    box-shadow: 0 6px 18px rgba(198, 122, 51, 0.28);
}

body.zlc-site .page-cta .page-cta-btn--primary:hover,
body.zlc-site .page-cta .page-cta-btn--primary:focus {
    color: #fff !important;
    background: #b36a28;
    border-color: #b36a28;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(198, 122, 51, 0.42);
    text-decoration: none;
    outline: none;
}

body.zlc-site .page-cta .page-cta-btn--secondary {
    color: var(--zlc-navy) !important;
    background: #fff;
    border: 2px solid var(--zlc-navy);
    box-shadow: 0 4px 14px rgba(26, 60, 94, 0.1);
}

body.zlc-site .page-cta .page-cta-btn--secondary:hover,
body.zlc-site .page-cta .page-cta-btn--secondary:focus {
    color: #fff !important;
    background: var(--zlc-navy);
    border-color: var(--zlc-navy);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(26, 60, 94, 0.28);
    text-decoration: none;
    outline: none;
}

body.zlc-site .page-cta .page-cta-btn:focus-visible {
    outline: 3px solid var(--zlc-gold);
    outline-offset: 3px;
}

body.zlc-site .page-cta .page-cta-btn:active {
    transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
    body.zlc-site .page-cta .page-cta-btn,
    body.zlc-site .page-cta .page-cta-btn::after {
        transition: none;
    }

    body.zlc-site .page-cta .page-cta-btn:hover,
    body.zlc-site .page-cta .page-cta-btn:focus {
        transform: none;
    }

    body.zlc-site .page-cta .page-cta-btn::after {
        display: none;
    }
}

.section-heading {
    font-family: 'Playfair Display', serif;
    color: var(--zlc-navy);
    font-weight: 700;
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    line-height: 1.2;
    position: relative;
    margin-bottom: 1rem;
}

.section-heading::after {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    background: var(--zlc-gold);
    margin: 0.85rem auto 0;
    border-radius: 2px;
}

.section-heading.text-left::after {
    margin-left: 0;
}

.news-card-img {
    display: block;
    width: 100%;
    height: 160px;
    object-fit: cover;
    object-position: center;
    background: linear-gradient(135deg, var(--zlc-navy), var(--zlc-teal));
}

.section-intro {
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: clamp(1.05rem, 2.2vw, 1.3rem);
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 0.02em;
    color: #4a5f73;
    max-width: 40rem;
    margin: 0 auto;
    padding-top: 0.25rem;
}

.bg-ivory { background: var(--zlc-ivory); }
.text-teal { color: var(--zlc-teal) !important; }
.text-gold { color: var(--zlc-gold) !important; }

/* Hero */
.hero-zlc-wrapper {
    position: relative;
    width: 100%;
    height: var(--hero-min-height);
    min-height: var(--hero-min-height);
    margin-top: -1px;
    overflow: hidden;
}

.hero-zlc {
    width: 100%;
    height: 100%;
    min-height: 100%;
}

.hero-carousel.owl-carousel,
.hero-carousel.owl-carousel .owl-stage-outer {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Server-rendered first slide is visible before carousel JS loads */
.hero-carousel.owl-carousel:not(.owl-loaded) {
    display: block !important;
    position: relative;
    overflow: hidden;
}
.hero-carousel.owl-carousel:not(.owl-loaded) .hero-slide-zlc {
    display: none;
}
.hero-carousel.owl-carousel:not(.owl-loaded) .hero-slide-zlc:first-child {
    display: block;
}
.testimonial-carousel:not(.owl-loaded) .item:not(:first-child) {
    display: none;
}
.testimonial-carousel.owl-carousel:not(.owl-loaded) {
    display: block !important;
}

.hero-carousel.owl-carousel .owl-stage {
    height: 100%;
    display: flex;
}

.hero-carousel.owl-carousel .owl-item {
    height: 100%;
    display: flex;
}

.hero-carousel.owl-carousel .owl-dots {
    display: none !important;
}

.hero-actions-static {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2.5rem;
    z-index: 20;
    pointer-events: none;
}

.hero-actions-static .hero-actions--centered {
    pointer-events: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-apply-btn {
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: var(--zlc-btn-font);
    font-size: var(--zlc-btn-fs);
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 0.7em 1.7em;
    border-radius: 0.5em;
    color: #fff !important;
    background: var(--zlc-orange-cta) !important;
    border: 2px solid var(--zlc-orange-cta) !important;
    box-shadow: 0 4px 14px rgba(198, 122, 51, 0.3);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease-in;
}

.hero-content .hero-apply-btn {
    margin-top: 2.35rem;
    display: block;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
}

.hero-apply-btn::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    width: 140%;
    height: 180%;
    display: block;
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

.hero-apply-btn::after {
    content: "";
    position: absolute;
    left: 55%;
    top: 180%;
    width: 160%;
    height: 190%;
    display: block;
    background-color: #e09050;
    border-radius: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.45);
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

.hero-apply-btn:hover,
.hero-apply-btn:focus {
    color: #fff !important;
    border-color: #e09050 !important;
    outline: none;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(198, 122, 51, 0.45);
}

.hero-apply-btn:hover::before,
.hero-apply-btn:focus::before {
    top: -35%;
    background-color: #e09050;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.hero-apply-btn:hover::after,
.hero-apply-btn:focus::after {
    top: -45%;
    background-color: #e09050;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.hero-apply-btn:active {
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(198, 122, 51, 0.35);
}

@media (prefers-reduced-motion: reduce) {
    .hero-apply-btn::before,
    .hero-apply-btn::after {
        transition: none;
    }

    .hero-apply-btn:hover,
    .hero-apply-btn:focus {
        background: #e09050 !important;
        color: #fff !important;
        transform: none;
    }
}

.hero-slide-zlc {
    width: 100%;
    height: 100%;
    min-height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-slide-zlc--from-center-right {
    background-position: 72% center;
}

@media (max-width: 767.98px) {
    .hero-slide-zlc--from-center-right {
        background-position: right center;
    }
}
.hero-slide-zlc::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 34, 53, 0.65);
}
.hero-slide-zlc .hero-inner {
    position: relative;
    z-index: 2;
    color: #fff;
    width: 100%;
    height: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.hero-carousel.owl-carousel .animated {
    animation-duration: 0.85s;
    animation-fill-mode: both;
}

.hero-carousel.owl-carousel .owl-animated-in {
    z-index: 1;
}

.hero-carousel.owl-carousel .owl-animated-out {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-carousel .heroMorphIn {
    animation-name: heroMorphIn;
}

.hero-carousel .heroMorphOut {
    animation-name: heroMorphOut;
}

.hero-carousel .heroSlideInFromLeft {
    animation-name: heroMorphIn;
}

.hero-carousel .heroSlideOutToRight {
    animation-name: heroMorphOut;
}

@keyframes heroMorphIn {
    from {
        opacity: 0;
        visibility: visible;
        transform: scale(1.08);
        filter: blur(14px);
    }
    to {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

@keyframes heroMorphOut {
    from {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
    to {
        opacity: 0;
        visibility: hidden;
        transform: scale(0.96);
        filter: blur(10px);
    }
}

/* Nudge hero text slightly toward center */
.hero-slide-zlc .hero-content {
    margin-left: clamp(0px, 3vw, 48px);
    overflow: visible;
    container-type: inline-size;
    container-name: hero-copy;
}

.hero-content--in .hero-title {
    animation: hero-content-slide-up 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.04s both;
}

.hero-content--in .hero-desc {
    animation: hero-content-slide-up 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.hero-content--in .hero-apply-btn {
    animation: hero-content-slide-up 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

@keyframes hero-content-slide-up {
    from {
        opacity: 0;
        transform: translate3d(0, 3.25rem, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-carousel .heroMorphIn,
    .hero-carousel .heroMorphOut,
    .hero-carousel .heroSlideInFromLeft,
    .hero-carousel .heroSlideOutToRight,
    .hero-content--in .hero-title,
    .hero-content--in .hero-desc,
    .hero-content--in .hero-apply-btn {
        animation: none;
        opacity: 1;
        transform: none;
        filter: none;
        visibility: visible;
    }
}
.hero-label { color: var(--zlc-gold); }
.hero-slide-zlc h1, .hero-slide-zlc h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}
.owl-nav button {
    position: absolute;
    top: 56%;
    transform: translateY(-50%);
    background: transparent !important;
    color: #fff !important;
    width: 48px;
    height: 48px;
    border-radius: 50% !important;
    box-shadow: none !important;
}
.owl-nav .owl-prev { left: 20px; }
.owl-nav .owl-next { right: 20px; }
.owl-nav button:hover { background: transparent !important; }

/* Program grid */
.program-card {
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 8px;
    padding: 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.25s;
    border-left: 4px solid transparent;
}
.program-card:hover {
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    border-left-color: var(--zlc-gold);
    transform: translateY(-4px);
}

a.program-card {
    color: inherit;
    text-decoration: none;
}

a.program-card:hover {
    color: inherit;
    text-decoration: none;
}
.program-card .icon-wrap {
    font-size: 2.5rem;
    color: var(--zlc-teal);
    margin-bottom: 1rem;
}

.home-programs-section {
    width: 100%;
}

.home-programs-section > .container {
    width: 100%;
    max-width: 100% !important;
    padding-left: clamp(0.85rem, 3.5vw, 2.5rem);
    padding-right: clamp(0.85rem, 3.5vw, 2.5rem);
}

.home-programs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 0.85rem;
}

.home-programs-section .program-card {
    min-width: 0;
}

.home-programs-section .program-card > a {
    margin-top: auto;
    padding-top: 0.65rem;
    text-decoration: none !important;
}

.home-programs-section .program-card > a:hover,
.home-programs-section .program-card > a:focus {
    text-decoration: none !important;
}

.home-programs-section .program-card .icon-wrap,
.home-programs-section .program-card .icon-wrap i {
    color: #7A4A2A;
}

.home-programs-section .program-card .icon-wrap i {
    display: inline-block;
    transform-origin: center;
    animation: program-icon-float 2.6s ease-in-out infinite;
}

.home-programs-section .program-card:nth-child(2) .icon-wrap i { animation-delay: 0.2s; }
.home-programs-section .program-card:nth-child(3) .icon-wrap i { animation-delay: 0.4s; }
.home-programs-section .program-card:nth-child(4) .icon-wrap i { animation-delay: 0.15s; }
.home-programs-section .program-card:nth-child(5) .icon-wrap i { animation-delay: 0.35s; }
.home-programs-section .program-card:nth-child(6) .icon-wrap i { animation-delay: 0.55s; }

.home-programs-section .program-card:hover .icon-wrap i {
    animation: program-icon-pop 0.55s ease;
}

@keyframes program-icon-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    40% { transform: translateY(-7px) rotate(-6deg); }
    70% { transform: translateY(-3px) rotate(5deg); }
}

@keyframes program-icon-pop {
    0% { transform: translateY(0) scale(1); }
    45% { transform: translateY(-8px) scale(1.12); }
    100% { transform: translateY(0) scale(1); }
}

@media (max-width: 767.98px) {
    .home-programs-section .program-card > p.text-muted {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-programs-section .program-card .icon-wrap i,
    .home-programs-section .program-card:hover .icon-wrap i {
        animation: none;
    }
}

@media (min-width: 768px) {
    .home-programs-grid {
        gap: 1.25rem 1.25rem;
    }
}

/* Services page — overview cards & detailed explanations */
.services-overview-section .services-overview-card {
    border-left-color: rgba(122, 74, 42, 0.28);
}

.services-overview-card .icon-wrap,
.services-overview-card .icon-wrap i {
    color: #c9a07a;
}

.services-overview-card .icon-wrap i {
    display: inline-block;
    transform-origin: center;
}

.services-overview-row > [class*="col-"]:nth-child(1) .icon-wrap i {
    animation: contactIconBounce 2.2s ease-in-out infinite;
}

.services-overview-row > [class*="col-"]:nth-child(2) .icon-wrap i {
    animation: program-icon-float 2.6s ease-in-out infinite;
}

.services-overview-row > [class*="col-"]:nth-child(3) .icon-wrap i {
    animation: contactIconRing 1.8s ease-in-out infinite;
    transform-origin: 50% 85%;
}

.services-overview-row > [class*="col-"]:nth-child(4) .icon-wrap i {
    animation: program-icon-float 2.8s ease-in-out infinite 0.2s;
}

@media (prefers-reduced-motion: reduce) {
    .services-overview-card .icon-wrap i {
        animation: none;
    }
}

.services-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.05rem, 2.2vw, 1.2rem);
    font-weight: 700;
    color: var(--zlc-navy);
    line-height: 1.3;
    letter-spacing: 0.01em;
}

.services-card-desc {
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: clamp(0.875rem, 1.8vw, 0.9375rem);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(26, 60, 94, 0.78);
    letter-spacing: 0.01em;
}

.services-detail-section {
    border-top: 1px solid #e8e4dc;
}

.services-detail-intro .section-heading {
    margin-bottom: 0.75rem;
}

.services-detail-intro-text {
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: clamp(1rem, 2.2vw, 1.125rem);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(26, 60, 94, 0.82);
    letter-spacing: 0.015em;
}

.service-detail-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.05rem, 2vw, 1.15rem);
    font-weight: 700;
    color: var(--zlc-navy);
    line-height: 1.3;
}

.service-detail-summary {
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: clamp(0.875rem, 1.7vw, 0.925rem);
    font-weight: 500;
    line-height: 1.55;
    color: rgba(26, 60, 94, 0.75);
    letter-spacing: 0.01em;
}

.service-detail-block {
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #e5e0d6;
    scroll-margin-top: calc(var(--site-header-height, 84px) + 12px);
}

.service-detail-block:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.service-detail-card {
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 10px;
    border-left: 4px solid #c9a07a;
    box-shadow: 0 6px 18px rgba(15, 34, 53, 0.06);
}

.service-detail-card .icon-wrap,
.service-detail-card .icon-wrap i {
    font-size: 2.25rem;
    color: #c9a07a;
}

.service-detail-card .icon-wrap i {
    display: inline-block;
    transform-origin: center;
}

.service-detail-block:nth-of-type(1) .icon-wrap i {
    animation: contactIconBounce 2.2s ease-in-out infinite;
}

.service-detail-block:nth-of-type(2) .icon-wrap i {
    animation: program-icon-float 2.6s ease-in-out infinite;
}

.service-detail-block:nth-of-type(3) .icon-wrap i {
    animation: contactIconRing 1.8s ease-in-out infinite;
    transform-origin: 50% 85%;
}

.service-detail-block:nth-of-type(4) .icon-wrap i {
    animation: program-icon-float 2.8s ease-in-out infinite 0.2s;
}

@media (prefers-reduced-motion: reduce) {
    .service-detail-card .icon-wrap i {
        animation: none;
    }
}

.service-detail-content {
    background: #fff;
    border: 1px solid #ebe6dc;
    border-radius: 10px;
    padding: 1.5rem 1.65rem;
    box-shadow: 0 4px 14px rgba(15, 34, 53, 0.05);
    font-family: 'Poppins', var(--zlc-btn-font);
}

.service-detail-lead {
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: clamp(1rem, 2.1vw, 1.125rem);
    font-weight: 400;
    line-height: 1.75;
    color: rgba(28, 28, 28, 0.92);
    letter-spacing: 0.015em;
}

.service-detail-subheading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1rem, 2vw, 1.0625rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--zlc-navy);
}

.service-detail-list {
    margin: 0;
    padding-left: 1.35rem;
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: clamp(0.9375rem, 1.9vw, 1rem);
    font-weight: 400;
    color: rgba(28, 28, 28, 0.88);
}

.service-detail-list li {
    margin-bottom: 0.5rem;
    line-height: 1.65;
    letter-spacing: 0.01em;
}

.service-detail-list li::marker {
    color: var(--zlc-teal);
}

.service-detail-list li:last-child {
    margin-bottom: 0;
}

.service-detail-impact {
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: clamp(0.9375rem, 1.9vw, 1.02rem);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(28, 28, 28, 0.9);
    letter-spacing: 0.01em;
    padding-top: 0.75rem;
    border-top: 1px solid #eee9df;
}

.service-detail-impact strong {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.02em;
    color: var(--zlc-navy);
}

@media (max-width: 991.98px) {
    .services-card-desc,
    .service-detail-summary {
        font-size: 0.9rem;
    }

    .services-overview-section .services-card-desc {
        display: none;
    }

    .services-overview-section .services-overview-card {
        padding: 1rem 0.7rem !important;
    }

    .services-overview-section .services-card-title {
        font-size: 0.95rem;
        margin-top: 0.55rem !important;
    }

    .service-detail-block {
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }

    .service-detail-content {
        padding: 1.25rem 1.2rem;
    }

    .service-detail-lead {
        line-height: 1.65;
    }
}

/* Course cards — reference layout (carousel + listings) */
.course-card-zlc {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(15, 34, 53, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.course-card-zlc:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(15, 34, 53, 0.14);
}

.course-card-img {
    height: 200px;
    min-height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: var(--zlc-navy-dark);
}

.course-card-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 34, 53, 0.35) 0%, rgba(15, 34, 53, 0.82) 100%);
    z-index: 0;
}

.course-card-duration,
.course-card-vta {
    position: absolute;
    z-index: 1;
}

.course-card-duration {
    top: 14px;
    left: 14px;
    padding: 0.35rem 0.65rem;
    background: var(--zlc-gold);
    color: var(--zlc-navy-dark);
    font-family: var(--zlc-btn-font);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border-radius: 6px;
    line-height: 1.2;
}

.course-card-vta {
    top: 16px;
    right: 14px;
    color: #fff;
    font-family: var(--zlc-btn-font);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: none;
}

.course-card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: 1.35rem 1.25rem 1.5rem;
}

.course-category-tag {
    color: var(--zlc-teal);
    font-family: var(--zlc-btn-font);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.course-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--zlc-text);
    line-height: 1.25;
    margin-bottom: 0.65rem;
}

.course-card-desc {
    color: rgba(28, 28, 28, 0.65);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    line-height: 1.55;
    margin-bottom: 0.85rem;
    flex: 1 1 auto;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-card-duration-meta {
    color: var(--zlc-teal);
    font-family: var(--zlc-btn-font);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.1rem;
}

.course-card-duration-meta i {
    color: var(--zlc-teal);
}

.btn-course-details {
    margin-top: auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: var(--zlc-btn-font);
    font-weight: 600;
    font-size: var(--zlc-btn-fs);
    letter-spacing: 0.03em;
    color: #fff !important;
    background: var(--zlc-orange-cta) !important;
    border: 2px solid var(--zlc-orange-cta) !important;
    border-radius: 0.5em;
    padding: 0.7em 1.7em;
    box-shadow: 0 4px 14px rgba(198, 122, 51, 0.3);
    text-decoration: none;
    transition: all 0.2s ease-in;
}

.btn-course-details::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    width: 140%;
    height: 180%;
    display: block;
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

.btn-course-details::after {
    content: "";
    position: absolute;
    left: 55%;
    top: 180%;
    width: 160%;
    height: 190%;
    display: block;
    background-color: #e09050;
    border-radius: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.45);
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

.btn-course-details:hover,
.btn-course-details:focus {
    color: #fff !important;
    background: var(--zlc-orange-cta) !important;
    border-color: #e09050 !important;
    outline: none;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(198, 122, 51, 0.45);
}

.btn-course-details:hover::before,
.btn-course-details:focus::before {
    top: -35%;
    background-color: #e09050;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.btn-course-details:hover::after,
.btn-course-details:focus::after {
    top: -45%;
    background-color: #e09050;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.btn-course-details:active {
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(198, 122, 51, 0.35);
}

/* Legacy badge classes (other pages) */
.badge-duration {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--zlc-gold);
    color: var(--zlc-navy);
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
}

.badge-vta {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    color: #fff;
    font-size: 0.65rem;
}

/* Why choose */
.why-block { padding: 3rem 0; }

.why-block-content {
    padding: 1.35rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid transparent;
    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease;
}

.why-block-content:hover {
    background: #fff;
    border-left-color: var(--zlc-gold);
    box-shadow: 0 12px 28px rgba(15, 34, 53, 0.1);
    transform: translateX(6px);
}

.why-block.flex-md-row-reverse .why-block-content:hover {
    transform: translateX(-6px);
}

.why-icon {
    font-size: 2rem;
    color: var(--zlc-teal);
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-block-content:hover .why-icon {
    color: var(--zlc-gold);
    transform: scale(1.1);
}

.why-block-content h4 {
    transition: color 0.3s ease;
}

.why-block-content:hover h4 {
    color: var(--zlc-navy);
}

.why-block-content p {
    transition: color 0.3s ease;
}

.why-block-content:hover p {
    color: rgba(15, 34, 53, 0.88);
}

.why-block-visual {
    min-height: 200px;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--zlc-navy);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.25rem;
    box-shadow: 0 8px 24px rgba(15, 34, 53, 0.12);
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease;
}

.why-block-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 34, 53, 0.15) 0%, rgba(15, 34, 53, 0.55) 100%);
    pointer-events: none;
    transition: background 0.35s ease;
}

.why-block-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 40%, rgba(198, 122, 51, 0.22) 0%, transparent 65%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.why-block-visual:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(15, 34, 53, 0.22);
}

.why-block-visual:hover::before {
    background: linear-gradient(180deg, rgba(15, 34, 53, 0.05) 0%, rgba(15, 34, 53, 0.42) 100%);
}

.why-block-visual:hover::after {
    opacity: 1;
}

.why-block-visual-label {
    position: relative;
    z-index: 1;
    color: var(--zlc-gold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.78rem;
    background: rgba(15, 34, 53, 0.65);
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s ease;
}

.why-block-visual:hover .why-block-visual-label {
    background: rgba(198, 122, 51, 0.92);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(15, 34, 53, 0.25);
}
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--zlc-gold);
    font-weight: 700;
}

.zlc-stats-row .zlc-stat-item {
    transform: translateY(32px);
    transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.zlc-stats-row.is-visible .zlc-stat-item {
    transform: translateY(0);
}

.zlc-stats-row.is-visible .zlc-stat-item:nth-child(1) { transition-delay: 0.08s; }
.zlc-stats-row.is-visible .zlc-stat-item:nth-child(2) { transition-delay: 0.18s; }
.zlc-stats-row.is-visible .zlc-stat-item:nth-child(3) { transition-delay: 0.28s; }
.zlc-stats-row.is-visible .zlc-stat-item:nth-child(4) { transition-delay: 0.38s; }

.zlc-stats-row .stat-number {
    display: inline-block;
    font-variant-numeric: tabular-nums;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.zlc-stats-row .stat-number.is-animating {
    transform: scale(1.04);
    opacity: 0.92;
}

.zlc-stats-row .stat-number.is-done {
    transform: scale(1);
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .zlc-stats-row .zlc-stat-item {
        transform: none;
        transition: none;
    }

    .why-block-content,
    .why-block-content:hover,
    .why-block-visual,
    .why-block-visual:hover,
    .why-icon,
    .why-block-visual-label,
    .why-feature-card,
    .why-feature-card:hover,
    .why-feature-card-icon,
    .why-feature-card:hover .why-feature-card-icon {
        transform: none;
        transition: none;
    }
}

/* Why Choose page — feature cards */
.why-choose-features-header .section-heading {
    margin-bottom: 0;
}

.why-choose-features-intro {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(0.95rem, 2.2vw, 1.05rem);
    line-height: 1.65;
}

.why-choose-features-grid {
    --why-feature-gap: 1rem;
}

.why-feature-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 12px;
    padding: 1.15rem 1.2rem;
    border-left: 4px solid var(--zlc-teal);
    box-shadow: 0 4px 14px rgba(15, 34, 53, 0.05);
    transition:
        transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.why-feature-card:hover {
    border-left-color: var(--zlc-gold);
    box-shadow: 0 12px 28px rgba(15, 34, 53, 0.1);
    transform: translateY(-4px);
}

.why-feature-card-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(45, 125, 125, 0.1);
    color: var(--zlc-teal);
    font-size: 1.35rem;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.why-feature-card-icon--logo {
    background: transparent;
    padding: 0;
    overflow: visible;
}

.why-feature-card-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.why-feature-card:hover .why-feature-card-icon {
    background: rgba(198, 122, 51, 0.14);
    color: var(--zlc-gold);
    transform: scale(1.06);
}

.why-feature-card:hover .why-feature-card-icon--logo {
    background: transparent;
}

.why-feature-card-body {
    flex: 1;
    min-width: 0;
}

.why-feature-card-title {
    font-size: clamp(1rem, 2.4vw, 1.15rem);
    color: var(--zlc-navy);
    margin: 0 0 0.4rem;
    line-height: 1.3;
}

.why-feature-card-text {
    font-size: clamp(0.875rem, 2vw, 0.95rem);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .why-feature-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.65rem 1.35rem 1.5rem;
        gap: 0.85rem;
    }

    .why-feature-card-icon {
        flex: 0 0 auto;
        width: 64px;
        height: 64px;
        font-size: 1.65rem;
    }

    .why-feature-card-title {
        margin-bottom: 0.55rem;
    }
}

/* Testimonials */
.testimonials-section {
    position: relative;
    background-color: var(--zlc-navy-dark);
    background-image: url('../assets/logo/backgrounds%20(2).jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: rgba(15, 34, 53, 0.5);
}

.testimonials-section > .container,
.testimonials-section .testimonial-carousel {
    position: relative;
    z-index: 1;
}
.testimonial-card {
    background: var(--zlc-ivory);
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 720px;
    margin: 0 auto;
}
.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--zlc-gold);
    line-height: 0.5;
}

/* CTA banner */
.cta-enroll {
    background: linear-gradient(135deg, var(--zlc-teal), var(--zlc-navy));
    padding: 4rem 0;
    color: #fff;
}

/* Explore More — related page links */
.related-nav-links {
    background: linear-gradient(180deg, #faf7f2 0%, #f3ede4 100%);
    border-top: 3px solid var(--zlc-gold);
    padding-top: 2rem !important;
    padding-bottom: 2.25rem !important;
}

.related-nav-heading {
    color: #6b4423;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    margin-bottom: 1.25rem !important;
}

.related-nav-buttons {
    gap: 0.5rem 0.75rem;
}

.related-nav-btn {
    font-family: var(--zlc-btn-font);
    font-size: clamp(0.95rem, 3.2vw, 1.125rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: var(--zlc-btn-py-sm) var(--zlc-btn-px-sm);
    border-radius: var(--zlc-btn-radius);
    background: var(--zlc-orange-cta);
    border: 2px solid var(--zlc-orange-cta);
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(198, 122, 51, 0.3);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.related-nav-btn:hover,
.related-nav-btn:focus {
    background: #e09050;
    border-color: #e09050;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(198, 122, 51, 0.45);
    outline: none;
    text-decoration: none;
}

.related-nav-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(198, 122, 51, 0.35);
}

/* Centered success popup (contact form) */
.zlc-success-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: rgba(15, 34, 53, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: zlcPopupFadeIn 0.25s ease;
}

.zlc-success-popup-overlay.is-hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

.zlc-success-popup {
    position: relative;
    width: 100%;
    max-width: 420px;
    padding: 2rem 1.75rem 1.5rem;
    text-align: center;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(15, 34, 53, 0.25);
    animation: zlcPopupScaleIn 0.28s ease;
}

.zlc-success-popup-close {
    position: absolute;
    top: 0.65rem;
    right: 0.85rem;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    line-height: 1;
    color: rgba(15, 34, 53, 0.45);
    cursor: pointer;
    padding: 0.15rem 0.35rem;
}

.zlc-success-popup-close:hover {
    color: var(--zlc-navy);
}

.zlc-success-popup-icon {
    font-size: 2.75rem;
    color: var(--zlc-teal);
    margin-bottom: 0.75rem;
}

.zlc-success-popup-title {
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--zlc-navy);
    margin: 0 0 0.5rem;
}

.zlc-success-popup-message {
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: 1rem;
    color: #4a5568;
    margin: 0 0 1.25rem;
    line-height: 1.5;
}

.zlc-success-popup-ok {
    min-width: 6.5rem;
}

body.zlc-popup-open {
    overflow: hidden;
}

@keyframes zlcPopupFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zlcPopupScaleIn {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(8px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Admin login */
.admin-login-section {
    position: relative;
    background-image: url('../assets/logo/backgrounds%20(1).jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: calc(100vh - var(--site-header-height, 84px));
    min-height: calc(100dvh - var(--site-header-height, 84px));
    min-height: calc((var(--vh-unit, 1vh) * 100) - var(--site-header-height, 84px));
    height: calc((var(--vh-unit, 1vh) * 100) - var(--site-header-height, 84px));
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
}

.admin-login-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.78) 0%,
        rgba(255, 255, 255, 0.72) 45%,
        rgba(255, 255, 255, 0.85) 100%
    );
    box-shadow: inset 0 0 100px 48px rgba(255, 255, 255, 0.7);
}

.admin-login-panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 1.75rem 1.5rem 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow:
        0 0 40px rgba(255, 255, 255, 0.85),
        0 8px 28px rgba(15, 34, 53, 0.08);
}

.admin-login-header {
    text-align: center;
    margin-bottom: 1.35rem;
}

.admin-login-logo {
    display: block;
    width: min(140px, 42%);
    max-width: 100%;
    height: auto;
    margin: 0 auto 0.75rem;
    object-fit: contain;
}

.admin-login-title {
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: clamp(1.05rem, 3.4vw, 1.35rem);
    font-weight: 700;
    color: #3d4852;
    line-height: 1.25;
    margin: 0 0 0.4rem;
}

.admin-login-subtitle {
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: clamp(0.78rem, 2.2vw, 0.9rem);
    font-weight: 400;
    color: #8a96a3;
    margin: 0;
    line-height: 1.4;
}

.admin-login-alert {
    font-family: var(--zlc-btn-font);
    font-size: 0.875rem;
    color: #842029;
    background: #f8d7da;
    border: 1px solid #f5c2c7;
    border-radius: 6px;
    padding: 0.65rem 0.85rem;
    margin-bottom: 1.25rem;
}

.admin-login-form {
    width: 100%;
}

.admin-login-field {
    margin-bottom: 1.1rem;
}

.admin-login-field:last-of-type {
    margin-bottom: 1.25rem;
}

.admin-login-field label {
    display: block;
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: 0.85rem;
    font-weight: 400;
    color: #9aa5b1;
    margin-bottom: 0.3rem;
}

.admin-login-input {
    display: block;
    width: 100%;
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: 1rem;
    color: #3d4852;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.65rem 0.85rem;
    min-height: 44px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.admin-login-input:focus {
    outline: none;
    background: #fff;
    border-color: #b8c5d0;
    box-shadow: 0 0 0 3px rgba(46, 174, 143, 0.15);
}

.admin-login-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.25rem;
}

.admin-login-submit {
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: var(--zlc-orange-cta);
    border: none;
    border-radius: 999px;
    padding: 0.55rem 1.75rem;
    min-width: 7.5rem;
    min-height: 44px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 14px rgba(198, 122, 51, 0.4);
}

.admin-login-submit:hover,
.admin-login-submit:focus {
    background: #e09050;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(198, 122, 51, 0.45);
    outline: none;
}

.admin-login-submit:active {
    transform: translateY(0);
}

.admin-login-home-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a5568;
    text-decoration: none;
    transition: color 0.2s ease;
}

.admin-login-home-link .fa-arrow-right {
    font-size: 0.85em;
}

.admin-login-home-link:hover,
.admin-login-home-link:focus {
    color: var(--zlc-navy);
    text-decoration: none;
}

@media (min-width: 992px) {
    .admin-login-section {
        padding: 1.5rem 1.25rem;
    }

    .admin-login-panel {
        max-width: 440px;
        padding: 2.15rem 2rem 1.85rem;
    }
}

@media (max-width: 767.98px) {
    .admin-login-section {
        padding: 0.85rem;
        align-items: center;
        justify-content: center;
    }

    .admin-login-panel {
        max-width: min(100%, 22.5rem);
        width: calc(100% - 0.5rem);
        margin-left: auto;
        margin-right: auto;
        padding: 1.25rem 1.05rem 1.15rem;
    }

    .admin-login-header {
        margin-bottom: 1rem;
    }

    .admin-login-logo {
        width: min(96px, 34%);
        margin-bottom: 0.5rem;
    }

    .admin-login-title {
        font-size: 1.05rem;
        margin-bottom: 0.25rem;
    }

    .admin-login-subtitle {
        font-size: 0.78rem;
    }

    .admin-login-field {
        margin-bottom: 0.85rem;
    }

    .admin-login-field:last-of-type {
        margin-bottom: 1rem;
    }

    .admin-login-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .admin-login-submit {
        width: 100%;
    }

    .admin-login-home-link {
        justify-content: center;
        text-align: center;
        font-size: 0.88rem;
    }
}

/* Seminars listing */
.seminars-list-section {
    background-image: url('../assets/logo/backgrounds%20(4).jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.seminars-list-section .seminar-card {
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(15, 34, 53, 0.08);
    border-left: 4px solid transparent;
    border-radius: 10px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.seminars-list-section .seminar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(15, 34, 53, 0.16) !important;
    border-left-color: var(--zlc-gold);
}

.seminars-list-section .seminar-card:hover .badge-info {
    background: var(--zlc-orange-cta);
}

.seminars-list-section .seminar-card:hover .font-heading {
    color: var(--zlc-navy);
}

/* Home — Events & Announcements */
.home-events-section {
    background-image: url('../assets/logo/backgrounds%20(4).jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-events-news {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.home-events-section .event-featured-card,
.home-events-section .news-mini-card {
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(15, 34, 53, 0.08);
    border-left: 4px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-events-section .event-featured-card:hover,
.home-events-section .news-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(15, 34, 53, 0.16) !important;
    border-left-color: var(--zlc-gold);
}

.home-events-section .event-featured-card:hover .badge-warning,
.home-events-section .news-mini-card:hover .font-mono-label {
    color: var(--zlc-navy) !important;
}

.event-featured {
    border-radius: 10px;
}

.events-heading-icon {
    color: #c9a07a;
}

.event-featured-banner {
    height: 200px;
    background-color: var(--zlc-navy);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-events-section .news-mini-card:last-child {
    margin-bottom: 0 !important;
}

/* Footer */
.footer-zlc {
    background-color: var(--zlc-navy-dark);
    background-image: url('../assets/logo/backgrounds%20(3).jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    margin-top: 0;
    padding-top: 0;
    overflow: hidden;
}

.footer-zlc::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(10, 22, 35, 0.94) 0%,
        rgba(15, 34, 53, 0.88) 28%,
        rgba(15, 34, 53, 0.72) 62%,
        rgba(15, 34, 53, 0.68) 100%
    );
}

.footer-wave-top {
    position: relative;
    z-index: 1;
    width: 100%;
    line-height: 0;
    margin-bottom: -1px;
}

.footer-wave-top svg {
    display: block;
    width: 100%;
}

.footer-wave-main {
    height: 44px;
    fill: rgba(10, 22, 35, 0.94);
    filter: drop-shadow(0 -6px 14px rgba(0, 0, 0, 0.25));
}

.footer-zlc-inner {
    padding-top: 2.5rem;
    position: relative;
    z-index: 1;
}

.footer-zlc-row {
    padding-top: 1rem;
}

.footer-contact-col {
    text-align: left;
    padding-left: clamp(1rem, 2.5vw, 1.75rem);
}

.footer-brand-col {
    padding-right: clamp(1rem, 2.5vw, 1.75rem);
}

.footer-contact-col h6 {
    text-align: left;
}

.footer-contact-col p {
    text-align: left;
}

    .footer-contact-col .footer-contact-text span {
    display: inline;
}

.footer-contact-col .footer-contact-text i {
    margin-right: 0.4rem;
    color: var(--zlc-gold);
}

.footer-contact-phones .footer-contact-phone-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-phones .footer-contact-phone-link:hover,
.footer-contact-phones .footer-contact-phone-link:focus {
    color: var(--zlc-gold);
    text-decoration: none;
}

.footer-contact-phones .footer-contact-phone-link i {
    margin-right: 0.4rem;
}

.footer-contact-address-inner {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    text-align: left;
}

.footer-contact-address-inner > i {
    flex-shrink: 0;
    margin-top: 0.2em;
    color: var(--zlc-gold);
}

.footer-contact-address-lines {
    display: inline-block;
    line-height: 1.55;
}

@media (max-width: 991.98px) {
    .footer-contact-col {
        text-align: center;
        padding-left: 1rem;
        padding-right: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-contact-col h6,
    .footer-contact-col p,
    .footer-contact-col .footer-contact-text {
        text-align: center;
    }

    .footer-contact-col .footer-contact-text {
        display: block;
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-contact-col .footer-contact-text span {
        text-align: center;
    }
}

@media (min-width: 992px) {
    .footer-zlc .footer-zlc-inner {
        max-width: 100%;
        padding-top: 3.25rem;
        padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
        padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
    }

    .footer-zlc-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 1.25rem;
    }

    .footer-zlc-row > [class*="col-"] {
        flex: 0 0 25%;
        width: 25%;
        max-width: 25%;
        min-width: 0;
    }

    .footer-brand-col {
        text-align: right;
    }

    .footer-brand-col .footer-brand-link {
        margin-left: auto;
        margin-right: 0;
    }

    .footer-brand-col .footer-brand-logo {
        object-position: right center;
        margin-left: auto;
        margin-right: 0;
    }

    .footer-brand-col .footer-social-links {
        justify-content: flex-end;
    }

    .footer-brand-col .footer-brand-tagline {
        text-align: right;
    }

    .footer-contact-col {
        margin-left: 0;
        text-align: left;
        padding-left: clamp(1.25rem, 3vw, 2rem);
    }

    .footer-brand-col {
        padding-right: clamp(1.25rem, 3vw, 2rem);
    }

    .footer-contact-col h6,
    .footer-contact-col p {
        text-align: left;
    }
}

.footer-zlc hr.border-secondary {
    border-color: rgba(255, 255, 255, 0.18) !important;
}

.footer-copyright {
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: clamp(0.95rem, 1.6vw, 1.0625rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 0.02em;
    line-height: 1.5;
}

@media (max-width: 767.98px) {
    .footer-copyright {
        font-size: 0.72rem;
        font-weight: 400;
        letter-spacing: 0.01em;
        line-height: 1.35;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .footer-copyright-row {
        margin-top: 0;
    }
}

.footer-copyright-row {
    margin-top: 0.25rem;
}

.footer-zlc-row > [class*="col-"] > h6,
.footer-zlc-row .footer-col-heading {
    color: #fff;
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: clamp(1rem, 1.75vw, 1.125rem);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.footer-zlc-row ul.list-unstyled {
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-weight: 500;
    line-height: 1.65;
    margin-bottom: 0;
}

.footer-zlc-row ul.list-unstyled li {
    margin-bottom: 0.5rem;
}

.footer-zlc-row ul.list-unstyled li:last-child {
    margin-bottom: 0;
}

.footer-zlc-row ul.list-unstyled a,
.footer-zlc-row ul.footer-col-links a {
    font-weight: 500;
    letter-spacing: 0.01em;
    text-decoration: none;
}

.footer-zlc-row ul.list-unstyled a:hover,
.footer-zlc-row ul.list-unstyled a:focus,
.footer-zlc-row ul.footer-col-links a:hover,
.footer-zlc-row ul.footer-col-links a:focus {
    text-decoration: none;
}

.footer-contact-col p,
.footer-contact-col .footer-contact-text {
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.88);
}

.footer-contact-col p i,
.footer-contact-col .footer-contact-text i {
    font-size: 0.95em;
}

.footer-brand-link {
    display: inline-block;
    margin-bottom: 0.85rem;
    line-height: 0;
}

.footer-brand-link:hover {
    opacity: 0.92;
}

.footer-brand-logo {
    display: block;
    width: min(220px, 100%);
    max-width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    object-position: left center;
}

.footer-brand-tagline {
    font-family: 'Poppins', 'Roboto', var(--zlc-btn-font);
    font-size: clamp(0.65rem, 1.35vw, 0.8rem);
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.03em;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 0.5rem;
    text-transform: none;
    white-space: nowrap;
}

.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    font-size: 1.65rem;
    line-height: 1;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social-links a:hover {
    background: rgba(212, 160, 23, 0.3);
    color: var(--zlc-gold) !important;
    transform: translateY(-2px);
}

.footer-zlc a { color: rgba(255,255,255,0.75); }
.footer-zlc a:hover { color: var(--zlc-gold); }

.footer-zlc-row ul.list-unstyled a:hover,
.footer-zlc-row ul.footer-col-links a:hover {
    color: var(--zlc-gold);
    text-decoration: none;
}

.footer-brand-link {
    color: inherit;
}

.footer-brand-link:hover {
    color: inherit;
}

.page-hero {
    height: var(--page-hero-min-height);
    min-height: var(--page-hero-min-height);
    margin-top: -1px;
    background: linear-gradient(135deg, var(--zlc-navy), var(--zlc-navy-dark));
    color: #fff;
    display: flex;
    align-items: center;
    text-align: center;
}

.page-hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-hero-subtitle {
    max-width: 72ch;
}

.page-hero .page-hero-subtitle {
    color: #fff !important;
    opacity: 0.95;
}

.page-hero .page-hero-subtitle--orange {
    color: var(--zlc-orange-cta) !important;
    opacity: 1;
    font-weight: 500;
    text-shadow: 0 1px 12px rgba(15, 34, 53, 0.45);
}

/* Mission & Values — mission / vision / excellence cards */
.mission-values-section {
    position: relative;
    background-color: var(--zlc-ivory);
    background-image: url('../assets/logo/backgrounds%20(5).jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.mission-values-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(250, 249, 246, 0.78);
    pointer-events: none;
}

.mission-values-section > .container {
    position: relative;
    z-index: 1;
}

.mission-values-section .program-card {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.mission-values-section .program-card .icon-wrap,
.mission-values-section .program-card .icon-wrap i {
    color: #7A4A2A;
}

/* About page — story + stats */
.about-story-section {
    position: relative;
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
    background-color: var(--zlc-ivory);
    background-image: url('../assets/logo/backgrounds%20(6).jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.about-story-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(250, 249, 246, 0.82);
    pointer-events: none;
}

.about-story-section > .container {
    position: relative;
    z-index: 1;
}

.about-story-content {
    padding: 1.5rem 1.35rem;
    padding-right: clamp(1.35rem, calc(1.35rem + 2vw), 3.35rem);
    background: rgba(255, 255, 255, 0.55);
    border-radius: 12px;
}

.about-story-eyebrow {
    letter-spacing: 0.14em;
}

.about-story-quote {
    font-size: clamp(1.5rem, 3vw, 2.15rem);
    font-weight: 700;
    line-height: 1.35;
    color: var(--zlc-navy);
    border-left: 5px solid var(--zlc-gold);
    padding-left: 1.25rem;
    margin: 0 0 1.75rem;
}

.about-story-lead {
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 500;
    line-height: 1.75;
    color: rgba(15, 34, 53, 0.88);
    margin-bottom: 1.25rem;
}

.about-story-text {
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    line-height: 1.8;
    color: #5c6570;
}

.about-stats-panel {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #e8e4dc;
    border-radius: 14px;
    padding: 2rem 1.5rem;
    box-shadow: 0 12px 32px rgba(15, 34, 53, 0.08);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.about-stats-heading {
    color: rgba(15, 34, 53, 0.65);
    letter-spacing: 0.12em;
}

.about-stat-card {
    background: #fff;
    border: 1px solid #ebe6dc;
    border-radius: 12px;
    padding: 1.35rem 0.85rem;
    box-shadow: 0 6px 18px rgba(15, 34, 53, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(198, 122, 51, 0.45);
    box-shadow: 0 14px 28px rgba(15, 34, 53, 0.12);
}

.about-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 0.75rem;
    border-radius: 50%;
    background: rgba(122, 74, 42, 0.12);
    color: #7A4A2A;
    font-size: 1.25rem;
}

.about-stat-icon i,
.about-stat-logo {
    display: inline-block;
    transform-origin: center;
}

.about-stat-icon--logo {
    background: transparent;
    padding: 0;
    overflow: visible;
}

.about-stat-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-stats-grid > [class*="col-"]:nth-child(1) .about-stat-icon i {
    animation: contactIconBounce 2.2s ease-in-out infinite;
}

.about-stats-grid > [class*="col-"]:nth-child(2) .about-stat-icon i {
    animation: program-icon-float 2.6s ease-in-out infinite;
}

.about-stats-grid > [class*="col-"]:nth-child(3) .about-stat-icon i {
    animation: contactIconRing 1.8s ease-in-out infinite;
    transform-origin: 50% 85%;
}

.about-stats-grid > [class*="col-"]:nth-child(4) .about-stat-logo {
    animation: program-icon-float 2.8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .about-stat-icon i,
    .about-stat-logo {
        animation: none;
    }
}

.about-links-section .program-card > i.fas {
    color: #7A4A2A;
}

.about-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.85rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--zlc-gold);
    margin-bottom: 0.35rem;
}

.about-stat-label {
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--zlc-navy);
    line-height: 1.3;
}

@media (max-width: 991.98px) {
    .about-story-content {
        padding-right: 0;
        margin-bottom: 0.5rem;
    }

    .about-stats-panel {
        padding: 1.75rem 1.25rem;
    }
}

/* Director's Message page */
.director-message-section {
    position: relative;
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
    background-color: #fff;
    background-image: url('../assets/logo/backgrounds%20(6).jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.director-message-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.88);
    pointer-events: none;
}

.director-message-section > .container,
.zlc-site .director-message-section > .container.director-message-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: min(1280px, calc(100% - 2rem));
}

.director-message-heading {
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: clamp(1.35rem, 2.6vw, 1.85rem);
    font-weight: 700;
    color: var(--zlc-navy);
    margin: 0 0 1.15rem;
    padding-bottom: 0.4rem;
    position: relative;
}

.director-message-heading-accent {
    display: block;
    width: 3.5rem;
    height: 4px;
    margin-top: 0.5rem;
    background: var(--zlc-orange-cta);
    border-radius: 2px;
}

.director-message-row {
    margin-left: 0;
    margin-right: 0;
}

.director-message-photo-col,
.director-message-text-col {
    min-width: 0;
}

.director-message-photo {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 22px;
    overflow: hidden;
    background: transparent;
    box-shadow: 0 14px 32px rgba(15, 34, 53, 0.16);
}

.director-message-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 22px;
}

.director-message-body {
    background: rgba(255, 255, 255, 0.78);
    border-radius: 22px;
    padding: 1.1rem 1.25rem 1.15rem;
    overflow-wrap: anywhere;
    word-break: break-word;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.director-message-greeting {
    font-size: 1.02rem;
    margin-bottom: 0.7rem !important;
}

.director-message-paragraph {
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: clamp(0.9rem, 1.4vw, 0.98rem);
    line-height: 1.62;
    color: #4a5568;
    margin-bottom: 0.7rem;
    text-align: justify;
}

.director-message-paragraph:last-of-type {
    margin-bottom: 0;
}

.director-message-signature {
    margin-top: auto;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(15, 34, 53, 0.08);
}

.director-message-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
}

.director-message-title,
.director-message-org {
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: 0.9rem;
}

@media (min-width: 992px) {
    .director-message-row {
        display: flex;
        align-items: stretch;
        min-height: 0;
        gap: 1.75rem;
    }

    .director-message-photo-col,
    .director-message-text-col {
        display: flex;
        flex-direction: column;
        flex: 1 1 0;
        max-width: none;
        padding-left: 0;
        padding-right: 0;
    }

    .director-message-photo {
        flex: 1 1 auto;
    }

    .director-message-photo img {
        min-height: 100%;
    }

    .director-message-body {
        flex: 1 1 auto;
        justify-content: space-between;
        padding: 1.85rem 2rem 1.9rem;
        min-height: 100%;
    }

    .director-message-greeting {
        font-size: clamp(1.2rem, 1.7vw, 1.4rem);
        margin-bottom: 0.35rem !important;
    }

    .director-message-paragraph {
        font-size: clamp(1.08rem, 1.55vw, 1.22rem);
        line-height: 1.82;
        margin-bottom: 0.85rem;
        flex: 1 1 auto;
    }

    .director-message-paragraph:last-of-type {
        margin-bottom: 0.35rem;
    }

    .director-message-signature {
        margin-top: 0.5rem;
        padding-top: 1rem;
    }

    .director-message-name {
        font-size: 1.4rem;
    }

    .director-message-title,
    .director-message-org,
    .director-message-signoff {
        font-size: 1.02rem;
    }
}

@media (max-width: 991.98px) {
    .director-message-section {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .director-message-heading {
        text-align: center;
        margin-bottom: 1rem;
    }

    .director-message-heading-accent {
        margin-left: auto;
        margin-right: auto;
    }

    .director-message-photo-col {
        margin-bottom: 1.5rem;
    }

    .director-message-photo {
        border-radius: 20px;
        max-height: none;
        min-height: 32rem;
        height: 32rem;
    }

    .director-message-photo img {
        height: 32rem;
        object-fit: cover;
        object-position: center top;
        border-radius: 20px;
    }

    .director-message-body {
        border-radius: 20px;
        padding: 1rem 1.05rem 1.1rem;
    }

    .director-message-paragraph {
        text-align: left;
    }
}

@media (max-width: 575.98px) {
    .director-message-section {
        padding-top: 1.15rem !important;
        padding-bottom: 1.15rem !important;
    }

    .zlc-site .director-message-section > .container.director-message-container {
        max-width: calc(100% - 1.25rem);
    }

    .director-message-photo {
        border-radius: 16px;
        max-height: none;
        min-height: 28rem;
        height: 28rem;
    }

    .director-message-photo img {
        height: 28rem;
        object-fit: cover;
        object-position: center top;
        border-radius: 16px;
    }

    .director-message-body {
        padding: 0.9rem 0.9rem 1rem;
        border-radius: 16px;
    }

    .director-message-greeting {
        font-size: 0.98rem;
    }

    .director-message-paragraph {
        font-size: 0.92rem;
        line-height: 1.55;
        margin-bottom: 0.6rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .director-message-photo,
    .director-message-photo:hover,
    .director-message-photo img {
        transform: none;
        transition: none;
    }
}

/* Staff profiles — Director's Message page */
.staff-section {
    position: relative;
    padding-top: 0.5rem !important;
    padding-bottom: 2.5rem !important;
    background-color: #fff;
    background-image: url('../assets/logo/backgrounds%20(6).jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.staff-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    pointer-events: none;
}

.staff-section > .container {
    position: relative;
    z-index: 1;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
    padding: 0.5rem 0.15rem 1rem;
}

/* From Uiverse.io by dylanharriscameron */
.staff-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    border-radius: 14px;
    overflow: hidden;
    z-index: 1;
    background: transparent;
    border: none;
    cursor: pointer;
    box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
    transition:
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.28s ease;
}

.staff-card:hover,
.staff-card:focus-within {
    transform: translateY(-8px);
    box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
}

.staff-card-bg {
    position: relative;
    z-index: 2;
    margin: 5px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-width: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    border-radius: 10px;
    overflow: hidden;
    outline: none;
}

.staff-card-blob {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #d2b48c;
    opacity: 1;
    filter: blur(12px);
    animation: staff-blob-bounce 5s infinite ease;
    pointer-events: none;
}

@keyframes staff-blob-bounce {
    0% {
        transform: translate(-100%, -100%) translate3d(0, 0, 0);
    }

    25% {
        transform: translate(-100%, -100%) translate3d(100%, 0, 0);
    }

    50% {
        transform: translate(-100%, -100%) translate3d(100%, 100%, 0);
    }

    75% {
        transform: translate(-100%, -100%) translate3d(0, 100%, 0);
    }

    100% {
        transform: translate(-100%, -100%) translate3d(0, 0, 0);
    }
}

.staff-card-photo {
    position: relative;
    background: transparent;
    overflow: hidden;
    aspect-ratio: 360 / 440;
}

.staff-card-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    border: none;
    outline: none;
}

.staff-card-body {
    padding: 0.85rem 0.8rem 1rem;
    text-align: center;
    transition: background 0.28s ease;
}

.staff-card:hover .staff-card-body,
.staff-card:focus-within .staff-card-body {
    background: rgba(248, 246, 241, 0.9);
}

.staff-card-name {
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--zlc-navy);
    margin: 0 0 0.25rem;
    line-height: 1.3;
    transition: color 0.28s ease;
}

.staff-card:hover .staff-card-name,
.staff-card:focus-within .staff-card-name {
    color: var(--zlc-orange-cta);
}

.staff-card-position {
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--zlc-gold);
    margin: 0;
    line-height: 1.35;
}

@media (max-width: 1199.98px) and (min-width: 768px) {
    .staff-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .staff-card {
        grid-column: span 2;
    }

    .staff-card:nth-child(4) {
        grid-column: 2 / span 2;
    }
}

@media (max-width: 767.98px) {
    .staff-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.9rem;
    }
}

@media (max-width: 479.98px) {
    .staff-grid {
        grid-template-columns: 1fr;
        max-width: 20rem;
        margin: 0 auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .staff-card,
    .staff-card:hover,
    .staff-card:focus-within {
        transform: none;
        transition: none;
    }

    .staff-card-blob {
        animation: none;
    }
}

/* Mission page — Train with Purpose (two-column program accordions) */
.page-cta--programs {
    text-align: left;
}

.page-cta--programs .section-heading {
    text-align: center;
}

.page-cta-programs-intro {
    font-size: 1.05rem;
    line-height: 1.6;
}

.page-cta-program-title {
    font-family: 'Caveat', 'Playfair Display', cursive;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 0.75rem;
}

.page-cta-program-title a {
    color: var(--zlc-orange-cta);
    text-decoration: none;
    transition: color 0.2s ease;
}

.page-cta-program-title a:hover {
    color: #e09050;
    text-decoration: none;
}

.page-cta-program-lead {
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.page-cta-why-heading {
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--zlc-navy);
    margin: 0 0 0.85rem;
}

.zlc-accordion-item {
    border-bottom: 1px solid #e5e7eb;
}

.zlc-accordion-item:first-child {
    border-top: 1px solid #e5e7eb;
}

.zlc-accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.85rem 0;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    gap: 1rem;
}

.zlc-accordion-toggle:hover,
.zlc-accordion-toggle:focus {
    outline: none;
}

.zlc-accordion-toggle:hover .zlc-accordion-title {
    color: #e09050;
}

.zlc-accordion-title {
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: 1rem;
    font-weight: 600;
    color: var(--zlc-orange-cta);
    line-height: 1.35;
    flex: 1;
    transition: color 0.2s ease;
}

.zlc-accordion-chevron {
    flex-shrink: 0;
    font-size: 0.85rem;
    color: var(--zlc-navy);
    transition: transform 0.25s ease;
}

.zlc-accordion-toggle.collapsed .zlc-accordion-chevron {
    transform: rotate(180deg);
}

.zlc-accordion-body {
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    padding: 0 0 1rem;
}

.faq-page-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.65rem, 3.5vw, 2.15rem);
    font-weight: 700;
    color: #a0522d;
    margin: 0 0 1.75rem;
    line-height: 1.25;
}

.zlc-accordion--faq .zlc-accordion-title--faq {
    color: #1a2a3a;
    font-weight: 700;
    font-size: clamp(0.92rem, 2vw, 1.02rem);
}

.zlc-accordion-toggle--faq:hover .zlc-accordion-title--faq,
.zlc-accordion-toggle--faq:focus .zlc-accordion-title--faq {
    color: var(--zlc-navy);
}

.zlc-accordion-chevron--faq {
    font-size: 0.8rem;
    color: #6b7280;
}

.zlc-accordion-toggle--faq:not(.collapsed) .zlc-accordion-chevron--faq {
    transform: rotate(90deg);
}

.zlc-accordion-toggle--faq.collapsed .zlc-accordion-chevron--faq {
    transform: rotate(0deg);
}

.page-cta--programs .text-center .btn {
    margin-top: 0.25rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: auto;
    width: 56px;
    height: 56px;
    background: #5cdb6a;
    color: #fff;
    text-decoration: none !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    z-index: 1050;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    animation: whatsapp-pulse 3s infinite;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
    background: #6ee786;
    color: #fff !important;
    text-decoration: none !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    outline: none;
}

.whatsapp-float:hover i,
.whatsapp-float:focus i {
    text-decoration: none !important;
}

@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(94, 219, 106, 0.55);
    }
    50% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45), 0 0 0 12px rgba(94, 219, 106, 0);
    }
}

/* Back-to-top button — right side, visible near footer */
.home-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    left: auto;
    width: 56px;
    height: 56px;
    background: var(--zlc-orange-cta);
    border: 2px solid var(--zlc-orange-cta);
    color: #fff !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 1080;
    box-shadow: 0 4px 18px rgba(198, 122, 51, 0.45);
    text-decoration: none;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease, background 0.2s ease, border-color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.home-float.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.home-float:hover,
.home-float:focus {
    color: #fff !important;
    text-decoration: none;
    background: #e09050;
    border-color: #e09050;
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(198, 122, 51, 0.55);
    outline: none;
}

.home-float.is-visible:hover,
.home-float.is-visible:focus {
    transform: translateY(-4px);
}

.home-float:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(198, 122, 51, 0.45);
}

.home-float:focus-visible {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5), 0 4px 18px rgba(198, 122, 51, 0.45);
}

.gallery-thumb img { width: 100%; height: 220px; object-fit: cover; border-radius: 6px; }

/* Gallery collage + videos */
.media-collage {
    column-count: 3;
    column-gap: 1rem;
}

@media (max-width: 991.98px) {
    .media-collage { column-count: 2; }
}

@media (max-width: 575.98px) {
    .media-collage { column-count: 1; }
}

.media-tile {
    break-inside: avoid;
    margin: 0 0 1rem;
    display: block;
}

.media-tile-link {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(15, 34, 53, 0.12);
    border: 1px solid rgba(15, 34, 53, 0.08);
    background: #fff;
    transform: translateZ(0);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.media-tile-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(15, 34, 53, 0.18);
    text-decoration: none;
}

.media-tile-img {
    width: 100%;
    height: auto;
    display: block;
}

.media-tile-caption {
    font-family: var(--zlc-btn-font);
    font-size: 0.9rem;
    color: rgba(15, 34, 53, 0.85);
    margin-top: 0.5rem;
    text-align: center;
}

.video-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(15, 34, 53, 0.08);
    box-shadow: 0 10px 24px rgba(15, 34, 53, 0.12);
}

.video-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: linear-gradient(135deg, var(--zlc-navy), var(--zlc-teal));
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-caption {
    padding: 0.85rem 1rem;
    font-family: var(--zlc-btn-font);
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(15, 34, 53, 0.9);
    text-align: center;
}

/* Gallery (cards layout like reference) */
.gallery-page-section {
    padding-top: 2.5rem;
    padding-bottom: 0.75rem;
}

.gallery-page-section .gallery-group + .gallery-group {
    margin-top: 1.75rem;
}

.gallery-page-section .gallery-group:last-child {
    margin-bottom: 0;
}

.gallery-section-head {
    margin-bottom: 2rem;
    padding: 0 clamp(0.5rem, 2vw, 1rem);
}

.gallery-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 3.5vw, 2.1rem);
    color: var(--zlc-navy);
    line-height: 1.2;
    margin-bottom: 0;
}

.gallery-section-title::after {
    content: '';
    display: block;
    width: 52px;
    height: 4px;
    margin: 0.75rem auto 1rem;
    background: linear-gradient(90deg, var(--zlc-gold), var(--zlc-orange-cta));
    border-radius: 2px;
}

/* From Uiverse.io by Yaya12085 — gallery type filter */
.gallery-filter-wrap {
    display: flex;
    justify-content: center;
}

.gallery-radio-inputs {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
    border-radius: 0.5rem;
    background-color: #EEE;
    box-sizing: border-box;
    box-shadow: 0 0 0px 1px rgba(0, 0, 0, 0.06);
    padding: 0.2rem;
    width: 100%;
    max-width: 36rem;
    min-height: 2.625rem;
    font-size: 14px;
    font-family: 'Poppins', var(--zlc-btn-font);
}

.gallery-radio-inputs .radio {
    flex: 1 1 0;
    min-width: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.gallery-radio-inputs .radio input {
    display: none;
}

.gallery-radio-inputs .radio .name {
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 2.125rem;
    border-radius: 0.5rem;
    border: none;
    padding: 0.28rem 0.35rem;
    color: rgba(51, 65, 85, 1);
    transition: all 0.15s ease-in-out;
    white-space: nowrap;
    line-height: 1;
    text-align: center;
}

.gallery-radio-inputs .radio input:checked + .name {
    background-color: #fff;
    font-weight: 600;
}

.gallery-radio-inputs .radio input:focus-visible + .name {
    box-shadow: 0 0 0 3px rgba(26, 60, 94, 0.2);
}

@media (max-width: 575.98px) {
    .gallery-filter-wrap {
        width: 100%;
        justify-content: stretch;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .gallery-filter-wrap::-webkit-scrollbar {
        display: none;
    }

    .gallery-radio-inputs {
        flex-wrap: nowrap;
        justify-content: stretch;
        align-items: stretch;
        width: 100%;
        max-width: none;
        font-size: 11px;
        padding: 0.15rem;
        min-height: 2.25rem;
    }

    .gallery-radio-inputs .radio {
        flex: 1 1 0;
        min-width: 0;
    }

    .gallery-radio-inputs .radio .name {
        padding: 0.22rem 0.1rem;
        min-height: 1.85rem;
        letter-spacing: -0.02em;
    }
}

.gallery-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

@media (max-width: 991.98px) {
    .gallery-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 575.98px) {
    .gallery-card-grid { grid-template-columns: 1fr; }
}

.gallery-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(15, 34, 53, 0.08);
    box-shadow: 0 12px 26px rgba(15, 34, 53, 0.10);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(15, 34, 53, 0.14);
}

.gallery-card-media {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 3 / 2;
    background: #f3f4f6;
}

.gallery-card-img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery-card-body {
    padding: 0.9rem 1rem 0.75rem;
}

.gallery-card-title {
    font-family: var(--zlc-btn-font);
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
    color: rgba(15, 34, 53, 0.92);
}

.gallery-card-desc {
    font-size: 0.9rem;
    line-height: 1.45;
}

.gallery-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 1rem 0.95rem;
    border-top: 1px solid rgba(15, 34, 53, 0.08);
    font-size: 0.78rem;
    color: rgba(15, 34, 53, 0.65);
}

.gallery-card-meta i {
    color: rgba(15, 34, 53, 0.5);
}

.gallery-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.gallery-play i {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(15, 34, 53, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
    font-size: 1.1rem;
}

.gallery-group-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: clamp(1.2rem, 2.8vw, 1.55rem);
    color: var(--zlc-navy);
    margin: 0 0 1rem;
}

.gallery-card-type {
    margin: 0 0 0.25rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--zlc-gold, #d4a017);
}

.gallery-card-grid--banners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-play--file i {
    font-size: 1.25rem;
}

#galleryModalVideo {
    display: block;
    max-height: 70vh;
    background: #000;
}

#galleryModalEmbedWrap {
    background: #000;
}

#galleryModal .modal-dialog-portrait {
    max-width: 420px;
}

#galleryModalEmbedWrap.is-portrait {
    padding-bottom: 177.78%;
}

.gallery-card-platform {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 2.4rem;
}

.gallery-card-platform--youtube { background: #c4302b; }
.gallery-card-platform--vimeo { background: #1ab7ea; }
.gallery-card-platform--instagram {
    background: linear-gradient(135deg, #f58529, #dd2a7b 52%, #8134af);
}
.gallery-card-platform--tiktok { background: #111; }

@media (max-width: 575.98px) {
    .gallery-card-meta { font-size: 0.8rem; }

    .gallery-card-grid--banners {
        grid-template-columns: 1fr;
    }
}

/* Admin — see public/css/admin.css */

/* Mobile utility strip */
.utility-bar-mobile {
    background: var(--zlc-navy-dark);
    color: #fff;
    font-size: 0.75rem;
    padding: 0.35rem 0;
}
.utility-bar-mobile a.utility-mobile-link {
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}
.utility-bar-mobile a.utility-mobile-link:hover {
    color: var(--zlc-gold);
    text-decoration: none;
}

/* Hero typography */
.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(2.15rem, 3.6vw + 1.25rem, 4.5rem);
    line-height: 1.08;
    margin-bottom: 1rem !important;
    max-width: 100%;
}

.hero-title-line1,
.hero-title-line2 {
    display: block;
    white-space: normal;
    text-wrap: balance;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    line-height: 1.12;
    width: auto;
    max-width: 100%;
    overflow: visible;
}

.hero-title-line1 {
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.hero-title-line2 {
    color: #e8d4b8;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: clamp(1.9rem, 6.4vw, 3.25rem);
    }

    .hero-slide-zlc .hero-content {
        max-width: 100%;
        padding-right: 0.25rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: clamp(1.45rem, 7.2vw, 2.05rem);
    }
}

@media (max-width: 767.98px) {
    .hero-zlc-wrapper {
        height: min(var(--hero-min-height), 68dvh);
        min-height: 22rem;
        max-height: 34rem;
    }

    .hero-slide-zlc {
        background-position: center 30%;
        background-size: cover;
    }

    .hero-content .hero-apply-btn {
        margin-top: 1.1rem;
    }

    .hero-slide-zlc .hero-desc {
        font-size: clamp(0.92rem, 3.6vw, 1.12rem);
        max-width: 100%;
        margin-top: 0.3rem;
        line-height: 1.45;
    }

    .hero-carousel.owl-carousel .animated {
        animation-duration: 0.65s;
    }
}

.hero-slide-zlc .hero-desc {
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: clamp(1.1rem, 2.4vw, 1.4rem);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.94);
    max-width: 34rem;
    opacity: 1;
    margin-top: 0.5rem;
    border-left: 3px solid rgba(232, 212, 184, 0.65);
    padding-left: 1rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.page-hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(1.65rem, 5vw, 3rem);
    line-height: 1.15;
}

.page-hero-subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.25rem);
    opacity: 0.9;
}
.cta-heading {
    font-size: clamp(1.35rem, 4vw, 2.5rem);
    line-height: 1.2;
}
.cta-text { opacity: 0.9; }

.page-hero {
    padding: 2.5rem 0;
}
.page-hero-inner {
    position: relative;
    z-index: 2;
}
.page-hero--image {
    /* fill the whole hero section */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: var(--page-hero-image-inner-min-height);
    min-height: var(--page-hero-image-inner-min-height);
}

.page-hero--image::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(18, 18, 18, 0.58) 0%,
        rgba(40, 40, 40, 0.36) 38%,
        rgba(22, 22, 22, 0.48) 100%
    );
    box-shadow: inset 0 140px 90px -12px rgba(0, 0, 0, 0.55);
}

.page-hero--image::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 42%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.22) 48%,
        transparent 100%
    );
}

.page-hero--image .page-hero-title {
    font-size: clamp(2.25rem, 5.5vw, 4rem);
    line-height: 1.12;
}

.page-hero--image .page-hero-inner {
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 0 3rem;
}

.hero-actions .btn,
.cta-actions .btn {
    margin-right: 0.5rem;
}

.news-mini-thumb {
    width: 80px;
    height: 80px;
    background-color: var(--zlc-navy);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* Navbar toggler — Uiverse burger (Cevorob) */
.navbar-main .navbar-toggler.navbar-toggler-custom {
    background-image: none;
    width: 44px;
    height: 44px;
    padding: 0;
    margin-right: 0.75rem;
    border: none;
    border-radius: 8px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    color: #fff;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.navbar-main .navbar-burger {
    position: relative;
    width: 40px;
    height: 30px;
    background: transparent;
    display: block;
    pointer-events: none;
}

.navbar-main .navbar-burger span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.navbar-main .navbar-burger span:nth-of-type(1) {
    top: 0;
    transform-origin: left center;
}

.navbar-main .navbar-burger span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
}

.navbar-main .navbar-burger span:nth-of-type(3) {
    top: 100%;
    transform-origin: left center;
    transform: translateY(-100%);
}

.navbar-main .navbar-toggler.navbar-toggler-custom[aria-expanded="true"] .navbar-burger span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 0;
    left: 5px;
}

.navbar-main .navbar-toggler.navbar-toggler-custom[aria-expanded="true"] .navbar-burger span:nth-of-type(2) {
    width: 0%;
    opacity: 0;
}

.navbar-main .navbar-toggler.navbar-toggler-custom[aria-expanded="true"] .navbar-burger span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 28px;
    left: 5px;
}

/* Desktop: keep logo left, hide hamburger */
@media (min-width: 992px) {
    .navbar-main .navbar-toggler.navbar-toggler-custom {
        display: none !important;
    }
}

.navbar-main .navbar-toggler.navbar-toggler-custom:hover {
    background-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.navbar-main .navbar-toggler.navbar-toggler-custom:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(86, 176, 255, 0.55);
}

.navbar-main .navbar-toggler.navbar-toggler-custom[aria-expanded="true"] {
    background-color: transparent;
}

/* Tablet */
@media (max-width: 991.98px) {
    .navbar-main .nav-mobile-menu > .nav-item::after {
        display: none !important;
    }

    .navbar-main {
        position: relative;
        padding: 0.28rem 0;
    }

    .navbar-main .navbar-toggler.navbar-toggler-custom {
        position: relative;
        z-index: 1050;
        width: 32px;
        height: 32px;
        margin-right: 0.15rem;
        border-radius: 6px;
    }

    .navbar-main .navbar-burger {
        width: 26px;
        height: 18px;
    }

    .navbar-main .navbar-burger span {
        height: 2.5px;
    }

    .navbar-main .navbar-toggler.navbar-toggler-custom[aria-expanded="true"] .navbar-burger span:nth-of-type(1) {
        left: 3px;
    }

    .navbar-main .navbar-toggler.navbar-toggler-custom[aria-expanded="true"] .navbar-burger span:nth-of-type(3) {
        top: 16px;
        left: 3px;
    }

    .navbar-main > .container.navbar-main-inner {
        padding-left: 0.55rem;
        padding-right: 0.55rem;
        min-height: 48px;
    }

    .navbar-main .navbar-brand-logo {
        padding: 0.1rem 0.2rem 0.1rem 0.1rem;
        margin-right: 0.25rem;
    }

    .navbar-main .navbar-collapse {
        position: fixed;
        top: var(--site-header-height, 84px);
        right: 0;
        left: auto;
        width: min(88vw, 380px);
        height: calc(var(--screen-height, 100vh) - var(--site-header-height, 84px));
        max-height: calc(var(--screen-height, 100vh) - var(--site-header-height, 84px));
        z-index: 1040;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        padding: 1rem 0.9rem 1.5rem;
        margin-top: 0;
        border: 1px solid rgba(255, 255, 255, 0.4);
        border-right: none;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-radius: 16px 0 0 16px;
        box-shadow: -16px 0 40px rgba(15, 34, 53, 0.22);
        transform: translateX(100%);
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.35s;
        will-change: transform;
    }

    .navbar-main .navbar-collapse.collapsing {
        height: calc(var(--screen-height, 100vh) - var(--site-header-height, 84px)) !important;
        overflow-y: auto;
        transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.35s;
    }

    .navbar-main .navbar-collapse.show,
    .navbar-main .navbar-collapse.zlc-menu-open {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
        transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0s;
        animation: none;
    }

    .navbar-main .navbar-collapse.zlc-menu-fadeout {
        transform: translateX(100%);
        visibility: hidden;
        pointer-events: none;
        animation: none;
    }

    .nav-mobile-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 1025;
        background: rgba(15, 34, 53, 0.42);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.35s ease, visibility 0s linear 0.35s;
    }

    body.zlc-nav-open .nav-mobile-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: opacity 0.35s ease, visibility 0s linear 0s;
    }

    body.zlc-nav-open {
        overflow: hidden;
    }

    body.zlc-nav-open .site-header-fixed {
        z-index: 1045;
    }

    @media (prefers-reduced-motion: reduce) {
        .navbar-main .navbar-collapse,
        .navbar-main .navbar-collapse.collapsing,
        .navbar-main .navbar-collapse.show,
        .navbar-main .navbar-collapse.zlc-menu-open,
        .navbar-main .navbar-collapse.zlc-menu-fadeout,
        .nav-mobile-backdrop,
        body.zlc-nav-open .nav-mobile-backdrop {
            transition: none;
        }
    }

    .navbar-main .nav-mobile-menu {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        margin: 0 !important;
        gap: 0.45rem;
    }

    .navbar-main .nav-mobile-menu > .nav-item {
        width: 100%;
        display: block;
        margin: 0;
    }

    .navbar-main .nav-mobile-menu > .nav-item.dropdown {
        display: block;
    }

    .navbar-main .navbar-nav {
        gap: 0.45rem;
    }

    .navbar-main .navbar-nav .nav-link {
        width: 100%;
        padding: 0.8rem 1rem !important;
        font-size: 1rem;
        font-weight: 500;
        border-radius: 12px;
        background: #f8f6f1;
        border: 1px solid rgba(15, 34, 53, 0.08);
        transition: background 0.15s ease, transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-main .nav-link-inner {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        flex: 1 1 auto;
        min-width: 0;
    }

    .navbar-main .nav-link-icon {
        display: inline-block;
        flex-shrink: 0;
        width: 1.35rem;
        text-align: center;
        font-size: 1.05rem;
        color: var(--zlc-orange-cta);
        opacity: 0.95;
    }

    .navbar-main .nav-link.active .nav-link-icon {
        color: var(--zlc-navy);
    }

    .navbar-main .navbar-nav .nav-link:hover,
    .navbar-main .navbar-nav .nav-link:focus {
        background: rgba(10, 116, 218, 0.10);
        border-color: rgba(10, 116, 218, 0.22);
        transform: translateY(-1px);
        outline: none;
    }

    .navbar-main .navbar-nav .nav-link.active {
        background: linear-gradient(135deg, rgba(26, 60, 94, 0.12) 0%, rgba(10, 116, 218, 0.1) 100%);
        border-color: rgba(10, 116, 218, 0.35);
        border-left: 4px solid var(--zlc-orange-cta);
        color: var(--zlc-navy) !important;
        font-weight: 700;
        box-shadow: 0 4px 14px rgba(15, 34, 53, 0.08);
    }

    /* Simple gap between last nav link and mobile action buttons */
    .navbar-main .nav-mobile-actions {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        gap: 0.65rem;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(15, 34, 53, 0.08);
    }

    .navbar-main .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        margin: 0.35rem 0 0;
        padding: 0.4rem 0.35rem 0.5rem;
        border: 1px solid rgba(198, 122, 51, 0.28);
        border-left: 4px solid var(--zlc-gold, #d4a017);
        box-shadow: inset 0 2px 8px rgba(15, 34, 53, 0.04);
        background: rgba(255, 255, 255, 0.95);
        border-radius: 12px;
    }

    .navbar-main .dropdown-menu .dropdown-header {
        font-size: 0.7rem;
        padding: 0.35rem 1rem;
    }

    .navbar-main .dropdown-item {
        padding: 0.6rem 0.75rem;
        font-size: 0.92rem;
        white-space: normal;
        border-radius: 10px;
    }

    .navbar-main .dropdown-item:hover,
    .navbar-main .dropdown-item:focus {
        background: rgba(10, 116, 218, 0.10);
        outline: none;
    }

    .navbar-main .dropdown-toggle::after {
        display: none;
    }

    .navbar-main .dropdown-toggle[aria-expanded="true"] {
        background: rgba(10, 116, 218, 0.08);
        border-color: rgba(10, 116, 218, 0.22);
    }

    .nav-mobile-actions .nav-mobile-actions-btn,
    .nav-mobile-actions .btn-enroll,
    .nav-mobile-actions .btn-outline-zlc {
        flex: 1 1 0;
        min-width: 0;
        width: auto;
        margin-bottom: 0 !important;
        border-radius: 10px;
        white-space: nowrap;
        font-size: 0.85rem;
        font-weight: 600;
        min-height: 44px;
        transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.2s ease, box-shadow 0.22s ease;
    }

    .navbar-main .nav-mobile-actions .btn-enroll.nav-mobile-actions-btn {
        background: var(--zlc-orange-cta) !important;
        border: 2px solid var(--zlc-orange-cta) !important;
        color: #fff !important;
        box-shadow: 0 4px 14px rgba(198, 122, 51, 0.42);
    }

    .navbar-main .nav-mobile-actions .btn-enroll.nav-mobile-actions-btn:hover,
    .navbar-main .nav-mobile-actions .btn-enroll.nav-mobile-actions-btn:focus {
        background: #e09050 !important;
        border-color: #e09050 !important;
        color: #fff !important;
        transform: translateY(-2px);
        box-shadow: 0 8px 22px rgba(198, 122, 51, 0.52);
        outline: none;
    }

    .navbar-main .nav-mobile-actions .btn-enroll.nav-mobile-actions-btn:active {
        transform: translateY(0);
        box-shadow: 0 3px 10px rgba(198, 122, 51, 0.4);
    }

    .navbar-main .nav-mobile-actions .btn-outline-zlc.nav-mobile-actions-btn {
        background: rgba(198, 122, 51, 0.08) !important;
        border: 2px solid var(--zlc-orange-cta) !important;
        color: var(--zlc-orange-cta) !important;
        box-shadow: none;
    }

    .navbar-main .nav-mobile-actions .btn-outline-zlc.nav-mobile-actions-btn:hover,
    .navbar-main .nav-mobile-actions .btn-outline-zlc.nav-mobile-actions-btn:focus {
        background: var(--zlc-orange-cta) !important;
        border-color: var(--zlc-orange-cta) !important;
        color: #fff !important;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(198, 122, 51, 0.48);
        outline: none;
    }

    .navbar-main .nav-mobile-actions .btn-outline-zlc.nav-mobile-actions-btn:active {
        transform: translateY(0);
        background: #c86a2a !important;
        border-color: #c86a2a !important;
    }

    .navbar-main {
        background-image: url('../assets/logo/nav_bg.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    .hero-slide-zlc .hero-inner {
        padding: 2rem 0;
        align-items: center;
        justify-content: flex-start;
    }

    .hero-slide-zlc .hero-content {
        margin-left: 0;
        text-align: left;
    }

    .hero-slide-zlc .hero-desc {
        margin-left: 0;
        margin-right: 0;
        border-left: 3px solid rgba(232, 212, 184, 0.65);
        padding-left: 1rem;
    }

    .hero-actions-static {
        bottom: 1.75rem;
    }

    .owl-nav button {
        top: 60%;
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
    }
    .owl-nav .owl-prev { left: 8px; }
    .owl-nav .owl-next { right: 8px; }

    .why-block {
        padding: 2rem 0;
    }

    .testimonial-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }

    .testimonial-quote {
        font-size: 2.5rem;
    }
}

@keyframes zlcMenuIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

@keyframes zlcMenuOut {
    from { transform: translateX(0); }
    to { transform: translateX(100%); }
}

/* Mobile */
@media (max-width: 767.98px) {
    .navbar-logo-img {
        height: 36px;
        max-width: min(150px, 42vw);
    }

    .navbar-main {
        padding: 0.2rem 0;
    }

    .navbar-main > .container {
        min-height: 44px;
        align-items: center;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .zlc-site .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .page-hero {
        min-height: var(--page-hero-min-height);
    }

    .hero-slide-zlc .hero-inner {
        padding: 1.5rem 0;
        align-items: center;
        justify-content: flex-start;
    }

    .hero-actions-static .hero-actions--centered {
        align-items: center;
        max-width: none;
    }

    .hero-actions-static .hero-actions--centered .btn {
        width: auto;
    }

    body.zlc-site .hero-actions-static .hero-apply-btn {
        width: auto !important;
        max-width: min(240px, 78vw);
        min-height: 38px;
        font-size: 0.8125rem;
        padding: 0.4rem 1rem;
        letter-spacing: 0.02em;
        box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
    }

    .cta-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        max-width: 280px;
    }

    .cta-actions .btn {
        margin-right: 0;
        width: 100%;
    }

    .page-hero {
        min-height: var(--page-hero-min-height);
        padding: 2rem 0;
    }

    .page-hero--image .page-hero-inner {
        height: 100%;
        min-height: 100%;
        padding: 2rem 0;
    }

    .page-hero .breadcrumb {
        font-size: 0.8rem;
        flex-wrap: wrap;
    }

    .section-heading {
        font-size: 1.65rem;
    }

    .section-intro {
        font-size: 1rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

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

    .program-card {
        padding: 1.25rem;
    }

    .program-card .icon-wrap {
        font-size: 2rem;
    }

    .course-card-img {
        height: 180px;
    }

    .why-block .col-md-6 + .col-md-6 {
        margin-top: 1rem;
    }

    .why-block .rounded {
        min-height: 140px !important;
        padding: 1.5rem !important;
    }

    .why-choose-features {
        padding-top: 2.25rem !important;
        padding-bottom: 2.25rem !important;
    }

    .why-choose-features-header {
        margin-bottom: 1.5rem !important;
    }

    .why-choose-features-header .section-heading {
        font-size: 1.5rem;
    }

    .why-choose-features-intro {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }

    .why-choose-features-grid > [class*='col-'] {
        padding-left: 0.65rem;
        padding-right: 0.65rem;
    }

    .why-feature-card {
        padding: 1rem 1rem 1rem 0.95rem;
        gap: 0.85rem;
    }

    .why-feature-card:hover {
        transform: none;
    }

    .why-feature-card-icon {
        flex: 0 0 48px;
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .why-feature-card-title {
        margin-bottom: 0.35rem;
    }

    .cta-enroll {
        padding: 2.5rem 0;
    }

    .cta-enroll .btn-lg {
        font-size: 0.95rem;
        padding: 0.65rem 1.25rem;
    }

    .testimonials-section .section-heading.text-white {
        font-size: 1.4rem;
    }

    .testimonial-card .d-flex.align-items-center {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-card .d-flex.align-items-center .rounded-circle {
        margin-right: 0 !important;
        margin-bottom: 0.75rem;
    }

    .footer-zlc-inner {
        padding-top: 2rem;
    }

    .footer-zlc-row {
        padding-top: 0.75rem;
    }

    .footer-wave-main {
        height: 36px;
    }

    .footer-zlc {
        text-align: center;
    }

    .footer-brand-logo {
        margin-left: auto;
        margin-right: auto;
        object-position: center center;
        width: min(200px, 85vw);
        max-height: 90px;
    }

    .footer-brand-link {
        display: block;
    }

    .footer-brand-tagline {
        font-size: clamp(0.58rem, 2.8vw, 0.72rem);
        text-align: center;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .footer-social-links {
        justify-content: center;
    }

    .footer-social-links a {
        width: 50px;
        height: 50px;
        font-size: 1.45rem;
    }

    .footer-contact-col {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .footer-brand-col {
        padding-right: max(1rem, env(safe-area-inset-right, 0px));
    }

    .footer-contact-col h6,
    .footer-contact-col p,
    .footer-contact-col .footer-contact-text {
        text-align: center;
    }

    .footer-contact-col .footer-contact-text {
        display: block;
        width: 100%;
        max-width: 100%;
    }

    .footer-contact-col .footer-contact-text span {
        text-align: center;
    }

    .footer-zlc-row > [class*="col-"] > h6 {
        margin-top: 1rem;
        font-size: clamp(0.95rem, 3.5vw, 1.05rem);
    }

    .footer-zlc-row ul.list-unstyled {
        font-size: clamp(0.875rem, 3.2vw, 0.95rem);
    }

    .footer-contact-col p,
    .footer-contact-col .footer-contact-text {
        font-size: clamp(0.875rem, 3.2vw, 0.95rem);
    }

    .whatsapp-float {
        bottom: calc(16px + env(safe-area-inset-bottom, 0));
        left: calc(16px + env(safe-area-inset-left, 0));
        right: auto;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .home-float {
        bottom: calc(16px + env(safe-area-inset-bottom, 0));
        right: calc(16px + env(safe-area-inset-right, 0));
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .gallery-thumb img {
        height: 180px;
    }

    #galleryModal .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }

    .btn-block-mobile {
        display: block;
        width: 100%;
    }

    .courses-filter-bar-inner {
        width: 100%;
        max-width: 100%;
        border-radius: 14px;
        padding: 0.35rem;
        gap: 0.4rem;
    }

    .courses-filter-btn {
        flex: 1 1 calc(50% - 0.35rem);
        min-width: calc(50% - 0.35rem);
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .news-mini-thumb {
        width: 100%;
        height: 120px;
    }

    .event-featured .card-body {
        padding: 1rem;
    }

    .page-hero blockquote {
        font-size: 1.1rem !important;
    }

    .about-director-avatar {
        width: 96px !important;
        height: 96px !important;
        font-size: 1.5rem !important;
    }

    .contact-map-card {
        min-height: 200px;
    }

    .contact-map-embed {
        height: 220px;
        min-height: 200px;
    }

    .contact-map-footer {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        text-align: left;
        padding: 0.3rem 0.6rem;
        gap: 0.35rem 0.5rem;
    }

    .contact-map-directions {
        width: auto;
    }

    .zlc-site .form-control,
    .zlc-site .form-control:focus {
        font-size: 16px;
    }

    .zlc-site .table-responsive {
        -webkit-overflow-scrolling: touch;
    }
}

/* Contact page — three-column layout + map below */
.contact-page-section {
    position: relative;
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
    min-height: 560px;
    background-color: var(--zlc-ivory);
    background-image: url('../assets/logo/backgrounds%20(5).jpeg');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    scroll-margin-top: calc(var(--site-header-height, 84px) + 8px);
}

@media (min-width: 992px) {
    .contact-page-section {
        min-height: 620px;
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }

    .contact-page-grid {
        min-height: 480px;
        align-items: flex-start;
    }

    .contact-page-grid > [class*="col-"] {
        display: flex;
        flex-direction: column;
    }

    .contact-page-grid .contact-info-block,
    .contact-page-grid .contact-form-block {
        flex: 1 1 auto;
        width: 100%;
    }

    .contact-page-grid .contact-block-heading {
        min-height: 2.75rem;
        margin-bottom: 1.25rem;
    }
}

.contact-page-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.82);
    pointer-events: none;
}

.contact-page-section > .container {
    position: relative;
    z-index: 1;
}

.contact-page-grid {
    align-items: flex-start;
}

.contact-info-block,
.contact-form-block {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0.5rem 0.25rem;
    box-shadow: none;
}

.contact-block-heading {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--zlc-navy);
    margin: 0 0 1.25rem;
}

.contact-block-icon--live {
    position: relative;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    background: linear-gradient(145deg, #0a74da, #0856a8);
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 4px 14px rgba(10, 116, 218, 0.35);
}

.contact-block-icon--live i {
    position: relative;
    z-index: 2;
}

.contact-block-icon-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(10, 116, 218, 0.55);
    animation: contactIconPulse 2s ease-out infinite;
    z-index: 1;
}

.contact-block-icon--location i {
    animation: contactIconBounce 2.2s ease-in-out infinite;
}

.contact-block-icon--contact i {
    animation: contactIconRing 1.8s ease-in-out infinite;
    transform-origin: 50% 85%;
}

.contact-block-icon--touch i {
    animation: contactIconFly 2.4s ease-in-out infinite;
}

@keyframes contactIconPulse {
    0% {
        transform: scale(1);
        opacity: 0.75;
    }
    70% {
        transform: scale(1.55);
        opacity: 0;
    }
    100% {
        transform: scale(1.55);
        opacity: 0;
    }
}

@keyframes contactIconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes contactIconRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(-12deg);
    }
    20% {
        transform: rotate(12deg);
    }
    30% {
        transform: rotate(-8deg);
    }
    40% {
        transform: rotate(8deg);
    }
    50%, 100% {
        transform: rotate(0deg);
    }
}

@keyframes contactIconFly {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    35% {
        transform: translate(2px, -3px) rotate(-8deg);
    }
    70% {
        transform: translate(-1px, -2px) rotate(6deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-block-icon-ring,
    .contact-block-icon--live i {
        animation: none;
    }
}

.contact-block-body,
.contact-block-line {
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: 0.98rem;
    line-height: 1.65;
    color: #000;
    font-style: normal;
}

.contact-block-line.font-weight-bold.text-navy {
    color: #000 !important;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--zlc-navy);
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: 1rem;
    font-weight: 700;
    transition: color 0.2s ease;
}

.contact-method-link:hover {
    color: var(--zlc-orange-cta);
    text-decoration: none;
}

.contact-method-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-method-icon--whatsapp {
    color: #25d366;
    background: rgba(37, 211, 102, 0.12);
}

.contact-method-icon--phone {
    color: #fff;
    background: #0a74da;
}

.contact-method-icon--email {
    color: #fff;
    background: #0a74da;
}

.contact-page-form {
    --form-edge-color: var(--zlc-navy);
    --form-edge-len: 22px;
    --form-edge-w: 2px;
    position: relative;
    padding: 1.35rem 1.15rem 1.2rem;
    background-image:
        linear-gradient(var(--form-edge-color), var(--form-edge-color)),
        linear-gradient(var(--form-edge-color), var(--form-edge-color)),
        linear-gradient(var(--form-edge-color), var(--form-edge-color)),
        linear-gradient(var(--form-edge-color), var(--form-edge-color)),
        linear-gradient(var(--form-edge-color), var(--form-edge-color)),
        linear-gradient(var(--form-edge-color), var(--form-edge-color)),
        linear-gradient(var(--form-edge-color), var(--form-edge-color)),
        linear-gradient(var(--form-edge-color), var(--form-edge-color));
    background-repeat: no-repeat;
    background-size:
        var(--form-edge-w) var(--form-edge-len), var(--form-edge-len) var(--form-edge-w),
        var(--form-edge-w) var(--form-edge-len), var(--form-edge-len) var(--form-edge-w),
        var(--form-edge-w) var(--form-edge-len), var(--form-edge-len) var(--form-edge-w),
        var(--form-edge-w) var(--form-edge-len), var(--form-edge-len) var(--form-edge-w);
    background-position:
        top left, top left,
        top right, top right,
        bottom left, bottom left,
        bottom right, bottom right;
}

.contact-page-form .form-control {
    border: 1px solid #d1d5db;
    border-radius: 4px;
    padding: 0.65rem 0.85rem;
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: 0.95rem;
    background: transparent;
    background-color: transparent;
}

.contact-page-form .form-control:focus {
    border-color: rgba(10, 116, 218, 0.55);
    box-shadow: 0 0 0 3px rgba(10, 116, 218, 0.12);
    background: transparent;
    background-color: transparent;
}

.contact-page-form .form-control.is-invalid,
.contact-page-form .contact-phone-code-trigger.is-invalid {
    border-color: #c53030;
    box-shadow: 0 0 0 3px rgba(197, 48, 48, 0.12);
}

.contact-page-form .form-control.is-invalid:focus {
    border-color: #c53030;
    box-shadow: 0 0 0 3px rgba(197, 48, 48, 0.16);
}

.contact-field-error {
    color: #c53030;
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.35;
    margin: 0.35rem 0 0;
}

.contact-field-error[hidden] {
    display: none !important;
}

.contact-phone-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--zlc-navy);
    margin-bottom: 0.35rem;
}

.contact-phone-row {
    --contact-phone-field-h: calc(1.5 * 0.95rem + 0.75rem + 2px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-phone-code-picker {
    position: relative;
    flex: 0 0 auto;
    width: 6.5rem;
    min-width: 6.5rem;
    height: var(--contact-phone-field-h);
}

.contact-phone-code-native {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.contact-page-form .contact-phone-row .contact-phone-local,
.contact-page-form .contact-phone-row .contact-phone-code-trigger {
    box-sizing: border-box;
    height: var(--contact-phone-field-h) !important;
    min-height: var(--contact-phone-field-h) !important;
    max-height: var(--contact-phone-field-h) !important;
    margin: 0;
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: 0.95rem !important;
    border: 1px solid #d1d5db;
    border-radius: 4px;
}

.contact-phone-code-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem;
    width: 100%;
    height: 100% !important;
    min-height: 100% !important;
    max-height: 100% !important;
    padding: 0 0.55rem !important;
    line-height: 1 !important;
    background: transparent;
    background-color: transparent;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-page-form .contact-phone-row .contact-phone-local {
    padding: 0 0.85rem !important;
    line-height: calc(var(--contact-phone-field-h) - 2px) !important;
    background: transparent;
    background-color: transparent;
}

@media (max-width: 767.98px) {
    .contact-page-form .contact-phone-row {
        --contact-phone-field-h: calc(1.5 * 1rem + 0.75rem + 2px);
    }

    .contact-page-form .contact-phone-row .contact-phone-local,
    .contact-page-form .contact-phone-row .contact-phone-code-trigger {
        font-size: 1rem !important;
    }
}

.contact-phone-code-trigger:hover {
    border-color: rgba(10, 116, 218, 0.45);
    background: transparent;
    background-color: transparent;
}

.contact-phone-code-picker.is-open .contact-phone-code-trigger,
.contact-phone-code-trigger:focus {
    outline: none;
    border-color: rgba(10, 116, 218, 0.55);
    box-shadow: 0 0 0 3px rgba(10, 116, 218, 0.12);
    background: transparent;
    background-color: transparent;
}

.contact-phone-code-value {
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--zlc-text);
    letter-spacing: 0.02em;
    line-height: 1;
}

.contact-phone-code-chevron {
    font-size: 0.65rem;
    color: #6b7280;
    transition: transform 0.2s ease;
}

.contact-phone-code-picker.is-open .contact-phone-code-chevron {
    transform: rotate(180deg);
}

.contact-phone-code-menu {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    z-index: 30;
    width: max(100%, 7.5rem);
    margin: 0;
    padding: 0.35rem 0;
    list-style: none;
    background: #fff;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(15, 34, 53, 0.18);
    max-height: 220px;
    overflow-y: auto;
}

.contact-phone-code-menu[hidden] {
    display: none;
}

.contact-phone-code-option {
    display: block;
    width: 100%;
    padding: 0.55rem 0.85rem;
    border: none;
    background: transparent;
    font-family: 'DM Mono', 'Roboto Mono', monospace;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--zlc-navy);
    text-align: left;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.contact-phone-code-option:hover,
.contact-phone-code-option:focus {
    outline: none;
    background: rgba(10, 116, 218, 0.1);
    color: var(--zlc-navy);
}

.contact-phone-code-option.is-selected {
    background: rgba(10, 116, 218, 0.14);
    color: var(--zlc-navy);
    font-weight: 700;
}

.contact-phone-code-option.is-selected::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    float: right;
    font-size: 0.75rem;
    color: var(--zlc-orange-cta);
}

.contact-phone-local {
    flex: 1 1 auto;
    min-width: 0;
    letter-spacing: 0.04em;
}

.contact-page-form .contact-message-input {
    background: transparent;
    background-color: transparent;
}

.contact-submit-wrap {
    text-align: center;
    margin-top: 0.25rem;
}

.contact-page-submit {
    display: inline-block;
    width: auto;
    min-width: 7.5rem;
    max-width: 100%;
    font-family: var(--zlc-btn-font);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 0.6rem 1.75rem;
    border-radius: 4px;
    background: var(--zlc-orange-cta);
    border: 2px solid var(--zlc-orange-cta);
    color: #fff !important;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.contact-page-submit:hover,
.contact-page-submit:focus {
    background: #e09050;
    border-color: #e09050;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(198, 122, 51, 0.35);
    outline: none;
}

.contact-page-submit.is-loading,
.contact-page-submit:disabled {
    cursor: wait;
    opacity: 0.92;
    pointer-events: none;
    transform: none;
    box-shadow: none;
}

.contact-page-submit-wait {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-map-section {
    position: relative;
    background-color: var(--zlc-ivory);
    background-image: url('../assets/logo/backgrounds%20(4).jpeg');
    background-repeat: repeat;
    background-size: auto;
    background-position: center top;
    overflow: hidden;
    padding-top: 2rem !important;
}

.contact-map-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.72);
    pointer-events: none;
}

.contact-map-section > .container {
    position: relative;
    z-index: 1;
}

.contact-map-embed--full {
    width: 100%;
    height: 420px;
    min-height: 320px;
    border: 0;
    display: block;
}

@media (min-width: 992px) {
    .contact-map-embed--full {
        height: 480px;
    }
}

.contact-map-card {
    min-height: 320px;
    background: var(--zlc-ivory);
    border: 1px solid #e8e4dc;
    border-left: 4px solid transparent;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-map-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(15, 34, 53, 0.16);
    border-left-color: var(--zlc-gold);
    border-color: rgba(212, 160, 23, 0.35);
}

.contact-map-card:hover .contact-map-embed {
    filter: brightness(1.03);
}

.contact-map-card:hover .contact-map-footer {
    background: #d4b896;
}

/* Contact page — equal-width, equal-height form + map */
@media (min-width: 992px) {
    .contact-split-col {
        display: flex;
        flex-direction: column;
    }

    .contact-split-col > .contact-form-card,
    .contact-split-col > .contact-map-card {
        flex: 1 1 auto;
        width: 100%;
        min-height: 520px;
    }

    .contact-map-card {
        display: flex;
        flex-direction: column;
        min-height: 520px;
    }

    .contact-map-card .contact-map-embed {
        flex: 1 1 auto;
        height: auto;
        min-height: 0;
    }

    .contact-form-card {
        display: flex;
        flex-direction: column;
    }

    .contact-form-card form {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
    }

    .contact-form-card .contact-message-group {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        margin-bottom: 1rem;
    }

    .contact-form-card .contact-message-wrap {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
    }

    .contact-form-card .contact-message-input {
        flex: 1 1 auto;
        min-height: 110px;
    }
}

/* Contact form floating card */
.contact-form-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 34, 53, 0.10);
    border-left: 4px solid transparent;
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 18px 40px rgba(15, 34, 53, 0.14);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 44px rgba(15, 34, 53, 0.18);
    border-left-color: var(--zlc-gold);
    border-color: rgba(212, 160, 23, 0.35);
}

.contact-form-card .form-control {
    border-radius: 12px;
}

.contact-message-wrap {
    position: relative;
}

.contact-message-input {
    padding-bottom: 2rem;
    resize: vertical;
    min-height: 110px;
}

.contact-message-count {
    position: absolute;
    right: 0.75rem;
    bottom: 0.55rem;
    font-family: var(--zlc-btn-font);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(15, 34, 53, 0.45);
    pointer-events: none;
    user-select: none;
}

.contact-message-count.is-limit {
    color: var(--zlc-orange-cta);
}

.contact-form-card #phoneCountry {
    max-width: 100px;
    text-align: center;
    font-weight: 600;
}

.contact-submit-wrap {
    margin-top: 0.5rem;
    padding-top: 0.25rem;
}

.contact-form-card .contact-submit-btn {
    font-family: var(--zlc-btn-font);
    font-size: var(--zlc-btn-fs-sm);
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: var(--zlc-btn-py-sm) var(--zlc-btn-px-sm);
    border-radius: var(--zlc-btn-radius);
    min-width: 10.5rem;
    background: var(--zlc-navy);
    border: 2px solid var(--zlc-navy);
    color: #fff !important;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.contact-form-card .contact-submit-btn:hover,
.contact-form-card .contact-submit-btn:focus {
    background: var(--zlc-orange-cta);
    border-color: var(--zlc-orange-cta);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(198, 122, 51, 0.35);
    outline: none;
}

.contact-form-card .contact-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(198, 122, 51, 0.28);
}

/* Phone input group: look like one joined control */
.contact-form-card .input-group #phoneCountry {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-right: 0 !important;
}

.contact-form-card .input-group #phoneLocal {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.contact-form-card .input-group #phoneCountry:focus {
    position: relative;
    z-index: 2;
}

.contact-form-card .input-group #phoneLocal:focus {
    position: relative;
    z-index: 2;
}

@media (max-width: 575.98px) {
    .contact-form-card {
        padding: 1rem;
        border-radius: 14px;
    }
}

/* Contact info cards (Phone/Email/Location/PO Box) */
.contact-info-grid {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    row-gap: 1rem;
}

.contact-info-grid > .contact-info-card {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .contact-info-grid > .contact-info-card {
        margin-bottom: 0;
    }
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #fff;
    border: 1px solid rgba(15, 34, 53, 0.10);
    border-left: 4px solid transparent;
    border-radius: 12px;
    padding: 1rem 0.75rem;
    box-shadow: 0 10px 24px rgba(15, 34, 53, 0.08);
    min-height: 132px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(15, 34, 53, 0.14);
    border-left-color: var(--zlc-gold);
}

.contact-info-card i {
    transition: transform 0.25s ease, color 0.2s ease;
}

.contact-info-card:hover i {
    transform: scale(1.1);
}

.contact-info-card .contact-icon-navy {
    color: var(--zlc-navy);
}

.contact-info-card:hover .contact-icon-navy {
    color: var(--zlc-teal);
}

.contact-info-grid h6 {
    font-family: var(--zlc-btn-font);
    font-weight: 700;
    color: rgba(15, 34, 53, 0.9);
    margin-bottom: 0.25rem;
}

.contact-info-grid p {
    margin-bottom: 0;
}

@media (max-width: 575.98px) {
    .contact-info-grid {
        row-gap: 0.85rem;
    }

    .contact-info-card {
        padding: 0.85rem 0.65rem;
        border-radius: 12px;
        min-height: 120px;
    }

    .contact-info-card i.fa-2x {
        font-size: 1.5rem;
    }

    .contact-info-card h6 {
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
    }

    .contact-info-card p,
    .contact-info-card small {
        font-size: 0.82rem;
        line-height: 1.25;
    }
}

.contact-map-embed {
    display: block;
    width: 100%;
    height: 280px;
    min-height: 240px;
    border: 0;
    transition: filter 0.25s ease;
}

.contact-map-footer {
    transition: background 0.25s ease;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.45rem 0.75rem;
    padding: 0.35rem 0.75rem;
    min-height: 0;
    background: #E8D4B8;
    color: #5C3317;
}

.contact-map-footer p {
    margin: 0 !important;
    flex: 1 1 auto;
    min-width: 0;
    font-size: 0.72rem;
    line-height: 1.3;
    font-weight: 500;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.contact-map-directions {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 0.72rem !important;
    font-weight: 600;
    line-height: 1.2;
    padding: 0.28rem 0.65rem !important;
    min-height: 0 !important;
    height: auto !important;
    width: auto !important;
    max-width: none !important;
    color: #5C3317 !important;
    background: transparent !important;
    border: 1px solid #7A4A2A !important;
    border-radius: 6px;
}

.contact-map-directions:hover,
.contact-map-directions:focus {
    color: #fff !important;
    background: #7A4A2A !important;
    border-color: #7A4A2A !important;
}

/* Programs page — category filter */
.courses-filter-bar {
    display: flex;
    justify-content: center;
    text-align: center;
}

.courses-filter-bar-inner {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.4rem;
    background: #fff;
    border: 1px solid #e5e0d6;
    border-radius: 999px;
    box-shadow: 0 6px 20px rgba(15, 34, 53, 0.06);
}

.courses-filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.55rem 1.35rem;
    border-radius: 999px;
    border: 2px solid transparent;
    background: transparent;
    color: var(--zlc-navy);
    font-family: var(--zlc-btn-font);
    font-size: clamp(0.8125rem, 2vw, 0.9rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    -webkit-tap-highlight-color: transparent;
}

.courses-filter-btn:hover {
    color: var(--zlc-navy-dark);
    background: rgba(46, 174, 143, 0.1);
    border-color: rgba(46, 174, 143, 0.35);
    box-shadow: 0 6px 16px rgba(15, 34, 53, 0.1);
    transform: translateY(-2px);
    text-decoration: none;
}

.courses-filter-btn:focus {
    outline: none;
    text-decoration: none;
}

.courses-filter-btn:focus-visible {
    box-shadow: 0 0 0 3px rgba(46, 174, 143, 0.35);
}

.courses-filter-btn.is-active {
    background: var(--zlc-btn-gradient);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 22px rgba(0, 51, 102, 0.28);
}

.courses-filter-btn.is-active:hover {
    background: var(--zlc-btn-gradient-hover);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 26px rgba(0, 51, 102, 0.34);
    transform: translateY(-3px);
}

.courses-filter-btn:active {
    transform: translateY(0);
}

.courses-filter-btn.is-active:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 51, 102, 0.26);
}

@media (prefers-reduced-motion: reduce) {
    .courses-filter-btn,
    .courses-filter-btn:hover,
    .courses-filter-btn.is-active:hover {
        transition: none;
        transform: none;
    }
}

/* Programs page — filter & course card actions */
.courses-section--page .courses-filter-bar-inner {
    gap: 0.35rem;
    padding: 0.45rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(15, 34, 53, 0.08);
}

.courses-section--page .courses-filter-btn {
    min-height: 44px;
    padding: 0.6rem 1.5rem;
    font-size: clamp(0.875rem, 2vw, 0.9375rem);
    font-weight: 600;
    border: 1px solid #e0dbd2;
    background: #faf9f6;
}

.courses-section--page .courses-filter-btn:hover {
    background: #fff;
    border-color: rgba(198, 122, 51, 0.45);
    color: var(--zlc-navy-dark);
}

.courses-section--page .courses-filter-btn.is-active {
    background: linear-gradient(135deg, var(--zlc-orange-cta) 0%, #a85f28 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 22px rgba(198, 122, 51, 0.35);
}

.courses-section--page .courses-filter-btn.is-active:hover {
    background: linear-gradient(135deg, #d4894a 0%, var(--zlc-orange-cta) 100%);
    color: #fff;
    box-shadow: 0 10px 26px rgba(198, 122, 51, 0.42);
}

@media (max-width: 767.98px) {
    .courses-section--page .courses-filter-bar-inner {
        flex-wrap: nowrap;
        width: 100%;
        gap: 0.2rem;
        padding: 0.22rem;
        border-radius: 999px;
    }

    .courses-section--page .courses-filter-btn,
    body.zlc-site .courses-section--page .courses-filter-btn {
        flex: 1 1 0;
        min-width: 0;
        min-height: 34px;
        padding: 0.3rem 0.25rem;
        font-size: 0.75rem;
        border-radius: 999px;
    }
}

.courses-section--page .course-card-duration-meta {
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(26, 60, 94, 0.8);
}

/* Course detail page — sidebar & actions (match programs carousel buttons) */
.course-show-sidebar {
    display: flex;
    flex-direction: column;
    border-left-color: var(--zlc-teal);
}

.course-show-actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 0.25rem;
}

.course-show-actions .course-show-btn {
    font-family: var(--zlc-btn-font);
    font-size: clamp(0.875rem, 2vw, 0.9375rem);
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: 8px;
    padding: 0.7rem 1.15rem;
    line-height: 1.35;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.course-show-btn--primary {
    color: #fff !important;
    background: linear-gradient(135deg, var(--zlc-orange-cta) 0%, #a85f28 100%) !important;
    border: none !important;
    box-shadow: 0 6px 18px rgba(198, 122, 51, 0.35);
}

.course-show-btn--primary:hover,
.course-show-btn--primary:focus {
    color: #fff !important;
    background: linear-gradient(135deg, #8b4513 0%, #5c3317 100%) !important;
    border: none !important;
    box-shadow: 0 8px 22px rgba(92, 51, 23, 0.4);
    transform: translateY(-2px);
}

.course-show-btn--secondary {
    color: var(--zlc-navy) !important;
    background: #fff !important;
    border: 2px solid var(--zlc-navy) !important;
    box-shadow: 0 4px 12px rgba(15, 34, 53, 0.08);
}

.course-show-btn--secondary:hover,
.course-show-btn--secondary:focus {
    color: #fff !important;
    background: var(--zlc-navy) !important;
    border-color: var(--zlc-navy) !important;
    box-shadow: 0 8px 20px rgba(15, 34, 53, 0.2);
    transform: translateY(-2px);
}

.course-show-related .course-card-zlc .btn-course-details {
    font-size: clamp(0.875rem, 2vw, 0.9375rem);
    font-weight: 600;
    color: #fff !important;
    background: linear-gradient(135deg, #8B5A32 0%, #7A4A2A 100%) !important;
    border: none !important;
    border-radius: 8px;
    padding: 0.7rem 1.15rem;
    box-shadow: 0 6px 18px rgba(122, 74, 42, 0.28);
}

.course-show-related .course-card-zlc .btn-course-details:hover,
.course-show-related .course-card-zlc .btn-course-details:focus {
    background: linear-gradient(135deg, #7A4A2A 0%, #5C3317 100%) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(92, 51, 23, 0.35);
}

@media (prefers-reduced-motion: reduce) {
    .course-show-actions .course-show-btn:hover,
    .course-show-actions .course-show-btn:focus {
        transform: none;
    }
}

/* Courses slider — flex track: 4 / 2 / 1 cards */
.courses-section {
    position: relative;
    width: 100%;
}

.home-courses-section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.home-courses-section > .container {
    width: 100%;
    max-width: 100% !important;
    padding-left: clamp(0.85rem, 3.5vw, 2.5rem);
    padding-right: clamp(0.85rem, 3.5vw, 2.5rem);
}

.home-courses-section .courses-carousel-outer,
.home-courses-section .courses-carousel-viewport {
    width: 100%;
    max-width: 100%;
}

.home-courses-section .courses-carousel-slide .course-card-zlc {
    width: 100%;
}

.home-courses-section .btn-course-details,
.courses-section--page .course-card-zlc .btn-course-details {
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: var(--zlc-btn-font);
    font-size: var(--zlc-btn-fs);
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 0.7em 1.7em;
    border-radius: 0.5em;
    color: #fff !important;
    background: var(--zlc-orange-cta) !important;
    border: 2px solid var(--zlc-orange-cta) !important;
    box-shadow: 0 4px 14px rgba(198, 122, 51, 0.3);
    text-decoration: none;
    transition: all 0.2s ease-in;
}

.home-courses-section .btn-course-details::before,
.courses-section--page .course-card-zlc .btn-course-details::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    width: 140%;
    height: 180%;
    display: block;
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

.home-courses-section .btn-course-details::after,
.courses-section--page .course-card-zlc .btn-course-details::after {
    content: "";
    position: absolute;
    left: 55%;
    top: 180%;
    width: 160%;
    height: 190%;
    display: block;
    background-color: #e09050;
    border-radius: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.45);
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

.home-courses-section .btn-course-details:hover,
.home-courses-section .btn-course-details:focus,
.courses-section--page .course-card-zlc .btn-course-details:hover,
.courses-section--page .course-card-zlc .btn-course-details:focus {
    color: #fff !important;
    background: var(--zlc-orange-cta) !important;
    border-color: #e09050 !important;
    outline: none;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(198, 122, 51, 0.45);
}

.home-courses-section .btn-course-details:hover::before,
.home-courses-section .btn-course-details:focus::before,
.courses-section--page .course-card-zlc .btn-course-details:hover::before,
.courses-section--page .course-card-zlc .btn-course-details:focus::before {
    top: -35%;
    background-color: #e09050;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.home-courses-section .btn-course-details:hover::after,
.home-courses-section .btn-course-details:focus::after,
.courses-section--page .course-card-zlc .btn-course-details:hover::after,
.courses-section--page .course-card-zlc .btn-course-details:focus::after {
    top: -45%;
    background-color: #e09050;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.home-courses-section .btn-course-details:active,
.courses-section--page .course-card-zlc .btn-course-details:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(198, 122, 51, 0.35);
}

@media (prefers-reduced-motion: reduce) {
    .home-courses-section .btn-course-details::before,
    .home-courses-section .btn-course-details::after,
    .courses-section--page .course-card-zlc .btn-course-details::before,
    .courses-section--page .course-card-zlc .btn-course-details::after {
        transition: none;
    }

    .home-courses-section .btn-course-details:hover,
    .home-courses-section .btn-course-details:focus,
    .courses-section--page .course-card-zlc .btn-course-details:hover,
    .courses-section--page .course-card-zlc .btn-course-details:focus {
        background: #e09050 !important;
        transform: none;
    }
}

.courses-section .courses-carousel-arrow--prev {
    left: max(0.75rem, env(safe-area-inset-left, 0px));
}

.courses-section .courses-carousel-arrow--next {
    right: max(0.75rem, env(safe-area-inset-right, 0px));
    left: auto;
}

.courses-carousel-outer {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.courses-section--page {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.courses-section--page > .container {
    width: 100%;
    max-width: 100% !important;
    padding-left: clamp(0.85rem, 3.5vw, 2.5rem);
    padding-right: clamp(0.85rem, 3.5vw, 2.5rem);
}

.courses-section--page .courses-carousel-outer,
.courses-section--page .courses-carousel-viewport {
    width: 100%;
    max-width: 100%;
}

.courses-carousel-shell {
    position: relative;
    width: 100%;
}

.courses-carousel-outer--page {
    max-width: 100%;
}

@media (min-width: 992px) {
    .courses-section--page .courses-carousel-arrow--prev {
        left: 0.25rem;
    }

    .courses-section--page .courses-carousel-arrow--next {
        right: 0.25rem;
        left: auto;
    }

    .courses-carousel-outer--page .courses-carousel-viewport {
        padding-left: clamp(2.5rem, 4vw, 3.5rem);
        padding-right: clamp(2.5rem, 4vw, 3.5rem);
    }

    .courses-carousel-outer--page[data-slide-count='1'] .courses-carousel-slide {
        flex: 0 0 100%;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    .courses-carousel-outer--page[data-slide-count='2'] .courses-carousel-slide {
        flex: 0 0 calc((100% - 20px) / 2);
    }

    .courses-carousel-outer--page[data-slide-count='2'] .courses-carousel-slide .course-card-zlc,
    .courses-carousel-outer--page[data-slide-count='1'] .courses-carousel-slide .course-card-zlc {
        min-height: 500px;
    }

    .courses-carousel-outer--page[data-slide-count='2'] .course-card-img,
    .courses-carousel-outer--page[data-slide-count='1'] .course-card-img {
        height: 240px;
        min-height: 240px;
    }

    .courses-carousel-outer--page:not([data-slide-count='1']):not([data-slide-count='2']) .courses-carousel-slide {
        flex: 0 0 calc((100% - 28px) / 3);
    }

    .courses-carousel-outer--page:not([data-slide-count='1']):not([data-slide-count='2']) .courses-carousel-slide .course-card-zlc {
        min-height: 480px;
    }

    .courses-carousel-outer--page:not([data-slide-count='1']):not([data-slide-count='2']) .course-card-img {
        height: 220px;
        min-height: 220px;
    }
}

.courses-carousel-arrow {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    z-index: 20;
    pointer-events: auto;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--zlc-navy);
    font-size: 0.95rem;
    box-shadow: 0 4px 16px rgba(15, 34, 53, 0.18);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.courses-carousel-arrow:hover,
.courses-carousel-arrow:focus {
    background: #fff;
    color: var(--zlc-navy-dark);
    box-shadow: 0 6px 20px rgba(15, 34, 53, 0.22);
    outline: none;
}

.courses-carousel-arrow:focus-visible {
    box-shadow: 0 0 0 3px rgba(86, 176, 255, 0.45);
}

.courses-carousel-viewport {
    overflow: hidden;
    width: 100%;
    padding: 0.5rem clamp(3.25rem, 5.5vw, 4.5rem) 0.25rem;
}

.courses-carousel-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    will-change: transform;
}

@media (min-width: 992px) {
    .courses-carousel-track {
        gap: 14px;
    }
}

.courses-carousel-slide {
    flex: 0 0 100%;
    min-width: 0;
    box-sizing: border-box;
}

.courses-carousel-slide .course-card-zlc {
    height: 100%;
    margin-bottom: 0;
    min-height: 460px;
}

.courses-carousel-dots {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0;
}

.courses-carousel-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(26, 60, 94, 0.25);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.courses-carousel-dot.is-active,
.courses-carousel-dot:hover {
    background: var(--zlc-orange-cta);
    transform: scale(1.15);
}

.courses-scroll-actions {
    position: relative;
    z-index: 2;
}

@media (max-width: 767.98px) {
    .home-courses-section .courses-scroll-actions {
        display: none;
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .courses-carousel-slide {
        flex: 0 0 calc((100% - 16px) / 2);
    }
}

@media (min-width: 992px) {
    .courses-carousel-slide {
        flex: 0 0 calc((100% - 42px) / 4);
    }

    .courses-carousel-slide .course-card-zlc {
        min-height: 440px;
    }

    .courses-carousel-slide .course-card-title {
        font-size: 1.05rem;
    }

    .courses-carousel-slide .course-card-desc {
        font-size: 0.8125rem;
        -webkit-line-clamp: 3;
    }

    .course-card-img {
        height: 180px;
        min-height: 180px;
    }
}

@media (max-width: 575.98px) {
    .courses-section .courses-carousel-arrow--prev {
        left: max(0.5rem, env(safe-area-inset-left, 0px));
    }

    .courses-section .courses-carousel-arrow--next {
        right: max(0.5rem, env(safe-area-inset-right, 0px));
        left: auto;
    }

    .courses-carousel-viewport {
        padding-left: clamp(2.75rem, 10vw, 3.25rem);
        padding-right: clamp(2.75rem, 10vw, 3.25rem);
    }

    .home-courses-section .courses-carousel-viewport {
        padding-left: 2.6rem;
        padding-right: 2.6rem;
    }

    .home-courses-section .courses-carousel-slide {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .courses-carousel-arrow {
        width: 40px;
        height: 40px;
        top: 36%;
        font-size: 0.88rem;
    }

    .courses-carousel-track {
        gap: 14px;
    }

    .courses-carousel-slide .course-card-zlc {
        min-height: 0;
    }

    .course-card-img {
        height: 190px;
        min-height: 190px;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .cta-actions {
        flex-direction: row;
        flex-wrap: wrap;
        max-width: none;
    }

    .cta-actions .btn {
        width: auto;
        flex: 0 1 auto;
    }
}

@media (min-width: 992px) {
    .hero-slide-zlc .hero-inner {
        padding: 4rem 0;
    }
}

@media (min-width: 768px) {
    .btn-sm-block {
        display: inline-block;
        width: auto;
    }
}

/* Small phones */
@media (max-width: 374.98px) {
    .utility-bar-mobile {
        font-size: 0.68rem;
    }

    .hero-title {
        font-size: clamp(1.5rem, 8.4vw, 2rem);
    }

    .hero-slide-zlc .hero-desc {
        font-size: 1rem;
        padding-left: 0.75rem;
    }

    .page-hero-title {
        font-size: 1.45rem;
    }

    .page-hero--image .page-hero-title {
        font-size: 1.85rem;
    }
}


/* Mobile-first: full-width branded buttons on public site (≤768px) */
@media (max-width: 768px) {
    body.zlc-site .btn-primary-zlc,
    body.zlc-site .btn-enroll,
    body.zlc-site .btn-auth-glass,
    body.zlc-site .btn-outline-zlc,
    body.zlc-site .btn-outline-light-zlc,
    body.zlc-site .hero-actions .btn:not(.hero-apply-btn),
    body.zlc-site .cta-actions .btn,
    body.zlc-site .cta-enroll .btn,
    body.zlc-site .course-card-zlc .btn,
    body.zlc-site .page-cta .btn {
        width: 100% !important;
        max-width: 100%;
        min-height: 48px;
        font-size: clamp(0.9rem, 2.8vw, 1rem);
        padding: clamp(0.65rem, 2vw, 0.8rem) clamp(1rem, 3vw, 1.35rem);
    }

    body.zlc-site .page-cta .page-cta-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        max-width: 22rem;
        margin-left: auto;
        margin-right: auto;
    }

    body.zlc-site .page-cta .page-cta-btn {
        width: 100% !important;
        max-width: 100%;
        min-width: 0;
        min-height: 3.25rem;
        font-size: 0.95rem;
        letter-spacing: 0.05em;
        padding: 0.85rem 1.35rem;
        white-space: normal;
    }

    body.zlc-site .contact-map-directions.btn {
        width: auto !important;
        max-width: none !important;
        min-height: 0 !important;
        font-size: 0.72rem !important;
        padding: 0.28rem 0.65rem !important;
    }

    body.zlc-site .hero-actions-static .hero-apply-btn {
        width: auto !important;
        max-width: min(240px, 78vw);
        min-height: 38px;
        font-size: 0.8125rem;
        padding: 0.4rem 1rem;
    }

    body.zlc-site .nav-mobile-actions {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        gap: 0.65rem;
    }

    body.zlc-site .nav-mobile-actions .btn {
        flex: 1 1 0;
        width: auto !important;
        max-width: none;
        min-width: 0;
        margin-bottom: 0 !important;
    }

    body.zlc-site .navbar-main .nav-mobile-actions .btn-enroll.nav-mobile-actions-btn {
        background: var(--zlc-orange-cta) !important;
        border-color: var(--zlc-orange-cta) !important;
        color: #fff !important;
    }

    body.zlc-site .navbar-main .nav-mobile-actions .btn-outline-zlc.nav-mobile-actions-btn {
        background: rgba(198, 122, 51, 0.08) !important;
        border-color: var(--zlc-orange-cta) !important;
        color: var(--zlc-orange-cta) !important;
    }

    body.zlc-site .btn-outline-zlc.btn-sm,
    body.zlc-site .btn-outline-light-zlc.btn-sm,
    body.zlc-site .btn-primary-zlc.btn-sm {
        min-height: 44px;
        font-size: clamp(0.85rem, 2.5vw, 0.9375rem);
        padding: clamp(0.55rem, 1.8vw, 0.65rem) clamp(0.9rem, 2.8vw, 1.1rem);
    }

    body.zlc-site .courses-filter-btn {
        min-height: 44px;
    }

    body.zlc-site .related-nav-links .related-nav-btn {
        width: auto !important;
        min-width: calc(50% - 0.5rem);
        flex: 1 1 calc(50% - 0.5rem);
        min-height: 44px;
        font-size: clamp(1rem, 4vw, 1.15rem);
    }

    /* Desktop enroll in navbar: keep compact on mobile when visible */
    body.zlc-site .navbar-main .btn-enroll.d-lg-inline-block {
        width: auto !important;
        min-height: 42px;
    }
}

/* Course registration / Apply Now form */
.apply-section {
    background: #faf7f2;
}

.apply-container {
    max-width: 860px;
}

.apply-letterhead {
    padding: 0 0.5rem;
}

.apply-heading {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--zlc-navy);
    font-size: clamp(1.45rem, 3vw, 1.85rem);
    margin-bottom: 0.45rem;
}

.apply-letterhead-meta {
    color: #6b5a4a;
    font-size: 0.92rem;
    line-height: 1.6;
}

.apply-alert {
    background: #fff5f5;
    border: 1px solid #f0c9c9;
    color: #8a2b2b;
    border-radius: 8px;
    padding: 0.9rem 1.1rem;
    margin-bottom: 1.25rem;
}

.apply-card {
    border: 1px solid #e8dcc8;
    background: #fff;
    border-radius: 10px;
    padding: 1.35rem 1.2rem 1.2rem;
    margin: 0 0 1.2rem;
    min-width: 0;
}

.apply-card-title {
    float: none;
    width: auto;
    font-size: 1.05rem;
    font-weight: 700;
    color: #7A4A2A;
    margin-bottom: 1rem;
    padding: 0;
}

.apply-form .form-control {
    border: 1px solid #d1d5db;
    border-radius: 4px;
    padding: 0.65rem 0.85rem;
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: 0.95rem;
    background: #fff;
}

.apply-form .form-control::placeholder {
    color: #9a8b7c;
    opacity: 1;
}

.apply-form .form-control:focus {
    border-color: rgba(198, 122, 51, 0.7);
    box-shadow: 0 0 0 3px rgba(198, 122, 51, 0.14);
}

.apply-form .form-control.is-invalid {
    border-color: #c53030;
    box-shadow: 0 0 0 3px rgba(197, 48, 48, 0.12);
}

.apply-form .form-control.is-invalid:focus {
    border-color: #c53030;
    box-shadow: 0 0 0 3px rgba(197, 48, 48, 0.16);
}

.apply-field-error {
    color: #c53030;
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.35;
    margin: 0.35rem 0 0;
}

.apply-field-error[hidden] {
    display: none !important;
}

.apply-date-fixed {
    background: #f4efe8 !important;
    color: #4a3b2e;
    pointer-events: none;
    user-select: none;
    min-height: 37px;
}

.apply-form .form-control-file {
    display: block;
    width: 100%;
    font-size: 0.9rem;
    color: #4a3b2e;
}

.apply-note {
    color: #6b5a4a;
    font-size: 0.92rem;
    margin-bottom: 0.9rem;
}

.apply-subheading {
    font-weight: 600;
    color: var(--zlc-navy);
    margin: 1.1rem 0 0.65rem;
}

.apply-course-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
}

@media (min-width: 768px) {
    .apply-course-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.apply-course-option {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 0;
    padding: 1rem 1.05rem;
    border: 2px solid #e8dcc8;
    border-radius: 8px;
    background: #fffdf9;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.apply-course-option:hover,
.apply-course-option:has(input:checked) {
    border-color: var(--zlc-orange-cta);
    background: rgba(198, 122, 51, 0.08);
    box-shadow: 0 4px 14px rgba(122, 74, 42, 0.08);
}

.apply-course-option input {
    margin-top: 0.3rem;
    accent-color: var(--zlc-orange-cta);
}

.apply-course-body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    color: #4a3b2e;
    font-size: 0.92rem;
}

.apply-course-body strong {
    color: var(--zlc-navy);
    font-size: 1rem;
}

.apply-req-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem;
}

.apply-req-list li {
    margin-bottom: 0.7rem;
}

.apply-check {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin: 0;
    font-weight: 400;
    color: #3f3228;
    line-height: 1.5;
    cursor: pointer;
}

.apply-check input {
    margin-top: 0.3rem;
    flex: 0 0 auto;
    width: 1.1rem;
    height: 1.1rem;
    accent-color: var(--zlc-orange-cta);
}

.apply-check.is-invalid {
    color: #8a2b2b;
}

.apply-check.is-invalid input {
    outline: 2px solid #c44;
    outline-offset: 2px;
}

.apply-check-error {
    color: #8a2b2b;
    font-size: 0.92rem;
    margin: 0 0 0.75rem;
}

.apply-pay-title {
    font-size: 1rem;
    font-weight: 700;
    color: #7A4A2A;
    margin-bottom: 0.45rem;
}

.apply-submit-wrap {
    text-align: center;
    padding: 0.35rem 0 0.5rem;
}

.apply-submit-actions {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
    gap: 0.65rem;
}

.apply-submit-btn,
.apply-clear-btn {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-family: var(--zlc-btn-font);
    font-size: clamp(0.78rem, 2.4vw, 0.95rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.7em 0.8em;
    border-radius: 0.5em;
    border-width: 2px;
    border-style: solid;
    min-height: 44px;
}

.apply-clear-btn {
    background: #c0392b !important;
    border-color: #c0392b !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(192, 57, 43, 0.32);
}

.apply-clear-btn:hover,
.apply-clear-btn:focus {
    background: #d94a3b !important;
    border-color: #d94a3b !important;
    color: #fff !important;
    box-shadow: 0 8px 22px rgba(192, 57, 43, 0.45);
}

.apply-clear-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    pointer-events: none;
}

.apply-submit-btn {
    background: var(--zlc-teal) !important;
    border-color: var(--zlc-teal) !important;
    box-shadow: 0 4px 14px rgba(46, 174, 143, 0.32);
}

.apply-submit-btn::after {
    background-color: #3bc4a3;
}

.apply-submit-btn:hover,
.apply-submit-btn:focus {
    border-color: #3bc4a3 !important;
    box-shadow: 0 8px 22px rgba(46, 174, 143, 0.45);
}

.apply-submit-btn:hover::before,
.apply-submit-btn:focus::before,
.apply-submit-btn:hover::after,
.apply-submit-btn:focus::after {
    background-color: #3bc4a3;
}

.apply-submit-btn:active {
    box-shadow: 0 3px 10px rgba(46, 174, 143, 0.35);
}

.apply-submit-btn.is-loading,
.apply-submit-btn:disabled {
    cursor: wait;
    opacity: 0.92;
    pointer-events: none;
}

.apply-submit-btn-wait {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.apply-submit-spinner,
.zlc-submit-overlay-spinner {
    display: inline-block;
    width: 1.05rem;
    height: 1.05rem;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: zlcSubmitSpin 0.7s linear infinite;
}

.zlc-submit-overlay {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: rgba(15, 34, 53, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.zlc-submit-overlay[hidden] {
    display: none !important;
}

.zlc-submit-overlay-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    padding: 1.75rem 1.6rem 1.5rem;
    min-width: 16rem;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(15, 34, 53, 0.25);
    text-align: center;
}

.zlc-submit-overlay-spinner {
    width: 2.25rem;
    height: 2.25rem;
    border-width: 3px;
    border-color: rgba(26, 60, 94, 0.18);
    border-top-color: var(--zlc-teal);
}

.zlc-submit-overlay-text {
    margin: 0;
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: 1rem;
    font-weight: 600;
    color: var(--zlc-navy);
}

@keyframes zlcSubmitSpin {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .apply-submit-spinner,
    .zlc-submit-overlay-spinner {
        animation: none;
        border-top-color: var(--zlc-teal);
    }
}

/* Trust signals */
.trust-bar {
    background: #0f2235;
    color: #fff;
    padding: 0.85rem 0;
    overflow: hidden;
}
.trust-bar--compact {
    padding: 0.65rem 0;
    margin: 0 0 1.5rem;
    border-radius: 10px;
    background: #14324d;
}
.trust-bar-viewport {
    overflow: hidden;
    width: 100%;
}
.trust-bar-track {
    display: flex;
    width: max-content;
    align-items: center;
    animation: trust-bar-scroll 32s linear infinite;
}
.trust-bar:hover .trust-bar-track,
.trust-bar:focus-within .trust-bar-track {
    animation-play-state: paused;
}
@keyframes trust-bar-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .trust-bar-track {
        animation: none;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    .trust-bar-track .trust-bar-list:last-child {
        display: none;
    }
}
.apply-container .trust-bar--compact .trust-bar-viewport {
    max-width: 100%;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}
.trust-bar-list {
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0.75rem 2.25rem;
    margin: 0;
    padding: 0 2.25rem;
    flex-shrink: 0;
}
.trust-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.86rem;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.92);
    white-space: nowrap;
    flex: 0 0 auto;
}
.trust-bar-icon {
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(198, 122, 51, 0.22);
    color: #e8b93a;
    flex-shrink: 0;
}
.trust-bar-text strong {
    color: #fff;
    font-weight: 700;
}

/* Navbar Portal */
.nav-cta-group {
    align-items: center;
    gap: 0.45rem;
}
@media (min-width: 992px) {
    .navbar-main .nav-cta-group {
        margin-left: auto;
        align-self: stretch;
        align-items: stretch;
        gap: 0.35rem;
    }
    .navbar-main .nav-cta-btn {
        margin-left: 0;
    }
}

.page-hero-cta {
    margin-top: 1.15rem;
    min-height: 44px;
}

.apply-letterhead-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--zlc-teal);
    font-weight: 600;
    margin-bottom: 0.15rem;
}
.apply-heading {
    font-size: clamp(1.55rem, 3.4vw, 2rem);
}

.course-card-img {
    overflow: hidden;
}
.course-card-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Page skeleton loaders */
.page-skeleton {
    position: fixed;
    top: var(--site-header-height, 84px);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1020;
    background: #f8f6f1;
    overflow: auto;
    animation: skFadeIn 0.2s ease;
}
.page-skeleton.is-done {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}
html.no-js .page-skeleton,
html.no-js .has-page-skeleton {
    display: none !important;
}
.page-skeleton-inner {
    min-height: 100%;
}
.sk-block {
    background: linear-gradient(90deg, #ece7de 25%, #f4f0e8 37%, #ece7de 63%);
    background-size: 400% 100%;
    animation: skShimmer 1.15s ease-in-out infinite;
    border-radius: 10px;
}
.sk-hero {
    height: min(72vh, 560px);
    border-radius: 0;
}
.sk-page-hero {
    height: min(42vh, 280px);
    border-radius: 0;
}
.sk-card {
    height: 160px;
}
.sk-card--tall {
    height: 280px;
}
.sk-card--sidebar {
    height: 260px;
}
.sk-stat {
    height: 72px;
}
.sk-tile {
    height: 180px;
}
.sk-map {
    height: 220px;
}
.sk-form {
    height: 220px;
}
.sk-pills {
    height: 44px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}
.sk-line {
    height: 18px;
    max-width: 280px;
}
.sk-line--center {
    margin-left: auto;
    margin-right: auto;
}
.sk-line--long {
    max-width: 100%;
    height: 14px;
}
.sk-line--mid {
    max-width: 55%;
    height: 14px;
}
@keyframes skShimmer {
    0% { background-position: 100% 0; }
    100% { background-position: 0 0; }
}
@keyframes skFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
    .page-skeleton,
    .sk-block {
        animation: none;
    }
    .page-skeleton {
        display: none !important;
    }
}

/* Mobile launch polish */
@media (max-width: 767.98px) {
    .trust-bar-item {
        font-size: 0.78rem;
        flex: 0 0 auto;
        justify-content: flex-start;
    }
    .page-hero-inner {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }
    .page-hero-cta,
    .hero-content .hero-apply-btn {
        min-height: 48px;
    }
    .page-cta .page-cta-actions {
        width: 100%;
    }
    input.form-control,
    select.form-control,
    textarea.form-control {
        font-size: 16px !important;
    }
}

.zlc-error-page {
    min-height: var(--page-hero-min-height, 70vh);
    display: flex;
    align-items: center;
    padding: 3rem 0 4rem;
    background: var(--zlc-ivory);
}

.zlc-error-page-inner {
    display: flex;
    justify-content: center;
}

.zlc-error-card {
    width: 100%;
    max-width: 36rem;
    text-align: center;
    background: #fff;
    border-radius: 16px;
    padding: 2.25rem 1.75rem 2rem;
    box-shadow: 0 18px 48px rgba(15, 34, 53, 0.12);
    border-top: 4px solid var(--zlc-orange-cta);
}

.zlc-error-logo {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.zlc-error-logo img {
    width: 168px;
    height: auto;
}

.zlc-error-code {
    margin: 0.35rem 0 0.15rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3.5rem, 12vw, 5.5rem);
    font-weight: 700;
    line-height: 1;
    color: var(--zlc-navy);
    letter-spacing: 0.04em;
}

.zlc-error-code--offline {
    display: flex;
    justify-content: center;
    color: var(--zlc-orange-cta);
}

.zlc-error-wifi {
    display: block;
}

.zlc-error-title {
    margin: 0.35rem 0 0.75rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 4vw, 2.15rem);
    font-weight: 700;
    color: var(--zlc-navy);
}

.zlc-error-text {
    margin: 0 auto 1.5rem;
    max-width: 28rem;
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: 1rem;
    line-height: 1.55;
    color: #3d4a58;
}

.zlc-error-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.zlc-error-btn {
    min-width: 9.5rem;
    font-family: var(--zlc-btn-font);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 0.6rem 1.4rem;
    border-radius: 4px;
}

.zlc-error-btn--primary {
    background: var(--zlc-orange-cta);
    border: 2px solid var(--zlc-orange-cta);
    color: #fff !important;
}

.zlc-error-btn--primary:hover,
.zlc-error-btn--primary:focus {
    background: #e09050;
    border-color: #e09050;
    color: #fff !important;
}

.zlc-error-btn--secondary {
    background: transparent;
    border: 2px solid var(--zlc-navy);
    color: var(--zlc-navy) !important;
}

.zlc-error-btn--secondary:hover,
.zlc-error-btn--secondary:focus {
    background: var(--zlc-navy);
    color: #fff !important;
}

.zlc-offline-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2200;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    background: var(--zlc-navy-dark);
    color: #fff;
    font-family: 'Poppins', var(--zlc-btn-font);
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 8px 24px rgba(15, 34, 53, 0.28);
}

.zlc-offline-banner[hidden] {
    display: none !important;
}

.zlc-offline-banner-retry {
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: var(--zlc-orange-cta);
    color: #fff;
    font-weight: 700;
    border-radius: 4px;
    padding: 0.3rem 0.85rem;
    cursor: pointer;
}

html.is-offline .whatsapp-float,
html.is-offline .home-float {
    display: none !important;
}

@media (max-width: 575.98px) {
    .zlc-error-card {
        padding: 1.75rem 1.15rem 1.6rem;
    }

    .zlc-error-btn {
        width: 100%;
    }
}

