/* ===================================================== */
/* GLOBAL */
/* ===================================================== */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

    scroll-behavior: smooth;

}
.nav-right {

    display: flex;

    align-items: center;

    gap: 14px;

    position: relative;

    z-index: 2001;

}
body {

    font-family: 'Poppins', sans-serif;

    color: #0f172a;

    overflow-x: hidden;

    background:
        radial-gradient(
            circle at top left,
            rgba(79,70,229,0.18),
            transparent 30%
        ),

        radial-gradient(
            circle at top right,
            rgba(37,99,235,0.15),
            transparent 35%
        ),

        linear-gradient(
            135deg,
            #eef4ff,
            #f8fafc,
            #eef2ff
        );

    min-height: 100vh;

}

img {

    max-width: 100%;

    display: block;

}

a {

    text-decoration: none;

}

html {

    overflow-x: hidden;

}

/* ===================================================== */
/* LOADER */
/* ===================================================== */

.page-loader {

    position: fixed;

    inset: 0;

    background: white;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 9999;

}

.loader-content {

    text-align: center;

}
.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 8px;
    border-radius: 6px;
    background: #f5f5f5; /* beda tipis dari background card */
}

.schedule-badge {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #4f46e5; /* warna aksen, sesuaikan */
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.schedule-detail {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    line-height: 1.4;
}
.spinner {

    width: 65px;
    height: 65px;

    border-radius: 50%;

    border: 5px solid #e5e7eb;
    border-top: 5px solid #2563eb;

    animation: spin 1s linear infinite;

    margin: auto auto 15px;

}

.loader-content p {

    color: #64748b;

    font-size: 15px;

}

@keyframes spin {

    to {

        transform: rotate(360deg);

    }

}

header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: transparent;

    padding-top: 4px;

}

/* ===================================================== */
/* NAVBAR */
/* ===================================================== */

.navbar {

    width: 92%;

    height: 82px;

    margin: 14px auto;

    padding: 0 26px;

    border-radius: 28px;

    position: relative;

    overflow: visible;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.22),
            rgba(255,255,255,0.08)
        );

    backdrop-filter: blur(22px);

    -webkit-backdrop-filter: blur(22px);

    border: 1px solid rgba(255,255,255,0.28);

    box-shadow:
        0 8px 32px rgba(31,38,135,0.12),
        inset 0 1px 1px rgba(255,255,255,0.35);

}

/* efek glow */

.navbar::before {

    content: '';

    position: absolute;

    inset: 0;

    border-radius: inherit;

    background:
        linear-gradient(
            120deg,
            rgba(255,255,255,0.25),
            rgba(255,255,255,0.05),
            rgba(255,255,255,0.18)
        );

    opacity: 0.7;

    pointer-events: none;

}

/* inner glass border */

.navbar::after {

    content: '';

    position: absolute;

    inset: 1px;

    border-radius: inherit;

    border: 1px solid rgba(255,255,255,0.14);

    pointer-events: none;

}

/* ===================================================== */
/* LOGO */
/* ===================================================== */

.logo-wrap {

    display: flex;

    align-items: center;

    gap: 16px;

}

.logo-wrap img {

    width: 58px;
    height: 58px;

    border-radius: 50%;

    object-fit: cover;

    background: rgba(255,255,255,0.4);

    padding: 4px;

    border: 1px solid rgba(255,255,255,0.35);

    box-shadow:
        0 4px 18px rgba(37,99,235,0.12);

}

.logo-text {

    display: flex;

    flex-direction: column;

    justify-content: center;

}

.logo-text h1 {

    font-size: 18px;

    font-weight: 700;

    line-height: 1.2;

    color: #0f172a;

    margin-bottom: 5px;

    text-shadow:
        0 1px 2px rgba(255,255,255,0.45);

}

.logo-text span {

    font-size: 15px;

    color: #475569;

    font-weight: 500;

    line-height: 1.2;

}

/* ===================================================== */
/* NAVIGATION */
/* ===================================================== */

.nav-menu {

    display: flex;

    align-items: center;

    gap: 38px;

}

.nav-menu a {

    color: #1e293b;

    font-weight: 500;

    transition: 0.3s;

    position: relative;

    text-shadow:
        0 1px 1px rgba(255,255,255,0.4);

}

.nav-menu a::after {

    content: '';

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0%;
    height: 2px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            #2563eb,
            #4f46e5
        );

    transition: 0.3s;

}

.nav-menu a:hover {

    color: #2563eb;

}

.nav-menu a:hover::after {

    width: 100%;

}
/* ===================================================== */
/* BUTTON */
/* ===================================================== */

.btn-login {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 13px 24px;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #4f46e5
        );

    color: white;

    font-size: 15px;

    font-weight: 600;

    border: 1px solid rgba(255,255,255,0.2);

    transition: 0.35s ease;

    box-shadow:
        0 10px 25px rgba(37,99,235,0.22);

    position: relative;

    overflow: hidden;

}

.btn-login::before {

    content: '';

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,0.35),
            transparent
        );

    transform: translateX(-120%);

    transition: 0.6s;

}

.btn-login:hover::before {

    transform: translateX(120%);

}

.btn-login:hover {

    transform: translateY(-3px);

    box-shadow:
        0 16px 28px rgba(37,99,235,0.28);

}
/* ===================================================== */
/* MENU TOGGLE */
/* ===================================================== */

.menu-toggle {

    display: none;

    width: 44px;
    height: 44px;

    border: none;

    border-radius: 12px;

    background: #f1f5f9;

    color: #0f172a;

    font-size: 24px;

    cursor: pointer;

    align-items: center;
    justify-content: center;

    transition: 0.3s ease;

    position: relative;

    z-index: 3000;

    pointer-events: auto;

}

.menu-toggle:hover {

    background: #e2e8f0;

}

/* ===================================================== */
/* HERO */
/* ===================================================== */

.hero {

    width: 92%;

    margin: auto;

    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 80px;

    padding-top: 140px;

    position: relative;

}

.hero::before {

    content: '';

    position: absolute;

    top: -120px;
    right: -120px;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background:
        radial-gradient(
            rgba(79,70,229,0.18),
            transparent 70%
        );

    z-index: -1;

}

.hero-text {

    flex: 1;

    max-width: 620px;

}

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 22px;

    border-radius: 999px;

    background: rgba(255,255,255,0.75);

    border: 1px solid #dbeafe;

    backdrop-filter: blur(14px);

    color: #2563eb;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 28px;

    box-shadow:
        0 10px 30px rgba(37,99,235,0.08);

}

.hero-badge::before {

    content: '';

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #2563eb;

    box-shadow:
        0 0 12px rgba(37,99,235,0.7);

}

.hero-title {

    display: flex;

    flex-direction: column;

    line-height: 0.95;

    margin-bottom: 28px;

    font-size: 92px;

    font-weight: 800;

    letter-spacing: 4px;

    color: #2563eb;

}

.hero-title span {

    margin-top: 22px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: fit-content;

    padding: 14px 26px;

    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #4f46e5
        );

    color: white;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    box-shadow:
        0 12px 30px rgba(79,70,229,0.28);

    position: relative;

    overflow: hidden;

}

.hero-title span::before {

    content: '';

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,0.35),
            transparent
        );

    transform: translateX(-100%);

    animation: shine 4s infinite;

}

@keyframes shine {

    100% {

        transform: translateX(200%);

    }

}

.hero-text p {

    color: #64748b;

    font-size: 17px;

    line-height: 1.9;

    margin-bottom: 38px;

    max-width: 560px;

}

.hero-buttons {

    display: flex;

    align-items: center;

    gap: 18px;

    flex-wrap: wrap;

}

.btn-primary {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 16px 34px;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #4f46e5
        );

    color: white;

    font-size: 15px;

    font-weight: 600;

    transition: 0.3s ease;

    box-shadow:
        0 14px 30px rgba(37,99,235,0.22);

}

.btn-primary:hover {

    transform: translateY(-4px);

    box-shadow:
        0 18px 34px rgba(37,99,235,0.28);

}

.btn-secondary {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 16px 30px;

    border-radius: 18px;

    background: white;

    border: 1px solid #dbeafe;

    color: #0f172a;

    font-size: 15px;

    font-weight: 600;

    transition: 0.3s ease;

}

.btn-secondary:hover {

    transform: translateY(-4px);

    border-color: #93c5fd;

    box-shadow:
        0 12px 24px rgba(0,0,0,0.05);

}

.hero-image {

    flex: 1;

    display: flex;
    justify-content: center;

    position: relative;

}

.hero-image img {

    width: 100%;

    max-width: 650px;

    object-fit: contain;

    filter:
        drop-shadow(
            0 25px 40px rgba(37,99,235,0.18)
        );

}


/* ===================================================== */
/* STATS */
/* ===================================================== */

.stats-section {

    width: 92%;

    margin: auto;

    background: #eef2ff;

    border-radius: 28px;

    padding: 35px 40px;

    display: grid;

    grid-template-columns:
        repeat(auto-fit,minmax(220px,1fr));

    gap: 20px;

}

.stats-item {

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 18px;

}

.stats-item i {

    width: 68px;
    height: 68px;

    border-radius: 50%;

    background: white;

    color: #2563eb;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;

}

.stats-item h3 {

    font-size: 38px;

    line-height: 1;

    margin-bottom: 6px;

    color: #0f172a;

}

.stats-item p {

    color: #475569;

    font-size: 15px;

}

/* ===================================================== */
/* SECTION */
/* ===================================================== */

.section {

    width: 92%;

    margin: auto;

    padding: 110px 0;

}

.section-title {

    text-align: center;

    margin-bottom: 65px;

}

.section-title span {

    color: #2563eb;

    font-weight: 700;

    letter-spacing: 1px;

}

.section-title h2 {

    font-size: 46px;

    margin: 15px 0;

    color: #0f172a;

}

.section-title p {

    color: #64748b;

    line-height: 1.8;

}

/* ===================================================== */
/* MENU */
/* ===================================================== */

.menu-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit,minmax(260px,1fr));

    gap: 28px;

}

.menu-card {

    background: white;

    border-radius: 24px;

    padding: 28px;

    border: 1px solid #e2e8f0;

    transition: 0.3s;

    box-shadow:
        0 5px 15px rgba(0,0,0,0.03);

}

.menu-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 15px 30px rgba(37,99,235,0.08);

}

.card-top {

    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 25px;

}

.menu-icon {

    width: 72px;
    height: 72px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

}

.menu-icon img {

    width: 72px;
    height: 72px;

    object-fit: contain;

}

.card-badge {

    padding: 7px 14px;

    border-radius: 30px;

    background: #eef2ff;

    color: #2563eb;

    font-size: 13px;

    font-weight: 600;

}

.menu-card h3 {

    font-size: 22px;

    margin-bottom: 14px;

    color: #0f172a;

}

.menu-card p {

    color: #475569;

    line-height: 1.8;

    margin-bottom: 20px;

}

.card-info {

    display: flex;

    flex-direction: column;

    gap: 10px;

}

.card-info span {

    color: #334155;

    font-size: 15px;

}

.card-info i {

    color: #2563eb;

    margin-right: 8px;

}

.detail-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 24px;

    color: #2563eb;

    font-size: 15px;

    font-weight: 600;

    transition: 0.3s ease;

}

.detail-btn i {

    transition: 0.3s ease;

}

.detail-btn:hover i {

    transform: translateX(5px);

}

/* ===================================================== */
/* ABOUT */
/* ===================================================== */

.about-section {

    width: 92%;

    margin: auto;

    background: #f1f5f9;

    border-radius: 30px;

    padding: 60px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;

}

.about-image {

    flex: 1;

}

.about-image img {

    width: 100%;

    max-width: 430px;

}

.about-text {

    max-width: 600px;
}

.about-text span {

    color: #2563eb;

    font-weight: 700;

}

.about-text h2 {

    font-size: 46px;

    line-height: 1.3;

    margin: 18px 0;

}

.about-text p {

    margin-bottom: 14px;
    line-height: 1.8;
    text-align: justify;

}
.about-benefits{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px 20px;
    margin-top:20px;
}
.about-list {

    margin-top: 30px;

    display: flex;

    gap: 25px;

    flex-wrap: wrap;

}

.about-list div {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #334155;

    font-weight: 500;

}

.about-list i {

    color: #2563eb;

}

/* ===================================================== */
/* CONTACT */
/* ===================================================== */

.contact-section {

    width: 92%;

    margin: auto;

    padding: 110px 0;

}

.contact-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit,minmax(250px,1fr));

    gap: 25px;

}

.contact-card {

    background: white;

    border-radius: 24px;

    padding: 35px;

    text-align: center;

    border: 1px solid #e2e8f0;

    transition: 0.3s;

}

.contact-card:hover {

    transform: translateY(-4px);

}

.contact-card i {

    font-size: 40px;

    color: #2563eb;

}

.contact-card h4 {

    margin: 18px 0 10px;

    font-size: 24px;

}

.contact-card p {

    color: #64748b;

}
/* =========================
   FOOTER
========================= */

.footer{
    background:linear-gradient(135deg,#0f172a,#1e293b);
    color:#fff;
    margin-top:80px;
    border-top:4px solid #2563eb;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    padding:60px 24px;

    display:grid;
    grid-template-columns:45% 30% 25%;
    gap:50px;
}

/* =========================
   BRAND
========================= */

.footer-brand h3{
    font-size:28px;
    font-weight:700;
    margin-bottom:16px;
    line-height:1.3;
}

.footer-brand p{
    color:#cbd5e1;
    line-height:1.8;
    font-size:15px;
    margin:0;
}

/* =========================
   HEADING
========================= */

.footer h5{
    margin-bottom:18px;
    font-size:20px;
    font-weight:600;
}

/* =========================
   CONTACT
========================= */

.contact-item{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:14px;
}

.contact-item i{
    color:#38bdf8;
    font-size:18px;
    flex-shrink:0;
}

.contact-item span,
.contact-item a{
    color:#e2e8f0;
    text-decoration:none;
    font-size:15px;
    line-height:1.5;

    word-break:break-word;
}

.contact-item a:hover{
    color:#38bdf8;
}

/* =========================
   SOCIAL
========================= */

.footer-social a{
    width:44px;
    height:44px;

    border-radius:50%;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,.08);

    color:#fff;
    font-size:20px;

    margin-right:10px;

    transition:.3s;
}

.footer-social a:hover{
    background:#38bdf8;
    transform:translateY(-3px);
}

/* =========================
   COPYRIGHT
========================= */

.footer-bottom{
    text-align:center;
    padding:20px;

    border-top:1px solid rgba(255,255,255,.08);

    color:#94a3b8;
    font-size:14px;
}

/* =========================
   TABLET
========================= */

@media (max-width:992px){

    .footer-container{
        grid-template-columns:1fr 1fr;
        gap:40px;
    }

    .footer-brand{
        grid-column:span 2;
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width:768px){

    .footer-container{
        display:flex;
        flex-direction:column;

        text-align:center;

        gap:40px;

        padding:50px 20px;
    }

    .footer-brand{
        order:1;
    }

    .footer-contact{
        order:2;
    }

    .footer-social{
        order:3;
    }

    .footer-brand p{
        max-width:100%;
        margin:auto;
    }

    .contact-item{
        justify-content:center;
    }

    .footer-social{
        text-align:center;
    }

    .footer-social a{
        margin:0 6px;
    }
}

/* ==================================
   LINK CARD CONTACT
================================== */

.contact-card-link{
    text-decoration:none;
    color:inherit;
    display:block;
}

.contact-card-link:hover{
    color:inherit;
}
/* =========================================
PRESTASI SECTION
========================================= */

.prestasi-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:30px;
}

/* =========================================
CARD
========================================= */

.prestasi-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    border:1px solid #e2e8f0;
    transition:.35s ease;
    box-shadow:0 10px 30px rgba(15,23,42,.05);
    position:relative;
}

.prestasi-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(37,99,235,.12);
}

/* =========================================
IMAGE
========================================= */

.prestasi-image{
    position:relative;
    overflow:hidden;
}

.prestasi-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.5s ease;
}

.prestasi-card:hover .prestasi-image img{
    transform:scale(1.05);
}

/* overlay gradient */

.prestasi-image::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(15,23,42,.45),
        transparent 50%
    );
}

/* =========================================
BADGE JUARA
========================================= */

.prestasi-badge{
    position:absolute;
    top:18px;
    left:18px;
    z-index:2;

    background:linear-gradient(
        135deg,
        #facc15,
        #f59e0b
    );

    color:#fff;

    padding:10px 18px;

    border-radius:999px;

    font-size:13px;

    font-weight:700;

    box-shadow:0 8px 20px rgba(245,158,11,.25);
}

/* =========================================
CONTENT
========================================= */

.prestasi-content{
    padding:28px;
}

.prestasi-content h3{
    font-size:22px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:12px;
    line-height:1.4;
}

.prestasi-content p{
    color:#64748b;
    line-height:1.8;
    margin-bottom:18px;
}

/* =========================================
META INFO
========================================= */

.prestasi-meta{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:18px;
}

.prestasi-meta div{
    display:flex;
    align-items:center;
    gap:8px;

    background:#f8fafc;

    border:1px solid #e2e8f0;

    padding:8px 14px;

    border-radius:12px;

    font-size:14px;

    color:#475569;
}

.prestasi-meta i{
    color:#2563eb;
}

/* =========================================
BUTTON
========================================= */

.prestasi-content .btn-link{
    text-decoration:none;
    font-weight:600;
    color:#2563eb;
    padding:0;
    transition:.3s ease;
}

.prestasi-content .btn-link:hover{
    color:#1d4ed8;
    transform:translateX(3px);
}

/* =========================================
MODAL PRESTASI
========================================= */

.prestasi-modal{
    border:none;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.prestasi-modal-header{
    background:linear-gradient(
        135deg,
        #2563eb,
        #4f46e5
    );

    color:white;

    border:none;

    padding:24px 30px;
}

.prestasi-modal-image{
    width:100%;
    max-height:550px;
    object-fit:cover;
    border-radius:18px;
    margin-bottom:25px;
}

.prestasi-badges{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:25px;
}

.prestasi-tag{
    padding:10px 18px;
    border-radius:999px;
    font-size:14px;
    font-weight:600;
}

.prestasi-tag.juara{
    background:#fef3c7;
    color:#92400e;
}

.prestasi-tag.tahun{
    background:#dbeafe;
    color:#1d4ed8;
}

.prestasi-tag.lokasi{
    background:#e2e8f0;
    color:#334155;
}

.prestasi-description{
    background:#f8fafc;
    border:1px solid #e2e8f0;
    border-radius:18px;
    padding:24px;
}

.prestasi-description h5{
    color:#0f172a;
    font-weight:700;
    margin-bottom:14px;
}

.prestasi-description p{
    color:#475569;
    line-height:1.9;
    text-align:justify;
    margin:0;
}
/* =========================
   MODAL
========================= */

.gallery-modal{
    border:none;
    border-radius:24px;
    overflow:hidden;
}

.gallery-modal .modal-header{
    background:#0f172a;
    color:#fff;
    border:none;
}

.gallery-modal .btn-close{
    filter:invert(1);
}

.gallery-modal .modal-body{
    padding:25px;

    background:
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #eef2ff 100%
        );
}

/* =========================
   FRAME FOTO
========================= */

.gallery-frame{
    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:18px;
    overflow:hidden;

    background:transparent;
    border:none;
    box-shadow:none;
}

.gallery-image{
    max-width:100%;
    max-height:70vh;
    width:auto;
    height:auto;
    display:block;

    border-radius:16px;

    transition:transform .3s ease;
}

/* =========================
   COUNTER
========================= */

.gallery-counter{
    display:flex;
    justify-content:center;
    margin-top:18px;
}

.gallery-counter span{
    background:#0f172a;
    color:white;

    padding:8px 18px;
    border-radius:999px;

    font-size:14px;
    font-weight:600;
}

/* =========================
   INDICATOR
========================= */

.custom-indicators{
    position:static;
    margin-top:18px;

    display:flex;
    justify-content:center;
    gap:8px;
}

.custom-indicators button{
    width:10px !important;
    height:10px !important;

    border:none !important;
    border-radius:50% !important;

    background:#cbd5e1 !important;

    margin:0 !important;

    transition:all .25s ease;
}

.custom-indicators button.active{
    width:26px !important;
    border-radius:999px !important;
    background:#2563eb !important;
}

/* =========================
   TOMBOL NAVIGASI
========================= */

.carousel-control-prev,
.carousel-control-next{
    width:40px; /* sebelumnya terlalu lebar */
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    width:42px;
    height:42px;

    border-radius:50%;

    background-color:rgba(15,23,42,.75);

    background-size:45%;

    transition:.25s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon{
    transform:scale(1.08);
}

/* =========================
   ANIMASI HALUS
========================= */

.carousel-item{
    transition:transform .4s ease-in-out;
}

.gallery-frame{
    animation:fadeIn .35s ease;
}

@keyframes fadeIn{
    from{
        opacity:.85;
        transform:translateY(6px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width:768px){

    .gallery-modal .modal-body{
        padding:15px;
    }

    .gallery-image{
        max-height:55vh;
    }

    .carousel-control-prev,
    .carousel-control-next{
        width:30px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon{
        width:36px;
        height:36px;
    }
}
/* =========================================
RESPONSIVE
========================================= */

@media(max-width:768px){

    .prestasi-grid{
        grid-template-columns:1fr;
    }

    .prestasi-content{
        padding:22px;
    }

    .prestasi-content h3{
        font-size:20px;
    }

    .prestasi-image img{
        height:220px;
    }

    .prestasi-meta{
        flex-direction:column;
    }

    .prestasi-meta div{
        width:100%;
    }
}
/* ===================================================== */
/* RESPONSIVE */
/* ===================================================== */
.location-section{
    padding:100px 0;
    background:#f8fafc;
}

.location-section .section-title{
    text-align:center;
    margin-bottom:40px;
}

.location-section .section-title p{
    max-width:600px;
    margin:12px auto 0;
    color:#64748b;
}

.map-container{
    width:90%;
    max-width:1200px;
    margin:auto;

    overflow:hidden;
    border-radius:24px;

    border:1px solid #e2e8f0;

    box-shadow:
        0 10px 30px rgba(0,0,0,.08);

    transition:.3s ease;
}

.map-container:hover{
    transform:translateY(-3px);
    box-shadow:
        0 20px 40px rgba(0,0,0,.12);
}

.map-container iframe{
    width:100%;
    height:500px;
    border:none;
    display:block;
}
.contact-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
}

.contact-text{
    display:flex;
    flex-direction:column;
    gap:2px;
}
@media(max-width:768px){

    .location-section{
        padding:70px 0;
    }

    .map-container{
        width:95%;
        border-radius:18px;
    }

    .map-container iframe{
        height:350px;
    }

}
@media (max-width: 992px) {

    .hero {

        flex-direction: column;

        text-align: center;

        padding-top: 150px;

        gap: 55px;

    }

    .hero-text {

        max-width: 100%;

        display: flex;

        flex-direction: column;

        align-items: center;

    }

    .hero-badge {

        font-size: 13px;

        padding: 10px 18px;

    }

    .hero-title {

        font-size: 72px;

        letter-spacing: 3px;

        align-items: center;

    }

    .hero-title span {

        font-size: 13px;

        padding: 12px 22px;

        letter-spacing: 1.5px;

    }

    .hero-text p {

        font-size: 16px;

        line-height: 1.8;

        max-width: 650px;

        margin-inline: auto;

    }

    .hero-buttons {

        justify-content: center;

    }

    .hero-image img {

        max-width: 520px;

    }

    .about-section {

        flex-direction: column;

        text-align: center;

    }

    .about-list {

        justify-content: center;

    }

}
/* =========================================
CARD TOP
========================================= */

.card-top{

    display:flex;

    align-items:center;

    justify-content:space-between;

    margin-bottom:22px;

}

.menu-icon{

    width:72px;
    height:72px;

    border-radius:24px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #4f46e5
        );

    color:white;

    font-size:30px;

    box-shadow:
        0 12px 28px rgba(37,99,235,0.22);

}

/* hapus style image lama */

.card-image-wrap,
.card-image,
.card-overlay{
    display:none;
}
/* ===================================================== */
/* TABLET & MOBILE */
/* ===================================================== */

@media (max-width: 768px) {

    .navbar {

        height: 74px;

        padding: 0 18px;

    }

    .logo-wrap {

        gap: 12px;

    }

    .logo-wrap img {

        width: 48px;
        height: 48px;

    }

    .logo-text h1 {

        font-size: 15px;

    }

    .logo-text span {

        font-size: 12px;

    }

    .menu-toggle {

        display: flex;

        font-size: 28px;

    }   

    .nav-menu {

    position: absolute;

    z-index: 1500;

    top: 88px;
    left: 4%;

    width: 92%;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.82),
            rgba(255,255,255,0.72)
        );

    backdrop-filter: blur(22px);

    -webkit-backdrop-filter: blur(22px);

    border: 1px solid rgba(255,255,255,0.55);

    border-radius: 24px;

    padding: 28px;

    display: none;

    flex-direction: column;

    align-items: center;

    gap: 24px;

    box-shadow:
        0 18px 40px rgba(31,38,135,0.14),
        inset 0 1px 1px rgba(255,255,255,0.5);

    animation: menuFade 0.25s ease;

}
.nav-menu a {

    color: #0f172a;

    font-weight: 700;

    font-size: 16px;

    text-shadow:
        0 1px 2px rgba(255,255,255,0.7);

}
.nav-menu a:hover {

    color: #2563eb;

}
    .nav-menu.active {

        display: flex;

    }

    @keyframes menuFade {

        from {

            opacity: 0;

            transform: translateY(-10px);

        }

        to {

            opacity: 1;

            transform: translateY(0);

        }

    }

    .btn-login {

        width: 44px;
        height: 44px;

        padding: 0;

        border-radius: 50%;

        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 17px;

        flex-shrink: 0;

    }

    .btn-login span {

        display: none;

    }

    .hero {

        padding-top: 130px;

        gap: 40px;

    }

    .hero-badge {

        font-size: 11px;

        padding: 10px 16px;

    }

    .hero-title {

        font-size: 56px;

        letter-spacing: 2px;

        line-height: 1;

    }

    .hero-title span {

        margin-top: 16px;

        font-size: 11px;

        padding: 11px 18px;

        letter-spacing: 1.3px;

        text-align: center;

    }

    .hero-text p {

        font-size: 15px;

        line-height: 1.8;

        margin-bottom: 30px;

    }

    .hero-buttons {

        width: 100%;

        flex-direction: column;

        gap: 14px;

    }

    .btn-primary,
    .btn-secondary {

        width: 100%;

        justify-content: center;

        padding: 15px 20px;

    }

    .hero-image img {

        max-width: 100%;

    }

    .stats-section {

        padding: 28px 24px;

        gap: 28px;

    }

    .stats-item {

        flex-direction: column;

        text-align: center;

    }

    .stats-item h3 {

        font-size: 32px;

    }

    .section {

        padding: 90px 0;

    }

    .section-title {

        margin-bottom: 50px;

    }

    .section-title h2 {

        font-size: 34px;

    }

    .section-title p {

        font-size: 15px;

    }

    .about-section {

        padding: 40px 28px;

        gap: 40px;

    }

    .about-text h2 {

        font-size: 34px;

    }

    .contact-card {

        padding: 30px 24px;

    }

}

/* ===================================================== */
/* SMALL MOBILE */
/* ===================================================== */

@media (max-width: 480px) {

    .navbar {

        width: 94%;

        margin: 10px auto;

        border-radius: 20px;

    }

    .logo-text h1 {

        font-size: 13px;

    }

    .logo-text span {

        font-size: 10px;

    }

    .hero {

        padding-top: 120px;

    }

    .hero-title {

        font-size: 46px;

    }

    .hero-title span {

        width: 100%;

        font-size: 10px;

        padding: 10px 14px;

        line-height: 1.5;

    }

    .hero-text p {

        font-size: 14px;

    }

    .hero-badge {

        width: 100%;

        justify-content: center;

        text-align: center;

    }

    .btn-primary,
    .btn-secondary {

        font-size: 14px;

        border-radius: 16px;

    }

    .stats-section {

        border-radius: 24px;

    }

    .stats-item i {

        width: 58px;
        height: 58px;

        font-size: 24px;

    }

    .stats-item h3 {

        font-size: 28px;

    }

    .menu-card {

        padding: 24px;

    }

    .about-text h2 {

        font-size: 28px;

    }

    .contact-card h4 {

        font-size: 20px;

    }

}

.empty-ekskul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; /* Jarak antara ikon dan teks */

    width: 100%;
    min-height: 200px;
    text-align: center;
}

.empty-ekskul i {
    font-size: 2rem;
    color: #f5b301;
}

.empty-ekskul span {
    font-size: 1rem;
}