@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* =========================================================
   PPID DIGITAL
   MASTER CSS
   Halaman:
   - Beranda
   - Informasi Publik
   - Detail Informasi
   - Permohonan Informasi
   - Tracking
   - Keberatan
   - Profil
   - Download
   - FAQ
========================================================= */


/* =========================================================
   01. ROOT / RESET
========================================================= */

:root {
    --primary: #0b3b82;
    --primary-2: #1468c9;
    --primary-dark: #082b60;
    --primary-light: #eef5ff;

    --text: #172033;
    --text-soft: #344054;
    --muted: #667085;

    --bg: #f7f9fc;
    --white: #ffffff;

    --border: #e4e9f0;
    --border-dark: #d4dce7;

    --success: #198754;
    --success-bg: #eaf8f0;

    --warning: #d99000;
    --warning-bg: #fff7df;

    --danger: #d9363e;
    --danger-bg: #fff0f1;

    --purple: #6941c6;
    --purple-bg: #f4f0ff;

    --shadow-sm: 0 4px 14px rgba(16, 24, 40, .05);
    --shadow: 0 10px 30px rgba(16, 24, 40, .08);
    --shadow-lg: 0 18px 45px rgba(16, 24, 40, .12);

    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;

    --transition: all .22s ease;
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}


body,
button,
input,
select,
textarea {
    font-family: 'Inter', Arial, sans-serif;
}


img {
    max-width: 100%;
    height: auto;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
select,
textarea {
    font-size: inherit;
}


button {
    cursor: pointer;
}


.container {
    width: min(1180px, calc(100% - 40px));
    margin-right: auto;
    margin-left: auto;
}


::selection {
    background: #dceaff;
    color: var(--primary-dark);
}


/* =========================================================
   02. TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: var(--text);
    font-weight: 800;
    line-height: 1.3;
}


p {
    color: var(--muted);
}


.section-label {
    display: inline-block;
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}


.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}


.section-heading h2 {
    margin: 6px 0 0;
    font-size: 28px;
}


.section-heading h2 span {
    color: var(--primary);
}


.section-heading p {
    margin: 8px 0 0;
    font-size: 12px;
}


/* =========================================================
   03. BUTTON
========================================================= */

.btn {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 15px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    transition: var(--transition);
}


.btn:hover {
    transform: translateY(-1px);
}


.btn-primary {
    background: var(--primary);
    color: var(--white);
}


.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 15px rgba(11, 59, 130, .18);
}


.btn-light {
    border-color: var(--border);
    background: var(--white);
    color: var(--text-soft);
}


.btn-light:hover {
    border-color: #c7d1de;
    background: #f8fafc;
}


.btn-success {
    background: var(--success);
    color: var(--white);
}


.btn-danger {
    background: var(--danger);
    color: var(--white);
}


.btn-white {
    background: var(--white);
    color: var(--primary);
}


.btn-outline-white {
    border-color: rgba(255,255,255,.35);
    background: transparent;
    color: var(--white);
}


.btn-outline-white:hover {
    border-color: var(--white);
    background: rgba(255,255,255,.08);
}


/* =========================================================
   04. TOPBAR
========================================================= */

.topbar {
    min-height: 35px;
    display: flex;
    align-items: center;
    background: #071f47;
    color: rgba(255,255,255,.78);
    font-size: 10px;
}


.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}


.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}


.topbar-item {
    display: flex;
    align-items: center;
    gap: 6px;
}


.topbar-item i {
    color: #8eb9eb;
}


/* =========================================================
   05. NAVBAR
========================================================= */

.site-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
    transition: var(--transition);
}


.navbar-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}


.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}


.brand-logo {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: var(--white);
    font-size: 19px;
    box-shadow: 0 5px 15px rgba(11,59,130,.18);
}


.brand-text strong {
    display: block;
    color: var(--primary);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
}


.brand-text span {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 9px;
}


.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}


.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 38px;
    padding: 0 11px;
    border-radius: 7px;
    color: #536174;
    font-size: 11px;
    font-weight: 600;
    transition: var(--transition);
}


.nav-link:hover {
    background: #f3f6fa;
    color: var(--primary);
}


.nav-link.active {
    background: var(--primary-light);
    color: var(--primary);
}


.nav-actions {
    display: flex;
    align-items: center;
    gap: 7px;
}


.nav-search-btn,
.nav-login-btn {
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}


.nav-search-btn {
    width: 37px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--muted);
}


.nav-login-btn {
    gap: 6px;
    padding: 0 13px;
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
}


.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    color: var(--text);
}


/* =========================================================
   06. MAIN
========================================================= */

main {
    min-height: 500px;
}


/* =========================================================
   07. HERO
========================================================= */

.hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 75px;
    background:
        radial-gradient(circle at 80% 25%, rgba(20,104,201,.12), transparent 30%),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}


.hero-inner {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 55px;
}


.hero-content {
    position: relative;
    z-index: 2;
}


.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 16px;
    padding: 7px 10px;
    border: 1px solid #d5e4f5;
    border-radius: 20px;
    background: #f2f7fd;
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
}


.hero-badge i {
    font-size: 9px;
}


.hero h1 {
    max-width: 680px;
    margin: 0 0 17px;
    font-size: clamp(35px, 4vw, 54px);
    letter-spacing: -.04em;
}


.hero h1 span {
    color: var(--primary);
}


.hero-description {
    max-width: 610px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}


.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 25px;
}


.hero-search {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 580px;
    margin-top: 27px;
    padding: 7px;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}


.hero-search i {
    margin-left: 11px;
    color: #99a6b6;
}


.hero-search input {
    flex: 1;
    min-width: 0;
    height: 39px;
    border: 0;
    outline: none;
    color: var(--text);
    font-size: 11px;
}


.hero-visual {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.building-illustration {
    width: 350px;
    min-height: 300px;
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 25px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}


.building-roof {
    width: 70%;
    height: 30px;
    margin: 0 auto 12px;
    border-radius: 8px 8px 0 0;
    background: var(--primary);
}


.building-body {
    padding: 18px;
    border-radius: 5px;
    background: #eef4fa;
}


.building-columns {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 12px;
}


.building-columns span {
    height: 145px;
    border-radius: 6px 6px 0 0;
    background: #d4e2f0;
}


.building-door {
    width: 70px;
    height: 80px;
    margin: -80px auto 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 35px 35px 0 0;
    background: var(--primary);
    color: var(--white);
    font-size: 22px;
}


.floating-badge {
    position: absolute;
    right: 0;
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 13px 15px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
}


.floating-badge-icon {
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: var(--primary-light);
    color: var(--primary);
}


.floating-badge strong {
    display: block;
    font-size: 11px;
}


.floating-badge span {
    display: block;
    color: var(--muted);
    font-size: 9px;
}


/* =========================================================
   08. HOME SERVICES
========================================================= */

.home-section {
    padding: 65px 0;
}


.home-section-soft {
    background: #f5f8fc;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
}


.service-card {
    position: relative;
    padding: 23px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: var(--white);
    transition: var(--transition);
}


.service-card:hover {
    transform: translateY(-4px);
    border-color: #cad9eb;
    box-shadow: var(--shadow);
}


.service-icon {
    width: 47px;
    height: 47px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 18px;
}


.service-card h3 {
    margin: 0 0 7px;
    font-size: 14px;
}


.service-card p {
    margin: 0;
    font-size: 10px;
    line-height: 1.7;
}


.service-arrow {
    position: absolute;
    top: 24px;
    right: 20px;
    color: #b0bac6;
    font-size: 11px;
}


/* =========================================================
   09. CATEGORY CARDS
========================================================= */

.category-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
}


.category-card {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
}


.category-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.category-icon {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--primary-light);
    color: var(--primary);
}


.category-count {
    color: var(--primary);
    font-size: 22px;
    font-weight: 800;
}


.category-card h3 {
    margin: 15px 0 3px;
    font-size: 13px;
}


.category-card p {
    margin: 0;
    font-size: 10px;
}


/* =========================================================
   10. STATISTICS HOME
========================================================= */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
}


.stat-card {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
}


.stat-card-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: var(--primary-light);
    color: var(--primary);
}


.stat-card strong {
    display: block;
    font-size: 25px;
    line-height: 1;
}


.stat-card span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 10px;
}


/* =========================================================
   11. CHART / LATEST HOME
========================================================= */

.dashboard-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 17px;
}


.dashboard-card {
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: var(--white);
}


.dashboard-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
}


.dashboard-card-header h3 {
    margin: 0;
    font-size: 14px;
}


.dashboard-card-header span {
    color: var(--muted);
    font-size: 9px;
}


.simple-chart {
    height: 220px;
    display: flex;
    align-items: flex-end;
    gap: 9px;
    padding-top: 20px;
    border-bottom: 1px solid var(--border);
}


.chart-bar {
    flex: 1;
    min-width: 7px;
    border-radius: 5px 5px 0 0;
    background: linear-gradient(
        to top,
        var(--primary),
        var(--primary-2)
    );
}


.latest-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}


.latest-item {
    display: flex;
    gap: 10px;
    padding: 10px;
    border: 1px solid #edf0f4;
    border-radius: 9px;
}


.latest-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f1f5f9;
    color: var(--primary);
}


.latest-item h4 {
    margin: 0 0 2px;
    font-size: 10px;
    line-height: 1.5;
}


.latest-item span {
    color: var(--muted);
    font-size: 8px;
}


/* =========================================================
   12. CTA
========================================================= */

.home-cta {
    position: relative;
    overflow: hidden;
    padding: 0 0 70px;
}


.cta-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    min-height: 220px;
    padding: 35px 45px;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg,var(--primary),var(--primary-2));
    color: var(--white);
}


.cta-content {
    position: relative;
    z-index: 2;
}


.cta-content h2 {
    margin: 7px 0 9px;
    color: var(--white);
    font-size: 26px;
}


.cta-content p {
    max-width: 600px;
    margin: 0;
    color: rgba(255,255,255,.75);
    font-size: 12px;
}


.cta-actions {
    display: flex;
    gap: 8px;
    margin-top: 18px;
}


.cta-visual {
    width: 130px;
    height: 130px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    font-size: 50px;
}


/* =========================================================
   13. PAGE HEADER
========================================================= */

.page-header {
    padding: 35px 0;
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(circle at 85% 50%,rgba(20,104,201,.08),transparent 25%),
        #f8fbff;
}


.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
    color: var(--muted);
    font-size: 10px;
}


.breadcrumb a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--primary);
    font-weight: 600;
}


.breadcrumb > i {
    color: #aab4c0;
    font-size: 8px;
}


.page-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


.page-header-content h1 {
    margin: 7px 0 9px;
    font-size: 31px;
    letter-spacing: -.02em;
}


.page-header-content p {
    max-width: 680px;
    margin: 0;
    font-size: 12px;
    line-height: 1.7;
}


.page-header-icon {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 28px;
}


/* =========================================================
   14. INFORMATION PAGE
========================================================= */

.information-section {
    padding: 50px 0 70px;
}


.information-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
}


.information-search {
    position: relative;
    flex: 1;
}


.information-search i {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #99a5b4;
}


.information-search input {
    width: 100%;
    height: 43px;
    padding: 0 15px 0 38px;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: var(--white);
    outline: none;
    font-size: 11px;
}


.information-filter {
    display: flex;
    gap: 8px;
}


.filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}


.filter-form select {
    height: 43px;
    min-width: 150px;
    padding: 0 28px 0 11px;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: var(--white);
    color: var(--text);
    outline: none;
    font-size: 10px;
}


.information-result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 15px;
}


.information-result-header span {
    color: var(--muted);
    font-size: 10px;
}


.information-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.information-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 17px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: var(--white);
    transition: var(--transition);
}


.information-card:hover {
    border-color: #c9d9eb;
    box-shadow: var(--shadow-sm);
}


.document-icon {
    width: 49px;
    height: 49px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #fff1f1;
    color: var(--danger);
    font-size: 19px;
}


.information-card-content {
    flex: 1;
    min-width: 0;
}


.information-card-content h3 {
    margin: 4px 0 5px;
    font-size: 13px;
}


.information-card-content p {
    margin: 0;
    font-size: 10px;
}


.information-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: #8491a2;
    font-size: 9px;
}


.information-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 12px;
}


.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}


.pagination {
    display: flex;
    gap: 5px;
}


.pagination a,
.pagination span {
    min-width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: var(--white);
    color: var(--muted);
    font-size: 10px;
}


.pagination .active {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}


.information-empty {
    padding: 60px 20px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: var(--white);
}


.information-help {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    padding: 18px;
    border: 1px solid #d9e5f2;
    border-radius: 13px;
    background: #f5f9ff;
}


/* =========================================================
   15. DETAIL INFORMATION
========================================================= */

.detail-page-header {
    padding: 35px 0;
}


.detail-heading {
    max-width: 850px;
}


.detail-heading h1 {
    margin: 8px 0 13px;
    font-size: 31px;
}


.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--muted);
    font-size: 10px;
}


.detail-section {
    padding: 45px 0 70px;
}


.detail-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) 300px;
    gap: 20px;
}


.detail-card,
.sidebar-card {
    border: 1px solid var(--border);
    border-radius: 15px;
    background: var(--white);
}


.detail-card-header {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 19px;
    border-bottom: 1px solid var(--border);
}


.detail-document-icon {
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #fff0f0;
    color: var(--danger);
    font-size: 19px;
}


.detail-file-label {
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
}


.detail-card-header h2 {
    margin: 3px 0 0;
    font-size: 15px;
}


.detail-card-body {
    padding: 22px;
}


.detail-description {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
}


.detail-divider {
    height: 1px;
    margin: 20px 0;
    background: var(--border);
}


.detail-information-table {
    display: flex;
    flex-direction: column;
}


.detail-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 20px;
    padding: 11px 0;
    border-bottom: 1px solid #f0f2f5;
}


.detail-row:last-child {
    border-bottom: 0;
}


.detail-row span:first-child {
    color: var(--muted);
    font-size: 10px;
}


.detail-row strong {
    font-size: 10px;
}


.detail-download-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 22px;
    padding: 17px;
    border-radius: 11px;
    background: #f5f8fc;
}


.detail-share {
    margin-top: 20px;
}


.share-buttons {
    display: flex;
    gap: 7px;
    margin-top: 9px;
}


.share-buttons button {
    width: 34px;
    height: 34px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    color: var(--muted);
}


.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 13px;
}


.sidebar-card {
    padding: 18px;
}


.sidebar-title {
    margin-bottom: 12px;
    font-size: 12px;
}


.sidebar-category {
    display: inline-flex;
    padding: 6px 8px;
    border-radius: 6px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 9px;
    font-weight: 700;
}


.sidebar-navigation {
    display: flex;
    flex-direction: column;
}


.sidebar-navigation a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid #edf0f4;
    color: var(--muted);
    font-size: 10px;
}


.sidebar-navigation a:hover {
    color: var(--primary);
}


.related-section {
    margin-top: 25px;
}


.related-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
}


.related-card {
    display: flex;
    gap: 10px;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: var(--white);
}


.related-icon {
    width: 37px;
    height: 37px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--primary-light);
    color: var(--primary);
}


.related-content {
    min-width: 0;
}


.related-content h3 {
    margin: 0 0 4px;
    font-size: 10px;
    line-height: 1.5;
}


.related-content span {
    color: var(--muted);
    font-size: 8px;
}


.related-arrow {
    margin-left: auto;
    color: #aab4c0;
}


/* =========================================================
   16. APPLICATION / PERMOHONAN
========================================================= */

.application-section {
    padding: 45px 0 70px;
}


.application-steps {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    margin-bottom: 30px;
}


.application-step {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}


.step-number {
    position: relative;
    z-index: 2;
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #edf1f5;
    color: #7b8796;
    font-size: 11px;
    font-weight: 800;
}


.application-step.active .step-number {
    background: var(--primary);
    color: var(--white);
}


.application-step strong {
    display: block;
    font-size: 10px;
}


.application-step span {
    display: block;
    color: var(--muted);
    font-size: 8px;
}


.step-line {
    position: absolute;
    top: 17px;
    left: 35px;
    right: 0;
    height: 1px;
    background: var(--border-dark);
}


.application-step:last-child .step-line {
    display: none;
}


.application-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) 300px;
    gap: 20px;
}


.form-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: var(--white);
}


.form-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
}


.form-card-icon {
    width: 41px;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: var(--primary-light);
    color: var(--primary);
}


.form-card-header h2 {
    margin: 0;
    font-size: 14px;
}


.form-card-header p {
    margin: 2px 0 0;
    font-size: 9px;
}


.form-card-body {
    padding: 22px;
}


.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}


.form-group {
    margin-bottom: 15px;
}


.form-group.full {
    grid-column: 1 / -1;
}


.form-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--text-soft);
    font-size: 10px;
    font-weight: 700;
}


.form-group label span {
    color: var(--danger);
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fcfdfe;
    color: var(--text);
    outline: none;
    font-size: 11px;
    transition: var(--transition);
}


.form-group input,
.form-group select {
    height: 40px;
    padding: 0 11px;
}


.form-group textarea {
    min-height: 105px;
    padding: 10px 11px;
    resize: vertical;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(11,59,130,.06);
}


.form-help {
    margin-top: 5px;
    color: #8a96a5;
    font-size: 8px;
}


.delivery-options {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
}


.delivery-option {
    position: relative;
}


.delivery-option input {
    position: absolute;
    opacity: 0;
}


.delivery-option label {
    display: flex !important;
    align-items: center;
    gap: 8px;
    height: 55px;
    margin: 0 !important;
    padding: 0 11px;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
}


.delivery-option label i {
    color: var(--primary);
}


.delivery-option input:checked + label {
    border-color: var(--primary);
    background: var(--primary-light);
}


.upload-area {
    padding: 25px;
    text-align: center;
    border: 1px dashed #bac8d8;
    border-radius: 10px;
    background: #fafcff;
}


.upload-area i {
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 25px;
}


.upload-area strong {
    display: block;
    font-size: 11px;
}


.upload-area span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 8px;
}


.selected-file {
    display: none;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 9px;
    border-radius: 8px;
    background: #f0f7f3;
    color: var(--success);
    font-size: 9px;
}


.agreement-box {
    display: flex;
    gap: 8px;
    margin: 18px 0;
    padding: 12px;
    border-radius: 8px;
    background: #f8fafc;
}


.agreement-box input {
    margin-top: 3px;
}


.agreement-box label {
    color: var(--muted);
    font-size: 9px;
    line-height: 1.6;
}


.application-submit {
    display: flex;
    justify-content: flex-end;
}


.application-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.application-info-card,
.application-side-card {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
}


.application-info-card {
    background: linear-gradient(145deg,#f1f7ff,#ffffff);
}


.application-info-card h3,
.application-side-card h3 {
    margin: 0 0 10px;
    font-size: 12px;
}


.application-info-card ol {
    margin: 0;
    padding-left: 17px;
}


.application-info-card li {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.6;
}


.application-contact {
    display: flex;
    gap: 9px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}


.application-contact i {
    color: var(--primary);
}


/* =========================================================
   17. TRACKING
========================================================= */

.tracking-section {
    padding: 50px 0 75px;
}


.tracking-search-card {
    max-width: 780px;
    margin: 0 auto 30px;
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}


.tracking-search-heading {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 18px;
}


.tracking-search-icon {
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 18px;
}


.tracking-search-heading h2 {
    margin: 0;
    font-size: 15px;
}


.tracking-search-heading p {
    margin: 3px 0 0;
    font-size: 9px;
}


.tracking-form {
    display: flex;
    gap: 8px;
}


.tracking-input {
    position: relative;
    flex: 1;
}


.tracking-input i {
    position: absolute;
    top: 50%;
    left: 13px;
    transform: translateY(-50%);
    color: #99a6b5;
}


.tracking-input input {
    width: 100%;
    height: 43px;
    padding: 0 12px 0 37px;
    border: 1px solid var(--border);
    border-radius: 8px;
    outline: none;
    font-size: 11px;
}


.tracking-example {
    margin-top: 8px;
    color: #8a96a5;
    font-size: 8px;
}


.tracking-example strong {
    color: var(--primary);
}


.tracking-not-found {
    max-width: 780px;
    margin: 0 auto;
    padding: 45px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: var(--white);
}


.tracking-result {
    max-width: 950px;
    margin: 0 auto;
}


.tracking-result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 20px;
    border-radius: 15px 15px 0 0;
    background: var(--primary);
    color: var(--white);
}


.tracking-result-header h2 {
    margin: 0 0 4px;
    color: var(--white);
    font-size: 15px;
}


.tracking-result-header span {
    color: rgba(255,255,255,.7);
    font-size: 9px;
}


.tracking-current-status {
    padding: 7px 10px;
    border-radius: 20px;
    background: rgba(255,255,255,.15);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
}


.tracking-summary {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    padding: 15px;
    border: 1px solid var(--border);
    border-top: 0;
    background: var(--white);
}


.tracking-summary > div {
    padding: 12px;
    border-radius: 8px;
    background: #f8fafc;
}


.tracking-summary span {
    display: block;
    color: var(--muted);
    font-size: 8px;
}


.tracking-summary strong {
    display: block;
    margin-top: 3px;
    font-size: 10px;
}


.tracking-request {
    margin-top: 15px;
    padding: 17px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: var(--white);
}


.tracking-request h3 {
    margin: 0 0 7px;
    font-size: 12px;
}


.tracking-request p {
    margin: 0;
    font-size: 10px;
    line-height: 1.7;
}


.tracking-timeline-wrapper {
    margin-top: 15px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: var(--white);
}


.tracking-timeline-wrapper h3 {
    margin: 0 0 20px;
    font-size: 13px;
}


.tracking-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
}


.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    min-height: 75px;
}


.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 19px;
    bottom: 0;
    width: 1px;
    background: var(--border-dark);
}


.timeline-icon {
    position: relative;
    z-index: 2;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
    border-radius: 50%;
    background: #edf1f5;
    color: #8290a0;
    box-shadow: 0 0 0 1px var(--border);
    font-size: 11px;
}


.timeline-item.completed .timeline-icon {
    background: var(--success);
    color: var(--white);
    box-shadow: none;
}


.timeline-item.current .timeline-icon {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 0 0 5px rgba(11,59,130,.08);
}


.timeline-content {
    padding-top: 4px;
}


.timeline-title {
    margin: 0 0 3px;
    font-size: 11px;
    font-weight: 700;
}


.timeline-status {
    color: var(--muted);
    font-size: 9px;
}


.tracking-result-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 15px;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: #f8fafc;
}


.tracking-officer {
    color: var(--muted);
    font-size: 9px;
}


.tracking-help {
    margin-top: 20px;
}


/* =========================================================
   18. KEBERATAN
========================================================= */

.objection-section {
    padding: 45px 0 70px;
}


.objection-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) 300px;
    gap: 20px;
}


.input-with-button {
    display: flex;
    gap: 7px;
}


.input-with-button input {
    flex: 1;
}


.input-icon {
    position: relative;
}


.input-icon > i {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #97a5b5;
}


.input-icon input {
    padding-left: 35px !important;
}


.application-check-result {
    display: none;
    margin-top: 10px;
    padding: 11px;
    border-radius: 8px;
    background: var(--success-bg);
    color: var(--success);
    font-size: 9px;
}


.objection-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.objection-info-card,
.objection-side-card {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
}


.objection-info-card {
    background: #f4f8ff;
}


.objection-info-card h3,
.objection-side-card h3 {
    margin: 0 0 10px;
    font-size: 12px;
}


.objection-info-card ol {
    margin: 0;
    padding-left: 17px;
}


.objection-info-card li {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.6;
}


/* =========================================================
   19. PROFIL
========================================================= */

.profile-section {
    padding: 65px 0;
    background: var(--bg);
}


.profile-soft {
    background: #f5f8fc;
}


.profile-intro {
    display: grid;
    grid-template-columns: 420px minmax(0,1fr);
    gap: 70px;
    align-items: center;
}


.profile-intro-visual {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.profile-building {
    width: 300px;
    padding: 20px 25px 0;
    border-radius: 20px 20px 5px 5px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}


.profile-building-top {
    width: 78px;
    height: 78px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 35px;
}


.profile-building-columns {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 15px;
    height: 145px;
    padding: 0 15px;
}


.profile-building-columns span {
    border-radius: 8px 8px 0 0;
    background: #dfeaf7;
}


.profile-building-door {
    width: 85px;
    height: 95px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px 40px 0 0;
    background: var(--primary);
    color: var(--white);
    font-size: 27px;
}


.profile-floating-card {
    position: absolute;
    right: 0;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: var(--white);
    box-shadow: var(--shadow);
}


.profile-floating-card > i {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: var(--primary-light);
    color: var(--primary);
}


.profile-floating-card strong {
    display: block;
    font-size: 12px;
}


.profile-floating-card span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 9px;
}


.profile-intro-content h2 {
    margin: 9px 0 18px;
    font-size: 34px;
}


.profile-intro-content h2 span {
    color: var(--primary);
}


.profile-intro-content p {
    margin: 0 0 13px;
    font-size: 12px;
    line-height: 1.8;
}


.profile-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 22px;
}


.profile-highlights div {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
    font-weight: 700;
}


.profile-highlights i {
    color: var(--success);
}


/* =========================================================
   20. VISI MISI
========================================================= */

.vision-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 16px;
}


.vision-card,
.mission-card {
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: var(--white);
}


.vision-main {
    grid-row: span 2;
    background: linear-gradient(145deg,var(--primary),var(--primary-2));
    color: var(--white);
}


.vision-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255,255,255,.15);
    font-size: 21px;
}


.vision-card > span {
    color: rgba(255,255,255,.7);
    font-size: 10px;
    font-weight: 800;
}


.vision-card h3 {
    margin: 12px 0 0;
    color: var(--white);
    font-size: 21px;
    line-height: 1.55;
}


.mission-card {
    display: flex;
    gap: 15px;
}


.mission-number {
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
}


.mission-card h3 {
    margin: 0 0 5px;
    font-size: 14px;
}


.mission-card p {
    margin: 0;
    font-size: 10px;
    line-height: 1.7;
}


/* =========================================================
   21. DUTIES
========================================================= */

.duties-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
}


.duty-card {
    position: relative;
    padding: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
}


.duty-number {
    position: absolute;
    top: 18px;
    right: 20px;
    color: #edf1f6;
    font-size: 30px;
    font-weight: 900;
}


.duty-icon {
    width: 47px;
    height: 47px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: var(--primary-light);
    color: var(--primary);
}


.duty-card h3 {
    margin: 0 0 8px;
    font-size: 14px;
}


.duty-card p {
    margin: 0;
    font-size: 10px;
    line-height: 1.7;
}


/* =========================================================
   22. ORGANIZATION
========================================================= */

.organization-chart {
    max-width: 900px;
    margin: 0 auto;
}


.org-level {
    display: flex;
    justify-content: center;
}


.org-card {
    min-width: 260px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 17px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}


.org-leader {
    border-color: #cbdcf1;
}


.org-icon {
    width: 43px;
    height: 43px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--primary-light);
    color: var(--primary);
}


.org-card span {
    display: block;
    margin-bottom: 4px;
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
}


.org-card strong {
    display: block;
    font-size: 11px;
    line-height: 1.4;
}


.org-connector {
    width: 1px;
    height: 30px;
    margin: 0 auto;
    background: #cfd9e5;
}


.org-children {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
}


.org-children::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 16.66%;
    right: 16.66%;
    height: 1px;
    background: #cfd9e5;
}


/* =========================================================
   23. LEGAL
========================================================= */

.legal-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.legal-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    transition: var(--transition);
}


.legal-item:hover {
    transform: translateX(3px);
    box-shadow: var(--shadow-sm);
}


.legal-number {
    width: 32px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
}


.legal-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--primary-light);
    color: var(--primary);
}


.legal-content {
    flex: 1;
}


.legal-content h3 {
    margin: 0 0 5px;
    font-size: 13px;
}


.legal-content p {
    margin: 0;
    font-size: 10px;
}


.legal-arrow {
    color: #aab6c4;
}


/* =========================================================
   24. PROFILE CONTACT
========================================================= */

.profile-contact-section {
    padding: 0 0 70px;
    background: var(--bg);
}


.profile-contact-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 240px;
    padding: 40px 50px;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(135deg,var(--primary),var(--primary-2));
}


.profile-contact-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}


.profile-contact-content .section-label {
    color: rgba(255,255,255,.7);
}


.profile-contact-content h2 {
    margin: 9px 0 10px;
    color: var(--white);
    font-size: 28px;
}


.profile-contact-content p {
    margin: 0;
    color: rgba(255,255,255,.75);
    font-size: 12px;
}


.profile-contact-actions {
    display: flex;
    gap: 9px;
    margin-top: 20px;
}


.profile-contact-circle {
    width: 145px;
    height: 145px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: var(--white);
    font-size: 55px;
}


/* =========================================================
   25. DOWNLOAD
========================================================= */

.download-section {
    padding: 55px 0 75px;
}


.download-search-box {
    margin-bottom: 20px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: var(--white);
}


.download-search {
    position: relative;
    display: flex;
    align-items: center;
}


.download-search > i {
    position: absolute;
    left: 17px;
    color: #98a6b7;
}


.download-search input {
    width: 100%;
    height: 48px;
    padding: 0 115px 0 45px;
    border: 1px solid var(--border);
    border-radius: 10px;
    outline: none;
    background: #fafbfd;
    color: var(--text);
    font-size: 11px;
}


.download-search .btn {
    position: absolute;
    right: 5px;
    height: 38px;
}


.download-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}


.download-filter-bar > div span {
    color: var(--muted);
    font-size: 10px;
}


.download-filter-bar strong {
    color: var(--primary);
}


.download-filters {
    display: flex;
    align-items: center;
    gap: 8px;
}


.download-filters select {
    height: 38px;
    min-width: 150px;
    padding: 0 30px 0 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    color: var(--text);
    font-size: 10px;
    outline: none;
}


.download-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 17px;
}


.download-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
    transition: var(--transition);
}


.download-card:hover {
    transform: translateY(-4px);
    border-color: #cbd9e8;
    box-shadow: var(--shadow);
}


.download-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 19px 20px 5px;
}


.download-file-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #fff0f0;
    color: var(--danger);
    font-size: 21px;
}


.download-format {
    padding: 5px 8px;
    border-radius: 5px;
    background: #f2f5f8;
    color: var(--muted);
    font-size: 8px;
    font-weight: 800;
}


.download-card-body {
    flex: 1;
    padding: 15px 20px 20px;
}


.download-category {
    color: var(--primary);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}


.download-card h3 {
    margin: 7px 0 9px;
    font-size: 14px;
    line-height: 1.45;
}


.download-card p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    font-size: 10px;
    line-height: 1.7;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}


.download-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 15px;
    padding-top: 13px;
    border-top: 1px solid #edf0f4;
}


.download-meta span {
    color: #8492a3;
    font-size: 8px;
}


.download-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 13px 20px;
    border-top: 1px solid var(--border);
    background: #fafbfd;
}


.download-detail {
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
}


.btn-download {
    min-height: 34px;
    padding: 0 12px;
    font-size: 9px;
}


.download-empty {
    padding: 65px 20px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: var(--white);
}


.download-empty-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f4f7;
    color: #9aa7b5;
    font-size: 27px;
}


.download-empty h3 {
    margin: 0 0 7px;
    font-size: 18px;
}


.download-empty p {
    max-width: 450px;
    margin: 0 auto 20px;
    font-size: 10px;
}


.download-information {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 25px;
    padding: 20px 22px;
    border: 1px solid #d8e5f4;
    border-radius: 14px;
    background: #f5f9ff;
}


.download-information-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #e5f0ff;
    color: var(--primary);
}


.download-information h3 {
    margin: 0 0 5px;
    font-size: 12px;
}


.download-information p {
    margin: 0 0 8px;
    font-size: 10px;
}


.download-information a {
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
}


/* =========================================================
   26. FAQ
========================================================= */

.faq-section {
    padding: 55px 0 75px;
}


.faq-search-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 22px;
    margin-bottom: 22px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
}


.faq-search-heading {
    display: flex;
    align-items: center;
    gap: 13px;
}


.faq-search-icon {
    width: 47px;
    height: 47px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 18px;
}


.faq-search-heading h2 {
    margin: 0 0 3px;
    font-size: 15px;
}


.faq-search-heading p {
    margin: 0;
    font-size: 9px;
}


.faq-search {
    position: relative;
    width: 430px;
}


.faq-search > i {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #97a5b4;
    font-size: 12px;
}


.faq-search input {
    width: 100%;
    height: 43px;
    padding: 0 42px 0 38px;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: #fafbfd;
    outline: none;
    font-size: 10px;
}


.faq-search button {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 25px;
    height: 25px;
    transform: translateY(-50%);
    border: 0;
    border-radius: 6px;
    background: #edf1f5;
    color: #768596;
}


.faq-category-nav {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
    overflow-x: auto;
    padding-bottom: 3px;
}


.faq-category-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 10px 13px;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: var(--white);
    color: var(--muted);
    font-size: 9px;
    font-weight: 600;
    transition: var(--transition);
}


.faq-category-btn:hover {
    border-color: #b9cbe0;
    color: var(--primary);
}


.faq-category-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}


.faq-category-btn small {
    min-width: 20px;
    padding: 3px 5px;
    border-radius: 10px;
    background: #edf2f7;
    color: #738294;
    font-size: 7px;
    text-align: center;
}


.faq-category-btn.active small {
    background: rgba(255,255,255,.18);
    color: var(--white);
}


.faq-category {
    display: none;
}


.faq-category.active {
    display: block;
}


.faq-category-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 14px;
}


.faq-category-header h2 {
    margin: 5px 0 0;
    font-size: 23px;
}


.faq-count {
    color: var(--muted);
    font-size: 9px;
}


.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.faq-item {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
}


.faq-item.active {
    border-color: #c5d7eb;
    box-shadow: var(--shadow-sm);
}


.faq-question {
    width: 100%;
    min-height: 65px;
    display: flex;
    align-items: center;
    padding: 12px 17px;
    border: 0;
    background: transparent;
    color: var(--text);
    text-align: left;
}


.faq-question-number {
    width: 40px;
    flex-shrink: 0;
    color: #a2afbd;
    font-size: 9px;
    font-weight: 800;
}


.faq-question-text {
    flex: 1;
    padding-right: 15px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.5;
}


.faq-question-icon {
    width: 31px;
    height: 31px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f1f4f7;
    color: var(--primary);
}


.faq-item.active .faq-question-icon {
    background: var(--primary);
    color: var(--white);
}


.faq-item.active .faq-question-icon i {
    transform: rotate(45deg);
}


.faq-question-icon i {
    transition: transform .2s ease;
}


.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .25s ease;
}


.faq-answer > div {
    overflow: hidden;
}


.faq-answer p {
    margin: 0;
    padding: 0 60px 0 57px;
    font-size: 10px;
    line-height: 1.8;
}


.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}


.faq-item.active .faq-answer p {
    padding-bottom: 19px;
}


.faq-search-empty {
    padding: 60px 20px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
}


.faq-empty-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f4f7;
    color: #9aa8b6;
    font-size: 22px;
}


.faq-search-empty h3 {
    margin: 0 0 7px;
    font-size: 17px;
}


.faq-search-empty p {
    margin: 0 0 18px;
    font-size: 10px;
}


.faq-help {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 28px;
    padding: 20px;
    border: 1px solid #d7e4f2;
    border-radius: 15px;
    background: #f5f9ff;
}


.faq-help-icon {
    width: 47px;
    height: 47px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #e5f0ff;
    color: var(--primary);
    font-size: 18px;
}


.faq-help-content {
    flex: 1;
}


.faq-help-content h3 {
    margin: 0 0 4px;
    font-size: 13px;
}


.faq-help-content p {
    margin: 0;
    font-size: 9px;
}


.faq-help-actions {
    display: flex;
    gap: 7px;
}


/* =========================================================
   27. FOOTER
========================================================= */

.site-footer {
    padding: 50px 0 0;
    background: #071a38;
    color: rgba(255,255,255,.7);
}


.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
    gap: 35px;
    padding-bottom: 40px;
}


.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}


.footer-brand-logo {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255,255,255,.1);
    color: var(--white);
}


.footer-brand strong {
    display: block;
    color: var(--white);
    font-size: 14px;
}


.footer-about p {
    max-width: 330px;
    margin: 0;
    color: rgba(255,255,255,.58);
    font-size: 10px;
    line-height: 1.8;
}


.footer-title {
    margin: 3px 0 14px;
    color: var(--white);
    font-size: 11px;
}


.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.footer-links a {
    color: rgba(255,255,255,.58);
    font-size: 9px;
    transition: var(--transition);
}


.footer-links a:hover {
    color: var(--white);
    transform: translateX(2px);
}


.footer-social {
    display: flex;
    gap: 6px;
    margin-top: 17px;
}


.footer-social a {
    width: 31px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 7px;
    color: rgba(255,255,255,.65);
    font-size: 10px;
}


.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
}


.contact-item i {
    margin-top: 2px;
    color: #8db8e8;
    font-size: 10px;
}


.contact-item span {
    color: rgba(255,255,255,.58);
    font-size: 9px;
    line-height: 1.6;
}


.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
}


.footer-bottom-inner {
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}


.footer-bottom span,
.footer-bottom a {
    color: rgba(255,255,255,.4);
    font-size: 8px;
}


/* =========================================================
   28. UTILITY
========================================================= */

.text-center {
    text-align: center;
}


.text-primary {
    color: var(--primary) !important;
}


.text-muted {
    color: var(--muted) !important;
}


.bg-white {
    background: var(--white) !important;
}


.hidden {
    display: none !important;
}


/* =========================================================
   29. FOCUS ACCESSIBILITY
========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(20,104,201,.18);
    outline-offset: 2px;
}


/* =========================================================
   30. RESPONSIVE 1100
========================================================= */

@media (max-width: 1100px) {

    .container {
        width: min(100% - 32px, 1050px);
    }

    .nav-menu {
        gap: 0;
    }

    .nav-link {
        padding: 0 8px;
    }

    .hero-inner {
        gap: 35px;
    }

    .services-grid,
    .duties-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .category-grid,
    .stats-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .download-grid {
        grid-template-columns: repeat(2,1fr);
    }

}


/* =========================================================
   31. RESPONSIVE 900
========================================================= */

@media (max-width: 900px) {

    .navbar-inner {
        position: relative;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
        border: 1px solid var(--border);
        border-top: 0;
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .nav-menu.show {
        display: flex;
    }

    .nav-link {
        min-height: 43px;
        padding: 0 13px;
    }

    .nav-actions {
        margin-left: auto;
    }

    .nav-login-btn span {
        display: none;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero-description {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-actions,
    .hero-search {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-visual {
        min-height: 350px;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .detail-layout,
    .application-layout,
    .objection-layout {
        grid-template-columns: 1fr;
    }

    .detail-sidebar,
    .application-sidebar,
    .objection-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .profile-intro {
        grid-template-columns: 330px 1fr;
        gap: 40px;
    }

    .vision-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vision-main {
        grid-row: span 2;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

}


/* =========================================================
   32. RESPONSIVE 700
========================================================= */

@media (max-width: 700px) {

    .container {
        width: calc(100% - 28px);
    }

    .topbar-left {
        display: none;
    }

    .topbar-inner {
        justify-content: center;
    }

    .navbar-inner {
        min-height: 65px;
    }

    .brand-text span {
        display: none;
    }

    .brand-logo {
        width: 39px;
        height: 39px;
    }

    .nav-search-btn {
        display: none;
    }

    .hero {
        padding: 55px 0;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-search {
        width: 100%;
    }

    .building-illustration {
        width: 290px;
    }

    .floating-badge {
        right: 0;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 20px;
    }

    .section-heading h2 {
        font-size: 23px;
    }

    .services-grid,
    .category-grid,
    .stats-grid,
    .duties-grid {
        grid-template-columns: 1fr;
    }

    .information-toolbar,
    .information-result-header {
        align-items: stretch;
        flex-direction: column;
    }

    .information-filter,
    .filter-form {
        width: 100%;
    }

    .filter-form select,
    .filter-form .btn {
        flex: 1;
    }

    .information-card {
        align-items: flex-start;
    }

    .information-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .information-bottom .btn {
        width: 100%;
    }

    .detail-row {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .detail-download-box {
        align-items: stretch;
        flex-direction: column;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .application-steps {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .application-step {
        min-height: 42px;
    }

    .step-line {
        display: none;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: auto;
    }

    .delivery-options {
        grid-template-columns: 1fr;
    }

    .tracking-form {
        flex-direction: column;
    }

    .tracking-form .btn {
        width: 100%;
    }

    .tracking-summary {
        grid-template-columns: 1fr;
    }

    .tracking-result-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .tracking-result-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .detail-sidebar,
    .application-sidebar,
    .objection-sidebar {
        display: flex;
    }

    .profile-intro {
        grid-template-columns: 1fr;
    }

    .profile-intro-visual {
        min-height: 330px;
    }

    .profile-intro-content h2 {
        font-size: 27px;
    }

    .vision-grid {
        grid-template-columns: 1fr;
    }

    .vision-main {
        grid-row: auto;
    }

    .org-children {
        grid-template-columns: 1fr;
    }

    .org-children::before {
        display: none;
    }

    .org-card {
        min-width: 0;
    }

    .profile-contact-box,
    .cta-box {
        padding: 30px 25px;
    }

    .profile-contact-visual,
    .cta-visual {
        display: none;
    }

    .download-filter-bar {
        align-items: flex-start;
        flex-direction: column;
    }

    .download-filters {
        width: 100%;
        flex-wrap: wrap;
    }

    .download-filters select {
        flex: 1;
        min-width: 130px;
    }

    .download-grid {
        grid-template-columns: 1fr;
    }

    .faq-search-box {
        align-items: stretch;
        flex-direction: column;
    }

    .faq-search {
        width: 100%;
    }

    .faq-category-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .faq-help {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .faq-help-content {
        min-width: calc(100% - 65px);
    }

    .faq-help-actions {
        width: 100%;
        margin-left: 62px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-bottom-inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 12px 0;
    }

}


/* =========================================================
   33. RESPONSIVE 480
========================================================= */

@media (max-width: 480px) {

    body {
        font-size: 13px;
    }

    .container {
        width: calc(100% - 24px);
    }

    .brand-text strong {
        font-size: 13px;
    }

    .page-header {
        padding: 27px 0;
    }

    .page-header-content h1 {
        font-size: 25px;
    }

    .page-header-icon {
        width: 57px;
        height: 57px;
        font-size: 21px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero-description {
        font-size: 12px;
    }

    .hero-visual {
        min-height: 290px;
    }

    .building-illustration {
        width: 245px;
        padding: 18px;
    }

    .building-columns {
        gap: 7px;
        padding: 0 8px;
    }

    .building-columns span {
        height: 120px;
    }

    .building-door {
        width: 58px;
        height: 65px;
        margin-top: -65px;
    }

    .floating-badge {
        right: 0;
        bottom: 10px;
        padding: 10px;
    }

    .floating-badge-icon {
        width: 31px;
        height: 31px;
    }

    .cta-actions,
    .profile-contact-actions {
        flex-direction: column;
    }

    .cta-actions .btn,
    .profile-contact-actions .btn {
        width: 100%;
    }

    .profile-building {
        width: 245px;
    }

    .profile-floating-card {
        right: 0;
    }

    .profile-highlights {
        flex-direction: column;
        gap: 8px;
    }

    .legal-item {
        align-items: flex-start;
    }

    .legal-number,
    .legal-arrow {
        display: none;
    }

    .download-search input {
        padding-right: 90px;
    }

    .download-search .btn {
        width: 36px;
        padding: 0;
        font-size: 0;
    }

    .download-search .btn i {
        margin: 0;
        font-size: 12px;
    }

    .download-filters {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .download-filters select,
    .download-filters .btn {
        width: 100%;
        min-width: 0;
    }

    .faq-question {
        padding: 11px;
    }

    .faq-question-number {
        width: 29px;
    }

    .faq-question-text {
        font-size: 10px;
    }

    .faq-answer p {
        padding-right: 12px;
        padding-left: 40px;
    }

    .faq-help-actions {
        margin-left: 0;
        flex-direction: column;
    }

    .faq-help-actions .btn {
        width: 100%;
    }

    .application-submit .btn {
        width: 100%;
    }

    .upload-area {
        padding: 20px 12px;
    }

}


/* =========================================================
   34. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }

}