/* Website Enterprise Jadul 1998-1999 - responsive vanilla CSS */
:root {
    --blue-dark: #002b5c;
    --blue-mid: #0b4f8a;
    --blue-light: #d9e8f6;
    --grey-bg: #f2f2f2;
    --panel: #ffffff;
    --border: #8a8a8a;
    --text: #111111;
    --muted: #555555;
    --gold: #c49b28;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--grey-bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
    background-image: repeating-linear-gradient(0deg, #f7f7f7 0, #f7f7f7 1px, #f0f0f0 1px, #f0f0f0 3px);
    overflow-x: hidden;
}

.top-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #111111;
    color: #eeeeee;
    font-size: 12px;
    padding: 6px 14px;
    border-bottom: 2px solid var(--gold);
}

.language-switch {
    display: inline-flex;
    gap: 3px;
    flex: 0 0 auto;
}

.language-switch button {
    min-width: 28px;
    min-height: 22px;
    padding: 2px 6px;
    color: #ffffff;
    background: linear-gradient(#1a68a5, #003a72);
    border: 1px outset #cfdcec;
    font: inherit;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
}

.language-switch button.is-active,
.language-switch button:hover,
.language-switch button:focus {
    color: #111111;
    background: linear-gradient(#ffeaa3, #d2a937);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: linear-gradient(#ffffff, #c7d8e8);
    border-bottom: 3px double var(--blue-dark);
    box-shadow: 0 2px 0 #ffffff inset, 0 3px 8px rgba(0, 0, 0, 0.25);
}

.nav-wrap {
    max-width: 1100px;
    margin: 0 auto;
    min-height: 68px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--blue-dark);
    text-decoration: none;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: white;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
    border: 2px outset #d6d6d6;
    font-size: 18px;
}

.brand-text small {
    display: block;
    color: var(--muted);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: normal;
    letter-spacing: 0;
}

.nav-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.nav-toggle-label {
    display: none;
    background: #eeeeee;
    border: 2px outset #ffffff;
    padding: 8px 10px;
    color: var(--blue-dark);
    font-weight: bold;
    cursor: pointer;
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-menu a {
    display: block;
    padding: 10px 13px;
    color: #ffffff;
    background: linear-gradient(#1a68a5, #003a72);
    border: 2px outset #6f9bc5;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a:focus,
.nav-menu a.active {
    color: #111111;
    background: linear-gradient(#ffeaa3, #d2a937);
    border: 2px inset #ffffff;
}

.container {
    width: min(1100px, calc(100% - 28px));
    margin: 0 auto;
}

.main-shell {
    margin-top: 24px;
    margin-bottom: 32px;
    background: #ffffff;
    border: 1px solid #a0a0a0;
    box-shadow: 0 0 0 4px #e2e2e2, 0 4px 16px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.page-title-bar {
    background: linear-gradient(90deg, var(--blue-dark), var(--blue-mid));
    color: #ffffff;
    padding: 12px 16px;
    border-bottom: 3px solid var(--gold);
    font-family: Georgia, 'Times New Roman', serif;
}

.page-title-bar-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 340px);
    align-items: center;
    gap: 18px;
}

.page-title-bar h1 {
    margin: 0;
    font-size: clamp(24px, 4vw, 38px);
}

.page-title-bar p {
    margin: 5px 0 0;
    color: #e5eef8;
}

.library-search {
    justify-self: end;
    width: 100%;
    max-width: 340px;
}

.library-search label {
    display: block;
    margin-bottom: 4px;
    color: #e5eef8;
    font-size: 13px;
    font-weight: bold;
}

.library-search input {
    width: 100%;
    min-height: 34px;
    padding: 7px 10px;
    color: #111111;
    background: #ffffff;
    border: 2px inset #d7e4f1;
    font: 14px Arial, Helvetica, sans-serif;
}

.library-search input:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.content-pad {
    padding: clamp(18px, 4vw, 34px);
}

.hero {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: clamp(32px, 7vw, 78px) 16px;
    border: 2px ridge #d7d7d7;
    background: linear-gradient(90deg, #e7f0f8 0%, #ffffff 18%, #ffffff 82%, #e7f0f8 100%);
    min-height: 360px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../assets/images/Hero.jpg") center / cover no-repeat;
    opacity: 0.24;
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.18);
    z-index: 1;
}

.hero > * {
    position: relative;
    z-index: 2;
}

.hero h1 {
    margin: 0;
    color: var(--blue-dark);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(30px, 6vw, 56px);
}

.hero p {
    max-width: 760px;
    margin: 14px auto 0;
    color: #222222;
    font-size: clamp(15px, 2vw, 18px);
}

.old-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 18px;
    color: #ffffff;
    background: linear-gradient(#1a68a5, #003a72);
    border: 2px outset #ffffff;
    text-decoration: none;
    font-weight: bold;
}

.old-button:hover {
    background: linear-gradient(#ffeaa3, #d2a937);
    color: #111111;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 22px;
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 24px;
    padding: 20px 0;
    background: linear-gradient(#ffffff, #f4f7fa);
    border-top: 1px solid #cfcfcf;
    border-bottom: 1px solid #cfcfcf;
}

.stat-item {
    min-width: 0;
    padding: 8px 18px;
    text-align: center;
    border-left: 1px solid #d2d2d2;
}

.stat-item:first-child {
    border-left: 0;
}

.stat-item strong {
    display: block;
    color: var(--blue-dark);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(38px, 7vw, 64px);
    line-height: 1;
    font-weight: normal;
}

.stat-item span {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.35;
}

.latest-articles {
    margin-top: 26px;
    border-top: 1px solid #cfcfcf;
    padding-top: 18px;
}

.library-articles {
    margin-top: 28px;
    max-height: min(70vh, 720px);
    overflow-y: auto;
    padding-right: 8px;
    scrollbar-color: var(--blue-mid) #e5eef8;
}

.library-articles .section-heading {
    position: sticky;
    top: 0;
    z-index: 2;
    margin: 0 0 12px;
    padding: 10px 0;
    background: var(--panel);
    border-bottom: 1px solid #d2d2d2;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.section-heading h2 {
    margin: 0;
    color: var(--blue-dark);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 24px;
}

.section-heading a {
    color: var(--blue-dark);
    font-weight: bold;
    text-decoration: none;
    border-bottom: 1px solid var(--blue-dark);
}

.section-heading a::after {
    content: " >";
}

.latest-article {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    margin-top: 14px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid #c7c7c7;
    box-shadow: 2px 2px 0 #d8d8d8;
    color: inherit;
    text-decoration: none;
}

.latest-article:hover,
.latest-article:focus {
    border-color: var(--blue-mid);
    box-shadow: 2px 2px 0 #b8c7d5;
}

.latest-article img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: #e8eef4;
    border: 1px solid #a7a7a7;
}

.latest-article-body {
    min-width: 0;
}

.latest-article h3 {
    margin: 0;
    color: var(--blue-dark);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 20px;
    line-height: 1.35;
}

.latest-article p {
    margin: 10px 0 0;
    color: #333333;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 12px;
    color: var(--muted);
    font-size: 14px;
}

.article-meta span::before {
    color: var(--blue-mid);
    font-weight: bold;
}

.article-meta span:nth-child(1)::before {
    content: "Tanggal: ";
}

.article-meta span:nth-child(2)::before {
    content: "Penulis: ";
}

.article-meta span:nth-child(3)::before {
    content: "Baca: ";
}

.empty-state {
    margin: 14px 0 0;
    padding: 14px;
    color: var(--muted);
    background: #fbfbfb;
    border: 1px dashed #a7a7a7;
}

.article-detail {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.article-info-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 20px;
    background: #ffffff;
    border: 1px solid #bcbcbc;
}

.article-info-table th,
.article-info-table td {
    border: 0;
    border-top: 1px solid #d2d2d2;
    padding: 10px 12px;
    color: #333333;
    font-weight: normal;
    text-align: left;
    vertical-align: top;
}

.article-info-table tr:first-child th,
.article-info-table tr:first-child td {
    border-top: 0;
}

.article-info-table th {
    width: 180px;
    color: var(--blue-dark);
    font-weight: bold;
    background: #f3f7fb;
}

.article-info-table th::after {
    content: " :";
    float: right;
}

.article-hero-image {
    display: block;
    width: 100%;
    max-height: 430px;
    object-fit: cover;
    margin: 0 0 16px;
    border: 1px solid #bcbcbc;
    background: #e8eef4;
}

.article-detail p {
    margin: 0 0 14px;
    color: #333333;
    font-size: 17px;
    line-height: 1.6;
}

.info-box,
.article-card,
.contact-card,
.cert-card {
    background: var(--panel);
    border: 1px solid #9b9b9b;
    box-shadow: 2px 2px 0 #cfcfcf;
}

.info-box h3,
.article-card h3,
.contact-card h3,
.cert-card h3 {
    margin: 0;
    padding: 10px 12px;
    background: linear-gradient(#e9e9e9, #cfcfcf);
    border-bottom: 1px solid #9b9b9b;
    color: var(--blue-dark);
    font-family: Georgia, 'Times New Roman', serif;
}

.info-box p,
.article-card p,
.contact-card p,
.cert-card p {
    margin: 0;
    padding: 12px;
}

.author-box {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 18px;
    text-align: center;
    background: #fbfbfb;
    border: 2px groove #d1d1d1;
}

.author-box img {
    width: 96px;
    height: 96px;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center 32%;
    border: 2px solid #555555;
    background: #e8e8e8;
}

.author-box h2 {
    margin: 0;
    color: var(--blue-dark);
    font-family: Georgia, 'Times New Roman', serif;
}

.lead {
    font-size: 17px;
    color: #222222;
    margin: 0;
}

.author-box p:last-child {
    max-width: 760px;
    margin: 0;
}

.trusted-section {
    margin-top: 26px;
    padding: 18px;
    text-align: center;
    background: #fbfbfb;
    border: 2px groove #d1d1d1;
}

.trusted-section[hidden] {
    display: none;
}

.trusted-section h2 {
    margin: 0 0 14px;
    color: var(--blue-dark);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 24px;
}

.trusted-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 6px 0;
}

.trusted-marquee::before,
.trusted-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    width: 54px;
    pointer-events: none;
}

.trusted-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #fbfbfb, rgba(251, 251, 251, 0));
}

.trusted-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #fbfbfb, rgba(251, 251, 251, 0));
}

.trusted-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    width: max-content;
    min-width: 100%;
    margin: 0 auto;
}

.trusted-section:not([data-logo-count="1"]) .trusted-track {
    justify-content: flex-start;
    animation: trusted-logo-scroll 22s linear infinite;
}

.trusted-section[data-logo-count="1"] .trusted-track {
    width: 100%;
}

.trusted-logo-item {
    flex: 0 0 138px;
    height: 76px;
    display: grid;
    place-items: center;
    padding: 10px;
    background: #ffffff;
    border: 1px solid #bcbcbc;
    box-shadow: 2px 2px 0 #d6d6d6;
}

.trusted-logo-item img {
    display: block;
    max-width: 112px;
    max-height: 52px;
    object-fit: contain;
}

@keyframes trusted-logo-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 9px));
    }
}

.text-block {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.text-block h2 {
    color: var(--blue-dark);
    font-family: Georgia, 'Times New Roman', serif;
    border-bottom: 1px solid #bcbcbc;
    padding-bottom: 6px;
}

.org-section {
    margin-top: 24px;
}

.org-chart-scroll {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    display: flex;
    justify-content: center;
}

.org-chart {
    position: relative;
    margin-top: 18px;
    width: 760px;
    max-width: 100%;
    flex: 0 0 auto;
    padding: 4px 0 0;
    text-align: center;
}

.org-level {
    position: relative;
    display: grid;
    justify-items: center;
}

.org-level + .org-level {
    margin-top: 28px;
}

.org-level + .org-level::before {
    content: "";
    position: absolute;
    top: -28px;
    left: 50%;
    width: 1px;
    height: 28px;
    background: #7f7f7f;
}

.org-level-divisions {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 18px;
}

.org-level-divisions::after {
    content: "";
    position: absolute;
    top: 0;
    left: calc(16.666% + 8px);
    right: calc(16.666% + 8px);
    height: 1px;
    background: #7f7f7f;
}

.org-card {
    position: relative;
    width: 230px;
    max-width: 100%;
    min-height: 78px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    background: linear-gradient(#ffffff, #f5f7f9);
    border: 1px solid #7f7f7f;
    box-shadow: 2px 2px 0 #d1d1d1;
}

.org-level-divisions .org-card::before {
    content: "";
    position: absolute;
    top: -18px;
    left: 50%;
    width: 1px;
    height: 18px;
    background: #7f7f7f;
}

.org-card span {
    color: var(--blue-dark);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
}

.org-card strong {
    color: #222222;
    font-size: 15px;
}

.org-card strong.org-name-loading {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    min-height: 26px;
}

.org-card strong.org-name-loading::before {
    content: "KG";
    width: 24px;
    height: 24px;
    display: inline-grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
    border: 2px solid var(--gold);
    border-radius: 50%;
    font-size: 9px;
    line-height: 1;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    animation: org-loading-spin 0.75s linear infinite;
}

@keyframes org-loading-spin {
    to {
        transform: rotate(360deg);
    }
}

.notice-box {
    background: #fffbe6;
    border: 1px solid #d8b84f;
    padding: 14px;
    margin: 18px 0;
}

.article-grid,
.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.article-grid:has(.article-card:only-child) {
    grid-template-columns: minmax(240px, 360px);
    justify-content: center;
}

.cert-grid {
    grid-template-columns: repeat(2, minmax(240px, 320px));
    justify-content: center;
}

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

.article-card img,
.cert-card img {
    width: 100%;
    display: block;
    background: #e6e6e6;
    border-bottom: 1px solid #9b9b9b;
}

.article-actions {
    padding: 0 12px 14px;
}

.article-actions a,
.contact-links a {
    color: var(--blue-dark);
    font-weight: bold;
}

.video-card {
    margin-top: 22px;
    width: min(360px, 100%);
    margin-left: auto;
    margin-right: auto;
    background: var(--panel);
    border: 1px solid #9b9b9b;
    box-shadow: 2px 2px 0 #cfcfcf;
}

.video-card h2 {
    margin: 0;
    padding: 10px 12px;
    background: linear-gradient(#e9e9e9, #cfcfcf);
    border-bottom: 1px solid #9b9b9b;
    color: var(--blue-dark);
    font-family: Georgia, 'Times New Roman', serif;
}

.video-frame {
    aspect-ratio: 16 / 9;
    background: #d9e8f6;
    border-bottom: 1px solid #9b9b9b;
}

.video-frame iframe,
.video-frame video {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    background: #111111;
}

.video-placeholder {
    display: grid;
    place-items: center;
    padding: 14px;
    text-align: center;
}

.video-placeholder p {
    padding: 8px 0 0;
}

.video-placeholder .old-button {
    margin: 10px 4px 0;
    padding: 8px 12px;
    font-size: 13px;
}

.video-card p {
    margin: 0;
    padding: 12px;
    text-align: center;
    font-size: 14px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
}

.service-layout {
    display: grid;
    gap: 22px;
    min-width: 0;
}

.service-intro {
    background: #fbfbfb;
    border: 2px groove #d1d1d1;
    padding: 18px;
    min-width: 0;
}

.service-intro h2,
.process-heading h2,
.process-slide h3 {
    margin: 0;
    color: var(--blue-dark);
    font-family: Georgia, 'Times New Roman', serif;
    overflow-wrap: anywhere;
}

.service-intro p {
    margin: 10px 0 0;
}

.process-panel {
    border: 1px solid #9b9b9b;
    background: #ffffff;
    box-shadow: 2px 2px 0 #cfcfcf;
    min-width: 0;
}

.process-heading {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    padding: 12px;
    background: linear-gradient(#e9e9e9, #cfcfcf);
    border-bottom: 1px solid #9b9b9b;
}

.process-heading > div:first-child {
    min-width: 0;
}

.process-heading p {
    margin: 4px 0 0;
    color: var(--muted);
}

.slider-controls {
    display: flex;
    gap: 6px;
    flex: 0 0 auto;
}

.slider-btn {
    min-width: 38px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(#1a68a5, #003a72);
    border: 2px outset #ffffff;
    font-weight: bold;
    font: inherit;
    text-decoration: none;
    cursor: pointer;
}

.slider-btn.is-active {
    background: linear-gradient(#f3c956, #a96d00);
    color: #081f3a;
}

.slider-btn:active {
    border-style: inset;
}

.process-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 16px;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
}

.process-slide {
    flex: 0 0 min(520px, 86%);
    scroll-snap-align: start;
    border: 1px solid #8f8f8f;
    background: #fbfbfb;
    box-shadow: 2px 2px 0 #d0d0d0;
}

.process-slide img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 12 / 7;
    object-fit: cover;
    border-bottom: 1px solid #8f8f8f;
    background: #d9e8f6;
}

.process-slide h3 {
    padding: 10px 12px 0;
}

.process-slide p {
    margin: 0;
    padding: 8px 12px 14px;
}

.service-form-panel,
.ticket-check-panel {
    background: #fbfbfb;
    border: 2px groove #d1d1d1;
    padding: 18px;
}

.service-form-panel h2,
.ticket-check-panel h2 {
    margin: 0 0 14px;
    color: var(--blue-dark);
    font-family: Georgia, 'Times New Roman', serif;
    border-bottom: 1px solid #bcbcbc;
    padding-bottom: 6px;
}

.service-form,
.ticket-check-form {
    display: grid;
    gap: 10px;
}

.service-form label,
.ticket-check-form label {
    color: var(--blue-dark);
    font-weight: bold;
}

.service-form input,
.service-form select,
.service-form textarea,
.ticket-check-form input,
.ticket-check-form select,
.ticket-check-form textarea {
    width: 100%;
    min-height: 38px;
    padding: 9px 10px;
    border: 2px inset #ffffff;
    background: #ffffff;
    color: var(--text);
    font: inherit;
}

.service-form textarea,
.ticket-check-form textarea {
    resize: vertical;
    min-height: 130px;
}

.service-form .old-button {
    justify-self: start;
    border-color: #ffffff;
    cursor: pointer;
}

.ticket-check-form .old-button {
    justify-self: start;
    border-color: #ffffff;
    cursor: pointer;
}

.ticket-pin-note {
    margin: -4px 0 4px;
    color: var(--muted);
    font-size: 13px;
}

.ticket-result {
    margin-top: 14px;
}

.ticket-status-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border: 1px solid #8f8f8f;
}

.ticket-status-table th,
.ticket-status-table td {
    border: 1px solid #8f8f8f;
    padding: 10px 12px;
    text-align: left;
}

.ticket-status-table th {
    width: 180px;
    color: var(--blue-dark);
    background: #d9e8f6;
}

.ticket-status-table td {
    font-weight: bold;
}

.ticket-status-table .is-waiting {
    color: #5b4300;
    background: #fff2a8;
}

.ticket-status-table .is-complete {
    color: #0d3f1b;
    background: #c8f0ce;
}

.ticket-status-table .is-rejected {
    color: #5a1111;
    background: #f4c4c4;
}

.spam-check {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.verify-shell {
    max-width: 760px;
}

.verify-panel {
    text-align: center;
}

.verify-message {
    margin: 0 0 8px;
    color: var(--muted);
}

.verify-instruction {
    margin: 0 auto 18px;
    max-width: 560px;
    font-size: 18px;
}

.verify-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 560px;
    margin: 0 auto;
}

.verify-options button {
    min-height: 54px;
    color: #ffffff;
    background: linear-gradient(#1a68a5, #003a72);
    border: 2px outset #ffffff;
    font-weight: bold;
    cursor: pointer;
}

.verify-options button:hover,
.verify-options button:focus {
    color: #111111;
    background: linear-gradient(#ffeaa3, #d2a937);
}

.verify-options button.is-expected {
    color: #111111;
    background: linear-gradient(#ffeaa3, #d2a937);
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(196, 155, 40, 0.24);
    transform: translateY(-1px);
}

.contact-links {
    list-style: square;
    margin: 0;
    padding: 12px 12px 12px 32px;
}

.contact-address {
    display: grid;
    gap: 2px;
    padding: 0 12px 12px;
    font-style: normal;
}

.contact-address strong {
    color: var(--blue-dark);
}

.table-classic {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    margin-top: 16px;
}

.table-classic th,
.table-classic td {
    border: 1px solid #8f8f8f;
    padding: 10px;
    text-align: left;
}

.table-classic th {
    background: #d9e8f6;
    color: var(--blue-dark);
}

.site-footer {
    background: #1d1d1d;
    color: #e7e7e7;
    border-top: 4px solid var(--gold);
    padding: 24px 14px;
    font-size: 14px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.footer-inner h2,
.footer-inner h3,
.footer-address strong {
    margin: 0 0 8px;
    font-family: Georgia, 'Times New Roman', serif;
    color: #ffffff;
}

.footer-inner p,
.footer-address span {
    margin: 4px 0;
    overflow-wrap: anywhere;
}

.footer-address {
    display: flex;
    flex-direction: column;
    font-style: normal;
    line-height: 1.45;
}

.footer-bottom {
    max-width: 1100px;
    margin: 18px auto 0;
    padding-top: 12px;
    border-top: 1px solid #555555;
    color: #cfcfcf;
    font-size: 12px;
}

.admin-entry {
    max-width: 1100px;
    margin: 16px auto 0;
    text-align: right;
}

.admin-login-button {
    color: #111111;
    background: linear-gradient(#fff2bd, #d2a937);
    border: 2px outset #ffffff;
    padding: 8px 12px;
    font-weight: bold;
    cursor: pointer;
}

.admin-login-dialog {
    width: min(420px, calc(100% - 28px));
    padding: 0;
    border: 0;
    background: transparent;
}

.admin-login-dialog::backdrop {
    background: rgba(0, 0, 0, 0.55);
}

.admin-login-dialog article {
    margin: 0;
    padding: 18px;
    color: #222222;
    background: #ffffff;
    border: 3px double var(--blue-dark);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.admin-login-dialog header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
    border-bottom: 1px solid #cfcfcf;
}

.admin-login-dialog h2 {
    margin: 0 0 10px;
    color: var(--blue-dark);
    font-family: Georgia, 'Times New Roman', serif;
}

.admin-login-dialog [rel="prev"] {
    order: 2;
    width: 34px;
    height: 30px;
    border: 2px outset #ffffff;
    background: #eeeeee;
    cursor: pointer;
}

.admin-login-dialog [rel="prev"]::before {
    content: "X";
    font-weight: bold;
}

.admin-login-dialog label {
    display: grid;
    gap: 6px;
    color: var(--blue-dark);
    font-weight: bold;
}

.admin-login-dialog input {
    min-height: 38px;
    padding: 8px 10px;
    border: 2px inset #ffffff;
    font: inherit;
}

.admin-login-dialog button[type="submit"] {
    width: 100%;
    margin-top: 14px;
    color: #ffffff;
    background: linear-gradient(#1a68a5, #003a72);
    border: 2px outset #ffffff;
    padding: 9px 12px;
    font-weight: bold;
}

.admin-page {
    margin: 0;
    background: var(--grey-bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    background-image: repeating-linear-gradient(0deg, #f7f7f7 0, #f7f7f7 1px, #f0f0f0 1px, #f0f0f0 3px);
}

.admin-shell {
    width: min(1120px, calc(100% - 28px));
    margin: 24px auto;
    background: #ffffff;
    border: 1px solid #a0a0a0;
    box-shadow: 0 0 0 4px #e2e2e2, 0 4px 16px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.admin-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px;
    color: #ffffff;
    background: linear-gradient(90deg, var(--blue-dark), var(--blue-mid));
    border-bottom: 3px solid var(--gold);
}

.admin-top h1 {
    margin: 0;
    color: #ffffff;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(26px, 4vw, 38px);
}

.admin-top p {
    margin: 4px 0 0;
    color: #e5eef8;
}

.admin-top a,
.admin-top button.secondary {
    flex: 0 0 auto;
    color: #111111;
    background: linear-gradient(#ffeaa3, #d2a937);
    border: 2px outset #ffffff;
    padding: 9px 14px;
    text-decoration: none;
    font-weight: bold;
    font: inherit;
    cursor: pointer;
}

.admin-panel {
    margin: 18px;
    padding: 16px;
    background: #fbfbfb;
    border: 2px groove #d1d1d1;
    box-shadow: 2px 2px 0 #d0d0d0;
}

.admin-panel h2,
.admin-panel h3 {
    margin: 0 0 14px;
    color: var(--blue-dark);
    font-family: Georgia, 'Times New Roman', serif;
    border-bottom: 1px solid #bcbcbc;
    padding-bottom: 6px;
}

.admin-grid-2,
.admin-grid-3 {
    display: grid;
    gap: 12px;
    align-items: start;
}

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

.admin-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-panel form label {
    display: block;
    color: var(--blue-dark);
    font-weight: bold;
}

.admin-panel form:not(.admin-grid-2):not(.admin-grid-3) label + label {
    margin-top: 12px;
}

.admin-help-text {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.admin-muted {
    color: var(--muted);
    font-size: 13px;
}

.admin-logo-table td {
    vertical-align: top;
}

.admin-logo-preview {
    width: 92px;
    height: 54px;
    object-fit: contain;
    padding: 6px;
    background: #ffffff;
    border: 1px solid #bcbcbc;
}

.admin-logo-form {
    display: grid;
    grid-template-columns: minmax(160px, 1fr) minmax(180px, 1fr) auto;
    gap: 10px;
    align-items: end;
}

.admin-table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #8f8f8f;
    background: #ffffff;
}

.admin-table code {
    display: inline-block;
    max-width: 180px;
    color: #111111;
    font-family: Consolas, "Courier New", monospace;
    font-size: 13px;
    overflow-wrap: anywhere;
}

.admin-format-toolbar {
    display: inline-flex;
    gap: 4px;
    margin-left: 8px;
    vertical-align: middle;
}

.admin-format-toolbar button {
    min-width: 32px;
    min-height: 28px;
    padding: 4px 8px;
    color: var(--blue-dark);
    background: linear-gradient(#ffffff, #d9e8f6);
    border: 2px outset #ffffff;
    font: inherit;
    font-weight: bold;
    cursor: pointer;
}

.admin-format-toolbar button[data-format="em"] {
    font-style: italic;
}

.admin-format-toolbar button:hover,
.admin-format-toolbar button:focus {
    color: #111111;
    background: linear-gradient(#ffeaa3, #d2a937);
}

.admin-panel input,
.admin-panel select,
.admin-panel textarea {
    width: 100%;
    min-height: 38px;
    padding: 9px 10px;
    border: 2px inset #ffffff;
    background: #ffffff;
    color: var(--text);
    font: inherit;
}

.admin-panel textarea {
    min-height: 150px;
    resize: vertical;
}

.admin-ticket-form textarea,
.admin-ticket-action-form textarea {
    min-height: 76px;
}

.admin-panel button[type="submit"]:not(.admin-danger) {
    align-self: end;
    color: #ffffff;
    background: linear-gradient(#1a68a5, #003a72);
    border: 2px outset #ffffff;
    padding: 10px 16px;
    font-weight: bold;
    cursor: pointer;
}

.admin-panel button[type="submit"]:not(.admin-danger):hover,
.admin-panel button[type="submit"]:not(.admin-danger):focus {
    color: #111111;
    background: linear-gradient(#ffeaa3, #d2a937);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    margin-top: 12px;
    border: 0;
}

.admin-table-wrap .admin-table {
    margin-top: 0;
}

.admin-table th,
.admin-table td {
    vertical-align: middle;
    border: 1px solid #8f8f8f;
    padding: 10px;
    text-align: left;
}

.admin-table th {
    color: var(--blue-dark);
    background: #d9e8f6;
}

.admin-inline-form {
    margin: 0;
}

.admin-ticket-action-form {
    display: grid;
    gap: 8px;
    width: min(260px, 52vw);
}

.admin-ticket-table {
    min-width: 980px;
    table-layout: fixed;
}

.admin-ticket-table th:nth-child(1),
.admin-ticket-table td:nth-child(1) {
    width: 96px;
}

.admin-ticket-table th:nth-child(2),
.admin-ticket-table td:nth-child(2) {
    width: 150px;
}

.admin-ticket-table th:nth-child(3),
.admin-ticket-table td:nth-child(3) {
    width: 210px;
}

.admin-ticket-table th:nth-child(4),
.admin-ticket-table th:nth-child(5),
.admin-ticket-table th:nth-child(6),
.admin-ticket-table td:nth-child(4),
.admin-ticket-table td:nth-child(5),
.admin-ticket-table td:nth-child(6) {
    width: 92px;
}

.admin-ticket-table th:nth-child(7),
.admin-ticket-table td:nth-child(7) {
    width: 280px;
}

.admin-ticket-table th:nth-child(8),
.admin-ticket-table td:nth-child(8) {
    width: 84px;
}

.admin-logo-table {
    min-width: 760px;
}

.admin-logo-table th:first-child,
.admin-logo-table td:first-child {
    width: 56px;
}

.admin-logo-table th:nth-child(2),
.admin-logo-table td:nth-child(2) {
    width: 130px;
}

.admin-danger {
    width: auto;
    margin: 0;
    padding: 8px 12px;
    color: #ffffff;
    background: linear-gradient(#a83232, #751818);
    border: 2px outset #ffffff;
    font-weight: bold;
}

.admin-danger:hover,
.admin-danger:focus {
    background: linear-gradient(#ffdf9b, #c49b28);
    color: #111111;
}

@media (max-width: 840px) {
    .nav-wrap {
        flex-wrap: wrap;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .nav-toggle-label {
        display: block;
    }

    .nav-menu {
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-toggle:checked ~ .nav-menu {
        display: flex;
    }

    .nav-menu a {
        text-align: center;
    }

    .hero {
        min-height: 320px;
    }

    .hero::before {
        background-size: cover;
        opacity: 0.22;
    }

    .info-grid,
    .stats-strip,
    .article-grid,
    .cert-grid,
    .service-layout,
    .contact-layout,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .stats-strip {
        padding: 8px 0;
    }

    .stat-item {
        padding: 14px 12px;
        border-left: 0;
        border-top: 1px solid #d2d2d2;
    }

    .stat-item:first-child {
        border-top: 0;
    }

    .stat-item strong {
        font-size: 42px;
    }

    .stat-item span {
        margin-top: 6px;
    }

    .site-footer {
        padding: 22px 14px;
    }

    .page-title-bar-search {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .library-search {
        justify-self: stretch;
        max-width: none;
    }

    .library-articles {
        max-height: 620px;
    }

    .footer-inner {
        gap: 14px;
    }

    .footer-inner h2,
    .footer-inner h3 {
        margin-bottom: 6px;
    }

    .footer-bottom {
        margin-top: 14px;
    }

    .admin-entry {
        text-align: left;
    }

    .admin-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-panel {
        margin: 14px;
        padding: 14px;
    }

    .admin-grid-2,
    .admin-grid-3 {
        grid-template-columns: 1fr;
    }

    .admin-panel {
        overflow-x: auto;
    }

    .admin-table {
        min-width: 620px;
    }

    .latest-article {
        grid-template-columns: 120px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
    }

    .latest-article h3 {
        font-size: 18px;
    }

    .service-intro,
    .process-panel,
    .service-form-panel,
    .ticket-check-panel {
        box-shadow: none;
    }

    .process-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .slider-controls {
        width: 100%;
        justify-content: flex-end;
    }

    .process-slider {
        gap: 12px;
        padding: 12px;
        scroll-padding-left: 12px;
    }

    .process-slide {
        flex: 0 0 calc(100% - 2px);
        box-shadow: none;
    }

    .author-box {
        text-align: center;
    }

    .author-box img {
        width: 96px;
        height: 96px;
        max-width: 96px;
        margin: 0 auto;
    }

    .trusted-section {
        padding: 14px;
    }

    .trusted-logo-item {
        flex-basis: 116px;
        height: 68px;
    }

    .trusted-logo-item img {
        max-width: 92px;
        max-height: 46px;
    }

    .admin-logo-form {
        grid-template-columns: 1fr;
    }

    .org-chart {
        width: 100%;
        flex-basis: 100%;
    }

    .org-card {
        width: 180px;
        min-height: 70px;
        padding: 10px;
    }

    .org-card strong {
        font-size: 14px;
    }
}

@media (max-width: 430px) {
    .top-strip {
        font-size: 11px;
    }

    .brand-text small {
        display: none;
    }

    .content-pad {
        padding: 12px;
    }

    .main-shell {
        box-shadow: none;
    }

    .site-footer {
        padding: 18px 12px;
        font-size: 13px;
    }

    .footer-inner {
        gap: 16px;
    }

    .footer-inner h2 {
        font-size: 20px;
    }

    .footer-inner h3 {
        font-size: 17px;
    }

    .footer-inner p {
        line-height: 1.45;
    }

    .footer-bottom {
        font-size: 11px;
        line-height: 1.4;
    }

    .page-title-bar {
        padding: 12px;
    }

    .service-intro {
        padding: 14px;
    }

    .service-form-panel {
        padding: 14px;
    }

    .process-heading {
        padding: 10px;
    }

    .process-heading h2,
    .service-intro h2,
    .process-slide h3 {
        font-size: 19px;
        line-height: 1.25;
    }

    .slider-controls {
        justify-content: space-between;
    }

    .slider-btn {
        width: 48%;
        height: 38px;
    }

    .process-slider {
        gap: 10px;
        padding: 10px;
        scroll-padding-left: 10px;
    }

    .process-slide {
        flex: 0 0 100%;
    }

    .process-slide img {
        aspect-ratio: auto;
        height: auto;
        object-fit: contain;
        max-height: none;
    }

    .process-slide p {
        font-size: 14px;
    }

    .service-form .old-button {
        width: 100%;
        text-align: center;
    }

    .org-chart {
        width: 100%;
    }

    .org-level-divisions {
        gap: 8px;
    }

    .org-card {
        width: 150px;
        min-height: 64px;
        padding: 8px;
    }

    .org-level-divisions .org-card {
        width: 100%;
    }

    .org-card span {
        font-size: 10px;
    }

    .org-card strong {
        font-size: 11px;
    }

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

    .latest-article {
        grid-template-columns: 1fr;
    }

    .latest-article img {
        max-height: 180px;
    }

    .article-info-table th {
        width: 112px;
        white-space: nowrap;
    }

    .article-info-table th::after {
        content: " :";
        float: right;
    }

    .article-info-table th,
    .article-info-table td {
        padding: 9px 10px;
        font-size: 14px;
    }

    .article-detail p {
        font-size: 15px;
    }

    .verify-options {
        gap: 8px;
    }

    .verify-options button {
        min-height: 50px;
        padding: 8px 6px;
    }
}

/* Admin rich text editor */
.admin-format-toolbar button.is-active {
    color: #ffffff;
    background: linear-gradient(#1a68a5, #003a72);
    border-style: inset;
}

.admin-rich-editor {
    width: 100%;
    min-height: 150px;
    margin-top: 6px;
    padding: 12px 14px;
    color: var(--text);
    background: #ffffff;
    border: 2px inset #ffffff;
    font: inherit;
    font-weight: 400;
    line-height: 1.6;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    overflow-y: auto;
}

.admin-rich-editor[data-rich-editor="content"] {
    min-height: 260px;
}

.admin-rich-editor:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(196, 155, 40, 0.2);
    outline: 0;
}

.admin-rich-editor:empty::before {
    content: attr(data-placeholder);
    color: var(--muted);
    pointer-events: none;
}

.admin-rich-editor strong,
.admin-rich-editor b {
    font-weight: 800;
}

.admin-rich-editor em,
.admin-rich-editor i {
    font-style: italic;
}
