* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Sora", sans-serif;
}

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
    background: #f2fbfb;
}

nav {
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    padding: 1rem 1.25rem;
    gap: 1rem;
    transition:
        background-color 0.28s ease,
        backdrop-filter 0.28s ease,
        box-shadow 0.28s ease;
}

nav.is-scrolled {
    background-color: rgba(7, 23, 31, 0.58);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

nav .logo {
    flex-shrink: 0;
    color: #fff;
    gap: 10px;
    display: flex;
    align-items: center;
    font-size: 20px;
}

nav .logo-img {
    width: 50px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1rem;
    justify-content: center;
    margin: 0;
    margin-left: 100px;
    padding: 0;
    flex: 1;
}

nav ul li {
    position: relative;
}

nav .nav-has-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -12px;
    height: 12px;
}

nav ul li a,
nav ul li .nav-dropdown-toggle {
    position: relative;
    text-decoration: none;
    color: rgba(235, 247, 249, 0.96);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition:
        color 0.25s ease,
        text-shadow 0.25s ease;
}

nav ul li .nav-dropdown-toggle {
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

nav ul li a::after,
nav ul li .nav-dropdown-toggle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    border-radius: 3px;
    background: 15px linear-gradient(120deg, #7ee5e5, #44b8bf);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s ease;
}

nav ul li a:hover,
nav ul li .nav-dropdown-toggle:hover {
    color: #b4f6f6;
    text-shadow: none;
}

nav ul li a:hover::after,
nav ul li .nav-dropdown-toggle:hover::after {
    transform: scaleX(1);
}

nav .nav-dropdown-toggle .bi {
    font-size: 0.72rem;
    transition: transform 0.2s ease;
}

nav .nav-has-dropdown.is-open > .nav-dropdown-toggle .bi,
nav .nav-has-dropdown:hover > .nav-dropdown-toggle .bi,
nav .nav-has-dropdown:focus-within > .nav-dropdown-toggle .bi {
    transform: rotate(180deg);
}

nav .nav-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 190px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 0;
    padding: 8px;
    list-style: none;
    border-radius: 12px;
    border: 1px solid rgba(151, 236, 240, 0.25);
    background: linear-gradient(
        170deg,
        rgba(6, 34, 44, 0.96),
        rgba(8, 62, 76, 0.94)
    );
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;
    z-index: 6;
}

nav .nav-dropdown li {
    width: 100%;
}

nav .nav-dropdown a {
    width: 100%;
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    color: #e7fbfd;
    text-decoration: none;
    text-transform: none;
    font-size: 0.83rem;
    letter-spacing: 0.01em;
    font-weight: 500;
}

nav .nav-dropdown a::after {
    display: none;
}

nav .nav-dropdown a:hover {
    color: #dffbff;
    background: rgba(98, 213, 217, 0.18);
}

nav .nav-has-dropdown:hover > .nav-dropdown,
nav .nav-has-dropdown:focus-within > .nav-dropdown,
nav .nav-has-dropdown.is-open > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

nav .sosmed-icon {
    display: flex;
    align-items: center;
    gap: 1rem;
}

nav .sosmed-icon a {
    color: #e9fdff;
    font-size: 1.1rem;
    transition:
        transform 0.2s ease,
        color 0.2s ease;
}

nav .sosmed-icon a:hover {
    transform: translateY(-2px);
}

nav .sosmed-icon .icon-youtube {
    color: #ff0000;
} /* merah */
nav .sosmed-icon .icon-tiktok {
    color: #111111;
} /* hitam */
nav .sosmed-icon .icon-instagram {
    color: #e4405f;
} /* opsional */
nav .sosmed-icon .icon-facebook {
    color: #4840e4;
} /* opsional */
nav .sosmed-icon .icon-whatsapp {
    color: #25d366;
} /* opsional */

.whatsapp-fab {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e, #1fd16a);
    background-size: 180% 180%;
    color: #ffffff;
    font-size: 1.9rem;
    box-shadow: 0 18px 32px rgba(18, 140, 126, 0.35);
    z-index: 999;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease, background-position 0.35s ease;
    overflow: visible;
    isolation: isolate;
}

.whatsapp-fab:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 22px 38px rgba(18, 140, 126, 0.45);
    color: #ffffff;
    filter: saturate(1.05);
    background-position: 100% 0%;
    animation: whatsappFabPulse 1.4s ease-in-out infinite;
}

.whatsapp-fab::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.22), transparent 70%);
    opacity: 0;
    transform: scale(0.86);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: -1;
}

.whatsapp-fab:hover::before {
    opacity: 1;
    transform: scale(1.1);
}

.whatsapp-fab-tooltip {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(8, 28, 25, 0.92);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.whatsapp-fab-tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border-width: 7px 0 7px 8px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(8, 28, 25, 0.92);
}

.whatsapp-fab:hover .whatsapp-fab-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

@keyframes whatsappFabPulse {
    0% {
        box-shadow: 0 18px 32px rgba(18, 140, 126, 0.35);
    }
    50% {
        box-shadow: 0 22px 42px rgba(18, 140, 126, 0.5);
    }
    100% {
        box-shadow: 0 18px 32px rgba(18, 140, 126, 0.35);
    }
}

nav .ppdb-btn button {
    margin-left: 0;
    color: #e9fdff;
    padding: 11px 22px;
    border-radius: 999px;
    border: 1px solid rgba(88, 210, 210, 0.75);
    position: relative;
    isolation: isolate;
    overflow: hidden;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(
        120deg,
        rgba(88, 210, 210, 0.3),
        rgba(88, 210, 210, 0.14)
    );
    box-shadow: 0 8px 18px rgba(11, 92, 92, 0.32);
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        color 0.28s ease;
}

nav .ppdb-btn button::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 999px;
    background: linear-gradient(120deg, #50d6d6, #2fa1a8);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease-in-out;
}

nav .ppdb-btn button:hover::before {
    transform: scaleX(1);
}

nav .ppdb-btn button:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(24, 126, 126, 0.45);
}

nav .lang-switch {
    display: inline-flex;
    align-items: center;
    margin-left: 6px;
    /* ensure it stays visible alongside other nav items */
}

nav .desktop-lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #b8f7f9;
    background: rgba(28, 165, 165, 0.12);
    border: 1px solid rgba(130, 224, 228, 0.25);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
    text-transform: none;
}

nav .desktop-lang-toggle:hover {
    background: rgba(28, 165, 165, 0.25);
    border-color: rgba(130, 224, 228, 0.5);
    color: #ffffff;
    transform: translateY(-1px);
}

nav .desktop-lang-toggle .bi-translate {
    font-size: 1.05rem;
}

nav .nav-mobile-actions {
    display: none;
}

body > nav ul li.nav-mobile-only {
    display: none;
}

.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a1a22;
}

.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 75%;
}

.hero-media .swiper,
.hero-media .swiper-wrapper,
.hero-media .swiper-slide {
    width: 100%;
    height: 100%;
}

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

.hero-slide-media {
    width: 100%;
    height: 100%;
    overflow: hidden;
    will-change: transform;
}

.hero-slide-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transform-origin: center center;
}

.hero-poster {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.2;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.hero-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(4, 18, 24, 0.15), rgba(5, 16, 22, 0.65)),
        radial-gradient(
            circle at 45% 35%,
            rgba(0, 0, 0, 0.1),
            rgba(5, 18, 24, 0.72)
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #f4fbff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: min(92vw, 780px);
    padding: 2.4rem 2.8rem;
    border-radius: 20px;
    transform: translateY(6px);
    animation: heroContentReveal 650ms ease-out forwards;
}

.hero-eyebrow {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.32rem;
    text-transform: uppercase;
    color: rgba(225, 249, 252, 0.95);
}

.hero-title {
    margin: 0;
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    line-height: 1.05;
    text-transform: none;
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow:
        0 8px 24px rgba(0, 0, 0, 0.55),
        0 0 16px rgba(66, 176, 176, 0.2);
}

.hero-title span {
    color: #5fe2e2;
}

.hero-actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-btn {
    color: #ffffff;
    text-decoration: none;
    padding: 11px 26px;
    border-radius: 999px;
    border: 1px solid #50d6d6;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    transition: all 0.2s ease;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(120deg, #50d6d6, #2fa1a8);
    box-shadow: 0 8px 18px rgba(11, 92, 92, 0.32);
}

.hero-btn::before {
    display: none;
}

.hero-btn:hover {
    opacity: 0.85;
    box-shadow: 0 12px 24px rgba(24, 126, 126, 0.45);
}

.hero-btn:active {
    opacity: 0.7;
    transform: scale(0.98);
}

.hero-btn.is-outline {
    background: rgba(6, 34, 44, 0.38);
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.hero-btn.is-outline::before {
    display: none;
}

@keyframes heroContentReveal {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.about-smk-section {
    padding: 180px 0 68px;
    position: relative;
    z-index: 1;
    background: #f2fbfb;
}

.about-smk-wrap {
    width: min(1280px, 92vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: #f2fbfb;
}

.about-card {
    border-right: 1px solid #e3e3e3;
    margin-top: -225px;
    min-height: 560px;
    display: flex;
    flex-direction: column;
}

.about-card:last-child {
    border-right: 0;
}

.about-head {
    background:
        radial-gradient(
            circle at 25% 15%,
            rgba(88, 210, 210, 0.18),
            transparent 48%
        ),
        linear-gradient(160deg, rgba(2, 10, 16, 0.72), rgb(5, 139, 133));
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    backdrop-filter: blur(4px);
    min-height: 142px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
}

.about-head-link {
    display: block;
    text-decoration: none;
}

.about-head-link:hover .about-head {
    filter: brightness(1.03);
}

.about-icon {
    font-size: 2.35rem;
    color: #ffffff;
}

.about-head h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.about-head-cta {
    display: inline-block;
    margin-top: 2px;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    transition:
        transform 0.2s ease,
        letter-spacing 0.2s ease;
}

.about-head-link:hover .about-head-cta {
    transform: translateX(3px);
    letter-spacing: 0.02em;
}

.about-image-frame {
    display: block;
    text-decoration: none;
    flex-shrink: 0;
}

.img-container {
    overflow: hidden;
    cursor: pointer;
    background: #00836b;
}

.about-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    filter: opacity(1);
    transition:
        transform 0.55s ease,
        filter 0.55s ease;
}
.about-image:hover {
    transform: scale(1.2);
    filter: opacity(0.8);
}

.about-body {
    padding: 40px 28px 34px;
    flex: 1;
}
.about-body p {
    margin: 0;
    color: #595959;
    font-size: 1.05rem;
    line-height: 1.7;
}

.feature-carousel-section {
    padding: 80px 0 76px;
    background: #f2fbfb;
}

.feature-carousel-badges {
    width: fit-content;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.feature-carousel-title {
    width: fit-content;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 30px;
    border-radius: 999px;
    border: 1px solid rgba(114, 201, 198, 0.45);
    background: linear-gradient(180deg, #d9eceb, #c8e2e1);
    font-family: "Sora", sans-serif;
    font-size: clamp(1.1rem, 2vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #4fb3b0;
    box-shadow: 0 8px 18px rgba(72, 141, 139, 0.18);
}

.feature-tab {
    appearance: none;
    cursor: pointer;
    transition:
        transform 0.22s ease,
        filter 0.22s ease,
        opacity 0.22s ease,
        box-shadow 0.22s ease;
}

.feature-tab:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
}

.feature-tab:not(.is-active) {
    opacity: 0.72;
}

.feature-tab.is-active {
    opacity: 1;
    box-shadow: 0 10px 22px rgba(59, 127, 132, 0.28);
}

.feature-carousel-title.is-alt {
    border-color: rgba(50, 155, 162, 0.5);
    background: linear-gradient(180deg, #cce9ea, #badfe0);
    color: #2e8f96;
}

.feature-carousel-title i {
    font-size: 0.82em;
    color: #58bdb9;
}

.feature-carousel-section > p {
    margin: 0 auto 24px;
    width: fit-content;
    text-align: center;
    color: #2d7f84;
    font-weight: 500;
}

.feature-carousel {
    width: min(1240px, 92vw);
    margin: 0 auto;
    position: relative;
    min-height: 630px;
}

.feature-card {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(960px, 90vw);
    min-height: 430px;
    display: grid;
    grid-template-columns: minmax(360px, 550px) minmax(0, 1fr);
    align-items: center;
    gap: 34px;
    padding: 24px 30px;
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 25% 15%,
            rgba(88, 210, 210, 0.18),
            transparent 48%
        ),
        linear-gradient(160deg, rgba(2, 10, 16, 0.72), rgb(5, 139, 133));
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    backdrop-filter: blur(4px);
    transform: translateX(-50%) scale(0.92);
    transform-origin: center;
    opacity: 0;
    transition:
        transform 0.5s ease,
        opacity 0.5s ease,
        filter 0.5s ease;
    pointer-events: none;
    box-shadow: 0 20px 44px rgba(85, 63, 98, 0.2);
}

.feature-card.is-active {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    z-index: 1;
    filter: none;
    pointer-events: auto;
}

.feature-card.is-prev,
.feature-card.is-next {
    opacity: 0.62;
    z-index: -1;
}

.feature-card.is-prev {
    transform: translateX(-73%) scale(0.9) rotate(-3deg);
}

.feature-card.is-next {
    transform: translateX(-27%) scale(0.9) rotate(3deg);
}

.feature-card.is-hidden {
    opacity: 0;
    z-index: 1;
    transform: translateX(-50%) scale(0.84);
}

.feature-card.is-filtered-out {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    z-index: -2;
}

.feature-media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.feature-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 70%, rgb(5, 139, 133) 100%);
    pointer-events: none;
}

.feature-media img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.feature-card[data-feature-group="organization"] .feature-media {
    background: linear-gradient(
        160deg,
        rgba(8, 58, 72, 0.9),
        rgba(10, 109, 123, 0.82)
    );
}

.feature-card[data-feature-group="organization"] .feature-media::after {
    background: linear-gradient(
        180deg,
        rgba(4, 24, 32, 0.08) 0%,
        rgba(5, 139, 133, 0.38) 100%
    );
}

.feature-card[data-feature-group="organization"] .feature-media img {
    object-fit: contain;
    object-position: center;
    padding: 18px;
}

.feature-media img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.feature-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-content .ph {
    font-size: 2.1rem;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1;
}

.feature-content h3 {
    margin: 0 0 16px;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.65rem, 2.8vw, 3rem);
    color: #ffffff;
}

.feature-content p {
    margin: 0 0 24px;
    max-width: 46ch;
    font-size: clamp(1rem, 1.2vw, 1.12rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
}

.feature-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 10px;
    background: #fff;
    color: rgb(5, 139, 133);
    font-weight: 600;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.feature-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 19, 107, 0.24);
}

.feature-controls {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 1;
}

.feature-nav {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 0;
    cursor: pointer;
    background: rgb(5, 139, 133);
    color: #fff;
    font-size: 1.45rem;
    font-weight: 600;
    line-height: 1;
    transition:
        transform 0.2s ease,
        filter 0.2s ease;
}

.feature-nav:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.feature-dots {
    display: flex;
    align-items: center;
    gap: 9px;
}

.feature-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    background: rgba(47, 131, 137, 0.35);
    cursor: pointer;
    transition:
        width 0.25s ease,
        background-color 0.25s ease;
}

.feature-dot.is-active {
    width: 26px;
    background: rgb(5, 139, 133);
}

.alumni-section {
    padding: 86px 0 94px;
    background: #f2fbfb;
}

.alumni-shell {
    width: min(1180px, 92vw);
    margin: 0 auto;
}

.alumni-head {
    margin-bottom: 24px;
}

.alumni-head h2 {
    margin: 10px 0 8px;
    color: #13676d;
    font-size: clamp(1.55rem, 2.8vw, 2.55rem);
    font-family: "Outfit", sans-serif;
}

.alumni-head p {
    margin: 0;
    color: #3b6d72;
    max-width: 68ch;
    line-height: 1.72;
}

.alumni-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px;
    border-radius: 999px;
    font-size: 0.74rem;
    letter-spacing: 0.11em;
    font-weight: 700;
    background: linear-gradient(
        120deg,
        rgba(53, 189, 196, 0.34),
        rgba(140, 230, 233, 0.22)
    );
    border: 1px solid rgba(105, 206, 210, 0.42);
}

.alumni-badge span {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 999px;
    background: linear-gradient(120deg, #0f8b92, #38b9bf);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.alumni-slide-container {
    position: relative;
    padding-bottom: 8px;
}

.alumni-card-list {
    list-style: none;
    margin: 0;
    padding: 6px 0;
}

.alumni-card-item {
    height: auto;
}

.alumni-card-link {
    display: block;
    height: 100%;
    min-height: 392px;
    text-decoration: none;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid rgba(26, 127, 133, 0.2);
    background: #fff;
    box-shadow: 0 14px 30px rgba(23, 114, 118, 0.12);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.alumni-card-link:hover {
    transform: translateY(-6px);
    border-color: rgba(14, 130, 137, 0.42);
    box-shadow: 0 20px 36px rgba(23, 114, 118, 0.2);
}

.alumni-card-image {
    width: 100%;
    height: 220px;
    object-fit: contain;
    object-position: center top;
    padding: 0 14px 8px;
    background: linear-gradient(160deg, #f7fbfc, #edf7f8);
    border: 1px solid rgba(26, 127, 133, 0.12);
    border-radius: 12px;
    transform: translateY(-18px);
}

.alumni-card-badge {
    color: #0b7177;
    background: #d8f3f4;
    margin: 16px 0 14px;
    padding: 8px 12px;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    width: fit-content;
    border-radius: 999px;
}

.alumni-card-title {
    color: #164f54;
    font-size: 1.04rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 20px;
}

.alumni-card-button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid #0e8389;
    color: #0e8389;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease;
}

.alumni-card-link:hover .alumni-card-button {
    background: #0e8389;
    color: #fff;
    transform: translateX(3px);
}

.alumni-controls {
    position: static;
    width: fit-content;
    margin: 20px auto 0;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(20, 118, 123, 0.12);
    box-shadow: 0 8px 18px rgba(16, 93, 97, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 1;
}

.alumni-controls .swiper-button-prev,
.alumni-controls .swiper-button-next {
    display: none !important;
}

.alumni-section .swiper-pagination {
    position: static;
    width: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.alumni-section .swiper-pagination-bullet {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(20, 118, 123, 0.2);
    background: #fff;
    opacity: 1;
    color: #3a7277;
    font-size: 0.69rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.alumni-section .swiper-pagination-bullet:hover {
    border-color: rgba(14, 131, 137, 0.42);
    box-shadow: 0 3px 8px rgba(14, 131, 137, 0.16);
}

.alumni-section .swiper-pagination-bullet-active {
    background: #0d8086;
    border-color: #0d8086;
    color: #fff;
    transform: translateY(-1px) scale(1.03);
}

.alumni-slide-container .swiper-slide {
    opacity: 0.62;
    transform: scale(0.9);
    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}

.alumni-slide-container .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.alumni-slide-container .swiper-slide-next,
.alumni-slide-container .swiper-slide-prev {
    opacity: 0.85;
}

.career-section {
    padding: 86px 0 90px;
    background: #f2fbfb;
}

.career-shell {
    width: min(1180px, 92vw);
    margin: 0 auto;
}

.career-head {
    text-align: center;
    margin-bottom: 36px;
}

.career-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(14, 131, 137, 0.12);
    color: #0e8389;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.career-head h2 {
    margin: 12px 0 10px;
    font-size: clamp(2rem, 4vw, 3rem);
    font-family: "Outfit", sans-serif;
    color: #0c3337;
}

.career-head h2 span {
    font-style: italic;
    color: #0e8389;
}

.career-head p {
    margin: 0 auto 18px;
    width: min(640px, 94%);
    color: #3a5f62;
    line-height: 1.7;
}

.career-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: #0f3f43;
    border: 1px solid rgba(14, 131, 137, 0.35);
    background: linear-gradient(
        120deg,
        rgba(126, 229, 229, 0.5),
        rgba(68, 184, 191, 0.25)
    );
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.career-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(14, 131, 137, 0.18);
}

.career-footer {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    text-align: center;
}

.career-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 10px 0;
}

.career-line {
    position: absolute;
    left: 50%;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: rgba(14, 131, 137, 0.2);
    transform: translateX(-50%);
}

.career-step {
    position: relative;
    width: calc(50% - 36px);
}

.career-step::before {
    content: "";
    position: absolute;
    top: 18px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #0e8389;
    box-shadow: 0 0 0 6px rgba(14, 131, 137, 0.12);
}

.career-step.is-left {
    align-self: flex-start;
    padding-right: 42px;
}

.career-step.is-left::before {
    right: -7px;
}

.career-step.is-right {
    align-self: flex-end;
    padding-left: 42px;
}

.career-step.is-right::before {
    left: -7px;
}

.career-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(14, 131, 137, 0.15);
    color: #0e8389;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.career-pill.is-finish {
    background: rgba(14, 131, 137, 0.15);
    color: #0e8389;
}

.career-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(14, 131, 137, 0.12);
    box-shadow: 0 14px 28px rgba(12, 53, 57, 0.08);
}

.career-card-trigger {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    text-align: left;
    cursor: pointer;
    font: inherit;
    color: inherit;
    border: 0;
    background: #ffffff;
    appearance: none;
    -webkit-appearance: none;
    pointer-events: auto;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.career-card-trigger:hover,
.career-card-trigger:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(14, 131, 137, 0.28);
    box-shadow: 0 18px 32px rgba(12, 53, 57, 0.12);
}

.career-card-trigger:focus-visible {
    outline: 3px solid rgba(14, 131, 137, 0.24);
    outline-offset: 3px;
}

.career-card-copy {
    flex: 1;
    min-width: 0;
}

.career-card-copy p {
    margin-bottom: 10px;
}

.career-card-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.83rem;
    font-weight: 700;
    color: #0e8389;
}

.career-modal-open {
    overflow: hidden;
}

.career-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.career-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.career-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 23, 25, 0.62);
    backdrop-filter: blur(8px);
}

.career-modal-panel {
    position: relative;
    width: min(760px, 100%);
    max-height: min(82vh, 920px);
    overflow: auto;
    padding: 28px 28px 26px;
    border-radius: 26px;
    background:
        radial-gradient(circle at top right, rgba(95, 229, 232, 0.16), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f5fcfc 100%);
    border: 1px solid rgba(14, 131, 137, 0.12);
    box-shadow: 0 30px 80px rgba(6, 33, 35, 0.35);
}

.career-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(14, 131, 137, 0.1);
    color: #0e8389;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
}

.career-modal-step {
    margin: 0 0 8px;
    color: #0e8389;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.career-modal-title {
    margin: 0 0 10px;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.45rem, 3vw, 2.25rem);
    color: #0c3337;
}

.career-modal-summary {
    margin: 0 0 18px;
    color: #355b5f;
    line-height: 1.75;
}

.career-modal-body {
    padding: 18px 18px 6px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(14, 131, 137, 0.1);
}

.career-modal-list {
    margin: 0;
    padding-left: 1.15rem;
    color: #24484c;
    line-height: 1.75;
}

.career-modal-list li + li {
    margin-top: 12px;
}

.career-modal-footer {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(14, 131, 137, 0.08);
    color: #21595e;
    font-weight: 600;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .career-modal {
        padding: 14px;
    }

    .career-modal-panel {
        max-height: 88vh;
        padding: 22px 18px 20px;
        border-radius: 22px;
    }

    .career-modal-body {
        padding: 16px 14px 4px;
        border-radius: 18px;
    }
}

.profile-section {
    position: relative;
    padding: 92px 0 96px;
    background: #f2fbfb;
    overflow: hidden;
}

.profile-shell {
    width: min(1180px, 92vw);
    margin: 0 auto;
}

.profile-head {
    text-align: center;
    margin-bottom: 34px;
}

.profile-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(13, 128, 134, 0.12);
    color: #0d8086;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.profile-head h2 {
    margin: 14px 0 0;
    color: #102f34;
    font-size: clamp(2rem, 5vw, 3.3rem);
    line-height: 1.05;
    font-family: "Sora", sans-serif;
    font-weight: 700;
}

.profile-head h2 span {
    color: #d6a826;
}

.profile-head h2 strong {
    color: #11aeb2;
    font-weight: 800;
}

.profile-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.9fr);
    gap: 28px;
    align-items: center;
    margin-bottom: 36px;
}

.profile-media {
    position: relative;
}

.profile-frame {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    border-radius: 30px;
    border: 1px solid rgba(132, 220, 222, 0.24);
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.88),
        rgba(238, 250, 250, 0.8)
    );
    box-shadow:
        0 24px 50px rgba(10, 64, 69, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.45) inset;
}

.profile-frame::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 24px;
    background:
        linear-gradient(
            180deg,
            rgba(14, 131, 137, 0.08),
            rgba(14, 131, 137, 0)
        ),
        rgba(255, 255, 255, 0.24);
    pointer-events: none;
}

.profile-main-image {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
}

.profile-frame-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    backdrop-filter: blur(6px);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}

.profile-frame-nav:hover {
    background: rgba(13, 128, 134, 0.72);
    transform: translateY(-50%) scale(1.06);
}

.profile-frame-nav.is-prev {
    left: 16px;
}

.profile-frame-nav.is-next {
    right: 16px;
}

.profile-copy {
    padding: 14px 4px 14px 0;
}

.profile-copy p {
    margin: 0 0 22px;
    font-size: clamp(1.08rem, 2vw, 1.45rem);
    line-height: 1.65;
    color: #17373b;
    max-width: 23ch;
}

.profile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border-radius: 999px;
    background: linear-gradient(120deg, #0d8086, #11aeb2);
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: 0 14px 26px rgba(13, 128, 134, 0.2);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.profile-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(13, 128, 134, 0.26);
}

.profile-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.profile-feature-card {
    position: relative;
    min-height: 220px;
    padding: 26px 24px;
    border-radius: 24px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at top right,
            rgba(255, 255, 255, 0.12),
            transparent 30%
        ),
        linear-gradient(160deg, #0b7278 0%, #0d8f95 48%, #13a9ac 100%);
    box-shadow: 0 24px 36px rgba(10, 88, 92, 0.16);
    overflow: hidden;
}

.profile-feature-card::after {
    content: "";
    position: absolute;
    inset: auto -30px -40px auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.profile-feature-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
}

.profile-feature-card h3 {
    position: relative;
    margin: 0 0 10px;
    font-size: 1.24rem;
    line-height: 1.25;
    font-family: "Sora", sans-serif;
    z-index: 1;
}

.profile-feature-card p {
    position: relative;
    margin: 0;
    color: rgba(241, 255, 255, 0.94);
    line-height: 1.7;
    font-size: 0.95rem;
    z-index: 1;
}

.visi-mission-section {
    --vm-ratio: 1.618;
    --vm-space-xs: 0.75rem;
    --vm-space-sm: 1rem;
    --vm-space-md: 1.618rem;
    --vm-space-lg: 2.618rem;
    --vm-space-xl: 4.236rem;
    --vm-text-sm: clamp(0.82rem, 0.78rem + 0.16vw, 0.92rem);
    --vm-text-base: clamp(1rem, 0.97rem + 0.18vw, 1.08rem);
    --vm-text-md: clamp(1.18rem, 1.05rem + 0.62vw, 1.618rem);
    --vm-text-lg: clamp(1.618rem, 1.32rem + 1.18vw, 2.618rem);
    --vm-text-xl: clamp(2.05rem, 1.62rem + 1.95vw, 4.236rem);
    position: relative;
    padding: 108px 0 118px;
    background:
        radial-gradient(
            circle at 16% 10%,
            rgba(17, 174, 178, 0.1),
            transparent 28%
        ),
        radial-gradient(
            circle at 86% 16%,
            rgba(214, 168, 38, 0.12),
            transparent 24%
        ),
        linear-gradient(180deg, #f9fcfb 0%, #f2fbfb 100%);
    overflow: hidden;
}

.visi-mission-shell {
    width: min(1160px, 92vw);
    margin: 0 auto;
    display: grid;
    gap: var(--vm-space-lg);
}

.visi-mission-head {
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.visi-mission-badge,
.visi-mission-sidebadge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(13, 128, 134, 0.12);
    color: #0d8086;
    font-size: var(--vm-text-sm);
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.visi-mission-head h2 {
    margin: var(--vm-space-sm) 0 0.9rem;
    color: #102f34;
    font-size: var(--vm-text-xl);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-family: "Sora", sans-serif;
}

.visi-mission-head p {
    margin: 0 auto;
    max-width: 62ch;
    color: #436367;
    line-height: 1.78;
    font-size: var(--vm-text-base);
}

.visi-mission-vision-card {
    position: relative;
    margin: 0 auto;
    padding: 2.618rem 2.618rem 2.05rem;
    max-width: 1040px;
    border-radius: 32px;
    background:rgba(8, 57, 61, 0.98);
    box-shadow: 0 8px 26px rgba(9, 72, 78, 0.18);
    overflow: hidden;
}

.visi-mission-vision-card::before {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.visi-mission-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--vm-space-sm);
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #eaffff;
    font-size: var(--vm-text-sm);
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.visi-mission-vision-card blockquote {
    position: relative;
    margin: 0;
    max-width: 19ch;
    color: #ffffff;
    font-family: "Sora", sans-serif;
    font-size: var(--vm-text-lg);
    line-height: 1.18;
    letter-spacing: -0.025em;
    font-weight: 700;
    z-index: 1;
}

.visi-mission-accent {
    position: absolute;
    right: 32px;
    bottom: 26px;
    display: flex;
    gap: 10px;
}

.visi-mission-accent span {
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
}

.visi-mission-accent span:nth-child(2) {
    background: rgba(214, 168, 38, 0.9);
}

.visi-mission-accent span:nth-child(3) {
    background: rgba(17, 174, 178, 0.9);
}

.visi-mission-mission-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.38fr);
    gap: var(--vm-space-md);
    align-items: start;
}

.visi-mission-sidecopy {
    position: sticky;
    top: 110px;
    padding: 2rem 1.8rem;
    border-radius: 24px;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.92),
        rgba(243, 251, 250, 0.88)
    );
    border: 1px solid rgba(13, 128, 134, 0.12);
    box-shadow: 0 18px 34px rgba(11, 73, 78, 0.08);
}

.visi-mission-sidecopy h3 {
    margin: var(--vm-space-sm) 0 0.85rem;
    color: #11353a;
    font-family: "Sora", sans-serif;
    font-size: var(--vm-text-md);
    line-height: 1.28;
    letter-spacing: -0.02em;
}

.visi-mission-sidecopy p {
    margin: 0;
    color: #456468;
    line-height: 1.78;
    font-size: var(--vm-text-base);
}

.visi-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--vm-space-md);
}

.visi-mission-card {
    position: relative;
    min-height: 260px;
    padding: 2rem 1.75rem 1.75rem;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(13, 128, 134, 0.12);
    box-shadow: 0 22px 36px rgba(11, 73, 78, 0.08);
    overflow: hidden;
}

.visi-mission-card::after {
    content: "";
    position: absolute;
    inset: auto -18px -24px auto;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(17, 174, 178, 0.08);
}

.visi-mission-card-mark {
    width: 48px;
    height: 48px;
    margin-bottom: var(--vm-space-sm);
    border-radius: 14px;
    background: linear-gradient(140deg, #0d8086, #12adb1);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Sora", sans-serif;
    font-size: var(--vm-text-base);
    font-weight: 700;
    box-shadow: 0 14px 22px rgba(13, 128, 134, 0.18);
}

.visi-mission-card h4 {
    position: relative;
    margin: 0 0 0.75rem;
    color: #15373c;
    font-family: "Sora", sans-serif;
    font-size: var(--vm-text-md);
    line-height: 1.28;
    letter-spacing: -0.02em;
    z-index: 1;
}

.visi-mission-card p {
    position: relative;
    margin: 0;
    color: #4b686c;
    line-height: 1.75;
    font-size: var(--vm-text-base);
    z-index: 1;
}

.career-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(14, 131, 137, 0.12);
    color: #0e8389;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.career-card h3 {
    margin: 0 0 6px;
    font-size: 1.1rem;
    color: #0b2f33;
}

.career-card p {
    margin: 0;
    color: #3d5f62;
    line-height: 1.65;
    font-size: 0.95rem;
}

.news-content-section {
    padding: 86px 0 96px;
    background: #f2fbfb;
}

.news-content-shell {
    width: min(1180px, 92vw);
    margin: 0 auto;
}

.news-content-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 38px;
    flex-wrap: wrap;
}

.news-content-header-text {
    flex: 1;
    min-width: 280px;
}

.news-content-search {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.news-search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 14px;
    background: #fff;
    border: 1.5px solid rgba(13, 128, 134, 0.18);
    box-shadow: 0 4px 16px rgba(11, 73, 78, 0.06);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.news-search-box:focus-within {
    border-color: rgba(13, 128, 134, 0.45);
    box-shadow: 0 6px 22px rgba(11, 73, 78, 0.12);
}

.news-search-box i {
    color: #4d8a90;
    font-size: 1rem;
}

.news-search-box input {
    border: none;
    outline: none;
    background: transparent;
    font-family: "Poppins", sans-serif;
    font-size: 0.92rem;
    color: #0b2f33;
    width: 200px;
}

.news-search-box input::placeholder {
    color: #85b0b5;
}

.news-search-btn {
    padding: 10px 22px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #0d8086, #12adb1);
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    box-shadow: 0 6px 18px rgba(13, 128, 134, 0.22);
}

.news-search-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(13, 128, 134, 0.32);
}

.news-search-result-text {
    margin: -16px 0 24px;
    color: #3d6a6f;
    font-size: 0.92rem;
}

.news-search-result-text strong {
    color: #0d8086;
}

.news-clear-search {
    margin-left: 12px;
    color: #c0504d;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.86rem;
    transition: color 0.2s ease;
}

.news-clear-search:hover {
    color: #a03a38;
}

/* Featured Hero Card */
.news-hero-card {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 48px rgba(11, 73, 78, 0.12);
    margin-bottom: 36px;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.news-hero-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 56px rgba(11, 73, 78, 0.18);
}

.news-hero-card-media {
    position: relative;
    min-height: 340px;
    overflow: hidden;
}

.news-hero-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-hero-card:hover .news-hero-card-media img {
    transform: scale(1.04);
}

.news-hero-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #fff;
    background: linear-gradient(135deg, #d6a826, #c49320);
    box-shadow: 0 6px 14px rgba(214, 168, 38, 0.35);
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-hero-card-body {
    padding: 32px 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-hero-meta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.news-hero-author,
.news-hero-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.86rem;
    color: #4d8a90;
    font-weight: 500;
}

.news-hero-card-body h3 {
    margin: 0 0 14px;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    color: #0f4a50;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.news-hero-card-body p {
    margin: 0 0 20px;
    color: #45656a;
    line-height: 1.72;
    font-size: 0.94rem;
}

.news-hero-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0d8086, #12adb1);
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    box-shadow: 0 8px 22px rgba(13, 128, 134, 0.25);
    width: fit-content;
}

.news-hero-read-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(13, 128, 134, 0.35);
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
    margin-bottom: 36px;
}

.news-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 32px rgba(11, 73, 78, 0.09);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(11, 73, 78, 0.16);
}

.news-card-media {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.news-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.news-card:hover .news-card-media img {
    transform: scale(1.06);
}

.news-card-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #fff;
    background: linear-gradient(120deg, #2fa1a8, #1e7e86);
}

.news-card-body {
    padding: 20px 22px 22px;
}

.news-card-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 10px;
    font-size: 0.8rem;
    color: #538e94;
    flex-wrap: wrap;
}

.news-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-card-body h4 {
    margin: 0 0 8px;
    font-family: "Sora", sans-serif;
    font-size: 1.08rem;
    color: #0f4a50;
    line-height: 1.4;
}

.news-card-excerpt {
    margin: 0 0 14px;
    color: #506d72;
    line-height: 1.65;
    font-size: 0.9rem;
}

.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1f8b92;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition:
        color 0.2s ease,
        gap 0.2s ease;
}

.news-card-link:hover {
    color: #0f6266;
    gap: 10px;
}

/* Pagination */
.news-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 36px 0 28px;
    flex-wrap: wrap;
}

.news-page-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    color: #0f4a50;
    background: #fff;
    border: 1.5px solid rgba(13, 128, 134, 0.16);
    transition: all 0.25s ease;
}

.news-page-link:hover:not(.is-disabled):not(.is-active) {
    background: rgba(13, 128, 134, 0.08);
    border-color: rgba(13, 128, 134, 0.3);
    transform: translateY(-1px);
}

.news-page-link.is-active {
    background: linear-gradient(135deg, #0d8086, #12adb1);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(13, 128, 134, 0.3);
}

.news-page-link.is-disabled {
    color: #a3c4c8;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Empty State */
.news-empty-state {
    text-align: center;
    padding: 72px 24px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 16px 36px rgba(11, 73, 78, 0.08);
}

.news-empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(13, 128, 134, 0.12),
        rgba(17, 174, 178, 0.08)
    );
    display: grid;
    place-items: center;
    font-size: 2rem;
    color: #0d8086;
}

.news-empty-state h3 {
    margin: 0 0 10px;
    font-family: "Sora", sans-serif;
    font-size: 1.5rem;
    color: #0f4a50;
}

.news-empty-state p {
    margin: 0 0 22px;
    color: #506d72;
    max-width: 42ch;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.news-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0d8086, #12adb1);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    box-shadow: 0 8px 22px rgba(13, 128, 134, 0.25);
}

.news-empty-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(13, 128, 134, 0.35);
}

/* View All Button */
.news-view-all-wrap {
    text-align: center;
    margin-top: 16px;
}

.news-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 16px;
    background: #fff;
    color: #0d8086;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid rgba(13, 128, 134, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(11, 73, 78, 0.06);
}

.news-view-all-btn:hover {
    background: linear-gradient(135deg, #0d8086, #12adb1);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(13, 128, 134, 0.28);
}

/* Responsive */
@media (max-width: 860px) {
    .news-hero-card {
        grid-template-columns: 1fr;
    }

    .news-hero-card-media {
        min-height: 240px;
    }

    .news-content-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-content-search {
        width: 100%;
    }

    .news-search-box {
        flex: 1;
    }

    .news-search-box input {
        width: 100%;
    }

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

@media (max-width: 480px) {
    .news-content-section {
        padding: 54px 0 64px;
    }

    .news-hero-card-body {
        padding: 22px 18px;
    }

    .news-card-body {
        padding: 16px 16px 18px;
    }

    .news-pagination {
        gap: 6px;
    }

    .news-page-link {
        padding: 8px 14px;
        font-size: 0.82rem;
    }
}

.news-section {
    padding: 82px 0 86px;
    background: #f2fbfb;
}

.news-shell {
    width: min(1180px, 92vw);
    margin: 0 auto;
}

.news-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.news-badge {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #21797f;
    background: rgba(80, 214, 214, 0.2);
}

.news-head h2 {
    margin: 0;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.55rem, 2.8vw, 2.65rem);
    color: #146f74;
    flex: 1;
}

.news-all-link {
    text-decoration: none;
    font-weight: 600;
    color: #217f84;
    transition: color 0.2s ease;
}

.news-all-link:hover {
    color: #0f6266;
}

.news-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 26px;
}

.news-featured-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(34, 128, 132, 0.14);
}

.news-featured-media {
    position: relative;
    height: 290px;
}

.news-featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #fff;
    background: linear-gradient(120deg, #2fa1a8, #1e7e86);
}

.news-featured-body {
    padding: 22px 24px 24px;
}

.news-meta {
    margin: 0 0 8px;
    font-size: 0.86rem;
    color: #4d8a90;
}

.news-featured-body h3 {
    margin: 0 0 10px;
    font-size: clamp(1.2rem, 1.9vw, 1.75rem);
    color: #0f6468;
}

.news-featured-body p {
    margin: 0 0 14px;
    line-height: 1.7;
    color: #45656a;
}

.news-read-more {
    text-decoration: none;
    font-weight: 700;
    color: #1f8b92;
}

.news-read-more:hover {
    text-decoration: underline;
}

.news-side-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.news-mini-card {
    display: grid;
    grid-template-columns: 124px 1fr;
    gap: 12px;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 12px 26px rgba(34, 128, 132, 0.1);
}

.news-mini-card img {
    width: 100%;
    height: 94px;
    object-fit: cover;
    border-radius: 10px;
}

.news-mini-thumb-link {
    display: block;
}

.news-mini-meta {
    margin: 0 0 4px;
    font-size: 0.78rem;
    color: #538e94;
}

.news-mini-card h4 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.45;
    color: #166f74;
}

.news-mini-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-mini-link:hover {
    color: #0f6468;
    text-decoration: underline;
}

.school-partnership {
    padding: 84px 0 92px;
    background:
        radial-gradient(
            circle at 14% 16%,
            rgba(88, 210, 210, 0.16),
            transparent 35%
        ),
        radial-gradient(
            circle at 86% 78%,
            rgba(31, 128, 134, 0.14),
            transparent 36%
        ),
        linear-gradient(170deg, #0a242f, #11404f 62%, #145565);
}

.partnership-shell {
    width: min(1180px, 92vw);
    margin: 0 auto;
}

.partnership-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 24px;
}

.partnership-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(112, 223, 227, 0.12);
    border: 2px solid rgba(112, 223, 227, 0.3);
    border-radius: 999px;
    color: #58d2d2;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 24px;
    transition: all 0.3s ease-in-out;
}

.partnership-badge:hover {
    transform: scale(1.05);
    background: rgba(112, 223, 227, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.partnership-title {
    font-family: "Sora", sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 28px;
    line-height: 1.15;
}

.partnership-title span {
    color: #58d2d2;
}

.partnership-desc {
    color: rgba(228, 245, 248, 0.8);
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto;
}

.partner-group {
    margin-top: 20px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(202, 244, 247, 0.2);
    background:
        radial-gradient(
            circle at 14% 10%,
            rgba(95, 219, 219, 0.18),
            transparent 42%
        ),
        linear-gradient(
            165deg,
            rgba(255, 255, 255, 0.12),
            rgba(255, 255, 255, 0.04)
        );
    box-shadow: 0 14px 28px rgba(1, 9, 14, 0.32);
    backdrop-filter: blur(4px);
}

.partner-group h3 {
    margin: 0 0 12px;
    color: #effdff;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    letter-spacing: 0.03em;
}

.partner-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(152px, 1fr));
    gap: 12px;
    contain: layout style paint;
}

.partner-logo-card {
    border-radius: 14px;
    min-height: 152px;
    padding: 12px 10px;
    background: #ffffff;
    border: 1px solid rgba(16, 101, 109, 0.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    contain: content;
}

.partner-logo-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.partner-logo-card img {
    width: 100%;
    max-width: 130px;
    height: 74px;
    object-fit: contain;
    content-visibility: auto;
}

.partner-logo-card p {
    margin: 0;
    text-align: center;
    font-size: 0.74rem;
    line-height: 1.3;
    color: #28565d;
    font-weight: 600;
}

.partnership-source {
    margin-top: 16px;
}

.partnership-source a {
    color: #b4f8f8;
    font-weight: 700;
    text-decoration: none;
}

.partnership-source a:hover {
    text-decoration: underline;
}

.school-footer {
    background:
        radial-gradient(
            circle at 20% 10%,
            rgba(86, 210, 210, 0.15),
            transparent 34%
        ),
        linear-gradient(180deg, #07151b, #0b2028);
    color: #d8edf1;
}

.footer-shell {
    width: min(1180px, 92vw);
    margin: 0 auto;
    padding: 56px 0 26px;
    display: grid;
    grid-template-columns: 1.1fr 1.2fr 0.9fr;
    gap: 30px;
}

.footer-brand-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.footer-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.footer-brand h3 {
    margin: 0;
    color: #f1fdff;
    font-size: 1.2rem;
}

.footer-brand p {
    margin: 0;
    max-width: 42ch;
    color: rgba(212, 234, 238, 0.85);
    line-height: 1.72;
}

.footer-posts,
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-posts h4,
.footer-links h4 {
    margin: 0 0 6px;
    font-size: 1.02rem;
    color: #f1fdff;
}

.footer-posts h4 {
    position: relative;
    margin-bottom: 16px;
}

.footer-posts h4::after {
    content: "";
    display: block;
    width: 52px;
    height: 2px;
    border-radius: 999px;
    margin-top: 10px;
    background: rgba(197, 244, 249, 0.85);
}

.footer-post-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-post-item {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 10px;
    align-items: start;
}

.footer-post-thumb {
    width: 82px;
    height: 82px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid rgba(194, 243, 246, 0.2);
}

.footer-post-content a {
    color: rgba(233, 251, 255, 0.95);
    text-decoration: none;
    font-weight: 600;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.footer-post-content a:hover {
    color: #a6f3f3;
}

.footer-post-date {
    margin: 6px 0 0;
    color: rgba(194, 227, 232, 0.8);
    font-size: 0.86rem;
}

.footer-links a {
    text-decoration: none;
    color: rgba(204, 233, 237, 0.9);
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-links a:hover {
    color: #99efef;
    transform: translateX(2px);
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #eafcff;
    border: 1px solid rgba(193, 245, 245, 0.28);
    background: rgba(255, 255, 255, 0.06);
    text-decoration: none;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.footer-socials a:hover {
    transform: translateY(-2px);
    border-color: rgba(207, 250, 250, 0.58);
}

.footer-contact-map {
    grid-column: 1 / -1;
    margin-top: 2px;
    padding: 20px 0;
    border-radius: 0;
    border: 0;
    background: transparent;
}

.footer-contact-map h4 {
    margin: 0 0 12px;
    color: #f1fdff;
    font-size: clamp(1.25rem, 2.2vw, 2rem);
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.footer-contact-map p {
    margin: 0 0 6px;
    color: rgba(236, 252, 255, 0.95);
    line-height: 1.5;
    font-size: 0.93rem;
    font-weight: 600;
}

.footer-contact-map p:last-of-type {
    margin-bottom: 14px;
}

.footer-contact-map p a {
    color: #effdff;
    text-decoration: none;
}

.footer-contact-map p a:hover {
    text-decoration: underline;
}

.footer-contact-map .footer-socials {
    margin: 8px 0 12px;
}

.footer-map-frame {
    width: min(100%, 820px);
    height: 260px;
    border: 1px solid rgba(191, 234, 240, 0.2);
    border-radius: 8px;
    display: block;
}

.footer-bottom {
    border-top: 1px solid rgba(189, 234, 239, 0.16);
    padding: 16px 0 20px;
}

.footer-bottom p {
    margin: 0;
    text-align: center;
    color: rgba(204, 231, 235, 0.74);
    font-size: 0.85rem;
}

.news-page-body {
    min-height: 100vh;
    background: #d9dce3;
}

.news-page-main,
.news-detail-main {
    width: min(1260px, 94vw);
    margin: 0 auto;
    padding: 22px 0 58px;
}

.news-page-head {
    text-align: center;
    margin-bottom: 22px;
}

.news-page-lang {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.news-page-lang a {
    min-width: 40px;
    height: 34px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid #b4bfce;
    background: #f3f6fa;
    color: #35567d;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.news-page-lang a.is-active {
    background: #2d4a7a;
    border-color: #2d4a7a;
    color: #fff;
}

.news-page-home-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #1d7178;
    font-weight: 600;
    margin-bottom: 12px;
}

.news-page-head h1 {
    margin: 0;
    font-size: clamp(1.75rem, 3.1vw, 2.8rem);
    color: #00836b;
    font-family: "Sora", sans-serif;
    letter-spacing: 0.06em;
}

.news-page-head p {
    margin: 8px 0 0;
    color: #48626a;
}

.news-search-inline {
    width: min(620px, 100%);
    margin: 0 auto 20px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.news-search-inline input {
    height: 48px;
    border: 1px solid #c9ced8;
    border-radius: 10px;
    padding: 0 14px;
    color: #3d4e64;
    background: #f7f8fb;
}

.news-search-inline input:focus {
    outline: none;
    border-color: #8b9cb8;
    box-shadow: 0 0 0 3px rgba(124, 145, 175, 0.18);
}

.news-search-inline button {
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 10px;
    background: #2d4a7a;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
}

.news-search-result {
    margin: -6px 0 16px;
    text-align: center;
    color: #556277;
    font-size: 0.92rem;
}

.news-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.news-page-card {
    border-radius: 14px;
    overflow: hidden;
    background: #f2f3f6;
    border: 1px solid #c9cdd5;
    box-shadow: 0 8px 20px rgba(42, 57, 74, 0.08);
}

.news-page-media {
    position: relative;
    height: 250px;
}

.news-page-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-page-tag {
    position: absolute;
    right: 12px;
    bottom: 10px;
    font-size: 0.74rem;
    font-weight: 700;
    color: #b64858;
    background: rgba(255, 244, 246, 0.95);
    border-radius: 8px;
    padding: 5px 10px;
}

.news-page-content {
    padding: 16px 18px 18px;
}

.news-page-content h2 {
    margin: 0 0 8px;
    color: #00836b;
    font-size: clamp(1.1rem, 1.6vw, 1.45rem);
    line-height: 1.32;
}

.news-page-meta {
    margin: 0 0 10px;
    color: #7a8597;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.news-page-content p {
    margin: 0;
    color: #4e5661;
    line-height: 1.62;
    font-size: 0.96rem;
}

.news-page-btn {
    display: inline-block;
    margin-top: 14px;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    background: #2d4a7a;
    color: #fff;
    font-weight: 600;
    transition:
        filter 0.2s ease,
        transform 0.2s ease;
}

.news-page-btn:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.news-page-empty {
    border-radius: 14px;
    background: #f2f3f6;
    border: 1px solid #c9cdd5;
    padding: 22px;
    text-align: center;
}

.news-page-empty h2 {
    margin: 0 0 8px;
    color: #2e4a78;
}

.news-page-empty p {
    margin: 0;
    color: #5b6673;
}

.news-page-pagination {
    position: static;
    top: auto;
    left: auto;
    z-index: auto;
    width: auto;
    padding: 0;
    transition: none;
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.news-page-page {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid #c3cad7;
    background: #f8f9fc;
    color: #2d4a7a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.news-page-page.is-active {
    background: #2d4a7a;
    border-color: #2d4a7a;
    color: #fff;
}

.news-page-page.is-disabled {
    color: #96a1b2;
    pointer-events: none;
}

.news-detail-card {
    background: #f2f3f6;
    border: 1px solid #c9cdd5;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(42, 57, 74, 0.08);
}

.news-detail-media {
    height: min(420px, 44vw);
}

.news-detail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-detail-content {
    padding: 20px;
}

.news-detail-content h2 {
    margin: 0 0 10px;
    color: #00836b;
    font-family: "Sora", sans-serif;
    line-height: 1.35;
}

.news-detail-text {
    margin-top: 10px;
    color: #4e5661;
    line-height: 1.75;
}

.news-related {
    margin-top: 24px;
}

.news-related h3 {
    margin: 0 0 14px;
    color: #1d7178;
    font-family: "Sora", sans-serif;
}

.news-detail-page {
    padding-bottom: 58px;
}

.news-detail-hero {
    margin: 0 calc(50% - 50vw);
    padding: 48px 16px 34px;
    border-bottom: 1px solid #cfd3dc;
    background: #d8dbe4;
}

.news-detail-hero-inner {
    width: min(1180px, 94vw);
    margin: 0 auto;
    text-align: center;
}

.news-detail-hero .news-page-lang {
    justify-content: center;
    margin-bottom: 12px;
}

.news-detail-hero h1 {
    margin: 0;
    color: #00836b;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.72rem, 3.2vw, 3.08rem);
    line-height: 1.24;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.news-detail-breadcrumb {
    position: static;
    top: auto;
    left: auto;
    z-index: auto;
    width: auto;
    padding: 0;
    transition: none;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex-wrap: wrap;
    color: #6f7787;
    font-size: 0.92rem;
}

.news-detail-breadcrumb a {
    color: #00836b;
    text-decoration: none;
}

.news-detail-breadcrumb a:hover {
    text-decoration: underline;
}

.news-detail-breadcrumb .is-current {
    color: #404958;
}

.news-detail-content-wrap {
    width: min(1180px, 94vw);
    margin: 0 auto;
    padding-top: 30px;
}

.news-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.68fr) minmax(300px, 0.78fr);
    gap: 22px;
    align-items: start;
}

.news-article-card {
    background: #f2f3f7;
    border: 1px solid #c9cdd6;
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 8px 20px rgba(42, 57, 74, 0.08);
}

.news-article-media {
    position: relative;
}

.news-article-media img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 12px;
}

.news-share-button {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid #d5d9e2;
    background: #f4f6fa;
    color: #8f5062;
    display: grid;
    place-items: center;
    text-decoration: none;
    box-shadow: 0 10px 18px rgba(22, 31, 43, 0.12);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.news-share-button:hover {
    transform: translateY(-1px);
    border-color: #b4bfd2;
}

.news-article-meta {
    margin: 14px 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    color: #7b8698;
    font-size: 0.95rem;
}

.news-article-text {
    color: #404958;
    line-height: 1.75;
    font-size: 1.03rem;
}

.news-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.news-sidebar-card {
    background: #f2f3f7;
    border: 1px solid #c9ced8;
    border-radius: 14px;
    padding: 18px;
}

.news-sidebar-card h2 {
    margin: 0 0 14px;
    color: #2f4f82;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.35rem, 2.1vw, 2rem);
    text-transform: uppercase;
}

.news-search-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.news-search-form input {
    height: 56px;
    border: 1px solid #d8c6cb;
    border-radius: 10px;
    background: #e9d9dd;
    color: #8d4d60;
    padding: 0 16px;
}

.news-search-form input:focus {
    outline: none;
    border-color: #b27486;
    box-shadow: 0 0 0 3px rgba(198, 120, 141, 0.18);
}

.news-search-form button {
    width: 48px;
    height: 48px;
    align-self: center;
    border: 0;
    border-radius: 10px;
    background: #2d4a7a;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
}

.news-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news-sidebar-item {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 10px;
    align-items: center;
    padding: 6px;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.news-sidebar-item:hover {
    background: #e8ecf4;
}

.news-sidebar-item.is-active {
    background: #dee5f2;
}

.news-sidebar-item img {
    width: 86px;
    height: 66px;
    object-fit: cover;
    border-radius: 8px;
}

.news-sidebar-item-title {
    margin: 0;
    color: #00836b;
    font-weight: 600;
    line-height: 1.4;
}

.news-sidebar-item-date {
    margin: 4px 0 0;
    color: #8b96a8;
    font-size: 0.86rem;
}

.news-sidebar-empty {
    margin: 0;
    color: #6f7786;
}

.news-sidebar-all {
    display: inline-flex;
    margin-top: 10px;
    text-decoration: none;
    color: #2d4a7a;
    font-weight: 700;
}

.news-sidebar-all:hover {
    text-decoration: underline;
}

.contact {
    padding: 5rem 1.25rem 5.2rem;
    background: #f2fbfb;
}

.contact-header {
    width: min(1120px, 100%);
    margin: 0 auto 1.8rem;
    text-align: center;
    position: relative;
}

.contact-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    font-weight: bold;
    text-transform: uppercase;
    color: #1b7f86;
    border: 1px solid rgba(39, 167, 173, 0.35);
    background: rgba(112, 223, 227, 0.26);
}

.contact-header h2 {
    margin-top: 0.8rem;
    font-size: clamp(2rem, 3vw, 3rem);
    color: #0f646a;
    font-family: "Outfit", sans-serif;
    letter-spacing: 0.01em;
}

.contact-header p {
    margin: 0.6rem auto 0;
    max-width: 68ch;
    color: #3e7076;
    line-height: 1.75;
    font-size: 1.02rem;
}

.contact-header::after {
    content: "";
    width: 108px;
    height: 3px;
    border-radius: 999px;
    margin: 1.05rem auto 0;
    display: block;
    background: linear-gradient(120deg, #39c4c8, #1d9097);
}

.contact .row {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    border-radius: 22px;
    overflow: hidden;
    background: #fdfefe;
    border: 1px solid rgba(45, 157, 163, 0.22);
    box-shadow: 0 20px 40px rgba(22, 116, 121, 0.16);
}

.contact .row .map {
    width: 100%;
    min-height: 420px;
    border: 0;
    margin-top: 50px;
    filter: saturate(1.05) contrast(1.02);
}

.contact-left {
    display: flex;
    flex-direction: column;
    background: #fdfefe;
    border-right: 1px solid rgba(45, 157, 163, 0.15);
}

.contact-left-text {
    padding: 2.5rem 2rem;
    text-align: center;
}

.contact-left-text h3 {
    font-size: 1.8rem;
    font-family: "Outfit", sans-serif;
    color: rgb(45, 157, 163);
    margin-bottom: 12px;
    font-weight: 800;
}

.contact-left-text p {
    color: rgba(19, 64, 66, 0.591);
    line-height: 1.6;
    font-size: 1.05rem;
    margin: 0 auto;
    max-width: 90%;
}

.contact .row form {
    padding: 2rem 1.5rem 2.2rem;
    text-align: left;
    background:
        radial-gradient(
            circle at 86% 16%,
            rgba(69, 196, 203, 0.18),
            transparent 36%
        ),
        linear-gradient(170deg, #f4fbfc, #eaf6f8);
}

.contact .row form label {
    display: inline-block;
    color: #1b7f86;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(112, 223, 227, 0.26);
    border: 1px solid rgba(39, 167, 173, 0.35);
    padding: 7px 16px;
    border-radius: 999px;
    margin-top: 2rem;
}

.contact .row form label:first-of-type {
    margin-top: 0;
}

.contact .row form .input-group {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 1rem;
    border: 1px solid rgba(35, 150, 156, 0.22);
    border-radius: 12px;
    background: rgba(71, 191, 197, 0.08);
    padding: 0 0.9rem;
}

.contact .row form .input-group:focus-within {
    border-color: rgba(31, 145, 151, 0.56);
    box-shadow: 0 0 0 3px rgba(31, 145, 151, 0.14);
}

.contact .row form .input-group.is-invalid {
    border-color: rgba(200, 57, 57, 0.62);
    background: rgba(200, 57, 57, 0.08);
}

.contact .row form .input-group input {
    width: 100%;
    padding: 0.9rem 0.2rem;
    font-size: 0.95rem;
    color: #27464b;
    background: none;
    border: none;
    outline: none;
}

.contact .row form .input-group i {
    color: #1b8087;
    opacity: 0.8;
}

.contact-feedback {
    min-height: 1.1rem;
    margin-top: 0.9rem;
    font-size: 0.9rem;
    text-align: left;
    color: #2a5258;
}

.contact-feedback.is-error {
    color: #b73a3a;
}

.contact-feedback.is-success {
    color: #20663a;
}

.contact-btn {
    margin-top: 1.2rem;
    width: 100%;
    max-width: 220px;
    border-radius: 999px;
    border: 1px solid rgba(29, 148, 155, 0.58);
    color: #eaffff;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: linear-gradient(120deg, #1a8f97, #38bcc2);
    box-shadow: 0 12px 22px rgba(32, 130, 136, 0.28);
    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(32, 130, 136, 0.34);
}

@media screen and (max-width: 900px) {
    .contact {
        padding: 3rem 1rem 3.6rem;
    }

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

    .contact .row .map {
        min-height: 260px;
    }

    .contact .row form {
        padding: 1.3rem 1rem 1.8rem;
    }

    .contact-header p {
        font-size: 0.95rem;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
    transition:
        opacity 0.64s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.64s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 980px) {
    .visi-mission-section {
        --vm-text-xl: clamp(1.9rem, 1.55rem + 2vw, 3.2rem);
        --vm-text-lg: clamp(1.5rem, 1.26rem + 1.25vw, 2.3rem);
        --vm-text-md: clamp(1.12rem, 1.02rem + 0.58vw, 1.45rem);
    }

    .visi-mission-vision-card blockquote {
        max-width: 100%;
    }

    .visi-mission-mission-layout {
        grid-template-columns: 1fr;
    }

    .visi-mission-sidecopy {
        position: static;
        max-width: 100%;
    }

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

    .profile-showcase {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .profile-copy {
        padding: 0;
        text-align: center;
    }

    .profile-copy p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .profile-feature-grid {
        grid-template-columns: 1fr;
    }

    .career-head {
        text-align: center;
    }

    .career-head h2 {
        font-size: clamp(1.8rem, 5vw, 2.6rem);
        text-align: center;
    }

    .career-line {
        left: 16px;
        transform: none;
    }

    .career-step {
        width: 100%;
        padding-left: 36px;
    }

    .career-step.is-left,
    .career-step.is-right {
        align-self: stretch;
        padding-right: 0;
        padding-left: 36px;
    }

    .career-step::before {
        left: 9px;
        right: auto;
    }
}

@media (max-width: 768px) {
    .visi-mission-section {
        --vm-space-md: 1.25rem;
        --vm-space-lg: 2rem;
        --vm-text-sm: clamp(0.74rem, 0.7rem + 0.22vw, 0.84rem);
        --vm-text-base: clamp(0.95rem, 0.92rem + 0.24vw, 1rem);
        --vm-text-md: clamp(1.08rem, 1rem + 0.6vw, 1.32rem);
        --vm-text-lg: clamp(1.35rem, 1.15rem + 1vw, 1.9rem);
        --vm-text-xl: clamp(1.72rem, 1.44rem + 1.4vw, 2.45rem);
        padding: 74px 0 82px;
    }

    .visi-mission-vision-card {
        padding: 1.9rem 1.3rem 1.6rem;
        border-radius: 24px;
    }

    .visi-mission-accent {
        position: static;
        margin-top: 1rem;
    }

    .visi-mission-card {
        min-height: 0;
        padding: 1.5rem 1.2rem 1.3rem;
        border-radius: 20px;
    }

    .profile-section {
        padding: 64px 0 72px;
    }

    .profile-head h2 {
        font-size: clamp(1.7rem, 8vw, 2.6rem);
    }

    .profile-frame {
        min-height: 280px;
        border-radius: 22px;
    }

    .profile-frame::before {
        inset: 12px;
        border-radius: 18px;
    }

    .profile-main-image {
        min-height: 280px;
    }

    .profile-feature-card {
        min-height: 0;
    }

    .career-card {
        flex-direction: column;
        gap: 10px;
    }

    .career-icon {
        width: 36px;
        height: 36px;
        font-size: 1.05rem;
    }

    .career-pill {
        font-size: 0.66rem;
    }
}

@media (max-width: 1100px) {
    .news-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-detail-layout {
        grid-template-columns: 1fr;
    }
}

@keyframes sliderContentReveal {
    from {
        opacity: 0;
        transform: translateY(26px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    .slider-container .slider-nav {
        width: 38px;
        height: 38px;
        font-size: 1.45rem;
    }

    .slider-container .slider-prev {
        left: 10px;
    }

    .slider-container .slider-next {
        right: 10px;
    }

    .slider-container .slider-dots {
        bottom: 30px;
    }

    .slider-container .dot-btn {
        width: 9px;
        height: 9px;
    }

    .slider-container .dot-btn.is-active {
        width: 22px;
    }

    .slider-items .slider-content {
        padding: 1.35rem 1.8rem;
        width: min(92vw, 560px);
        border-radius: 14px;
        gap: 0.8rem;
    }

    .slider-content .slider-subtitle {
        letter-spacing: 0.2rem;
        font-size: 0.72rem;
    }

    .slider-content .slider-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .alumni-section {
        padding: 52px 0 70px;
        min-height: auto;
    }

    .alumni-slide-container {
        padding-bottom: 12px;
    }

    .alumni-section .swiper-pagination-bullet {
        width: 30px;
        height: 30px;
        font-size: 0.68rem;
    }

    .alumni-card-link {
        min-height: 358px;
    }

    .alumni-card-image {
        height: 176px;
    }

    .alumni-card-title {
        font-size: 0.98rem;
    }

    .about-smk-section {
        padding: 32px 0 42px;
    }

    .about-smk-wrap {
        grid-template-columns: 1fr;
    }

    .about-card {
        border-right: 0;
        border-bottom: 1px solid #e3e3e3;
        height: auto;
        width: 100%;
        margin-top: 0 !important;
        min-height: 0 !important;
    }

    .about-card:last-child {
        border-bottom: 0;
    }

    .about-head {
        min-height: 110px;
    }

    .about-head h3 {
        font-size: 1.35rem;
    }

    .about-head a {
        font-size: 1.05rem;
    }

    .about-image {
        height: 220px;
    }

    .feature-carousel-section {
        padding: 52px 0 62px;
    }

    .feature-carousel-title {
        padding: 8px 20px;
        font-size: 1rem;
    }

    .feature-carousel-badges {
        margin-bottom: 14px;
        gap: 8px;
    }

    .feature-carousel {
        min-height: 690px;
    }

    .feature-card {
        width: min(94vw, 620px);
        min-height: 590px;
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 18px 16px 22px;
        border-radius: 20px;
    }

    .feature-card.is-prev,
    .feature-card.is-next,
    .feature-card.is-hidden {
        opacity: 0;
        transform: translateX(-50%) scale(0.9);
        pointer-events: none;
    }

    .feature-media img {
        height: 300px;
    }

    .feature-controls {
        gap: 10px;
    }

    .feature-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .feature-dot {
        width: 9px;
        height: 9px;
    }

    .feature-dot.is-active {
        width: 20px;
    }

    .news-section {
        padding: 56px 0 62px;
    }

    .news-head {
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 16px;
    }

    .news-head h2 {
        width: 100%;
        font-size: 1.5rem;
    }

    .news-layout {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .news-featured-media {
        height: 210px;
    }

    .news-featured-body {
        padding: 16px;
    }

    .news-mini-card {
        grid-template-columns: 98px 1fr;
        padding: 8px;
    }

    .news-mini-card img {
        height: 78px;
    }

    .news-mini-card h4 {
        font-size: 0.92rem;
    }

    .school-partnership {
        padding: 56px 0 64px;
    }

    .partnership-header {
        margin-bottom: 32px;
    }

    .partnership-title {
        font-size: 1.6rem;
        margin-bottom: 14px;
    }

    .partnership-desc {
        font-size: 0.92rem;
    }

    .partner-group {
        margin-top: 12px;
        padding: 14px;
    }

    .partner-group h3 {
        margin-bottom: 10px;
        font-size: 1rem;
    }

    .partner-logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        contain: layout style paint;
    }

    .partner-logo-card {
        min-height: 132px;
        padding: 10px 8px;
        border-radius: 12px;
        contain: content;
    }

    .partner-logo-card img {
        max-width: 104px;
        height: 58px;
        content-visibility: auto;
    }

    .partner-logo-card p {
        font-size: 0.7rem;
    }

    .footer-shell {
        padding: 42px 0 20px;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    nav .lang-switch {
        margin-left: 0;
    }

    .footer-post-item {
        grid-template-columns: 72px 1fr;
        gap: 9px;
    }

    .footer-post-thumb {
        width: 72px;
        height: 72px;
        border-radius: 8px;
    }

    .footer-brand p,
    .footer-contact-map p {
        font-size: 0.88rem;
    }

    .footer-contact-map {
        padding: 14px 0;
        border-radius: 12px;
    }

    .footer-contact-map h4 {
        margin-bottom: 10px;
        font-size: 1.3rem;
    }

    .footer-contact-map .footer-socials {
        margin: 6px 0 10px;
    }

    .footer-map-frame {
        width: 100%;
        height: 200px;
    }

    .news-page-main,
    .news-detail-main {
        width: min(1260px, 95vw);
    }

    .news-detail-hero {
        padding: 36px 14px 24px;
    }

    .news-detail-hero h1 {
        font-size: clamp(1.32rem, 6vw, 2rem);
    }

    .news-detail-breadcrumb {
        gap: 6px;
        font-size: 0.82rem;
    }

    .news-search-inline {
        margin-bottom: 14px;
        gap: 8px;
    }

    .news-search-inline input,
    .news-search-inline button {
        height: 44px;
    }

    .news-page-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .news-page-media {
        height: 220px;
    }

    .news-page-content {
        padding: 14px;
    }

    .news-detail-media {
        height: 210px;
    }

    .news-detail-content {
        padding: 14px;
    }

    .news-article-card,
    .news-sidebar-card {
        padding: 12px;
    }

    .news-article-meta {
        font-size: 0.88rem;
        gap: 6px;
    }

    .news-article-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .news-search-form {
        gap: 8px;
    }

    .news-search-form input {
        height: 48px;
    }

    .news-search-form button {
        width: 44px;
        height: 44px;
    }

    .news-sidebar-item {
        grid-template-columns: 74px 1fr;
        gap: 8px;
        padding: 5px;
    }

    .news-sidebar-item img {
        width: 74px;
        height: 58px;
    }

    .news-page-btn {
        margin-top: 10px;
        padding: 9px 14px;
        font-size: 0.9rem;
    }

    .news-page-page {
        height: 34px;
        min-width: 34px;
        padding: 0 10px;
    }

    .footer-bottom {
        padding: 14px 0 18px;
    }
}

/* Responsive hardening for phones and tablets */
@media (max-width: 1280px) {
    body > nav {
        padding: 0.85rem 1rem;
        gap: 0.65rem;
    }

    body > nav .logo {
        font-size: 1rem;
        margin-right: auto;
    }

    body > nav ul {
        margin-left: 22px;
        gap: 0.65rem;
    }

    body > nav ul li a {
        font-size: 0.79rem;
    }

    body > nav .sosmed-icon {
        gap: 0.65rem;
    }

    body > nav .ppdb-btn button {
        padding: 10px 16px;
        font-size: 0.7rem;
    }
}

@media (max-width: 1024px) {
    body > nav {
        padding: 0.78rem 0.9rem;
        gap: 0.55rem;
    }

    body > nav .logo {
        font-size: 0.96rem;
    }

    body > nav ul {
        margin-left: 12px;
        gap: 0.55rem;
    }

    body > nav ul li a {
        font-size: 0.72rem;
    }

    body > nav .sosmed-icon {
        gap: 0.5rem;
    }

    body > nav .ppdb-btn button {
        padding: 9px 14px;
        font-size: 0.64rem;
    }

    .hero {
        min-height: 86vh;
        min-height: 86svh;
    }

    .hero-content {
        width: min(88vw, 760px);
        padding: 1.75rem 1.9rem;
    }

    .about-smk-wrap {
        width: min(94vw, 1040px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
    }

    .about-card:last-child {
        grid-column: 1 / -1;
    }

    .feature-carousel {
        min-height: 560px;
    }

    .feature-card {
        width: min(92vw, 720px);
        min-height: 470px;
    }
}

@media (min-width: 2560px) {
    body > nav,
    .hero,
    .registration-info,
    .about-smk-section,
    .feature-carousel-section,
    .news-content-section,
    .partnership-section,
    .school-footer {
        padding-left: calc((100vw - 1800px) / 2);
        padding-right: calc((100vw - 1800px) / 2);
    }

    .hero-content {
        width: min(42vw, 980px);
    }

    .about-smk-wrap,
    .news-page-main,
    .news-detail-main,
    .partnership-shell,
    .footer-shell {
        width: min(1800px, 88vw);
    }

    .feature-card {
        width: min(76vw, 1240px);
    }
}

@media (max-width: 1100px) {
    .hero {
        min-height: 88vh;
        min-height: 88svh;
    }

    .hero-content {
        width: min(94vw, 720px);
        padding: 2rem 2.2rem;
    }

    body > nav {
        padding: 0.72rem 0.8rem;
        flex-wrap: wrap;
        row-gap: 0.5rem;
        column-gap: 0.55rem;
    }

    body > nav .logo {
        order: 1;
        font-size: 0.95rem;
        margin-right: auto;
    }

    body > nav .logo-img {
        width: 28px;
    }

    body > nav .lang-switch {
        order: 2;
        margin-left: auto;
    }

    body > nav .ppdb-btn {
        order: 3;
    }

    body > nav .ppdb-btn button {
        padding: 8px 12px;
        font-size: 0.64rem;
        letter-spacing: 0.06em;
    }

    body > nav .sosmed-icon {
        order: 4;
        margin-left: auto;
        gap: 0.55rem;
    }

    body > nav .sosmed-icon a {
        font-size: 1rem;
    }

    body > nav ul {
        order: 5;
        flex: 0 0 100%;
        margin-left: 0;
        justify-content: flex-start;
        white-space: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 0.7rem;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    body > nav ul::-webkit-scrollbar {
        display: none;
    }

    body > nav ul li {
        flex: 0 0 auto;
    }

    body > nav ul li a {
        font-size: 0.74rem;
    }

    .slider-container,
    .slider-container .slider-items {
        height: 88vh;
        height: 88svh;
        min-height: 520px;
    }

    .about-smk-section {
        margin-top: 0;
        padding: 32px 0 42px;
    }

    .about-smk-wrap {
        width: min(96vw, 980px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-card {
        margin-top: 0 !important;
        min-height: 0 !important;
    }

    .about-card:nth-child(2) {
        border-right: 0;
    }

    .about-card:last-child {
        grid-column: 1 / -1;
        border-top: 1px solid #e3e3e3;
        border-right: 0;
    }

    .feature-carousel {
        min-height: 600px;
    }

    .feature-card {
        width: min(94vw, 760px);
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 82vh;
        min-height: 82svh;
    }

    .hero-content {
        width: min(92vw, 560px);
        padding: 1.4rem 1.5rem;
        border-radius: 16px;
        gap: 0.7rem;
    }

    .hero-eyebrow {
        letter-spacing: 0.2rem;
        font-size: 0.72rem;
    }

    .hero-title {
        font-size: clamp(1.9rem, 8vw, 3.2rem);
    }

    .hero-actions {
        gap: 0.6rem;
    }

    .hero-content > p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin: 0;
    }

    body > nav {
        padding: 0.58rem 0.68rem;
        row-gap: 0.42rem;
    }

    body > nav .logo {
        font-size: 0.88rem;
    }

    body > nav .logo-img {
        width: 26px;
    }

    body > nav .sosmed-icon {
        display: none;
    }

    body > nav .ppdb-btn button {
        padding: 7px 10px;
        font-size: 0.6rem;
    }
    body > nav ul {
        gap: 0.58rem;
        padding-bottom: 2px;
    }

    body > nav ul li a {
        font-size: 0.71rem;
    }

    .slider-container,
    .slider-container .slider-items {
        height: 82vh;
        height: 82svh;
        min-height: 480px;
    }

    .alumni-section {
        padding: 54px 0 64px;
    }

    .alumni-head {
        margin-bottom: 16px;
    }

    .alumni-head h2 {
        font-size: 1.5rem;
    }

    .alumni-head p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .alumni-slide-container {
        padding-bottom: 10px;
    }

    .alumni-card-link {
        min-height: 332px;
        padding: 14px;
    }

    .alumni-card-image {
        height: 154px;
    }

    .alumni-card-badge {
        margin: 12px 0 10px;
        font-size: 0.75rem;
    }

    .alumni-card-title {
        font-size: 0.9rem;
        margin-bottom: 14px;
    }

    .alumni-controls {
        gap: 8px;
        padding: 8px 12px;
    }

    .alumni-section .swiper-pagination-bullet {
        width: 28px;
        height: 28px;
        font-size: 0.64rem;
    }

    .about-smk-section {
        margin-top: 0;
        padding: 24px 0 32px;
    }

    .about-smk-wrap {
        width: min(94vw, 620px);
        grid-template-columns: 1fr;
    }

    .about-card {
        width: 100%;
        height: auto;
        min-height: 0 !important;
        margin-top: 0 !important;
        border-right: 0;
        border-bottom: 1px solid #e3e3e3;
    }

    .about-card:last-child {
        border-bottom: 0;
        border-top: 0;
    }

    .about-image {
        height: 190px;
    }

    .about-head {
        min-height: 88px;
        padding: 14px 16px;
        gap: 12px;
    }

    .about-icon {
        font-size: 1.7rem;
    }

    .about-head h3 {
        font-size: 1.1rem;
    }

    .about-head-cta {
        font-size: 0.85rem;
    }

    .about-body {
        padding: 18px 16px 18px;
    }

    .about-body p {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    .feature-carousel {
        min-height: 620px;
    }

    .feature-card {
        min-height: 520px;
    }

    .feature-media img {
        height: 240px;
    }

    .news-shell,
    .partnership-shell,
    .footer-shell {
        width: min(94vw, 640px);
    }

    .news-mini-card {
        grid-template-columns: 88px 1fr;
    }

    .news-mini-card img {
        height: 70px;
    }

    .partner-logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        contain: layout style paint;
    }

    .footer-map-frame {
        height: 190px;
    }
}

@media (max-width: 480px) {
    .profile-shell {
        width: min(94vw, 520px);
    }

    .profile-frame-nav {
        width: 34px;
        height: 34px;
    }

    .profile-copy p {
        font-size: 1rem;
    }

    .profile-feature-card {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .hero-content {
        width: min(92vw, 480px);
        padding: 1.1rem 1.2rem;
        gap: 0.5rem;
    }

    .hero-eyebrow {
        font-size: 0.62rem;
        letter-spacing: 0.18rem;
    }

    .hero-title {
        font-size: clamp(1.5rem, 9vw, 2.2rem);
    }

    .hero-content > p {
        font-size: 0.78rem;
        line-height: 1.45;
    }

    .hero-btn {
        padding: 8px 16px;
        font-size: 0.68rem;
    }

    .whatsapp-fab {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
        font-size: 1.65rem;
    }

    .whatsapp-fab-tooltip {
        right: calc(100% + 10px);
        font-size: 0.72rem;
        padding: 7px 10px;
    }

    .about-head {
        min-height: 74px;
        padding: 12px 14px;
        gap: 10px;
    }

    .about-icon {
        font-size: 1.45rem;
    }

    .about-head h3 {
        font-size: 0.98rem;
    }

    .about-head-cta {
        font-size: 0.78rem;
    }

    .about-image {
        height: 170px;
    }

    .about-body {
        padding: 14px 12px;
    }

    .about-body p {
        font-size: 0.82rem;
        line-height: 1.55;
    }

    body > nav .ppdb-btn {
        display: none;
    }

    body > nav ul li a {
        font-size: 0.68rem;
    }

    .slider-container .slider-nav {
        width: 34px;
        height: 34px;
        font-size: 1.25rem;
    }

    .slider-container .slider-prev {
        left: 6px;
    }

    .slider-container .slider-next {
        right: 6px;
    }

    .slider-items .slider-content {
        width: min(90vw, 520px);
        padding: 1.15rem 2.1rem;
    }

    .slider-content .slider-title {
        font-size: clamp(1.7rem, 10vw, 2.35rem);
    }

    .feature-card {
        padding: 14px 12px 18px;
        min-height: 500px;
    }

    .news-featured-body h3 {
        font-size: 1.1rem;
    }

    .news-detail-breadcrumb {
        font-size: 0.76rem;
    }
}

@media (max-width: 768px) {
    body > nav {
        padding: 0.72rem 0.82rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 0.4rem;
        background: linear-gradient(
            145deg,
            rgba(5, 26, 34, 0.96),
            rgba(8, 43, 54, 0.96)
        );
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        z-index: 20;
    }

    body > nav.is-scrolled {
        background: linear-gradient(
            145deg,
            rgba(5, 26, 34, 0.96),
            rgba(8, 43, 54, 0.96)
        );
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    body > nav .logo {
        font-size: 0.9rem;
        gap: 8px;
        color: #eafcff;
        margin-right: auto;
    }

    body > nav .logo-img {
        width: 32px;
    }

    body > nav .sosmed-icon,
    body > nav .ppdb-btn,
    body > nav .lang-switch {
        display: none;
    }

    body > nav .nav-mobile-actions {
        margin-left: 0;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
    }

    body > nav .nav-mobile-search {
        display: none !important;
    }

    body > nav .nav-mobile-search,
    body > nav .nav-mobile-menu {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        border: 1px solid rgba(133, 229, 233, 0.45);
        background: rgba(7, 46, 58, 0.82);
        color: #eafcff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 1.12rem;
        transition:
            transform 0.2s ease,
            border-color 0.2s ease,
            background-color 0.2s ease;
    }

    body > nav .nav-mobile-menu {
        cursor: pointer;
    }

    body > nav .nav-mobile-search:hover,
    body > nav .nav-mobile-menu:hover {
        transform: translateY(-1px);
        border-color: rgba(184, 247, 249, 0.8);
        background: rgba(16, 71, 88, 0.9);
    }

    body > nav ul {
        position: absolute;
        top: calc(100% + 10px);
        left: 12px;
        right: 12px;
        margin: 0;
        padding: 10px;
        border-radius: 12px;
        border: 1px solid rgba(130, 224, 228, 0.35);
        background: linear-gradient(
            165deg,
            rgba(7, 30, 39, 0.98),
            rgba(6, 52, 64, 0.96)
        );
        box-shadow: 0 16px 28px rgba(0, 0, 0, 0.36);
        display: grid;
        gap: 4px;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition:
            max-height 0.28s ease,
            opacity 0.22s ease,
            transform 0.22s ease;
    }

    body > nav ul li {
        width: 100%;
    }

    body > nav ul li a {
        display: block;
        width: 100%;
        padding: 10px 12px;
        font-size: 0.9rem;
        border-radius: 8px;
        text-transform: none;
    }

    body > nav ul li.nav-mobile-only {
        display: block;
    }

    body > nav ul li .nav-dropdown-toggle {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        padding: 10px 12px;
        font-size: 0.9rem;
        border-radius: 8px;
        text-transform: none;
    }

    body > nav ul li a::after {
        display: none;
    }

    body > nav ul li .nav-dropdown-toggle::after {
        display: none;
    }

    /* Hide chevron arrows on mobile */
    body > nav .nav-dropdown-toggle .bi-chevron-down,
    body > nav .nav-dropdown-toggle .bi-chevron-up {
        display: none;
    }

    body > nav ul li a:hover {
        background: rgba(102, 214, 218, 0.18);
        color: #dffbff;
    }

    body > nav ul li .nav-dropdown-toggle:hover {
        background: rgba(102, 214, 218, 0.18);
        color: #dffbff;
    }

    body > nav .nav-dropdown {
        position: static;
        top: auto;
        left: auto;
        min-width: 0;
        width: 100%;
        margin-top: 0;
        padding: 0 6px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        max-height: 0;
        overflow: hidden;
        transition:
            max-height 0.24s ease,
            padding 0.24s ease,
            margin-top 0.24s ease;
    }

    body > nav .nav-has-dropdown.is-open > .nav-dropdown {
        max-height: 260px;
        margin-top: 4px;
        padding: 4px 6px 2px;
    }

    body > nav .nav-dropdown a {
        font-size: 0.85rem;
        padding: 8px 8px 8px 16px;
        border-radius: 0;
        background: transparent;
        border-left: 2px solid rgba(80, 205, 212, 0.3);
        margin-left: 8px;
    }
    
    body > nav .nav-dropdown a:hover {
        border-left-color: #66d6da;
        background: rgba(102, 214, 218, 0.1);
    }

    body > nav.nav-mobile-open ul {
        max-height: 70vh;
        opacity: 1;
        pointer-events: auto;
        overflow-y: auto;
        transform: translateY(0);
    }
}

/* Unified mobile navbar look */
@media (max-width: 768px) {
    body > nav {
        min-height: 60px;
        padding: 0.52rem 0.58rem;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0.5rem;
        background: linear-gradient(
            145deg,
            rgba(5, 26, 34, 0.97),
            rgba(6, 66, 82, 0.95)
        );
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        z-index: 20;
    }

    body > nav.is-scrolled {
        background: linear-gradient(
            145deg,
            rgba(5, 26, 34, 0.97),
            rgba(6, 66, 82, 0.95)
        );
    }

    body > nav .logo {
        font-size: 0.9rem;
        gap: 8px;
        color: #eafcff;
        margin-right: auto;
    }

    body > nav .logo-img {
        width: 33px;
    }

    body > nav .sosmed-icon,
    body > nav .ppdb-btn,
    body > nav .lang-switch {
        display: none;
    }

    body > nav .nav-mobile-actions {
        order: 1;
        margin-left: 0;
        margin-right: 2px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
    }

    body > nav .nav-mobile-search {
        display: none !important;
    }

    body > nav .nav-mobile-search,
    body > nav .nav-mobile-menu {
        width: 40px;
        height: 40px;
        border-radius: 11px;
        border: 1px solid rgba(133, 229, 233, 0.45);
        background: rgba(7, 46, 58, 0.82);
        color: #eafcff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 1.12rem;
        transition:
            transform 0.2s ease,
            border-color 0.2s ease,
            background-color 0.2s ease;
    }

    body > nav .nav-mobile-menu {
        cursor: pointer;
    }

    body > nav .nav-mobile-search:hover,
    body > nav .nav-mobile-menu:hover {
        transform: translateY(-1px);
        border-color: rgba(184, 247, 249, 0.8);
        background: rgba(16, 71, 88, 0.9);
    }

    body > nav ul {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        margin: 0;
        padding: 14px 12px 26px;
        border-radius: 0 0 14px 14px;
        border-top: 1px solid rgba(8, 28, 129, 0.24);
        border-left: 1px solid rgba(130, 224, 228, 0.18);
        border-right: 1px solid rgba(130, 224, 228, 0.18);
        border-bottom: 1px solid rgba(130, 224, 228, 0.2);
        background: linear-gradient(
            165deg,
            rgba(7, 30, 39, 0.98),
            rgba(6, 60, 72, 0.97)
        );
        box-shadow: 0 16px 28px rgba(0, 0, 0, 0.36);
        display: grid;
        gap: 7px;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition:
            opacity 0.22s ease,
            transform 0.22s ease,
            visibility 0.22s ease;
        z-index: 19;
    }

    body > nav ul li {
        width: 100%;
    }

    body > nav ul li a {
        display: block;
        width: 100%;
        padding: 12px 14px;
        font-size: 0.95rem;
        border-radius: 8px;
        text-transform: none;
    }

    body > nav ul li.nav-mobile-only {
        display: block;
    }

    body > nav ul li .nav-dropdown-toggle {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        padding: 12px 14px;
        font-size: 0.95rem;
        border-radius: 8px;
        text-transform: none;
    }

    body > nav ul li a::after,
    body > nav ul li .nav-dropdown-toggle::after {
        display: none;
    }

    body > nav ul li a:hover,
    body > nav ul li .nav-dropdown-toggle:hover {
        background: rgba(102, 214, 218, 0.18);
        color: #dffbff;
    }

    body > nav .nav-dropdown {
        position: static;
        top: auto;
        left: auto;
        min-width: 0;
        width: 100%;
        margin-top: 0;
        padding: 0 0 0 8px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        max-height: 0;
        overflow: hidden;
        transition:
            max-height 0.24s ease,
            padding 0.24s ease,
            margin-top 0.24s ease;
    }

    body > nav .nav-has-dropdown.is-open > .nav-dropdown {
        max-height: 340px;
        margin-top: 3px;
        padding: 4px 0 2px 8px;
    }

    body > nav .nav-dropdown a {
        font-size: 0.88rem;
        padding: 10px 10px 10px 18px;
        border-radius: 0;
        background: transparent;
        border: none;
        border-left: 2px solid rgba(80, 205, 212, 0.3);
        margin-left: 6px;
        transition: all 0.2s ease;
    }

    body > nav .nav-dropdown a:hover {
        border-left-color: #66d6da;
        background: rgba(102, 214, 218, 0.1);
    }

    body > nav.nav-mobile-open ul {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        overflow-y: auto;
        transform: translateY(0);
    }

    /* Hide chevron arrows on mobile */
    body > nav .nav-dropdown-toggle .bi-chevron-down,
    body > nav .nav-dropdown-toggle .bi-chevron-up {
        display: none;
    }

    /* Mobile Language Switcher Button */
    body > nav .nav-mobile-lang {
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid rgba(130, 224, 228, 0.15);
    }

    body > nav .nav-lang-toggle {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        padding: 12px 14px;
        font-size: 0.9rem;
        font-weight: 600;
        color: #b8f7f9;
        background: rgba(28, 165, 165, 0.12);
        border: 1px solid rgba(130, 224, 228, 0.25);
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.25s ease;
        font-family: inherit;
        text-transform: none;
    }

    body > nav .nav-lang-toggle:hover {
        background: rgba(28, 165, 165, 0.22);
        border-color: rgba(130, 224, 228, 0.5);
        color: #fff;
    }

    body > nav .nav-lang-toggle .bi-translate {
        font-size: 1.1rem;
    }
}

/* Campus Profile Section - Added from Profile.blade.php */
.campus-profile-section {
    padding: 120px 0;
    background: #f2fbfb;
    position: relative;
}

.campus-profile-container {
    width: min(1200px, 90vw);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.campus-profile-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.campus-profile-badge {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(
        120deg,
        rgba(88, 210, 210, 0.15),
        rgba(88, 210, 210, 0.05)
    );
    border: 1px solid rgba(88, 210, 210, 0.3);
    border-radius: 999px;
    color: #2d8f8f;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-size: 0.85rem;
}

.campus-profile-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-family: "Sora", sans-serif;
    font-weight: 800;
    color: #0a1a22;
    margin-bottom: 28px;
    line-height: 1.15;
}

.campus-profile-title span {
    color: #359d9d;
}

.campus-profile-desc {
    font-size: 1.15rem;
    color: #59656a;
    line-height: 1.8;
}

.campus-profile-split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
    align-items: center;
}

.campus-profile-features {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.campus-profile-feature {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.campus-profile-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.campus-profile-icon.icon-1 {
    background: linear-gradient(135deg, #58d2d2, #2fa1a8);
    box-shadow: 0 12px 24px rgba(47, 161, 168, 0.3);
}

.campus-profile-icon.icon-2 {
    background: linear-gradient(135deg, #0a1a22, #183d4e);
    box-shadow: 0 12px 24px rgba(10, 26, 34, 0.2);
}

.campus-profile-icon.icon-3 {
    background: linear-gradient(135deg, #4fb3b0, #368280);
    box-shadow: 0 12px 24px rgba(54, 130, 128, 0.3);
}

.campus-profile-feature-title {
    font-family: "Sora", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #0a1a22;
    margin-bottom: 12px;
}

.campus-profile-feature-desc {
    color: #59656a;
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

.campus-profile-image-frame {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
    aspect-ratio: 4/5;
}

.campus-profile-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.campus-profile-image-frame:hover img {
    transform: scale(1.05);
}

.campus-profile-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 26, 34, 0.8) 0%,
        transparent 50%
    );
    pointer-events: none;
}

.campus-profile-image-quote {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    color: white;
    font-weight: 600;
    font-size: 1.25rem;
    font-family: "Sora", sans-serif;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Vision Mission Section */
.vm-section {
    padding: 120px 0;
    background: #f2fbfb;
    position: relative;
    overflow: hidden;
}

.vm-section::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(88, 210, 210, 0.08) 0%,
        transparent 60%
    );
    border-radius: 50%;
    pointer-events: none;
}

.vm-container {
    width: min(1200px, 90vw);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

/* Vision Card (Premium Deep Ocean Design) */
.vision-card {
    background-color: #041219;
    border-radius: 40px;
    padding: 90px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(4, 18, 25, 0.3);
    border: 1px solid rgba(88, 210, 210, 0.18);
}

.vision-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: #58d2d2;
    filter: blur(120px);
    opacity: 0.1;
    pointer-events: none;
}

.vision-card::before {
    content: "\201C";
    position: absolute;
    top: -10px;
    left: 40px;
    font-size: 18rem;
    font-family: "Sora", sans-serif;
    color: rgba(88, 210, 210, 0.08); /* super faint quote mark */
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.vision-card h2 {
    font-family: "Outfit", sans-serif;
    color: #58d2d2;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.vision-card p {
    color: #f4fbff;
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    line-height: 1.5;
    max-width: 850px;
    margin: 0 auto;
    font-family: "Outfit", serif;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
}

.vision-card p span {
    background: linear-gradient(120deg, #58d2d2, #8ae2e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-family: "Sora", sans-serif;
    font-weight: bold;
}

/* Mission Area */
.mission-header {
    text-align: center;
    margin-bottom: 60px;
}

.mission-header h2 {
    font-family: "Outfit", sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #0c3337;
    font-weight: 800;
    margin-bottom: 16px;
}

.mission-header p {
    color: #59656a;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.mission-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(88, 210, 210, 0.15);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
    display: flex;
    flex-direction: column;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(88, 210, 210, 0.12);
    border-color: rgba(88, 210, 210, 0.5);
}

.mission-number {
    font-family: "Outfit", sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(88, 210, 210, 0.3);
    line-height: 1;
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.4s ease;
}

.mission-card:hover .mission-number {
    color: #58d2d2;
    -webkit-text-stroke: 0;
}

.mission-card p {
    color: #4a5559;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

/* Facilities Section */
.facilities {
    padding: 100px 0;
    background: #f2fbfb;
    position: relative;
    border-top: 1px solid rgba(88, 210, 210, 0.1);
}

.campus-fasilities-badge {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(
        120deg,
        rgba(88, 210, 210, 0.15),
        rgba(88, 210, 210, 0.05)
    );
    border: 1px solid rgba(88, 210, 210, 0.3);
    border-radius: 999px;
    color: #2d8f8f;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-size: 0.85rem;
}

.campus-fasilities-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-family: "Sora", sans-serif;
    font-weight: 800;
    color: #0a1a22;
    margin-bottom: 28px;
    line-height: 1.15;
}

.campus-fasilities-title span {
    color: #359d9d;
}

.facilities-head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.facilities-head h2 {
    font-family: "Outfit", sans-serif;
    color: #0c3337;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.facilities-head p {
    color: #59656a;
    font-size: 1.15rem;
    line-height: 1.7;
}

.facilities-body {
    width: min(1200px, 90vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.facilities-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(88, 210, 210, 0.15);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
    display: flex;
    flex-direction: column;
}

.facilities-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(88, 210, 210, 0.12);
    border-color: rgba(88, 210, 210, 0.4);
}

.facilities-card-img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.facilities-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.facilities-card:hover .facilities-card-img {
    transform: scale(1.08); /* Aesthetic zoom */
}

.facilities-card-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #ffffff;
    position: relative;
    z-index: 1;
}

.facilities-card-content h3 {
    font-family: "Outfit", sans-serif;
    color: #0f646a;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.facilities-card-content p {
    color: #59656a;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Facilities Modal */
.facility-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.facility-modal.is-active {
    opacity: 1;
    visibility: visible;
}

.facility-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.facility-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
    transform: scale(0.95) translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.facility-modal.is-active .facility-modal-content {
    transform: scale(1) translateY(0);
}

.facility-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 1.8rem;
    color: #0a1a22;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
    z-index: 10;
}

.facility-modal-close:hover {
    background: #ffffff;
    color: #e74c3c;
    transform: scale(1.05);
}

.facility-modal-body {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.facility-modal-body img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.facility-modal-text {
    padding: 35px 40px;
    background: #fdfefe;
}

.facility-modal-text h3 {
    font-family: "Outfit", sans-serif;
    color: #0f646a;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.facility-modal-text p {
    color: #59656a;
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

/* History Content Section */
.history-content {
    padding: 120px 0;
    background: #f2fbfb;
    position: relative;
    border-top: 1px solid rgba(88, 210, 210, 0.1);
}

/* Universal Section Header Components */
.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.section-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #2d8f8f;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 auto 20px;
    font-size: 0.82rem;
    transition: all 0.3s ease-in-out;
    user-select: none;
    text-align: center;
    width: 100%;
    padding: 0;
    flex-wrap: wrap;
}

.section-badge::before,
.section-badge::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: currentColor;
    opacity: 0.5;
    border-radius: 2px;
    flex-shrink: 0;
}

.section-badge:hover {
    opacity: 0.8;
}

.section-title {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    font-family: "Sora", sans-serif;
    font-weight: 800;
    color: #0a1a22;
    margin: 0 auto 20px;
    line-height: 1.15;
    text-align: center;
    width: 100%;
}

.section-title span {
    color: #359d9d;
    font-style: italic;
}

.section-desc {
    color: #59656a;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0 auto;
    text-align: center;
    max-width: 640px;
    width: 100%;
}

.history-content-body {
    width: min(1200px, 90vw);
    margin: 0 auto;
}

/* History Timeline */
.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

/* The vertical line */
.timeline-container::after {
    content: "";
    position: absolute;
    width: 2px;
    background: rgba(88, 210, 210, 0.3);
    top: 0;
    bottom: 0;
    left: 120px;
    margin-left: -1px;
}

.timeline-item {
    position: relative;
    width: 100%;
    display: flex;
    margin-bottom: 60px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Year indicator */
.timeline-year {
    width: 100px;
    padding-right: 30px;
    text-align: right;
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    color: #1b7f86;
    opacity: 0.8;
}

/* The glowing dot */
.timeline-dot {
    position: absolute;
    left: 120px;
    width: 20px;
    height: 20px;
    background: #58d2d2;
    border: 4px solid #f2fbfb;
    border-radius: 50%;
    top: 10px;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px rgba(88, 210, 210, 0.2);
    z-index: 1;
    transition: all 0.3s ease;
}

/* Content box */
.timeline-content {
    flex: 1;
    padding-left: 50px;
    position: relative;
    top: -5px;
}

.timeline-content h3 {
    font-family: "Outfit", sans-serif;
    color: #0c3337;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.timeline-content p {
    color: #59656a;
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
    background: white;
    padding: 24px 30px;
    border-radius: 20px;
    border: 1px solid rgba(88, 210, 210, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.timeline-item:hover .timeline-content p {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(88, 210, 210, 0.1);
    border-color: rgba(88, 210, 210, 0.3);
}

.timeline-item:hover .timeline-dot {
    background: #0f646a;
    box-shadow: 0 0 0 6px rgba(88, 210, 210, 0.3);
}

/* Mobile responsive timeline */
@media screen and (max-width: 768px) {
    .timeline-container::after {
        left: 30px;
    }
    .timeline-item {
        flex-direction: column;
    }
    .timeline-year {
        width: auto;
        text-align: left;
        padding-left: 60px;
        padding-right: 0;
        margin-bottom: 15px;
        font-size: 1.8rem;
    }
    .timeline-dot {
        left: 30px;
        top: 6px;
    }
    .timeline-content {
        padding-left: 60px;
    }
    .section-badge {
        align-items: center;
        justify-content: center;
    }
}

/* ============ ALUMNI REVIEWS QUOTE GRID ============ */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testi-card {
    background: #ffffff;
    border: 1px solid rgba(28, 165, 165, 0.15);
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: 0 6px 24px rgba(10, 40, 50, 0.06);
    text-decoration: none;
}
.testi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(10, 40, 50, 0.12);
    border-color: rgba(28, 165, 165, 0.4);
}
.testi-card.is-featured {
    grid-row: span 2;
    background: linear-gradient(160deg, #e8f9f9, #d0f0f0);
    border-color: rgba(28, 165, 165, 0.3);
}
.testi-card::before {
    content: "\201C";
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 1;
    color: rgba(28, 165, 165, 0.12);
    position: absolute;
    top: 14px;
    right: 22px;
    pointer-events: none;
}
.testi-stars {
    display: flex;
    gap: 3px;
    color: #f5a623;
    font-size: 0.9rem;
}
.testi-quote {
    font-size: 0.97rem;
    color: #2d4a50;
    line-height: 1.75;
    flex: 1;
    margin: 0;
}
.testi-card.is-featured .testi-quote {
    font-size: 1.05rem;
}
.testi-dest {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(28, 165, 165, 0.1);
    border: 1px solid rgba(28, 165, 165, 0.25);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #0f6c75;
    width: fit-content;
    margin: 0;
}
.testi-dest img {
    width: 18px;
    height: 13px;
    object-fit: cover;
    border-radius: 2px;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(28, 165, 165, 0.15);
    padding-top: 18px;
    margin-top: auto;
}
.testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Outfit", sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}
.testi-author-info h4 {
    font-size: 0.97rem;
    font-weight: 700;
    color: #021a22;
    margin: 0 0 3px;
}
.testi-author-info p {
    font-size: 0.8rem;
    color: #557278;
    margin: 0;
}

@media (max-width: 900px) {
    .testi-grid {
        grid-template-columns: 1fr 1fr;
    }
    .testi-card.is-featured {
        grid-row: span 1;
    }
}
@media (max-width: 600px) {
    .testi-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Global Section Header Responsive ── */
@media (max-width: 768px) {
    .section-badge {
        font-size: 0.74rem;
        gap: 10px;
        margin-bottom: 14px;
    }

    .section-badge::before,
    .section-badge::after {
        width: 28px;
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
        margin-bottom: 14px;
    }

    .section-desc {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .section-badge {
        font-size: 0.7rem;
        gap: 8px;
        margin-bottom: 10px;
        letter-spacing: 0.08em;
    }

    .section-badge::before,
    .section-badge::after {
        width: 20px;
    }

    .section-title {
        font-size: clamp(1.4rem, 7vw, 1.9rem);
        margin-bottom: 10px;
    }

    .section-desc {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* ============ TESTIMONIAL FORM STYLING ============ */
.card {
    background: #ffffff !important;
    border: 1px solid #d4e8e8 !important;
    box-shadow: 0 8px 18px rgba(45, 143, 143, 0.12) !important;
    border-radius: 12px !important;
}

.form-label {
    color: #2d8f8f;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.form-control {
    background: #ffffff !important;
    border: 1px solid #d4e8e8 !important;
    color: #0a1a22;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    border-color: #50d6d6 !important;
    box-shadow: 0 0 0 3px rgba(80, 214, 214, 0.1) !important;
    color: #0a1a22;
}

.form-control::placeholder {
    color: #8fa5a5;
}

.form-select {
    background: #ffffff !important;
    border: 1px solid #d4e8e8 !important;
    color: #0a1a22;
    border-radius: 8px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-select:focus {
    border-color: #50d6d6 !important;
    box-shadow: 0 0 0 3px rgba(80, 214, 214, 0.1) !important;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

textarea.form-control:focus {
    border-color: #50d6d6 !important;
    box-shadow: 0 0 0 3px rgba(80, 214, 214, 0.1) !important;
}

button.btn {
    background: #50d6d6 !important;
    border: none !important;
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    padding: 10px 24px;
    transition: background 0.2s ease, transform 0.2s ease;
}

button.btn:hover {
    background: #3ab8b8 !important;
}

button.btn:active {
    background: #2fa1a8 !important;
}

/* File input styling */
.form-control[type="file"]::file-selector-button {
    background: #50d6d6 !important;
    border: none !important;
    color: #ffffff !important;
    padding: 8px 18px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background 0.2s ease !important;
    margin-right: 12px !important;
}

.form-control[type="file"]::file-selector-button:hover {
    background: #3ab8b8 !important;
}

.form-control[type="file"] {
    padding: 8px 12px !important;
    color: #0a1a22 !important;
}
