* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    background: #fcfbfb;
}

a {
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
}

/* =========================
   NAVBAR
========================= */
.navbar {
    background: #0e3b00;
    padding: 28px 60px;
}

.navbar-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo-area img {
    width: 120px;
    height: auto;
}

.school-title h1 {
    font-size: 42px;
    color: #10b7b7;
    margin: 0;
    white-space: nowrap;
}

.school-title p {
    font-size: 22px;
    color: white;
    font-weight: bold;
    margin: 10px 0 0;
}

.menu {
    display: flex;
    gap: 48px;
    align-items: center;
}

.menu a{
    color: white;
    font-weight: 700;
    transition: 0.3s;
}

.menu a:hover{
    color: #f1c40f;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 230px;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.15);
    z-index: 9999;
}

.dropdown-menu a {
    display: block;
    padding: 12px 18px;
    color: #003b22;
    text-decoration: none;
    font-size: 15px;
}

.dropdown-menu a:hover {
    background: #f1c40f;
    color: #003b22;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.menu a.active {
    color: yellow;
}

@media (max-width: 1200px) {
    .navbar-wrap {
        flex-direction: column;
        text-align: center;
    }

    .logo-area {
        flex-direction: column;
    }

    .school-title h1 {
        font-size: 32px;
        white-space: normal;
    }

    .menu {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: " ▼";
    font-size: 11px;
    margin-left: 4px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 520px;
    background: rgba(0, 0, 0, 0.78);
    padding: 12px 0;
    display: none;
    flex-direction: column;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.dropdown-menu a {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 22px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s ease;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #e5f500;
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

/* =========================
   HERO
========================= */
.hero {
    position: relative;
    min-height: 100vh;
    background: url('/images/latar.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 120px;
}

.hero-title {
    text-transform: uppercase;
    line-height: 0.98;
    letter-spacing: 1px;
}

.title-main {
    display: block;
    font-size: 110px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.title-outline {
    display: block;
    font-size: 64px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1.4px #fff;
    margin-bottom: 10px;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.title-highlight {
    display: block;
    font-size: 88px;
    font-weight: 900;
    color: #f1c40f;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn-hero {
    display: inline-block;
    margin-top: 35px;
    background: #e5f500;
    color: #111;
    padding: 16px 34px;
    border-radius: 999px;
    font-size: 20px;
    font-weight: 800;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(229, 245, 0, 0.25);
}

.btn-hero:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

/* =========================
   WELCOME SECTION
========================= */
.welcome-section {
    background: linear-gradient(135deg, #1f6b63, #0f4b44);
    padding: 70px 0;
}

.welcome-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 40px;
    align-items: center;
}

.principal-card {
    text-align: center;
}

.principal-image-wrap {
    width: 260px;
    height: 260px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 8px solid #f1c40f;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.principal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.principal-name-box {
    display: inline-block;
    background: #f1c40f;
    color: #12403b;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}

.principal-name-box h3 {
    margin: 0;
    font-size: 18px;
}

.principal-position {
    color: #fff;
}

.principal-position p {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.principal-position h4 {
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.3;
}

.welcome-text-card {
    background: #f1c40f;
    color: #12403b;
    padding: 36px;
    border-radius: 20px;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.2);
}

.welcome-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.welcome-text-card h2 {
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: 1.2;
}

.welcome-text-card p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.btn-small {
    display: inline-block;
    background: #12403b;
    color: #fff;
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-small:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

/* =========================
   STATS SECTION
========================= */
.stats-section {
    background: linear-gradient(180deg, #0a4c40 0%, #003326 100%);
    padding: 45px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item {
    color: #ffffff;
    padding: 20px;
}

.stat-item h3 {
    font-size: 44px;
    font-weight: 900;
    color: #f1c40f;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================
   LOKASI SEKOLAH
========================= */
.location-section {
    position: relative;
    background: #f7f7f7;
    padding: 70px 0 40px;
}

.location-heading h2 {
    font-size: 34px;
    font-weight: 900;
    color: #12403b;
    margin-bottom: 30px;
}

.location-item {
    margin-bottom: 40px;
}

.location-item h3 {
    font-size: 24px;
    font-weight: 800;
    color: #222;
    margin-bottom: 16px;
}

.map-wrap {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.footer-simple {
    background: #f1c40f !important;
    width: 100%;
    padding: 16px 20px;
    text-align: center;
}

.footer-simple p {
    margin: 0;
    color: #000 !important;
    font-weight: 700;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-link-columns {
        grid-template-columns: 1fr;
    }
}

/* PPDB */
/* PPDB PAGE */
.ppdb-page {
    background: #f3f3f3;
    min-height: 100vh;
    padding: 140px 0 80px; /* kasih jarak dari navbar */
}

.ppdb-card {
    max-width: 760px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.ppdb-badge {
    display: inline-block;
    background: #e8f5eb;
    color: #0d5b2a;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.ppdb-card h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0d5b2a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ppdb-card p {
    max-width: 620px;
    margin: 0 auto 30px;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.ppdb-action {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-ppdb {
    min-width: 150px;
    padding: 14px 28px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s ease;
}

.btn-daftar {
    background: #0d5b2a;
    color: #fff;
}

.btn-daftar:hover {
    background: #0a4a22;
}

.btn-login {
    background: #e5f500;
    color: #111;
}

.btn-login:hover {
    background: #d4e400;
}

@media (max-width: 768px) {
    .ppdb-page {
        padding: 120px 0 60px;
    }

    .ppdb-card {
        padding: 35px 24px;
        border-radius: 18px;
    }

    .ppdb-card h2 {
        font-size: 30px;
    }

    .ppdb-card p {
        font-size: 16px;
    }
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.auth-container {
    width: 400px;
    margin: 80px auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    text-align: center;
}

.auth-container input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}

.auth-container button {
    width: 100%;
    padding: 10px;
    background: green;
    color: white;
    border: none;
}
/* =========================
   AUTH PAGE
========================= */
.auth-page .navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    box-shadow: none;
}

.auth-section {
    position: relative;
    min-height: 100vh;
    background: url('/images/bg-sekolah.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 60px;
}

.auth-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
}

.auth-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-card {
    width: 100%;
    max-width: 520px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 22px;
    padding: 42px 36px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.auth-header {
    text-align: center;
    margin-bottom: 28px;
}

.auth-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin: 0 auto 16px;
}

.auth-header h1 {
    font-size: 34px;
    font-weight: 900;
    color: #0d5b2a;
    margin-bottom: 10px;
}

.auth-header p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.auth-form {
    margin-top: 10px;
}

.auth-group {
    margin-bottom: 18px;
}

.auth-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.auth-group input {
    width: 100%;
    height: 54px;
    border: 1px solid #d7d7d7;
    border-radius: 12px;
    padding: 0 16px;
    font-size: 15px;
    color: #222;
    background: #fff;
    outline: none;
    transition: 0.3s ease;
}

.auth-group input:focus {
    border-color: #0d5b2a;
    box-shadow: 0 0 0 4px rgba(13, 91, 42, 0.10);
}

.auth-btn {
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 12px;
    background: #0d8a00;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 6px;
}

.auth-btn:hover {
    background: #0b7600;
    transform: translateY(-1px);
}

.auth-links {
    margin-top: 20px;
    text-align: center;
}

.auth-links p {
    margin: 8px 0 0;
    color: #444;
    font-size: 15px;
}

.auth-links a {
    color: #0d5b2a;
    font-weight: 700;
    text-decoration: none;
}

.auth-links a:hover {
    text-decoration: underline;
}

.forgot-link {
    display: inline-block;
    margin-bottom: 8px;
}

.auth-alert {
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 600;
}

.auth-alert.success {
    background: #e7f8ea;
    color: #146c2e;
    border: 1px solid #bfe7c8;
}

.auth-alert.error {
    background: #fdeaea;
    color: #a32020;
    border: 1px solid #f3bcbc;
}

@media (max-width: 768px) {
    .auth-section {
        padding: 130px 16px 40px;
    }

    .auth-card {
        padding: 30px 22px;
        border-radius: 18px;
    }

    .auth-logo {
        width: 72px;
        height: 72px;
    }

    .auth-header h1 {
        font-size: 28px;
    }

    .auth-header p {
        font-size: 14px;
    }

    .auth-group input,
    .auth-btn {
        height: 50px;
    }
}
.btn-back {
    background: #ccc;
    padding: 8px 15px;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.btn-back:hover {
    background: #bbb;
}

.btn-logout {
    background: #d9534f;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
}

.btn-logout:hover {
    background: #c9302c;
}
.user-info {
    background: #1cb11a;
    padding: 10px 15px;
    border-left: 5px solid #0d6efd;
    margin-bottom: 20px;
    border-radius: 6px;
}

.user-info p {
    margin: 5px 0;
    font-size: 14px;
}
.visi-misi-page {
    background: #385038;
    padding: 80px 0 60px;
    min-height: 100vh;
}

.section-heading {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 40px;
    font-weight: 800;
    color: #fae266;
    margin-bottom: 12px;
}

.section-heading p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.vm-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 30px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    text-align: center;
    min-height: 360px;
}

.vm-card h3 {
    font-size: 28px;
    font-weight: 800;
    color: #004d2b;
    margin-bottom: 24px;
}

.vm-card p {
    font-size: 16px;
    line-height: 2;
    color: #090909;
    margin-bottom: 18px;
}

@media (max-width: 992px) {
    .vm-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 36px;
    }

    .vm-card {
        min-height: auto;
    }
}
.visi-misi-home {
    background: #b7e747;
    padding: 70px 0;
}

.vm-heading {
    text-align: center;
    margin-bottom: 20px;
}

.vm-heading h2 {
    font-size: 42px;
    font-weight: 800;
    color: #fae266;
    margin-bottom: 0px;
}

.vm-heading p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.vm-box {
    background: #7bea84;
    border-radius: 18px;
    padding: 32px 28px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    min-height: 260px;
}

.vm-box h3 {
    font-size: 30px;
    font-weight: 800;
    color: #030303;
    margin-bottom: 20px;
}

.vm-box p {
    font-size: 15px;
    line-height: 1.9;
    color: #111;
    margin-bottom: 14px;
}

@media (max-width: 992px) {
    .vm-grid {
        grid-template-columns: 1fr;
    }

    .vm-heading h2 {
        font-size: 32px;
    }

    .vm-box {
        min-height: auto;
    }

}
.ekskul-page {
    background: #385038;
    padding: 110px 0 70px;
    min-height: 100vh;
}

.ekskul-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px;
}

.ekskul-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #fae266;
    margin-bottom: 14px;
}

.ekskul-header p {
    font-size: 16px;
    line-height: 1.8;
    color:#ffffff;
    margin: 0;
}

.ekskul-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.ekskul-card {
    background: #f2fff2;
    border: 1px solid #d9f3d9;
    border-radius: 18px;
    padding: 28px 22px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.ekskul-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.10);
}

.ekskul-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #0b4d2b;
    margin-bottom: 14px;
    line-height: 1.4;
}

.ekskul-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

@media (max-width: 1200px) {
    .ekskul-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ekskul-page {
        padding: 100px 0 60px;
    }

    .ekskul-header h2 {
        font-size: 32px;
    }

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

    .ekskul-card {
        padding: 24px 20px;
    }

}
.biodata-page {
    background: #556155;
    padding: 15px 0 70px;
    min-height: 100vh;
}

.biodata-card {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.biodata-card h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0b4d2b;
    margin-bottom: 10px;
}

.biodata-card p {
    color: #666;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #222;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d0d0d0;
    border-radius: 10px;
    font-size: 15px;
    background: #fff;
}

.form-group textarea {
    resize: vertical;
}

.form-info {
    background: #e8f5eb;
    color: #000;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 700;
}

.btn-submit-biodata {
    display: inline-block;
    width: 100%;
    padding: 14px;
    background: #0b4d2b;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
}

.btn-submit-biodata:hover {
    background: #0d5f36;
}

.alert-success-custom {
    background: #dff5e8;
    color: #166534;
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.alert-error-custom {
    background: #fde2e2;
    color: #991b1b;
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.alert-error-custom ul {
    margin: 0;
    padding-left: 18px;
}

.mt-4 {
    margin-top: 30px;
}

.prestasi-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.prestasi-item {
    border: 1px solid #ddd;
    border-radius: 14px;
    padding: 20px;
    background: #fafafa;
}

.prestasi-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #0b4d2b;
    font-weight: 800;
}

.prestasi-item p {
    margin-bottom: 8px;
    color: #333;
    line-height: 1.7;
}

.prestasi-image {
    margin-top: 15px;
}

.prestasi-image img {
    width: 220px;
    max-width: 100%;
    border-radius: 10px;
    border: 1px solid #ccc;
}

.btn-delete-prestasi {
    margin-top: 15px;
    background: #dc2626;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
}
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
}

.btn-group-right {
    display: flex;
    gap: 10px;
}

.btn-back {
    background: #ccc;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    color: #000;
}

.btn-next {
    background: #0d5b2a;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 6px;
}
.btn-skip {
    background: #ff0000;
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
}
.btn-skip {
    border: 2px solid #ff0000;
}

.btn-back-icon {
    position: fixed;
    top: 20px;
    left: 20px;

    width: 40px;
    height: 40px;

    border-radius: 50%;
    border: none;

    background: rgb(255, 255, 255);
    color: #003b22;

    font-size: 20px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 9999;

    transition: 0.2s;
}

.btn-back-icon:hover {
    background: #f1f1f1;
    transform: scale(1.05);
}

.form-dua-kolom{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin-top: 20px;
}

@media(max-width:768px){
    .form-dua-kolom{
        grid-template-columns: 1fr;
    }
}

.form-dua-kolom{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: start;
}

.biodata-card{
    width: 100%;
    max-width: 1100px;
}

@media(max-width: 768px){
    .form-dua-kolom{
        grid-template-columns: 1fr;
    }
}

.btn-kanan{
    text-align: right;
    margin-top: 20px;
}

.btn-submit-biodata{
    width: auto;
    display: inline-block;
    padding: 12px 30px;
}

.form-dua-kolom{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: start;
}

.btn-submit-prestasi{
    background: #0b5d31;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
}

.btn-submit-prestasi:hover{
    background: #0a4d29;
}

@media(max-width:768px){
    .form-dua-kolom{
        grid-template-columns: 1fr;
    }
}

.btn-submit-final {
    background: #28a745;
    color: white;
    border: none;
    padding: 12px 22px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
    transition: 0.2s;
}

.btn-submit-final:hover {
    background: #218838;
}

.btn-submit-berkas {
    background: #28a745;
    color: white;
    border: none;
    padding: 12px 22px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
    transition: 0.2s;
}

.btn-submit-berkas:hover {
    background: #218838;
}

.alert-info-berkas {
    background: #e8f5e9;
    border-left: 5px solid #28a745;
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.alert-info-berkas strong {
    display: block;
    margin-bottom: 10px;
    color: #1b5e20;
}

.alert-info-berkas ul {
    margin: 0;
    padding-left: 20px;
}

.alert-info-berkas li {
    margin-bottom: 6px;
    color: #333;
}

.profile-siswa {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.profile-siswa p {
    margin: 0 0 12px;
    color: #777;
    font-size: 14px;
}

.profile-info {
    margin-bottom: 18px;
}

.profile-info small {
    display: block;
    color: #777;
    font-size: 12px;
    margin-bottom: 3px;
}

.profile-info strong {
    display: block;
    color: #111;
    font-size: 14px;
    word-break: break-word;
}

.catatan {
    border: 1px solid #000;
    padding: 14px 16px;
    margin-top: 18px;
    font-size: 11px;
    line-height: 1.8;
}

    .review-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        margin-top: 25px;
        align-items: start;
    }

    .review-column {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .review-box {
        background: #fff;
        border: 1px solid #dcdcdc;
        border-left: 5px solid #0d6efd;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .review-box h3 {
        font-weight: bold;
        font-size: 18px;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 2px solid #e9ecef;
        color: #0d6efd;
    }

    .review-box p {
        margin-bottom: 10px;
        line-height: 1.7;
    }

    .review-box strong {
        font-weight: bold;
        color: #000;
    }

    @media (max-width: 768px) {
        .review-grid {
            grid-template-columns: 1fr;
        }
}

.info-card{
    background:#fff;
    border-radius:12px;
    padding:25px;
    margin-bottom:25px;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.info-card h2{
    font-weight:bold;
    margin-bottom:20px;
    color:#0d6efd;
}

.jadwal-section{
    margin-top:50px;
}

.jadwal-title{
    font-size:42px;
    font-weight:700;
    margin-bottom:25px;
    color:#1d2d44;
}

.jadwal-table-wrapper{
    overflow-x:auto;
}

.jadwal-table{
    width:100%;
    border-collapse:collapse;
    background:#f1c40f;
}

.jadwal-table tr{
    border-bottom:1px solid #dcdcdc;
}

.jadwal-table td{
    padding:18px 10px;
    font-size:20px;
    color:#2b2b2b;
}

.kegiatan{
    width:65%;
    font-weight:500;
}

.tanggal{
    width:35%;
    padding-left:20px;
    white-space:nowrap;
    font-weight:500;
    color:#1d3557;
}

.badge-aktif{
    display:inline-block;
    margin-top:8px;
    background:#198754;
    color:#fff;
    padding:5px 12px;
    border-radius:20px;
    font-size:13px;
}

.badge-tutup{
    display:inline-block;
    margin-top:8px;
    background:#dc3545;
    color:#fff;
    padding:5px 12px;
    border-radius:20px;
    font-size:13px;
}

@media(max-width:768px){

    .jadwal-title{
        font-size:28px;
    }

    .jadwal-table td{
        font-size:15px;
        padding:14px 8px;
    }

}

.gelombang-section{
    margin-top:50px;
}

.gelombang-title{
    font-size:42px;
    font-weight:700;
    margin-bottom:25px;
    color:#1d2d44;
}

.gelombang-table-wrapper{
    overflow-x:auto;
}

.gelombang-table{
    width:100%;
    border-collapse:collapse;
    background:#f1c40f;
}

.gelombang-table tr{
    border-bottom:1px solid #dcdcdc;
}

.gelombang-table td{
    padding:18px 10px;
    font-size:20px;
    color:#2b2b2b;
}

.kegiatan{
    width:65%;
    font-weight:500;
}

.tanggal{
    width:35%;
    padding-left:20px;
    white-space:nowrap;
    font-weight:500;
    color:#1d3557;
}

.badge-aktif{
    display:inline-block;
    margin-top:8px;
    background:#198754;
    color:#fff;
    padding:5px 12px;
    border-radius:20px;
    font-size:13px;
}

.badge-tutup{
    display:inline-block;
    margin-top:8px;
    background:#dc3545;
    color:#fff;
    padding:5px 12px;
    border-radius:20px;
    font-size:13px;
}

@media(max-width:768px){

    .gelombang-title{
        font-size:28px;
    }

    .gelombang-table td{
        font-size:15px;
        padding:14px 8px;
    }

}

/* =========================
   ALUR PENDAFTARAN SPMB
========================= */

.alur-section{
    padding:70px 0;
    background:#004d2b;
}

.alur-section .section-heading{
    text-align:center;
    margin-bottom:45px;
}

.alur-section .section-heading h2{
    font-size:42px;
    font-weight:800;
    color:#dfe0db;
    margin-bottom:12px;
}

.alur-section .section-heading p{
    max-width:700px;
    margin:0 auto;
    color:#ffffff;
    font-size:20px;
    line-height:1.8;
}

/* GRID CARD */
.alur-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:25px;
}

/* CARD */
.alur-card{
    background:#dff5e1;
    border-radius:18px;
    padding:28px 24px;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}

.alur-card:hover{
    transform:translateY(-6px);
}

/* NOMOR */
.alur-number{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#2e7d32;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    font-weight:bold;
    margin-bottom:18px;
}

/* JUDUL */
.alur-card h3{
    color:#1b5e20;
    font-size:22px;
    margin-bottom:12px;
    font-weight:700;
}

/* DESKRIPSI */
.alur-card p{
    color:#444;
    line-height:1.7;
    font-size:15px;
}

/* RESPONSIVE */
@media(max-width:992px){

    .alur-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

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

}

.hero{
    position: relative;
}

.hero-logo-top{
    position: absolute;
    top: 20px;
    left: 25px;
    z-index: 9999;
}

.hero-logo-top img{
    width: 90px;
    height: auto;
}

