:root {
    --siakad-bg: #f2f5f9;
    --siakad-card: #ffffff;
    --siakad-text: #0f172a;
    --siakad-muted: #64748b;
    --siakad-primary: #0b5ed7;
    --siakad-accent: #0f766e;
    --siakad-sidebar: #0b1f3a;
    --siakad-sidebar-text: #c8d7f2;
    --siakad-border: #dbe4ef;
}

* {
    font-family: 'Manrope', sans-serif;
}

.siakad-body,
.siakad-auth-body {
    background: radial-gradient(circle at top right, #d9e7ff 0%, #f2f5f9 45%, #edf2f7 100%);
    color: var(--siakad-text);
}

.siakad-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 280px 1fr;
}

.siakad-sidebar {
    background: linear-gradient(180deg, #07162e 0%, var(--siakad-sidebar) 50%, #0c274b 100%);
    color: var(--siakad-sidebar-text);
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 10px 0 28px rgba(2, 11, 30, 0.18);
}

.siakad-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.siakad-brand__logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0ea5e9, #22c55e);
    display: grid;
    place-items: center;
    font-weight: 800;
    color: #fff;
}

.siakad-brand__logo--image {
    padding: 0;
    overflow: hidden;
    background: #fff;
}

.siakad-brand__logo--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.siakad-school-switch {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    padding: 10px;
}

.siakad-school-switch label {
    font-size: 12px;
    color: #c8d7f2;
}

.siakad-school-switch .form-select {
    background-color: rgba(255, 255, 255, 0.95);
}

.siakad-brand h1 {
    margin: 0;
    font-size: 18px;
    color: #fff;
}

.siakad-brand p {
    margin: 0;
    font-size: 12px;
    color: #9bb5de;
}

.siakad-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: auto;
}

.siakad-menu__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--siakad-sidebar-text);
    transition: all 0.2s ease;
}

.siakad-menu__item:hover,
.siakad-menu__item.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.siakad-logout {
    margin-top: auto;
}

.siakad-main {
    padding: 20px;
}

.siakad-topbar {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--siakad-border);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
}

.siakad-content {
    margin-top: 16px;
}

.card,
.siakad-stat-card {
    border: 1px solid var(--siakad-border);
    border-radius: 14px;
    background: var(--siakad-card);
    box-shadow: 0 12px 30px rgba(20, 36, 64, 0.07);
}

.siakad-stat-card {
    padding: 18px;
}

.siakad-stat-card span {
    display: block;
    color: var(--siakad-muted);
    font-size: 13px;
}

.siakad-stat-card strong {
    font-size: 28px;
    color: var(--siakad-text);
}

.siakad-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px;
    border: 1px solid var(--siakad-border);
    border-radius: 10px;
    background: #f8fbff;
}

.siakad-checkbox input {
    margin-top: 4px;
}

.siakad-auth-wrapper {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 20px;
}

.siakad-login-card {
    width: min(470px, 100%);
    border-radius: 18px;
    border: 1px solid var(--siakad-border);
    box-shadow: 0 20px 40px rgba(8, 24, 52, 0.12);
}

.siakad-login-brand {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.siakad-login-brand img {
    width: min(320px, 100%);
    height: auto;
    object-fit: contain;
}

.siakad-form-grid .form-control,
.siakad-form-grid .form-select {
    border-radius: 10px;
    border-color: #cfdbe9;
}

.siakad-debug-message {
    font-size: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px;
    color: #334155;
}

.siakad-public-body {
    background:
        radial-gradient(circle at 0% 0%, rgba(0, 90, 170, 0.22), transparent 30%),
        radial-gradient(circle at 100% 0%, rgba(214, 157, 0, 0.22), transparent 35%),
        #f7f9fc;
    color: #12233f;
}

.siakad-public-topbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    padding: 14px 22px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--siakad-border);
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(10px);
}

.siakad-public-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.siakad-public-brand img,
.siakad-public-brand span {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    object-fit: cover;
}

.siakad-public-brand span {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #0b5ed7, #0ea5e9);
    color: #fff;
    font-weight: 800;
}

.siakad-public-brand strong {
    display: block;
    line-height: 1.2;
}

.siakad-public-brand small {
    color: #5a7094;
}

.siakad-public-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.siakad-public-nav a {
    color: #27466f;
    padding: 8px 10px;
    border-radius: 9px;
}

.siakad-public-nav a:hover {
    background: #e9f1fb;
}

.siakad-public-login {
    background: linear-gradient(135deg, #0b5ed7, #0a78ff);
    color: #fff !important;
    font-weight: 700;
}

.siakad-public-main {
    width: min(1200px, 100%);
    margin: 20px auto;
    padding: 0 14px;
}

.siakad-public-hero {
    border-radius: 20px;
    background:
        linear-gradient(120deg, rgba(16, 52, 99, 0.93), rgba(7, 102, 111, 0.9)),
        linear-gradient(35deg, #f6d074, #f6a800);
    color: #fff;
    padding: 24px;
    display: grid;
    gap: 16px;
    grid-template-columns: 1.3fr 1fr;
    margin-bottom: 16px;
    box-shadow: 0 20px 38px rgba(16, 35, 75, 0.2);
}

.siakad-public-kicker {
    letter-spacing: 0.08em;
    font-weight: 700;
    font-size: 12px;
    opacity: 0.85;
    margin-bottom: 6px;
}

.siakad-public-hero__content h1 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 34px;
}

.siakad-public-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.siakad-public-hero__meta span {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 12px;
}

.siakad-public-hero__panel {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 16px;
    padding: 16px;
}

.siakad-public-hero__panel h3 {
    color: #fff;
}

.siakad-public-hero__panel a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
}

.siakad-public-section {
    margin-bottom: 16px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--siakad-border);
    box-shadow: 0 10px 24px rgba(11, 29, 61, 0.08);
    padding: 18px;
}

.siakad-public-section__header h2 {
    margin-bottom: 4px;
}

.siakad-public-section__header p {
    color: #5b6e8a;
}

.siakad-public-unit-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.siakad-public-unit-card {
    border: 1px solid #d9e3f2;
    border-radius: 14px;
    background: linear-gradient(160deg, #fff, #f4f8fe);
    padding: 14px;
    color: #223f68;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.siakad-public-unit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(28, 56, 98, 0.14);
}

.siakad-public-unit-card.is-active {
    border-color: #0b5ed7;
    box-shadow: 0 12px 26px rgba(11, 94, 215, 0.2);
}

.siakad-public-unit-card__logo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
    background: #fff;
    border: 1px solid #dce6f4;
}

.siakad-public-unit-card__logo img,
.siakad-public-unit-card__logo span {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: grid;
    place-items: center;
}

.siakad-public-post-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.siakad-public-post-card {
    border: 1px solid #dfe7f4;
    border-radius: 14px;
    padding: 12px;
    background: #fff;
}

.siakad-public-post-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 8px;
}

.siakad-public-post-card small {
    color: #7286a5;
    display: block;
    margin-bottom: 6px;
}

.siakad-public-agenda-list {
    display: grid;
    gap: 10px;
}

.siakad-public-agenda-item {
    border: 1px solid #e2e9f6;
    border-radius: 12px;
    padding: 10px 12px;
    background: #f8fbff;
}

.siakad-public-agenda-item span,
.siakad-public-agenda-item small {
    color: #5f7290;
    display: block;
}

.siakad-public-contact-wrap {
    display: grid;
    gap: 14px;
    grid-template-columns: 1.4fr 1fr;
}

.siakad-public-contact-form,
.siakad-public-contact-info {
    border: 1px solid #dbe5f3;
    border-radius: 14px;
    padding: 14px;
    background: #fff;
}

.siakad-public-footer {
    margin-top: 24px;
    border-top: 1px solid #d8e3f2;
    padding: 14px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    color: #5f7292;
    background: #fff;
}

.siakad-smart-card {
    border-radius: 18px;
    padding: 14px;
    color: #352100;
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 240, 214, 0.95) 45%, rgba(255, 218, 135, 0.92) 100%),
        linear-gradient(45deg, #8b0000, #d29a00);
    box-shadow: 0 16px 30px rgba(97, 65, 9, 0.26);
    border: 1px solid rgba(180, 123, 12, 0.35);
}

.siakad-smart-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(115, 78, 8, 0.3);
    padding-bottom: 8px;
    margin-bottom: 10px;
}

.siakad-smart-card__header span {
    font-weight: 800;
    color: #ad1111;
    font-size: 20px;
}

.siakad-smart-card__header strong {
    color: #8a6400;
    font-size: 13px;
}

.siakad-smart-card__body h4 {
    margin: 0;
    color: #124785;
}

.siakad-smart-card__body p {
    margin: 4px 0;
}

.siakad-smart-card__number {
    margin-top: 10px;
    border-radius: 10px;
    border: 1px solid rgba(145, 98, 9, 0.28);
    background: rgba(219, 166, 37, 0.3);
    padding: 10px;
    font-size: 20px;
    letter-spacing: 0.08em;
    font-weight: 800;
    text-align: center;
}

.siakad-smart-card__footer {
    margin-top: 10px;
    border-top: 1px solid rgba(115, 78, 8, 0.3);
    padding-top: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Premium GIS public + auth redesign (soft white exclusive) */
.siakad-auth-body {
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.96), transparent 34%),
        radial-gradient(circle at 90% 0%, rgba(242, 245, 250, 0.82), transparent 42%),
        linear-gradient(160deg, #ffffff 0%, #f7f9fc 46%, #f4f6fa 100%);
}

.siakad-auth-wrapper {
    padding: 28px 16px;
}

.siakad-login-card {
    width: min(520px, 100%);
    border: 1px solid #e5e9ef;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.1);
}

.siakad-login-card h3 {
    font-size: 30px;
    letter-spacing: 0.01em;
    color: #1f2937;
}

.siakad-login-card .text-muted {
    color: #6b7280 !important;
}

.siakad-login-subtitle {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}

.siakad-login-units {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.siakad-login-units span {
    border: 1px solid #e3e8f0;
    color: #374151;
    background: #fafbfd;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.siakad-form-grid .form-control,
.siakad-form-grid .form-select {
    border-radius: 13px;
    border-color: #dde3ec;
    background: #ffffff;
    min-height: 48px;
}

.siakad-form-grid .form-control:focus,
.siakad-form-grid .form-select:focus {
    border-color: #b8c5d8;
    box-shadow: 0 0 0 0.2rem rgba(148, 163, 184, 0.2);
}

.siakad-form-grid .button-blue {
    background: linear-gradient(135deg, #f9fbfd, #edf2f7);
    border: 1px solid #d7dee9;
    color: #334155;
    box-shadow: 0 10px 20px rgba(148, 163, 184, 0.22);
}

.siakad-form-grid .button-blue:hover {
    background: linear-gradient(135deg, #eef2f7, #e4ebf3);
    color: #1f2937;
}

.siakad-public-body {
    background:
        radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.98), transparent 34%),
        radial-gradient(circle at 100% 10%, rgba(243, 246, 250, 0.8), transparent 40%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 56%, #f5f7fb 100%);
    color: #1f2937;
}

.siakad-public-topbar {
    padding: 14px 18px;
    border-bottom: 1px solid #e5e7eb;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}

.siakad-public-brand img,
.siakad-public-brand span {
    width: 48px;
    height: 48px;
    border-radius: 14px;
}

.siakad-public-brand span {
    background: linear-gradient(140deg, #f8fafc, #e2e8f0);
    color: #374151;
}

.siakad-public-brand strong {
    font-size: 16px;
    color: #1f2937;
}

.siakad-public-brand small {
    color: #6b7280;
}

.siakad-public-nav a {
    color: #374151;
    border-radius: 12px;
    padding: 8px 12px;
    font-weight: 600;
}

.siakad-public-nav a:hover {
    background: #f3f4f6;
    color: #111827;
}

.siakad-public-login {
    background: linear-gradient(135deg, #f9fbfd, #edf2f7);
    color: #1f2937 !important;
    border: 1px solid #d7dee9;
    box-shadow: 0 8px 16px rgba(148, 163, 184, 0.2);
}

.siakad-public-main {
    width: min(1240px, 100%);
    margin: 24px auto;
    padding: 0 16px;
}

.gisx-hero {
    padding: 80px 0 64px;
    background:
        linear-gradient(125deg, rgba(17, 24, 39, 0.8), rgba(51, 65, 85, 0.7)),
        url('../../demos/landing/images/hero/1.svg') center/cover no-repeat;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

.gisx-kicker {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 11px;
    color: #f9fafb;
    background: rgba(255, 255, 255, 0.14);
}

.gisx-title {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
}

.gisx-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gisx-badges span {
    background: rgba(255, 255, 255, 0.16);
    color: #f3f4f6;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    font-size: 12px;
    padding: 6px 12px;
}

.gisx-hero-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.2);
}

.gisx-hero-card__top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.gisx-hero-card__top img,
.gisx-logo-fallback {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: #ffffff;
    object-fit: cover;
}

.gisx-logo-fallback {
    display: grid;
    place-items: center;
    font-weight: 800;
    color: #374151;
}

.gisx-unit-card {
    display: block;
    height: 100%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gisx-unit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.12);
}

.gisx-unit-card.is-active {
    border-color: #cbd5e1;
    box-shadow: 0 16px 30px rgba(100, 116, 139, 0.18);
}

.gisx-unit-card__logo {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    margin-bottom: 10px;
    overflow: hidden;
    background: #ffffff;
}

.gisx-unit-card__logo img,
.gisx-unit-card__logo span {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    object-fit: cover;
}

.gisx-unit-card h4 {
    margin-bottom: 6px;
    color: #1f2937;
}

.gisx-unit-card p {
    color: #6b7280;
}

.gisx-program-wrap {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.07);
}

.gisx-program-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 16px;
}

.fbox-bg {
    background: linear-gradient(160deg, #ffffff, #f8fafc);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 16px;
    height: 100%;
}

.fbox-bg .fbox-icon i {
    color: #475569;
    font-size: 30px;
}

.gisx-pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gisx-pill-grid span {
    padding: 8px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #ffffff;
    font-size: 13px;
    color: #374151;
}

.gisx-why-section {
    background:
        linear-gradient(130deg, rgba(17, 24, 39, 0.94), rgba(51, 65, 85, 0.9)),
        url('../../images/landing/landing2.jpg') center/cover no-repeat;
    border-radius: 24px;
    margin: 0 16px;
}

.gisx-why-card {
    height: 100%;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    padding: 16px;
    color: #f9fafb;
}

.gisx-why-card h4 {
    color: #ffffff;
    margin-bottom: 8px;
}

.gisx-news-card {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    height: 100%;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.07);
}

.gisx-news-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.gisx-news-card__body {
    padding: 14px;
}

.gisx-news-card__body small {
    color: #6b7280;
}

.gisx-news-card__body h4 {
    margin: 6px 0 8px;
    color: #1f2937;
    font-size: 20px;
}

.gisx-news-card__body p {
    color: #4b5563;
}

.gisx-agenda {
    border-top: 1px solid #e5e7eb;
    padding-top: 18px;
}

.gisx-agenda-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 12px;
    height: 100%;
}

.gisx-agenda-item h5 {
    color: #1f2937;
    margin-bottom: 6px;
}

.gisx-agenda-item small,
.gisx-agenda-item span {
    color: #6b7280;
}

.gisx-contact-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.gisx-contact-card .form-control {
    border-radius: 12px;
    border-color: #dde3ec;
    background: #ffffff;
}

.gisx-contact-card .form-control:focus {
    border-color: #b8c5d8;
    box-shadow: 0 0 0 0.2rem rgba(148, 163, 184, 0.2);
}

.button-orange {
    background: linear-gradient(135deg, #f9fbfd, #edf2f7) !important;
    color: #1f2937 !important;
    border: 1px solid #d7dee9 !important;
    box-shadow: 0 10px 20px rgba(148, 163, 184, 0.2);
}

.siakad-public-footer {
    margin-top: 14px;
    border-top: 1px solid #e5e7eb;
    background: rgba(255, 255, 255, 0.9);
}

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

    .siakad-sidebar {
        position: static;
    }

    .siakad-main {
        padding: 12px;
    }

    .siakad-public-hero,
    .siakad-public-contact-wrap {
        grid-template-columns: 1fr;
    }

    .siakad-public-topbar {
        padding: 12px;
    }

    .gisx-hero {
        border-radius: 18px;
        padding: 42px 0 28px;
    }

    .gisx-why-section {
        margin: 0;
        border-radius: 18px;
    }

    .gisx-program-image {
        height: 260px;
    }
}

/* Premium GIS app dashboard redesign (soft blue corporate) */
.siakad-body {
    background:
        radial-gradient(circle at 0% 0%, rgba(78, 146, 255, 0.2), transparent 34%),
        radial-gradient(circle at 100% 0%, rgba(173, 209, 255, 0.24), transparent 38%),
        linear-gradient(180deg, #f9fcff 0%, #f3f8ff 54%, #f8fbff 100%);
}

.siakad-shell {
    grid-template-columns: 318px 1fr;
    gap: 14px;
    padding: 14px;
}

.siakad-sidebar {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(240, 247, 255, 0.96) 100%),
        linear-gradient(160deg, #dfeeff, #cde4ff);
    color: #21406f;
    border: 1px solid #d2e3fb;
    border-radius: 22px;
    box-shadow: 0 18px 34px rgba(22, 70, 146, 0.15);
    position: sticky;
    top: 14px;
    height: calc(100vh - 28px);
    overflow: hidden;
}

.siakad-brand {
    align-items: flex-start;
}

.siakad-brand__logo {
    width: 52px;
    height: 52px;
    border-radius: 14px;
}

.siakad-brand h1 {
    color: #1f3f6f;
    font-size: 16px;
    font-weight: 800;
}

.siakad-brand p {
    color: #5d7ba6;
    font-size: 11px;
}

.siakad-school-switch {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid #d6e5fa;
    border-radius: 12px;
}

.siakad-school-switch label {
    color: #3d608f;
    font-weight: 700;
}

.siakad-school-switch .form-select {
    border-color: #cedff7;
    border-radius: 10px;
    font-size: 13px;
    color: #2d4d78;
}

.siakad-menu {
    gap: 10px;
    overflow: auto;
    padding-right: 4px;
}

.siakad-menu-group {
    border: 1px solid #d6e5fa;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.82);
}

.siakad-menu-group.is-active {
    border-color: #8bb8f3;
    box-shadow: 0 8px 18px rgba(42, 110, 203, 0.16);
}

.siakad-menu-group__summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 800;
    color: #2d4f7f;
    user-select: none;
}

.siakad-menu-group__summary::-webkit-details-marker {
    display: none;
}

.siakad-menu-group__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.siakad-menu-group__caret {
    color: #5f84b8;
    font-size: 12px;
    transition: transform 0.2s ease;
}

.siakad-menu-group[open] .siakad-menu-group__caret {
    transform: rotate(180deg);
}

.siakad-submenu {
    display: grid;
    gap: 6px;
    padding: 0 10px 10px;
}

.siakad-submenu__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 10px;
    color: #355b8e;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.siakad-submenu__item i {
    color: #4d80c3;
}

.siakad-submenu__item:hover {
    background: #eef5ff;
    color: #22457a;
}

.siakad-submenu__item.is-active {
    background: linear-gradient(135deg, #3f83f8, #2563eb);
    color: #fff;
    box-shadow: 0 8px 16px rgba(38, 99, 235, 0.32);
}

.siakad-submenu__item.is-active i {
    color: #fff;
}

.siakad-logout-btn {
    border: 1px solid #d6e5fa;
    background: linear-gradient(135deg, #f7fbff, #edf4ff);
    color: #2f5a95;
    border-radius: 12px;
    font-weight: 700;
    font-size: 13px;
}

.siakad-logout-btn:hover {
    background: linear-gradient(135deg, #3f83f8, #2563eb);
    color: #fff;
}

.siakad-main {
    padding: 0;
}

.siakad-topbar {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #d7e5fa;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(22, 70, 146, 0.1);
}

.siakad-topbar-context {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #d3e3fa;
    background: #eff6ff;
    color: #2f5f9f;
    border-radius: 999px;
    padding: 4px 10px;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.siakad-topbar-context i {
    font-size: 12px;
}

.siakad-topbar h2 {
    font-size: 24px;
    color: #1f3f6f;
    font-weight: 800;
}

.siakad-topbar small {
    color: #5d7ba6 !important;
}

.siakad-user {
    display: flex;
    align-items: center;
    gap: 8px;
}

.siakad-user-badge {
    border: 1px solid #d6e5fa;
    background: #f5f9ff;
    color: #2f5a95;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 800;
}

.siakad-user-role {
    border-radius: 999px;
    padding: 4px 9px;
    background: linear-gradient(135deg, #3f83f8, #2563eb);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.siakad-content {
    margin-top: 14px;
}

.siakad-content .card,
.siakad-content .siakad-stat-card {
    border: 1px solid #d7e5fa;
    border-radius: 16px;
    box-shadow: 0 12px 26px rgba(22, 70, 146, 0.08);
}

.siakad-content .form-control,
.siakad-content .form-select {
    border-color: #d2e1f8;
    border-radius: 10px;
    color: #244774;
}

.siakad-content .form-control:focus,
.siakad-content .form-select:focus {
    border-color: #5a93eb;
    box-shadow: 0 0 0 0.2rem rgba(90, 147, 235, 0.2);
}

.siakad-content .btn-primary,
.siakad-content .button-blue {
    background: linear-gradient(135deg, #3f83f8, #2563eb);
    border-color: #2563eb;
}

.siakad-content .btn-primary:hover,
.siakad-content .button-blue:hover {
    filter: brightness(0.96);
}

.siakad-content .table {
    font-size: 12.5px;
    color: #2f4f7f;
    border-color: #dfeaf9;
}

.siakad-content .table > :not(caption) > * > * {
    padding: 0.52rem 0.62rem;
    vertical-align: middle;
}

.siakad-content .table thead th {
    background: linear-gradient(180deg, #eef5ff 0%, #e3eeff 100%);
    color: #315788;
    border-bottom: 1px solid #cbdcf5;
    border-top: 0;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.siakad-content .table-striped > tbody > tr:nth-of-type(odd) > * {
    background-color: #f8fbff;
}

.siakad-content .table-hover > tbody > tr:hover > * {
    background-color: #edf4ff;
    color: #1f3f6f;
}

.siakad-content .table .badge {
    font-size: 11px;
}

.siakad-module-hero {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid #d8e6fb;
    background:
        radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.95), transparent 44%),
        linear-gradient(140deg, #f7fbff 0%, #edf5ff 100%);
}

.siakad-module-hero__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 22px;
    color: #1f4e92;
    background: linear-gradient(145deg, #e9f2ff, #dcecff);
    border: 1px solid #c6dcfb;
    box-shadow: 0 8px 18px rgba(34, 87, 168, 0.18);
}

.siakad-module-hero__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.siakad-module-hero__body strong {
    color: #173a69;
    font-size: 14px;
    letter-spacing: 0.02em;
}

.siakad-module-hero__body span {
    color: #557aa8;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 700;
}

.siakad-student-card-mini {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 8px;
    align-items: center;
    border: 1px solid #d7e4f7;
    border-radius: 12px;
    padding: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(243, 249, 255, 0.98)),
        linear-gradient(45deg, #ecd28f, #d0a447);
}

.siakad-student-card-mini__chip {
    width: 28px;
    height: 20px;
    border-radius: 6px;
    background: linear-gradient(135deg, #e5c672, #b6882c);
    box-shadow: inset 0 0 0 1px rgba(116, 81, 16, 0.4);
}

.siakad-student-card-mini__body strong {
    display: block;
    color: #1e3c66;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
}

.siakad-student-card-mini__body small {
    display: block;
    color: #5f7597;
    font-size: 10px;
    margin-top: 1px;
}

.siakad-student-card-mini__label {
    display: block;
    font-size: 9px;
    letter-spacing: 0.12em;
    color: #9a6512;
    font-weight: 800;
    margin-bottom: 1px;
}

.siakad-student-card-mini__number {
    margin-top: 4px;
    font-size: 10px;
    letter-spacing: 0.08em;
    font-weight: 800;
    color: #775100;
}

.siakad-student-card-mini__number--empty {
    color: #9b5b5b;
    letter-spacing: normal;
}

@media (max-width: 992px) {
    .siakad-shell {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 10px;
    }

    .siakad-sidebar {
        position: static;
        height: auto;
    }

    .siakad-topbar {
        padding: 14px;
    }

    .siakad-topbar h2 {
        font-size: 20px;
    }
}

/* GIS official website + login palette override (white, blue, red, yellow) */
.siakad-auth-body {
    background:
        radial-gradient(circle at 10% 5%, rgba(0, 57, 153, 0.08), transparent 34%),
        radial-gradient(circle at 100% 0%, rgba(250, 201, 0, 0.14), transparent 40%),
        linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
}

.siakad-auth-wrapper {
    width: min(1140px, 100%);
    margin: 0 auto;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px 16px;
}

.siakad-auth-split {
    width: min(1080px, 100%);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    border: 1px solid #dbe3f2;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 22px 50px rgba(6, 32, 84, 0.16);
}

.siakad-auth-brand-pane {
    padding: 34px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 246, 255, 0.98)),
        linear-gradient(180deg, #ffffff, #f4f8ff);
    border-right: 1px solid #dbe3f2;
}

.siakad-login-brand {
    justify-content: flex-start;
    margin-bottom: 18px;
}

.siakad-login-brand img {
    width: min(360px, 100%);
}

.siakad-auth-brand-title {
    color: #003399;
    font-size: clamp(1.65rem, 2.7vw, 2.3rem);
    margin-bottom: 8px;
}

.siakad-auth-brand-text {
    color: #334155;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

.siakad-auth-brand-link {
    background: #ffffff !important;
    border: 1px solid #dbe3f2 !important;
    color: #003399 !important;
}

.siakad-login-card {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: #fff;
    margin: 0;
}

.siakad-login-card h3 {
    color: #003399;
    font-size: 31px;
    letter-spacing: 0.01em;
}

.siakad-login-subtitle {
    color: #64748b;
    font-size: 14px;
}

.siakad-login-units {
    justify-content: flex-start;
    margin-top: 14px;
}

.siakad-login-units span {
    background: #ffffff;
    color: #003399;
    border: 1px solid #dbe3f2;
    font-weight: 700;
}

.siakad-form-grid .form-control,
.siakad-form-grid .form-select {
    border-radius: 12px;
    border-color: #d8e0ef;
    min-height: 48px;
    background: #fff;
}

.siakad-form-grid .form-control:focus,
.siakad-form-grid .form-select:focus {
    border-color: #3f51b5;
    box-shadow: 0 0 0 0.2rem rgba(63, 81, 181, 0.18);
}

.siakad-form-grid .button-blue {
    background: linear-gradient(135deg, #ff3131, #df1f1f);
    border: 0;
    color: #fff;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(223, 31, 31, 0.3);
}

.siakad-form-grid .button-blue:hover {
    filter: brightness(0.95);
}

.siakad-public-body {
    background:
        radial-gradient(circle at 0% 0%, rgba(0, 57, 153, 0.06), transparent 32%),
        radial-gradient(circle at 100% 10%, rgba(250, 201, 0, 0.12), transparent 42%),
        linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
    color: #1f2937;
}

.siakad-public-contactbar {
    background: #003399;
    color: #fff;
    font-size: 13px;
}

.siakad-public-contactbar__inner {
    width: min(1240px, 100%);
    margin: 0 auto;
    padding: 7px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.siakad-public-topbar {
    padding: 14px 18px;
    border-bottom: 1px solid #dbe3f2;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 22px rgba(15, 35, 70, 0.08);
}

.siakad-public-brand strong {
    color: #003399;
}

.siakad-public-brand small {
    color: #64748b;
}

.siakad-public-nav a {
    color: #243b63;
    font-weight: 700;
}

.siakad-public-nav a:hover {
    background: #eef4ff;
    color: #003399;
}

.siakad-public-login {
    background: linear-gradient(135deg, #ff3131, #df1f1f);
    color: #fff !important;
    border: 0;
    box-shadow: 0 9px 18px rgba(223, 31, 31, 0.28);
}

.siakad-public-main {
    width: min(1240px, 100%);
    margin: 24px auto;
    padding: 0 16px;
}

.gisx-hero {
    border-radius: 28px;
    padding: 82px 0 66px;
    background:
        linear-gradient(128deg, rgba(0, 36, 107, 0.88), rgba(2, 43, 98, 0.78)),
        url('../../demos/landing/images/hero/1.svg') center/cover no-repeat;
}

.gisx-kicker {
    color: #003399;
    background: #fac900;
    border: 1px solid rgba(250, 201, 0, 0.86);
    font-weight: 800;
}

.gisx-title {
    color: #fff;
}

.gisx-badges span {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.34);
}

.gisx-hero-card {
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid #dbe3f2;
    box-shadow: 0 16px 30px rgba(0, 28, 84, 0.24);
}

.gisx-logo-fallback {
    color: #003399;
}

.gisx-stat-card {
    background: #fff;
    border: 1px solid #dbe3f2;
    border-radius: 16px;
    box-shadow: 0 12px 20px rgba(15, 35, 70, 0.08);
    padding: 16px;
}

.gisx-stat-card strong {
    color: #003399;
    display: block;
    font-size: 32px;
    line-height: 1;
}

.gisx-stat-card p {
    color: #475569;
    font-size: 13px;
}

.gisx-unit-card {
    border: 1px solid #dbe3f2;
    box-shadow: 0 10px 22px rgba(15, 35, 70, 0.07);
}

.gisx-unit-card.is-active {
    border-color: #00389b;
    box-shadow: 0 14px 28px rgba(0, 56, 155, 0.2);
}

.gisx-unit-card h4 {
    color: #003399;
}

.gisx-program-wrap,
.gisx-contact-card {
    border: 1px solid #dbe3f2;
    box-shadow: 0 12px 24px rgba(15, 35, 70, 0.07);
}

.fbox-bg {
    border: 1px solid #dbe3f2;
    background: linear-gradient(160deg, #ffffff, #f4f8ff);
}

.fbox-bg .fbox-icon i {
    color: #00389b;
}

.gisx-pill-grid span {
    border: 1px solid #dbe3f2;
    color: #003399;
}

.gisx-why-section {
    background:
        linear-gradient(130deg, rgba(0, 51, 153, 0.95), rgba(2, 43, 98, 0.93)),
        url('../../images/landing/landing2.jpg') center/cover no-repeat;
}

.gisx-news-card,
.gisx-agenda-item {
    border: 1px solid #dbe3f2;
    box-shadow: 0 10px 20px rgba(15, 35, 70, 0.07);
}

.gisx-news-card__body h4,
.gisx-agenda-item h5 {
    color: #003399;
}

.gisx-news-card__body small,
.gisx-agenda-item small,
.gisx-agenda-item span {
    color: #64748b;
}

.gisx-contact-card .form-control {
    border-color: #d8e0ef;
}

.gisx-contact-card .form-control:focus {
    border-color: #3f51b5;
    box-shadow: 0 0 0 0.2rem rgba(63, 81, 181, 0.18);
}

.button-orange {
    background: linear-gradient(135deg, #ff3131, #df1f1f) !important;
    color: #fff !important;
    border: 0 !important;
    box-shadow: 0 10px 20px rgba(223, 31, 31, 0.26);
}

.siakad-public-footer {
    border-top: 1px solid #dbe3f2;
    background: rgba(255, 255, 255, 0.92);
}

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

    .siakad-auth-brand-pane {
        border-right: 0;
        border-bottom: 1px solid #dbe3f2;
        padding: 22px;
    }

    .siakad-login-card {
        border-radius: 0;
    }

    .siakad-login-units {
        justify-content: center;
    }

    .siakad-public-contactbar__inner {
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
    }
}
