:root {
    --orange: #ff6a00;
    --orange-2: #ff8a1d;
    --orange-soft: #fff3e8;
    --dark: #151515;
    --text: #333;
    --muted: #777;
    --white: #fff;
    --shadow: 0 18px 45px rgba(0, 0, 0, .10);
    --radius: 24px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

.container {
    width: min(1180px, 92%);
    margin: auto
}

.topbar {
    background: var(--dark);
    color: #fff;
    font-size: 13px;
    padding: 9px 0;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.topbar span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-right: 14px;
}

header {
    position: sticky;
    top: 0;
    z-index: 99999;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

.navbar {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    color: var(--dark);
    flex-shrink: 0;
}

.logo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    display: grid;
    place-items: center;
    color: #111;
    font-weight: 900;
    box-shadow: 0 10px 25px rgba(255, 106, 0, .35);
    overflow: hidden;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
    background: #fff;
}

.logo-img {
    background: #fff
}

.brand small {
    display: block;
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
    margin-top: 2px;
}

nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
    font-weight: 600;
}

nav a:hover {
    color: var(--orange)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 999px;
    background: var(--orange);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(255, 106, 0, .28);
    border: 0;
    cursor: pointer;
}

.btn:hover {
    background: #e85f00;
    transform: translateY(-1px);
}

.menu-btn {
    display: none;
    font-size: 25px;
    color: var(--orange);
    cursor: pointer;
}

#menu-toggle {
    display: none
}

/* DROPDOWN PROFIL */
.nav-dropdown {
    position: relative;
}

.nav-dropbtn {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-dropbtn i {
    font-size: 12px;
    transition: .3s;
}

.nav-dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 255px;
    background: #fff;
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, .12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .25s;
    z-index: 999999;
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    color: #222;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background: #fff3e8;
    color: #ff6a00;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .nav-dropbtn i {
    transform: rotate(180deg);
}

/* HERO */
.hero-carousel {
    position: relative;
    width: 100%;
    height: calc(100vh - 120px);
    min-height: 650px;
    overflow: hidden;
    background: #ff6a00;
    padding: 0;
}

.carousel-fade-custom,
.carousel-inner-custom,
.carousel-item-custom,
.hero-img-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.carousel-fade-custom input {
    display: none
}

.carousel-item-custom {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease, visibility 1.2s ease;
}

.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zoom-slow {
    animation: zoomSlow 9s ease-in-out infinite alternate;
}

.bg-logo-slide {
    background: linear-gradient(135deg, #ff6a00, #ff9b2f);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-logo-slide img.logo-slide-img {
    width: min(520px, 70%);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 45px rgba(0, 0, 0, .25));
}

.overlay-orange {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 106, 0, .92) 0%, rgba(255, 106, 0, .75) 34%, rgba(255, 106, 0, .32) 66%, rgba(0, 0, 0, .18) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .28));
    z-index: 1;
}

.carousel-caption-custom {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.caption-box {
    width: min(720px, 92%);
    color: #fff;
    animation: captionIn .95s ease both;
}

.caption-box h1 {
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1.04;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 0 10px 30px rgba(0, 0, 0, .24);
}

.caption-box h1 span {
    color: #ffe2c7
}

.caption-box p {
    font-size: 18px;
    line-height: 1.85;
    color: #fff;
    max-width: 680px;
    margin-bottom: 28px;
    text-shadow: 0 6px 18px rgba(0, 0, 0, .22);
}

.btn-light-custom {
    background: #fff;
    color: #ff6a00;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
}

.btn-light-custom:hover {
    background: #111;
    color: #fff;
}

#slide1:checked~.carousel-inner-custom .item-1,
#slide2:checked~.carousel-inner-custom .item-2,
#slide3:checked~.carousel-inner-custom .item-3 {
    opacity: 1;
    visibility: visible;
}

.carousel-control-custom {
    position: absolute;
    left: 50%;
    bottom: 88px;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.carousel-control-custom label {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .55);
    border: 2px solid rgba(255, 255, 255, .8);
    cursor: pointer;
    transition: .25s;
}

#slide1:checked~.carousel-control-custom label:nth-child(1),
#slide2:checked~.carousel-control-custom label:nth-child(2),
#slide3:checked~.carousel-control-custom label:nth-child(3) {
    background: #fff;
    transform: scale(1.25);
}

.custom-shape-divider-bottom {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 115px;
    overflow: hidden;
    line-height: 0;
    z-index: 8;
}

.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 115px;
}

@keyframes zoomSlow {
    from {
        transform: scale(1)
    }

    to {
        transform: scale(1.1)
    }
}

@keyframes captionIn {
    from {
        opacity: 0;
        transform: translateY(36px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* SECTION UMUM */
section {
    padding: 82px 0
}

.section-title {
    text-align: center;
    margin-bottom: 42px;
}

.section-title .sub {
    color: var(--orange);
    font-weight: 800;
    letter-spacing: .08em;
    font-size: 13px;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: clamp(28px, 4vw, 42px);
    color: #171717;
    margin-top: 8px;
}

.section-title p {
    color: #666;
    max-width: 680px;
    margin: 12px auto 0;
    line-height: 1.8;
}

/* PROFIL */
.about-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 42px;
    align-items: center;
}

.about-img {
    border-radius: 32px;
    min-height: 420px;
    background:
        linear-gradient(180deg, rgba(255, 106, 0, .08), rgba(0, 0, 0, .18)),
        url('upacara.jpg') center/cover;
    box-shadow: var(--shadow);
}

.about-content h3 {
    font-size: 34px;
    color: #161616;
    margin-bottom: 14px;
}

.about-content p {
    line-height: 1.9;
    color: #555;
    margin-bottom: 18px;
}

.check-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.check-list div {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: var(--orange-soft);
    padding: 14px 16px;
    border-radius: 16px;
    font-weight: 600;
}

.check-list i {
    color: var(--orange);
    margin-top: 4px;
}

/* PRESTASI */
.prestasi-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .62)),
        url('gedung.jpg') center/cover fixed;
}

.prestasi-section .section-title h2,
.prestasi-section .section-title p {
    color: #fff;
}

.prestasi-section .section-title .sub {
    color: #ffb36b;
}

.prestasi-section::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 90px;
    background: #fff;
    clip-path: polygon(0 55%, 12% 45%, 28% 62%, 45% 42%, 63% 58%, 80% 38%, 100% 52%, 100% 100%, 0 100%);
    z-index: 1;
}

.prestasi-section .container {
    position: relative;
    z-index: 2;
}

.prestasi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.prestasi-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
    transition: .25s;
}

.prestasi-card:hover {
    transform: translateY(-7px);
}

.prestasi-photo {
    height: 210px;
    overflow: hidden;
    background: #fff7ef;
}

.prestasi-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prestasi-photo.contain img {
    object-fit: contain;
    padding: 20px;
}

.prestasi-content {
    padding: 22px 22px 26px;
    color: #222;
}

.prestasi-content span {
    display: inline-block;
    background: #fff0e3;
    color: #ff6a00;
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 12px;
}

.prestasi-content h3 {
    font-size: 19px;
    line-height: 1.35;
    margin-bottom: 16px;
    color: #171717;
}

.prestasi-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff6a00;
    font-weight: 800;
    font-size: 14px;
}

.prestasi-link:hover {
    color: #111
}

/* KEUNGGULAN */
.logo-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 220px));
    gap: 18px;
    justify-content: center;
    margin-bottom: 28px;
}

.logo-school-card {
    background: #fff;
    border: 1px solid #ffe1c2;
    border-radius: 22px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .06);
    font-weight: 700;
    color: #222;
}

.logo-school-card img {
    height: 105px;
    width: 100%;
    object-fit: contain;
    margin-bottom: 10px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.card {
    background: #fff;
    border: 1px solid #ffe1c2;
    border-radius: var(--radius);
    padding: 28px 22px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .06);
    transition: .25s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.card h3 {
    font-size: 19px;
    margin-bottom: 10px;
    color: #171717;
}

.card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* PROGRAM */
.program {
    background:
        linear-gradient(rgba(0, 0, 0, .82), rgba(0, 0, 0, .84)),
        url('gedung.jpg') center/cover fixed;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.program::before {
    content: "";
    position: absolute;
    inset: auto -90px -140px auto;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: var(--orange);
    opacity: .22;
}

.program .section-title h2,
.program .section-title p {
    color: #fff;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    position: relative;
    z-index: 2;
}

.program-box {
    position: relative;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 28px;
    padding: 26px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .25);
}

.program-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .82));
    z-index: 1;
}

.program-box>div,
.program-box h3,
.program-box p {
    position: relative;
    z-index: 2;
}

.program-box.academic {
    background: url('gedung.jpg') center/cover
}

.program-box.extra {
    background: url('upacara.jpg') center/cover
}

.program-box.character {
    background: url('logo_sekolah.png') center/contain no-repeat,
        linear-gradient(135deg, #ff6a00, #ff9b2f);
    background-size: 180px, cover;
    background-position: center top 40px, center;
}

.program-content {
    width: 100%
}

.program-box h3 {
    margin-bottom: 10px;
    color: #fff
}

.program-box p {
    color: #ddd;
    line-height: 1.7;
    font-size: 14px
}

/* BERITA */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news {
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .08);
}

.news-img {
    height: 210px;
    background: center/cover;
}

.news-body {
    padding: 22px
}

.date {
    font-size: 13px;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 8px;
}

.news h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #181818;
}

.news p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, var(--orange), #ff9b2f);
    color: #fff;
    border-radius: 36px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    box-shadow: 0 22px 50px rgba(255, 106, 0, .28);
}

.cta h2 {
    font-size: 34px;
    margin-bottom: 8px;
}

.cta p {
    opacity: .92;
    line-height: 1.7;
}

.cta .btn {
    background: #111;
    color: #fff;
    box-shadow: none;
}

/* FOOTER */
footer {
    background: #121212;
    color: #fff;
    padding: 60px 0 22px;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.footer-video-section {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 34px;
    align-items: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, rgba(255, 106, 0, .12), rgba(255, 255, 255, .03));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 32px;
    padding: 28px;
    backdrop-filter: blur(10px);
}

.footer-video-box {
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .35);
    border: 4px solid rgba(255, 255, 255, .08);
}

.footer-video-box video {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
    background: #000;
}

.footer-video-text span {
    color: #ff8a1d;
    font-weight: 800;
    letter-spacing: .08em;
    font-size: 13px;
}

.footer-video-text h2 {
    font-size: 42px;
    line-height: 1.15;
    margin: 14px 0 16px;
    color: #fff;
}

.footer-video-text p {
    font-size: 16px;
    line-height: 1.9;
    color: #d5d5d5;
}

.footer-map {
    margin-top: 18px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, .08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
}

.footer-map iframe {
    width: 100%;
    height: 220px;
    border: 0;
    display: block;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 35px;
}

footer h3 {
    margin-bottom: 14px
}

footer p,
footer li {
    color: #cfcfcf;
    line-height: 1.8;
    font-size: 14px;
}

footer ul {
    list-style: none
}

footer a:hover {
    color: var(--orange)
}

.footer-logos {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 18px;
}

.footer-logos img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    background: #fff;
    border-radius: 14px;
    padding: 6px;
}

.social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.social a {
    width: 38px;
    height: 38px;
    background: var(--orange);
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 18px;
    text-align: center;
    color: #bbb;
    font-size: 13px;
}

/* TABLET */
@media(max-width:900px) {
    .topbar {
        display: none
    }

    body {
        padding-top: 68px;
    }

    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
    }

    .navbar {
        height: 68px;
    }

    .menu-btn {
        display: flex;
        width: 42px;
        height: 42px;
        border-radius: 14px;
        background: var(--orange-soft);
        align-items: center;
        justify-content: center;
        font-size: 20px;
        flex-shrink: 0;
    }

    nav {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        width: 100%;
        max-height: calc(100vh - 68px);
        overflow-y: auto;
        background: #fff;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 10px 20px 18px;
        border-radius: 0 0 22px 22px;
        box-shadow: 0 18px 32px rgba(0, 0, 0, .12);
        z-index: 99998;
    }

    nav a {
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid #f1f1f1;
        font-size: 14px;
    }

    nav .btn {
        margin-top: 10px;
        width: 100%;
    }

    #menu-toggle:checked~nav {
        display: flex;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropbtn {
        width: 100%;
        justify-content: space-between;
        padding: 14px 0;
        border-bottom: 1px solid #f1f1f1;
        cursor: pointer;
    }

    .nav-dropdown-menu {
        position: static;
        min-width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        background: #fff7ef;
        border-radius: 16px;
        margin: 8px 0 10px;
        padding: 6px;
    }

    .nav-dropdown-menu a {
        padding: 12px 14px;
        font-size: 13px;
        border-radius: 12px;
        border-bottom: 0;
        white-space: normal;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        display: none;
    }

    .nav-dropdown.active .nav-dropdown-menu {
        display: block;
    }

    .nav-dropdown.active .nav-dropbtn i {
        transform: rotate(180deg);
    }

    .hero-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .program-grid,
    .news-grid,
    .prestasi-grid {
        grid-template-columns: 1fr;
    }

    .cta {
        flex-direction: column;
        text-align: center;
        padding: 34px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* HP */
@media(max-width:768px) {
    .container {
        width: 92%
    }

    .brand {
        gap: 10px;
        min-width: 0;
    }

    .brand strong {
        font-size: 13px;
        line-height: 1.2;
        display: block;
        white-space: nowrap;
        max-width: 235px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .brand small {
        font-size: 11px;
    }

    .logo {
        width: 44px;
        height: 44px;
        font-size: 14px;
        flex-shrink: 0;
    }

    .hero-carousel {
        height: 620px;
        min-height: 620px;
    }

    .carousel-caption-custom {
        align-items: center;
        padding-top: 20px;
    }

    .overlay-orange {
        background: linear-gradient(180deg, rgba(255, 106, 0, .88) 0%, rgba(255, 106, 0, .72) 48%, rgba(0, 0, 0, .32) 100%);
    }

    .caption-box {
        width: 100%;
        padding: 0 4px;
    }

    .caption-box h1 {
        font-size: 34px;
        line-height: 1.15;
    }

    .caption-box p {
        font-size: 14px;
        line-height: 1.75;
    }

    .carousel-control-custom {
        bottom: 70px
    }

    .custom-shape-divider-bottom {
        height: 80px
    }

    .custom-shape-divider-bottom svg {
        height: 80px
    }

    section {
        padding: 52px 0
    }

    .section-title {
        margin-bottom: 28px;
    }

    .section-title .sub {
        font-size: 11px;
    }

    .section-title h2 {
        font-size: 26px;
        line-height: 1.25;
    }

    .section-title p {
        font-size: 14px;
        line-height: 1.7;
    }

    .about-grid {
        gap: 26px;
    }

    .about-img {
        min-height: 280px;
        border-radius: 24px;
    }

    .about-content h3 {
        font-size: 24px;
    }

    .about-content p {
        font-size: 14px;
        line-height: 1.75;
    }

    .check-list div {
        padding: 12px 14px;
        border-radius: 14px;
        font-size: 13px;
    }

    .cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .card {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .icon {
        width: 50px;
        height: 50px;
        border-radius: 16px;
        font-size: 20px;
        margin-bottom: 14px;
    }

    .program-box {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .prestasi-section {
        background:
            linear-gradient(135deg, rgba(0, 0, 0, .84), rgba(0, 0, 0, .68)),
            url('gedung.jpg') center/cover;
    }

    .prestasi-card {
        border-radius: 22px;
    }

    .prestasi-photo {
        height: 175px;
    }

    .prestasi-content {
        padding: 18px 18px 22px;
    }

    .prestasi-content h3,
    .card h3,
    .program-box h3,
    .news h3 {
        font-size: 17px;
    }

    .prestasi-content p,
    .card p,
    .program-box p,
    .news p {
        font-size: 13px;
        line-height: 1.7;
    }

    .news {
        border-radius: 20px;
    }

    .news-img {
        height: 180px;
    }

    .news-body {
        padding: 18px;
    }

    .cta {
        padding: 28px 20px;
        border-radius: 24px;
        display: block;
        text-align: center;
    }

    .cta h2 {
        font-size: 24px;
        line-height: 1.25;
    }

    .cta p {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .footer-video-section {
        grid-template-columns: 1fr;
        padding: 18px;
        border-radius: 24px;
        gap: 22px;
    }

    .footer-video-box video {
        min-height: 220px;
    }

    .footer-video-text h2 {
        font-size: 28px;
    }

    .footer-video-text p {
        font-size: 14px;
        line-height: 1.75;
    }

    .footer-map iframe {
        height: 200px;
    }

    footer {
        padding: 44px 0 18px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    footer h3 {
        font-size: 17px;
    }

    footer p,
    footer li {
        font-size: 13px;
    }
}

@media(max-width:430px) {
    .brand strong {
        max-width: 215px;
    }
}

@media(max-width:380px) {
    .brand strong {
        max-width: 190px;
    }
}

@media(max-width:768px) {

    body {
        text-align: center;
    }

    .container {
        width: 92%;
        margin-left: auto;
        margin-right: auto;
    }

    .about-content,
    .check-list div,
    .card,
    .program-box,
    .news,
    .prestasi-card,
    .cta,
    footer {
        text-align: center;
    }

    .check-list div {
        justify-content: center;
    }

    .icon {
        margin-left: auto;
        margin-right: auto;
    }

    .section-title {
        text-align: center !important;
    }

    .about-content .section-title {
        text-align: center !important;
    }

    .prestasi-link,
    .btn {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-logos,
    .social {
        justify-content: center;
    }

    .footer-video-text {
        text-align: center;
    }

    @media(max-width:900px) {

        nav {
            text-align: center;
        }

        nav>a,
        .nav-dropbtn {
            text-align: center;
            justify-content: center;
        }

        .nav-dropbtn {
            position: relative;
        }

        .nav-dropbtn i {
            position: absolute;
            right: 0;
        }

        .nav-dropdown-menu {
            text-align: center;
        }

        .nav-dropdown-menu a {
            text-align: center;
            justify-content: center;
        }
    }
}