html {
    scroll-behavior: smooth;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{

    background:linear-gradient(135deg,#0f4c81,#1f8dd6);

    color:white;

    min-height:100vh;

}

header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:25px 70px;

}

.logo{

    font-size:28px;

    font-weight:bold;

}

nav a{

    color:white;

    text-decoration:none;

    margin-left:25px;

    font-size:18px;

}

.hero{
    position: relative;
    isolation: isolate;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    min-height: calc(100vh - 90px);

    padding: 80px 20px;

    text-align: center;
    color: white;

    background-image:
        linear-gradient(
            rgba(10,45,85,0.75),
            rgba(20,120,200,0.60)
        ),
        url("../images/gedung-smanpa.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero::before{
    content:"";
    position:absolute;

    width:500px;
    height:500px;

    top:-180px;
    right:-150px;

    border-radius:50%;
    background:rgba(255,255,255,.08);
    pointer-events: none;
}

.hero::after{
    content:"";
    position:absolute;

    width:380px;
    height:380px;

    left:-120px;
    bottom:-180px;

    border-radius:50%;
    background:rgba(255,215,0,.12);
    pointer-events: none;
}
.hero h1{
    font-size: clamp(48px,7vw,88px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 5px 15px rgba(0,0,0,.4);
}

.hero p{
    max-width:900px;
    font-size:24px;
    line-height:1.7;
    margin-bottom:45px;
    color:#f5f5f5;
}

.button-group{

    margin-top:45px;

}

button{

    padding:16px 35px;

    border:none;

    border-radius:10px;

    background:#FFD54F;

    font-size:18px;

    cursor:pointer;

    margin:10px;

}

.secondary{

    background:white;

}
.form-page {
    min-height: 100vh;
    background: #f3f6fb;
    color: #172033;
}

.form-page header {
    background: linear-gradient(135deg, #0f4c81, #1f8dd6);
    color: white;
}

.form-container {
    width: min(900px, calc(100% - 32px));
    margin: 50px auto;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 18px 50px rgba(20, 50, 90, 0.12);
}

.form-heading {
    margin-bottom: 30px;
    text-align: center;
}

.form-heading h1 {
    margin-bottom: 12px;
    color: #0f4c81;
    font-size: 34px;
}

.form-heading p {
    color: #5e6778;
    line-height: 1.7;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #cfd8e6;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    transition: 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1f8dd6;
    box-shadow: 0 0 0 3px rgba(31, 141, 214, 0.12);
}

.form-group small {
    display: block;
    margin-top: 6px;
    color: #697386;
}

.consent {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 10px 0 25px;
    line-height: 1.6;
    text-align: left;
}

.consent input {
    width: 18px;
    height: 18px;
    margin-top: 4px;
}

.submit-button {
    width: 100%;
    margin: 0;
    padding: 16px;
    border-radius: 10px;
    background: #0f4c81;
    color: white;
    font-weight: 700;
}

.submit-button:disabled {
    cursor: not-allowed;
    opacity: 0.65;
}

.message-box {
    display: none;
    margin-top: 20px;
    padding: 14px;
    border-radius: 10px;
    line-height: 1.5;
}

.message-box.success {
    display: block;
    color: #146c43;
    background: #d1e7dd;
}

.message-box.error {
    display: block;
    color: #842029;
    background: #f8d7da;
}

@media (max-width: 700px) {
    header {
        padding: 20px;
        flex-direction: column;
        gap: 18px;
    }

    nav a {
        margin: 0 8px;
    }

    .form-container {
        margin: 25px auto;
        padding: 24px 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-heading h1 {
        font-size: 27px;
    }
}
/* =================================
   HALAMAN DAFTAR ALUMNI
================================= */

.alumni-page {
    min-height: 100vh;
    background: #f3f6fb;
    color: #172033;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 6%;
    background: linear-gradient(135deg, #0f4c81, #1f8dd6);
    color: white;
}

.site-header nav {
    display: flex;
    gap: 24px;
}

.site-header nav a {
    margin: 0;
    color: white;
    text-decoration: none;
}

.site-header nav a:hover {
    text-decoration: underline;
}

.alumni-main {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 60px 0 80px;
}

.alumni-heading {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.section-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #1f8dd6;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.alumni-heading h1 {
    margin-bottom: 15px;
    color: #0f4c81;
    font-size: clamp(34px, 6vw, 52px);
}

.alumni-heading p {
    color: #667085;
    font-size: 17px;
    line-height: 1.7;
}

.alumni-toolbar {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 16px;
    align-items: end;
    padding: 22px;
    background: white;
    border: 1px solid #e3e9f2;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(31, 64, 104, 0.08);
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    color: #344054;
    font-size: 14px;
    font-weight: 700;
}

.filter-group input,
.filter-group select {
    width: 100%;
    min-height: 48px;
    padding: 11px 14px;
    border: 1px solid #d0d7e2;
    border-radius: 10px;
    background: white;
    color: #172033;
    font-size: 15px;
    outline: none;
}

.filter-group input:focus,
.filter-group select:focus {
    border-color: #1f8dd6;
    box-shadow: 0 0 0 3px rgba(31, 141, 214, 0.12);
}

.reset-button {
    min-height: 48px;
    margin: 0;
    padding: 11px 20px;
    background: #edf2f8;
    color: #0f4c81;
    font-size: 15px;
    font-weight: 700;
}

.reset-button:hover {
    background: #dde8f3;
}

.alumni-summary {
    margin: 25px 0 18px;
    color: #667085;
}

.directory-status {
    min-height: 24px;
    margin: 22px 0;
    padding: 0;
    color: #667085;
    text-align: center;
}

.directory-status.loading,
.directory-status.empty,
.directory-status.error {
    padding: 22px;
    border-radius: 12px;
}

.directory-status.loading {
    background: #e9f4fc;
    color: #0f4c81;
}

.directory-status.empty {
    background: #fff4d6;
    color: #7a5300;
}

.directory-status.error {
    background: #f8d7da;
    color: #842029;
}

.alumni-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.alumni-card {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 20px;
    padding: 25px;
    background: white;
    border: 1px solid #e3e9f2;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(31, 64, 104, 0.07);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.alumni-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(31, 64, 104, 0.12);
}

.alumni-avatar {
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f4c81, #1f8dd6);
    color: white;
    font-size: 25px;
    font-weight: 800;
}

.alumni-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alumni-card-top {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 18px;
}

.alumni-card h2 {
    margin: 0 0 5px;
    color: #172033;
    font-size: 21px;
}

.alumni-batch {
    color: #667085;
    font-size: 14px;
}

.alumni-major {
    height: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: #e9f4fc;
    color: #0f4c81;
    font-size: 12px;
    font-weight: 800;
}

.alumni-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
}

.alumni-details div {
    min-width: 0;
}

.alumni-details dt {
    margin-bottom: 3px;
    color: #98a2b3;
    font-size: 12px;
}

.alumni-details dd {
    margin: 0;
    overflow-wrap: anywhere;
    color: #344054;
    font-size: 14px;
    font-weight: 600;
}

.alumni-message {
    margin: 20px 0 0;
    padding: 15px;
    border-left: 4px solid #1f8dd6;
    border-radius: 8px;
    background: #f6f9fc;
    color: #475467;
    line-height: 1.6;
}

.site-footer {
    padding: 30px 20px;
    background: #0b3559;
    color: #dce8f3;
    text-align: center;
}

.site-footer p {
    margin: 5px 0;
    font-size: 14px;
}

@media (max-width: 900px) {
    .alumni-toolbar {
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-search {
        grid-column: 1 / -1;
    }

    .alumni-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .site-header {
        flex-direction: column;
        gap: 18px;
        padding: 20px;
    }

    .site-header nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }

    .alumni-main {
        padding-top: 35px;
    }

    .alumni-toolbar {
        grid-template-columns: 1fr;
    }

    .filter-search {
        grid-column: auto;
    }

    .reset-button {
        width: 100%;
    }

    .alumni-card {
        grid-template-columns: 1fr;
    }

    .alumni-avatar {
        width: 72px;
        height: 72px;
    }

    .alumni-details {
        grid-template-columns: 1fr;
    }

    .alumni-card-top {
        align-items: flex-start;
    }
}
/* =================================
   HALAMAN LOGIN ADMIN
================================= */

.login-page {
    min-height: 100vh;
    background:
        linear-gradient(
            135deg,
            rgba(8, 50, 87, 0.96),
            rgba(31, 141, 214, 0.92)
        );
    color: #172033;
}

.login-wrapper {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 30px 18px;
}

.login-card {
    width: min(460px, 100%);
    padding: 38px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 22px;
    background: white;
    box-shadow: 0 25px 70px rgba(0, 20, 45, 0.28);
}

.back-link {
    display: inline-block;
    margin-bottom: 26px;
    color: #0f4c81;
    text-decoration: none;
    font-weight: 700;
}

.back-link:hover {
    text-decoration: underline;
}

.login-icon {
    margin-bottom: 14px;
    font-size: 46px;
    text-align: center;
}

.login-label {
    margin-bottom: 8px;
    color: #1f8dd6;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-align: center;
}

.login-card h1 {
    margin-bottom: 12px;
    color: #0f4c81;
    font-size: 34px;
    text-align: center;
}

.login-description {
    margin-bottom: 28px;
    color: #667085;
    line-height: 1.65;
    text-align: center;
}

.login-button {
    width: 100%;
    margin: 4px 0 0;
    padding: 15px;
    border-radius: 10px;
    background: #0f4c81;
    color: white;
    font-size: 16px;
    font-weight: 800;
}

.login-button:disabled {
    cursor: not-allowed;
    opacity: 0.65;
}

@media (max-width: 520px) {
    .login-card {
        padding: 28px 20px;
    }

    .login-card h1 {
        font-size: 29px;
    }
}
/* =================================
   DASHBOARD ADMIN
================================= */

.dashboard-page {
    min-height: 100vh;
    background: #f3f6fb;
    color: #172033;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 28px 5%;
    background: linear-gradient(
        135deg,
        #0f4c81,
        #1f8dd6
    );
    color: white;
}

.dashboard-label {
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.dashboard-header h1 {
    margin: 0;
    font-size: 32px;
}

.dashboard-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dashboard-home-link,
.logout-button {
    padding: 11px 16px;
    border-radius: 9px;
    text-decoration: none;
    font-weight: 700;
}

.dashboard-home-link {
    background: rgba(255, 255, 255, 0.18);
    color: white;
}

.logout-button {
    margin: 0;
    background: white;
    color: #0f4c81;
}

.dashboard-main {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 40px 0 70px;
}

.dashboard-summary {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.summary-card {
    padding: 22px;
    border-radius: 16px;
    background: white;
    box-shadow: 0 12px 30px
        rgba(31, 64, 104, 0.08);
}

.summary-card span {
    display: block;
    margin-bottom: 10px;
    color: #667085;
    font-size: 14px;
}

.summary-card strong {
    color: #0f4c81;
    font-size: 34px;
}

.summary-card.pending strong {
    color: #a86a00;
}

.summary-card.approved strong {
    color: #146c43;
}

.summary-card.rejected strong {
    color: #842029;
}

.dashboard-toolbar {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 18px;
    margin-bottom: 24px;
    padding: 20px;
    border-radius: 16px;
    background: white;
    box-shadow: 0 12px 30px
        rgba(31, 64, 104, 0.07);
}

.admin-list {
    display: grid;
    gap: 20px;
}

.admin-card {
    padding: 24px;
    border: 1px solid #e3e9f2;
    border-radius: 17px;
    background: white;
    box-shadow: 0 12px 30px
        rgba(31, 64, 104, 0.07);
}

.admin-card-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.admin-card-header h2 {
    margin: 0 0 6px;
    color: #172033;
}

.admin-card-header p {
    color: #667085;
}

.status-badge {
    height: fit-content;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.status-badge.pending {
    background: #fff4d6;
    color: #7a5300;
}

.status-badge.approved {
    background: #d1e7dd;
    color: #146c43;
}

.status-badge.rejected {
    background: #f8d7da;
    color: #842029;
}

.admin-data-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.admin-data-grid span {
    display: block;
    margin-bottom: 5px;
    color: #98a2b3;
    font-size: 12px;
}

.admin-data-grid strong {
    color: #344054;
    overflow-wrap: anywhere;
}

.admin-message {
    margin-top: 22px;
    padding: 16px;
    border-radius: 10px;
    background: #f6f9fc;
}

.admin-message p {
    margin-top: 7px;
    color: #475467;
    line-height: 1.6;
}

.admin-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.admin-card-actions button {
    margin: 0;
    padding: 11px 17px;
    color: white;
    font-size: 14px;
    font-weight: 800;
}

.approve-button {
    background: #198754;
}

.reject-button {
    background: #d08a00;
}

.delete-button {
    background: #b42318;
}

@media (max-width: 850px) {
    .dashboard-summary {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-data-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .dashboard-actions {
        width: 100%;
    }

    .dashboard-home-link,
    .logout-button {
        flex: 1;
        text-align: center;
    }

    .dashboard-summary,
    .dashboard-toolbar,
    .admin-data-grid {
        grid-template-columns: 1fr;
    }

    .admin-card-header {
        flex-direction: column;
    }
}
/* =================================
   MODAL EDIT ALUMNI
================================= */

body.modal-open {
    overflow: hidden;
}

.edit-button {
    background: #175cd3;
}

.edit-modal {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: none;
}

.edit-modal.active {
    display: block;
}

.edit-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 25, 44, 0.68);
    backdrop-filter: blur(3px);
}

.edit-modal-card {
    position: relative;
    z-index: 1;
    width: min(780px, calc(100% - 28px));
    max-height: calc(100vh - 40px);
    margin: 20px auto;
    padding: 28px;
    overflow-y: auto;
    border-radius: 20px;
    background: white;
    box-shadow: 0 30px 80px
        rgba(0, 18, 40, 0.35);
}

.edit-modal-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
}

.edit-modal-header h2 {
    margin-top: 4px;
    color: #0f4c81;
}

.modal-close-button {
    width: 42px;
    height: 42px;
    margin: 0;
    padding: 0;
    border-radius: 50%;
    background: #eef3f8;
    color: #344054;
    font-size: 27px;
    line-height: 1;
}

.edit-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

.cancel-edit-button,
.save-edit-button {
    margin: 0;
    padding: 13px 20px;
    color: white;
    font-size: 15px;
    font-weight: 800;
}

.cancel-edit-button {
    background: #667085;
}

.save-edit-button {
    background: #0f4c81;
}

.save-edit-button:disabled {
    cursor: not-allowed;
    opacity: 0.65;
}

@media (max-width: 600px) {
    .edit-modal-card {
        padding: 22px 18px;
    }

    .edit-form-actions {
        flex-direction: column-reverse;
    }

    .cancel-edit-button,
    .save-edit-button {
        width: 100%;
    }
}
/* Logo sekolah pada navbar */

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    color: white;
    font-size: 28px;
    font-weight: 800;
}

.school-logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
    flex-shrink: 0;
}
@media (max-width: 700px) {
    .logo {
        justify-content: center;
        font-size: 20px;
        text-align: center;
    }

    .school-logo {
        width: 46px;
        height: 46px;
    }
}
/* =================================
   STATISTIK BERANDA
================================= */

.home-statistics {
    position: relative;
    padding: 85px 6%;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #f4f8fc 0%,
            #ffffff 100%
        );
    color: #172033;
}

.home-statistics::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    top: -180px;
    right: -120px;
    border-radius: 50%;
    background: rgba(31, 141, 214, 0.08);
}

.statistics-heading {
    position: relative;
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.statistics-heading span {
    display: inline-block;
    margin-bottom: 12px;
    color: #d79b11;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.statistics-heading h2 {
    margin-bottom: 14px;
    color: #0f4c81;
    font-size: clamp(32px, 5vw, 48px);
}

.statistics-heading p {
    color: #667085;
    font-size: 17px;
    line-height: 1.7;
}

.statistics-grid {
    position: relative;
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 22px;
    width: min(1200px, 100%);
    margin: 0 auto;
}

.statistics-card {
    padding: 30px 22px;
    border: 1px solid #e1e9f3;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    text-align: center;
    box-shadow:
        0 15px 40px
        rgba(31, 64, 104, 0.09);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.statistics-card:hover {
    transform: translateY(-7px);
    box-shadow:
        0 22px 45px
        rgba(31, 64, 104, 0.15);
}

.statistics-icon {
    display: grid;
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    place-items: center;
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            #e7f3fc,
            #fff5cf
        );
    font-size: 29px;
}

.statistics-card strong {
    display: block;
    margin-bottom: 8px;
    color: #0f4c81;
    font-size: 40px;
    line-height: 1;
}

.statistics-card span {
    color: #667085;
    font-size: 15px;
    font-weight: 700;
}

.home-statistics-status {
    min-height: 24px;
    margin-top: 26px;
    color: #667085;
    text-align: center;
}

@media (max-width: 950px) {
    .statistics-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .home-statistics {
        padding: 60px 18px;
    }

    .statistics-grid {
        grid-template-columns: 1fr;
    }

    .statistics-card {
        padding: 25px 18px;
    }
}
/* =================================
   TENTANG PORTAL ALUMNI
================================= */

.about-portal {
    padding: 90px 6%;
    background: white;
    color: #172033;
}

.about-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    width: min(1200px, 100%);
    margin: 0 auto;
}

.about-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #d79b11;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.about-text h2 {
    margin-bottom: 22px;
    color: #0f4c81;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.15;
}

.about-text p {
    margin-bottom: 16px;
    color: #667085;
    font-size: 17px;
    line-height: 1.8;
}

.about-button {
    display: inline-block;
    margin-top: 15px;
    padding: 15px 24px;
    border-radius: 12px;
    background: #0f4c81;
    color: white;
    text-decoration: none;
    font-weight: 800;
}

.about-button:hover {
    background: #1f8dd6;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.about-card {
    padding: 26px;
    border: 1px solid #e3e9f2;
    border-radius: 18px;
    background: #f7faff;
    box-shadow: 0 12px 30px rgba(31, 64, 104, 0.07);
}

.about-card span {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 32px;
}

.about-card h3 {
    margin-bottom: 8px;
    color: #0f4c81;
    font-size: 20px;
}

.about-card p {
    color: #667085;
    line-height: 1.6;
}

@media (max-width: 850px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .about-portal {
        padding: 65px 18px;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }
}
/* =================================
   ALUMNI INSPIRATIF
================================= */

.featured-alumni {
    position: relative;
    padding: 90px 6%;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #eef5fb 100%
        );
    color: #172033;
}

.featured-alumni::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: -180px;
    top: -220px;
    border-radius: 50%;
    background:
        rgba(31, 141, 214, 0.08);
}

.featured-heading {
    position: relative;
    max-width: 780px;
    margin: 0 auto 45px;
    text-align: center;
}

.featured-heading > span {
    display: inline-block;
    margin-bottom: 13px;
    color: #d79b11;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.featured-heading h2 {
    margin-bottom: 15px;
    color: #0f4c81;
    font-size: clamp(34px, 5vw, 50px);
    line-height: 1.15;
}

.featured-heading p {
    color: #667085;
    font-size: 17px;
    line-height: 1.75;
}

.featured-alumni-grid {
    position: relative;
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: min(1200px, 100%);
    margin: 0 auto;
}

.featured-card {
    overflow: hidden;
    border: 1px solid #e2e9f2;
    border-radius: 22px;
    background: white;
    box-shadow:
        0 16px 40px
        rgba(31, 64, 104, 0.09);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.featured-card:hover {
    transform: translateY(-7px);
    box-shadow:
        0 24px 48px
        rgba(31, 64, 104, 0.15);
}

.featured-photo {
    display: grid;
    height: 230px;
    place-items: center;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #0f4c81,
            #1f8dd6
        );
    color: white;
    font-size: 62px;
    font-weight: 800;
}

.featured-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-content {
    padding: 25px;
}

.featured-batch {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #e9f4fc;
    color: #0f4c81;
    font-size: 12px;
    font-weight: 800;
}

.featured-content h3 {
    margin-bottom: 8px;
    color: #172033;
    font-size: 23px;
}

.featured-job {
    margin-bottom: 5px;
    color: #0f4c81;
    font-weight: 800;
}

.featured-institution {
    margin-bottom: 18px;
    color: #667085;
    line-height: 1.5;
}

.featured-content blockquote {
    margin: 0;
    padding: 15px;
    border-left: 4px solid #d79b11;
    border-radius: 8px;
    background: #f7f9fc;
    color: #475467;
    line-height: 1.65;
}

.featured-alumni-status {
    min-height: 24px;
    margin-top: 25px;
    color: #667085;
    text-align: center;
}

.featured-alumni-action {
    margin-top: 35px;
    text-align: center;
}

.featured-alumni-action a {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 12px;
    background: #0f4c81;
    color: white;
    text-decoration: none;
    font-weight: 800;
}

.featured-alumni-action a:hover {
    background: #1f8dd6;
}

@media (max-width: 950px) {
    .featured-alumni-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .featured-alumni {
        padding: 65px 18px;
    }

    .featured-alumni-grid {
        grid-template-columns: 1fr;
    }

    .featured-photo {
        height: 210px;
    }
}
/* =================================
   PERJALANAN ALUMNI
================================= */

.alumni-journey {
    position: relative;
    padding: 95px 6%;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #082f52,
            #0f5f9d
        );
    color: white;
}

.alumni-journey::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -220px;
    top: -230px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    pointer-events: none;
}

.alumni-journey::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    left: -180px;
    bottom: -180px;
    border-radius: 50%;
    background: rgba(255, 210, 70, 0.11);
    pointer-events: none;
}

.journey-heading {
    position: relative;
    max-width: 780px;
    margin: 0 auto 50px;
    text-align: center;
}

.journey-heading span {
    display: inline-block;
    margin-bottom: 13px;
    color: #ffd45c;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.journey-heading h2 {
    margin-bottom: 16px;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.15;
}

.journey-heading p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    line-height: 1.75;
}

.journey-grid {
    position: relative;
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 20px;
    width: min(1200px, 100%);
    margin: 0 auto;
}

.journey-card {
    position: relative;
    min-height: 290px;
    padding: 28px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(10px);
    box-shadow:
        0 18px 40px
        rgba(0, 20, 45, 0.18);
    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.journey-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.17);
}

.journey-number {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 32px;
    font-weight: 900;
}

.journey-icon {
    display: grid;
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
    place-items: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.17);
    font-size: 30px;
}

.journey-card h3 {
    margin-bottom: 13px;
    font-size: 21px;
}

.journey-card p {
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.7;
}

@media (max-width: 1000px) {
    .journey-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 580px) {
    .alumni-journey {
        padding: 70px 18px;
    }

    .journey-grid {
        grid-template-columns: 1fr;
    }

    .journey-card {
        min-height: auto;
    }
}
/* =================================
   KONTAK PORTAL ALUMNI
================================= */

.contact-section {
    padding: 90px 6%;
    background:
        linear-gradient(
            135deg,
            #0f4c81,
            #1f8dd6
        );
    color: white;
}

.contact-content {
    width: min(1200px, 100%);
    margin: 0 auto;
    text-align: center;
}

.contact-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #ffd45c;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.contact-content h2 {
    margin-bottom: 16px;
    font-size: clamp(34px, 5vw, 50px);
}

.contact-content > p {
    max-width: 760px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    line-height: 1.7;
}

.contact-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.contact-card {
    padding: 28px 22px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    box-shadow:
        0 15px 35px
        rgba(0, 25, 55, 0.16);
}

.contact-icon {
    display: block;
    margin-bottom: 16px;
    font-size: 34px;
}

.contact-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.contact-card p,
.contact-card a {
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.contact-card a:hover {
    color: #ffd45c;
    text-decoration: underline;
}

@media (max-width: 950px) {
    .contact-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .contact-section {
        padding: 65px 18px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}
/* =================================
   ANIMASI SCROLL
================================= */

.scroll-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.scroll-reveal.show {
    opacity: 1;
    transform: translateY(0);
}
/* =================================
   GALERI SMANPA
================================= */

.home-gallery {
    padding: 95px 6%;
    background: #ffffff;
    color: #172033;
}

.gallery-heading {
    max-width: 780px;
    margin: 0 auto 45px;
    text-align: center;
}

.gallery-heading span {
    display: inline-block;
    margin-bottom: 13px;
    color: #d79b11;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.gallery-heading h2 {
    margin-bottom: 15px;
    color: #0f4c81;
    font-size: clamp(34px, 5vw, 50px);
    line-height: 1.15;
}

.gallery-heading p {
    color: #667085;
    font-size: 17px;
    line-height: 1.75;
}

.gallery-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    grid-auto-rows: 220px;
    gap: 18px;
    width: min(1200px, 100%);
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: none;
    border-radius: 20px;
    background: #dce8f3;
    cursor: pointer;
    box-shadow:
        0 15px 35px
        rgba(31, 64, 104, 0.1);
}

.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 40%,
            rgba(5, 32, 58, 0.82)
        );
}

.gallery-item span {
    position: absolute;
    z-index: 2;
    left: 20px;
    right: 20px;
    bottom: 18px;
    color: white;
    font-size: 17px;
    font-weight: 800;
    text-align: left;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: saturate(1.12);
}

/* Modal galeri */

.gallery-modal {
    position: fixed;
    z-index: 2000;
    inset: 0;
    display: none;
    place-items: center;
    padding: 24px;
}

.gallery-modal.active {
    display: grid;
}

.gallery-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 18, 33, 0.88);
    backdrop-filter: blur(5px);
}

.gallery-modal-content {
    position: relative;
    z-index: 2;
    width: min(1000px, 100%);
    max-height: calc(100vh - 60px);
    margin: 0;
    overflow: auto;
    border-radius: 18px;
    background: white;
    box-shadow:
        0 30px 90px
        rgba(0, 0, 0, 0.45);
}

.gallery-modal-content img {
    display: block;
    width: 100%;
    max-height: 76vh;
    object-fit: contain;
    background: #081f35;
}

.gallery-modal-content figcaption {
    padding: 17px 22px;
    color: #344054;
    font-weight: 700;
    text-align: center;
}

.gallery-modal-close {
    position: fixed;
    z-index: 3;
    top: 20px;
    right: 24px;
    display: grid;
    width: 46px;
    height: 46px;
    margin: 0;
    padding: 0;
    place-items: center;
    border-radius: 50%;
    background: white;
    color: #172033;
    font-size: 30px;
    line-height: 1;
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .home-gallery {
        padding: 70px 18px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 230px;
    }

    .gallery-large,
    .gallery-wide {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-modal {
        padding: 14px;
    }
}
/* =================================
   CALL TO ACTION BERANDA
================================= */

.home-cta {
    padding: 90px 6%;
    background:
        linear-gradient(
            135deg,
            rgba(9, 54, 93, 0.96),
            rgba(31, 141, 214, 0.9)
        ),
        url("../images/gedung-smanpa.jpg");

    background-size: cover;
    background-position: center;
    color: white;
}

.home-cta-content {
    width: min(900px, 100%);
    margin: 0 auto;
    text-align: center;
}

.home-cta-content > span {
    display: inline-block;
    margin-bottom: 14px;
    color: #ffd45c;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.home-cta-content h2 {
    margin-bottom: 18px;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.15;
}

.home-cta-content p {
    max-width: 760px;
    margin: 0 auto 32px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    line-height: 1.75;
}

.home-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.home-cta-actions a {
    min-width: 220px;
    padding: 15px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.home-cta-actions a:hover {
    transform: translateY(-4px);
}

.cta-primary {
    background: #ffd45c;
    color: #172033;
    box-shadow:
        0 15px 35px
        rgba(0, 0, 0, 0.18);
}

.cta-secondary {
    border: 1px solid
        rgba(255, 255, 255, 0.65);
    background:
        rgba(255, 255, 255, 0.12);
    color: white;
    backdrop-filter: blur(8px);
}

@media (max-width: 560px) {
    .home-cta {
        padding: 70px 18px;
    }

    .home-cta-actions {
        flex-direction: column;
    }

    .home-cta-actions a {
        width: 100%;
    }
}
/* =================================
   FOOTER PREMIUM
================================= */

.premium-footer {
    background: #071f36;
    color: #dce8f3;
}

.footer-main {
    display: grid;
    grid-template-columns:
        1.4fr 0.8fr 0.9fr 1.1fr 1.2fr;
    gap: 45px;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 65px 0 45px;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 66px;
    height: 66px;
    object-fit: contain;
}

.footer-brand h3 {
    margin-bottom: 5px;
    color: white;
    font-size: 22px;
}

.footer-brand p,
.footer-column p {
    color: #aebfd0;
    line-height: 1.7;
}

.footer-description {
    max-width: 380px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.footer-column h4 {
    margin-bottom: 8px;
    color: white;
    font-size: 17px;
}

.footer-column a {
    color: #aebfd0;
    text-decoration: none;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-column a:hover {
    color: #ffd45c;
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 22px 0;
    border-top:
        1px solid rgba(255, 255, 255, 0.12);
    color: #91a7ba;
    font-size: 14px;
}

@media (max-width: 950px) {
    .footer-main {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .footer-main {
        grid-template-columns: 1fr;
        padding: 50px 0 35px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
/* ===================================
FORM SECTION
=================================== */

.form-section{

background:#fff;

border-radius:22px;

padding:35px;

margin-bottom:35px;

box-shadow:0 12px 40px rgba(0,0,0,.08);

border:1px solid #e8eef5;

}

.section-title{

display:flex;

align-items:center;

gap:18px;

margin-bottom:30px;

}

.section-title span{

width:50px;

height:50px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

background:#0f4c81;

color:white;

font-size:22px;

font-weight:bold;

}

.section-title h2{

margin:0;

color:#0f4c81;

font-size:28px;

}
/* =================================
   UPLOAD FOTO ALUMNI
================================= */

.photo-upload-box {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 25px;
    border: 2px dashed #cbd8e6;
    border-radius: 18px;
    background: #f8fbfe;
}

.photo-preview {
    display: grid;
    width: 150px;
    height: 150px;
    flex-shrink: 0;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
    background:
        linear-gradient(
            135deg,
            #0f4c81,
            #1f8dd6
        );
    color: white;
    font-size: 55px;
    box-shadow:
        0 12px 30px
        rgba(31, 64, 104, 0.16);
}

.photo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-upload-info {
    flex: 1;
}

.photo-select-button {
    display: inline-block;
    margin-bottom: 12px;
    padding: 13px 20px;
    border-radius: 10px;
    background: #0f4c81;
    color: white;
    font-weight: 800;
    cursor: pointer;
}

.photo-select-button:hover {
    background: #1f8dd6;
}

.photo-upload-info p {
    margin-bottom: 5px;
    color: #344054;
}

.photo-upload-info small {
    display: block;
    color: #667085;
}

.photo-remove-button {
    margin: 16px 0 0;
    padding: 10px 16px;
    background: #b42318;
    color: white;
    font-size: 14px;
}

@media (max-width: 600px) {
    .photo-upload-box {
        flex-direction: column;
        text-align: center;
    }

    .photo-preview {
        width: 130px;
        height: 130px;
    }
}
.alumni-card-link {
    color: inherit;
    text-decoration: none;
    display: flex;
}

.alumni-card-link:focus-visible {
    outline: 3px solid #1f8dd6;
    outline-offset: 4px;
}
/* =================================
   HALAMAN PROFIL ALUMNI
================================= */

.profile-page {
    min-height: 100vh;
    background: #eef4fa;
}

.profile-main {
    width: min(1200px, calc(100% - 32px));
    min-height: 520px;
    margin: 0 auto;
    padding: 55px 0 80px;
}

.profile-layout:empty {
    display: none;
}

.profile-hero-card {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 28px;
    padding: 38px;
    border: 1px solid #dae5ef;
    border-radius: 26px;
    background:
        linear-gradient(
            135deg,
            #0f4c81,
            #1f8dd6
        );
    color: white;
    box-shadow:
        0 20px 50px
        rgba(15, 76, 129, 0.2);
}

.profile-avatar {
    display: grid;
    width: 190px;
    height: 190px;
    flex-shrink: 0;
    place-items: center;
    overflow: hidden;
    border: 6px solid
        rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: #ffffff;
    color: #0f4c81;
    font-size: 65px;
    font-weight: 900;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-identity h1 {
    margin: 12px 0 10px;
    font-size: clamp(34px, 5vw, 55px);
    line-height: 1.1;
}

.profile-badge {
    display: inline-block;
    padding: 7px 13px;
    border-radius: 999px;
    background:
        rgba(255, 255, 255, 0.18);
    font-size: 13px;
    font-weight: 800;
}

.profile-headline {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 19px;
    line-height: 1.6;
}

.profile-location {
    color: rgba(255, 255, 255, 0.86);
    font-weight: 700;
}

.profile-content-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.7fr)
        minmax(280px, 0.8fr);
    gap: 26px;
}

.profile-main-column,
.profile-side-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.profile-card {
    padding: 30px;
    border: 1px solid #dce6f0;
    border-radius: 21px;
    background: white;
    box-shadow:
        0 14px 35px
        rgba(31, 64, 104, 0.08);
}

.profile-card h2 {
    margin-bottom: 23px;
    color: #0f4c81;
    font-size: 23px;
}

.profile-information-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin: 0;
}

.profile-information-grid div {
    padding-bottom: 13px;
    border-bottom: 1px solid #e8eef5;
}

.profile-information-grid dt {
    margin-bottom: 7px;
    color: #8492a6;
    font-size: 13px;
}

.profile-information-grid dd {
    margin: 0;
    color: #172033;
    font-weight: 800;
    line-height: 1.5;
}

.profile-message-card blockquote {
    margin: 0;
    padding: 20px;
    border-left: 4px solid #d79b11;
    border-radius: 10px;
    background: #f5f8fc;
    color: #475467;
    font-size: 17px;
    line-height: 1.8;
}

.profile-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.profile-social-link {
    display: inline-block;
    padding: 11px 17px;
    border-radius: 10px;
    background: #e8f3fc;
    color: #0f4c81;
    text-decoration: none;
    font-weight: 800;
}

.profile-social-link:hover {
    background: #0f4c81;
    color: white;
}

.profile-back-button {
    display: block;
    padding: 15px 20px;
    border-radius: 12px;
    background: #0f4c81;
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: 800;
}

.profile-back-button:hover {
    background: #1f8dd6;
}

@media (max-width: 850px) {
    .profile-content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .profile-main {
        padding-top: 30px;
    }

    .profile-hero-card {
        flex-direction: column;
        padding: 28px 20px;
        text-align: center;
    }

    .profile-avatar {
        width: 150px;
        height: 150px;
    }

    .profile-information-grid {
        grid-template-columns: 1fr;
    }

    .profile-card {
        padding: 23px 19px;
    }
}
/* =================================
   KEBIJAKAN PRIVASI
================================= */

.privacy-page {
    min-height: 100vh;
    background: #f2f6fa;
    color: #172033;
}

.privacy-header {
    position: relative;
    z-index: 20;
}

.privacy-main {
    padding-bottom: 80px;
}

.privacy-hero {
    padding: 85px 20px 105px;
    background:
        linear-gradient(
            135deg,
            rgba(8, 47, 82, 0.98),
            rgba(31, 141, 214, 0.92)
        );
    color: white;
    text-align: center;
}

.privacy-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #ffd45c;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.privacy-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(39px, 6vw, 64px);
}

.privacy-hero p {
    max-width: 820px;
    margin: 0 auto 22px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.75;
}

.privacy-update {
    display: inline-block;
    padding: 9px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 13px;
    font-weight: 700;
}

.privacy-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 28px;
    width: min(1200px, calc(100% - 32px));
    margin: -42px auto 0;
}

.privacy-navigation {
    position: sticky;
    top: 22px;
    align-self: start;
    padding: 25px;
    border: 1px solid #dbe6f0;
    border-radius: 20px;
    background: white;
    box-shadow:
        0 15px 40px
        rgba(31, 64, 104, 0.1);
}

.privacy-navigation h2 {
    margin-bottom: 17px;
    color: #0f4c81;
    font-size: 19px;
}

.privacy-navigation a {
    display: block;
    padding: 9px 0;
    color: #566579;
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
}

.privacy-navigation a:hover {
    color: #0f4c81;
    font-weight: 700;
}

.privacy-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.privacy-card {
    scroll-margin-top: 25px;
    padding: 32px;
    border: 1px solid #dbe6f0;
    border-radius: 20px;
    background: white;
    box-shadow:
        0 13px 35px
        rgba(31, 64, 104, 0.07);
}

.privacy-card h2 {
    margin-bottom: 18px;
    color: #0f4c81;
    font-size: 25px;
}

.privacy-card h3 {
    margin-bottom: 8px;
    color: #172033;
    font-size: 17px;
}

.privacy-card p,
.privacy-card li {
    color: #526176;
    font-size: 16px;
    line-height: 1.8;
}

.privacy-card p + p {
    margin-top: 14px;
}

.privacy-card ul {
    margin: 15px 0;
    padding-left: 24px;
}

.privacy-card li {
    margin-bottom: 7px;
}

.privacy-highlight {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 18px 0;
    padding: 18px;
    border-left: 5px solid #1f8dd6;
    border-radius: 10px;
    background: #edf7fd;
}

.privacy-highlight strong {
    color: #0f4c81;
}

.privacy-data-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.privacy-data-grid > div {
    padding: 20px;
    border: 1px solid #e0e8f1;
    border-radius: 14px;
    background: #f8fbfe;
}

.privacy-warning {
    margin-top: 22px;
    padding: 20px;
    border: 1px solid #f0d48d;
    border-radius: 14px;
    background: #fff9e8;
}

.privacy-warning strong {
    display: block;
    margin-bottom: 8px;
    color: #7a5500;
}

.privacy-contact-card {
    border-color: #badcf2;
    background:
        linear-gradient(
            135deg,
            #ffffff,
            #eef8fe
        );
}

.privacy-contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
    padding: 22px;
    border-radius: 14px;
    background: #0f4c81;
    color: white;
}

.privacy-contact-details a {
    color: #ffd45c;
    text-decoration: none;
    font-weight: 800;
}

.privacy-contact-details a:hover {
    text-decoration: underline;
}

.privacy-footer div {
    display: flex;
    gap: 18px;
}

.privacy-footer a {
    color: inherit;
    text-decoration: none;
}

.privacy-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .privacy-layout {
        grid-template-columns: 1fr;
    }

    .privacy-navigation {
        position: static;
    }

    .privacy-navigation a {
        display: inline-block;
        margin-right: 15px;
    }
}

@media (max-width: 600px) {
    .privacy-hero {
        padding: 65px 18px 80px;
    }

    .privacy-layout {
        width: min(100% - 24px, 1200px);
        margin-top: -30px;
    }

    .privacy-card {
        padding: 24px 19px;
    }

    .privacy-data-grid {
        grid-template-columns: 1fr;
    }

    .privacy-footer,
    .privacy-footer div {
        flex-direction: column;
        align-items: center;
    }
}
/* =================================
   PENGATURAN PORTAL DI DASHBOARD
================================= */

.portal-settings-card {
    margin: 30px 0;
    padding: 28px;
    border: 1px solid #dbe6f0;
    border-radius: 22px;
    background: #ffffff;
    box-shadow:
        0 14px 35px
        rgba(31, 64, 104, 0.08);
}

.portal-settings-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.portal-settings-heading h2 {
    margin: 6px 0 8px;
    color: #0f4c81;
    font-size: 26px;
}

.portal-settings-heading p {
    margin: 0;
    color: #667085;
    line-height: 1.6;
}

.settings-label {
    color: #d18c00;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.settings-toggle-button,
.settings-save-button {
    border: 0;
    border-radius: 11px;
    cursor: pointer;
    font-weight: 800;
}

.settings-toggle-button {
    flex-shrink: 0;
    padding: 13px 19px;
    background: #e8f3fc;
    color: #0f4c81;
}

.settings-toggle-button:hover {
    background: #d7ebfa;
}

.portal-settings-panel {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e3eaf2;
}

.settings-save-button {
    padding: 14px 22px;
    background: #0f4c81;
    color: #ffffff;
}

.settings-save-button:hover {
    background: #1f8dd6;
}

.settings-save-button:disabled {
    cursor: not-allowed;
    opacity: 0.65;
}

@media (max-width: 700px) {
    .portal-settings-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .settings-toggle-button {
        width: 100%;
    }
}
/* =================================
   MEDIA SOSIAL SMANPA
================================= */

.school-socials {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
}

.school-social-link {
    display: flex;
    align-items: center;
    gap: 11px;
    width: auto;
    min-width: 210px;
    padding: 10px 12px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: #dce8f3;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.school-social-link:hover {
    transform: translateX(4px);
    border-color: rgba(255, 212, 92, 0.45);
    background: rgba(255, 255, 255, 0.12);
    color: white;
}

.school-social-link > span:last-child {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.school-social-link strong {
    color: white;
    font-size: 14px;
}

.school-social-link small {
    margin-top: 2px;
    color: #9fb3c5;
    font-size: 11px;
    overflow-wrap: anywhere;
}

.social-symbol {
    display: grid;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    place-items: center;
    border-radius: 10px;
    color: white;
    font-size: 14px;
    font-weight: 900;
}

.instagram-symbol {
    background: linear-gradient(
        135deg,
        #833ab4,
        #fd1d1d,
        #fcb045
    );
}

.facebook-symbol {
    background: #1877f2;
    font-size: 23px;
}

.youtube-symbol {
    background: #ff0000;
}

.website-symbol {
    background: #0f8b78;
}

@media (max-width: 1150px) {
    .footer-main {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 750px) {
    .footer-main {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .footer-main {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .school-socials {
        flex-direction: column;
    }

    .school-social-link {
        width: 100%;
        min-width: 0;
    }
}
/* =================================
   SYARAT DAN KETENTUAN
================================= */

.terms-page {
    min-height: 100vh;
    background: #f2f6fa;
    color: #172033;
}

.terms-header {
    position: relative;
    z-index: 20;
}

.terms-main {
    padding-bottom: 80px;
}

.terms-hero {
    padding: 85px 20px 105px;
    background:
        linear-gradient(
            135deg,
            rgba(8, 47, 82, 0.98),
            rgba(31, 141, 214, 0.92)
        );
    color: white;
    text-align: center;
}

.terms-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #ffd45c;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.terms-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(38px, 6vw, 64px);
}

.terms-hero p {
    max-width: 820px;
    margin: 0 auto 22px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.75;
}

.terms-update {
    display: inline-block;
    padding: 9px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 13px;
    font-weight: 700;
}

.terms-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 28px;
    width: min(1200px, calc(100% - 32px));
    margin: -42px auto 0;
}

.terms-navigation {
    position: sticky;
    top: 22px;
    align-self: start;
    max-height: calc(100vh - 44px);
    padding: 25px;
    overflow-y: auto;
    border: 1px solid #dbe6f0;
    border-radius: 20px;
    background: white;
    box-shadow:
        0 15px 40px
        rgba(31, 64, 104, 0.1);
}

.terms-navigation h2 {
    margin-bottom: 17px;
    color: #0f4c81;
    font-size: 19px;
}

.terms-navigation a {
    display: block;
    padding: 8px 0;
    color: #566579;
    font-size: 14px;
    line-height: 1.45;
    text-decoration: none;
}

.terms-navigation a:hover {
    color: #0f4c81;
    font-weight: 700;
}

.terms-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.terms-card {
    scroll-margin-top: 25px;
    padding: 32px;
    border: 1px solid #dbe6f0;
    border-radius: 20px;
    background: white;
    box-shadow:
        0 13px 35px
        rgba(31, 64, 104, 0.07);
}

.terms-card h2 {
    margin-bottom: 18px;
    color: #0f4c81;
    font-size: 25px;
}

.terms-card h3 {
    margin-bottom: 8px;
    color: #172033;
    font-size: 17px;
}

.terms-card p,
.terms-card li {
    color: #526176;
    font-size: 16px;
    line-height: 1.8;
}

.terms-card p + p {
    margin-top: 14px;
}

.terms-card ul {
    margin: 15px 0;
    padding-left: 24px;
}

.terms-card li {
    margin-bottom: 7px;
}

.terms-highlight {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 18px 0;
    padding: 18px;
    border-left: 5px solid #1f8dd6;
    border-radius: 10px;
    background: #edf7fd;
}

.terms-highlight strong {
    color: #0f4c81;
}

.terms-data-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 20px 0;
}

.terms-data-grid > div {
    padding: 20px;
    border: 1px solid #e0e8f1;
    border-radius: 14px;
    background: #f8fbfe;
}

.verification-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 24px 0;
}

.verification-flow > div {
    display: flex;
    min-width: 150px;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 1px solid #dbe7f1;
    border-radius: 15px;
    background: #f7fbfe;
    text-align: center;
}

.verification-flow > div > span {
    display: grid;
    width: 38px;
    height: 38px;
    margin-bottom: 10px;
    place-items: center;
    border-radius: 50%;
    background: #0f4c81;
    color: white;
    font-weight: 900;
}

.verification-flow strong {
    color: #172033;
}

.verification-flow small {
    margin-top: 4px;
    color: #8492a6;
}

.flow-arrow {
    color: #1f8dd6;
    font-size: 25px;
    font-weight: 900;
}

.terms-document-link {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 18px;
    border-radius: 10px;
    background: #e8f3fc;
    color: #0f4c81;
    text-decoration: none;
    font-weight: 800;
}

.terms-document-link:hover {
    background: #0f4c81;
    color: white;
}

.terms-contact-card {
    border-color: #badcf2;
    background:
        linear-gradient(
            135deg,
            #ffffff,
            #eef8fe
        );
}

.terms-contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
    padding: 22px;
    border-radius: 14px;
    background: #0f4c81;
    color: white;
}

.terms-contact-details a {
    color: #ffd45c;
    text-decoration: none;
    font-weight: 800;
}

.terms-contact-details a:hover {
    text-decoration: underline;
}

.terms-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.terms-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
}

.terms-footer a {
    color: inherit;
    text-decoration: none;
    font-weight: 700;
}

.terms-footer a:hover {
    color: #ffd45c;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .terms-layout {
        grid-template-columns: 1fr;
    }

    .terms-navigation {
        position: static;
        max-height: none;
    }

    .terms-navigation a {
        display: inline-block;
        margin-right: 14px;
    }
}

@media (max-width: 700px) {
    .verification-flow {
        flex-direction: column;
    }

    .verification-flow > div {
        width: 100%;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 600px) {
    .terms-hero {
        padding: 65px 18px 80px;
    }

    .terms-layout {
        width: min(100% - 24px, 1200px);
        margin-top: -30px;
    }

    .terms-card {
        padding: 24px 19px;
    }

    .terms-data-grid {
        grid-template-columns: 1fr;
    }

    .terms-footer {
        flex-direction: column;
        text-align: center;
    }

    .terms-footer-links {
        justify-content: center;
    }
}
/* =================================
   TOMBOL EXPORT EXCEL
================================= */

.export-excel-button {
    padding: 13px 20px;
    border: 0;
    border-radius: 11px;
    background: #16854b;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.export-excel-button:hover {
    transform: translateY(-2px);
    background: #0f6f3d;
}

.export-excel-button:disabled {
    transform: none;
    cursor: not-allowed;
    opacity: 0.65;
}

@media (max-width: 650px) {
    .dashboard-actions {
        flex-wrap: wrap;
    }

    .export-excel-button {
        width: 100%;
    }
}
/* =================================
   PAGINATION DIREKTORI ALUMNI
================================= */

.alumni-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: min(100%, 900px);
    margin: 45px auto 20px;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.pagination-number,
.pagination-navigation {
    min-height: 44px;
    border: 1px solid #d7e2ed;
    border-radius: 10px;
    background: #ffffff;
    color: #0f4c81;
    font-weight: 800;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.pagination-number {
    min-width: 44px;
    padding: 9px 13px;
}

.pagination-navigation {
    padding: 10px 18px;
}

.pagination-number:hover,
.pagination-navigation:hover:not(:disabled) {
    transform: translateY(-2px);
    border-color: #1f8dd6;
    background: #eaf6fd;
}

.pagination-number.active {
    border-color: #0f4c81;
    background: #0f4c81;
    color: #ffffff;
}

.pagination-navigation:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.pagination-ellipsis {
    display: grid;
    min-width: 32px;
    place-items: center;
    color: #667085;
    font-weight: 800;
}

.alumni-summary {
    scroll-margin-top: 25px;
}

@media (max-width: 650px) {
    .alumni-pagination {
        flex-wrap: wrap;
        gap: 11px;
    }

    .pagination-numbers {
        order: 1;
        width: 100%;
    }

    .pagination-navigation {
        flex: 1;
        min-width: 130px;
    }
}
.alumni-pagination[hidden] {
    display: none !important;
}