:root {
    --primary: #1769ff;
    --primary-dark: #0c3eaa;
    --primary-soft: #edf4ff;
    --cyan: #16c4e8;
    --green: #19b779;
    --orange: #ffb020;
    --red: #f45b69;
    --purple: #8667e8;

    --dark: #0b1730;
    --text: #172033;
    --muted: #748094;
    --bg: #f6f9fd;
    --white: #ffffff;
    --line: #e7edf5;

    --shadow-sm: 0 8px 25px rgba(17, 53, 95, .06);
    --shadow-md: 0 18px 50px rgba(17, 53, 95, .10);
    --radius: 20px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", Arial, sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none !important;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: auto;
}

/* =========================
   NAVBAR
========================= */
.navbar-v3 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 76px;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    transition: .25s ease;
}

.navbar-v3.scrolled {
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 8px 30px rgba(10, 40, 80, .08);
}

.nav-inner {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand-v3 {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--dark);
    flex-shrink: 0;
}

.brand-v3 img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.brand-v3 strong {
    display: block;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 19px;
    line-height: 1;
    letter-spacing: -.5px;
}

.brand-v3 small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: 5px;
    white-space: nowrap;
}

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

.nav-links a {
    color: #435067;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 13px;
    border-radius: 10px;
    transition: .2s;
}

.nav-links a:hover {
    color: var(--primary);
    background: var(--primary-soft);
}

.nav-links .login-btn {
    color: #fff;
    background: var(--primary);
    padding: 11px 18px;
    box-shadow: 0 8px 20px rgba(23, 105, 255, .2);
}

.nav-links .login-btn:hover {
    color: #fff;
    background: var(--primary-dark);
}

.nav-toggle {
    display: none;
    border: 0;
    width: 43px;
    height: 43px;
    border-radius: 12px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 18px;
}

/* =========================
   HERO
========================= */
.hero-v3 {
    min-height: 720px;
    padding-top: 76px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 15%, rgba(22, 196, 232, .18), transparent 25%),
        radial-gradient(circle at 10% 90%, rgba(134, 103, 232, .10), transparent 28%),
        linear-gradient(135deg, #f7fbff 0%, #eef6ff 100%);
}

.hero-v3::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    right: -250px;
    top: 40px;
    border-radius: 50%;
    border: 80px solid rgba(23, 105, 255, .045);
}

.hero-v3::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    left: -140px;
    bottom: -100px;
    border-radius: 50%;
    background: rgba(22, 196, 232, .05);
}

.hero-grid {
    min-height: 644px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-copy {
    padding: 45px 0;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #dce9fa;
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

.hero-label i {
    color: var(--green);
}

.hero-copy h1 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(36px, 5vw, 61px);
    line-height: 1.08;
    letter-spacing: -2.3px;
    margin: 0 0 20px;
    color: var(--dark);
    font-weight: 800;
}

.hero-copy h1 span {
    color: var(--primary);
}

.hero-copy p {
    max-width: 560px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
    margin: 0 0 28px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-v3 {
    min-height: 46px;
    padding: 0 19px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    transition: .25s;
}

.btn-primary-v3 {
    color: #fff;
    background: var(--primary);
    box-shadow: 0 12px 25px rgba(23, 105, 255, .2);
}

.btn-primary-v3:hover {
    color: #fff;
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary-v3 {
    color: var(--dark);
    background: #fff;
    border: 1px solid var(--line);
}

.btn-secondary-v3:hover {
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* HERO MOCKUP */
.hero-mockup {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-main {
    width: min(500px, 100%);
    background: #fff;
    border-radius: 25px;
    padding: 22px;
    box-shadow: 0 30px 80px rgba(26, 76, 130, .17);
    transform: rotate(2deg);
    position: relative;
    z-index: 3;
}

.mockup-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.mockup-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mockup-logo img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.mockup-logo span {
    font-size: 11px;
    font-weight: 800;
    color: var(--dark);
}

.mockup-status {
    color: var(--green);
    background: #eafaf3;
    border-radius: 999px;
    padding: 6px 9px;
    font-size: 9px;
    font-weight: 700;
}

.mockup-title {
    padding: 23px 0 16px;
}

.mockup-title small {
    color: var(--muted);
    font-size: 10px;
}

.mockup-title h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    margin: 6px 0 0;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 800;
}

.mockup-search {
    display: flex;
    height: 44px;
    background: #f7f9fc;
    border: 1px solid var(--line);
    border-radius: 11px;
    overflow: hidden;
}

.mockup-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    padding: 0 13px;
    background: transparent;
    font-size: 10px;
}

.mockup-search button {
    border: 0;
    color: #fff;
    background: var(--primary);
    padding: 0 16px;
    font-size: 10px;
    font-weight: 700;
}

.mockup-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-top: 15px;
}

.mockup-card {
    padding: 13px 7px;
    text-align: center;
    border-radius: 12px;
    background: #fafcff;
    border: 1px solid var(--line);
}

.mockup-card i {
    display: block;
    font-size: 17px;
    margin-bottom: 6px;
}

.mockup-card:nth-child(1) i {
    color: var(--primary);
}

.mockup-card:nth-child(2) i {
    color: var(--green);
}

.mockup-card:nth-child(3) i {
    color: var(--orange);
}

.mockup-card span {
    font-size: 8px;
    color: #5c687a;
    font-weight: 700;
}

.float-card {
    position: absolute;
    z-index: 5;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    border-radius: 15px;
    padding: 13px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.float-card i {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
}

.float-card strong {
    display: block;
    font-size: 11px;
}

.float-card small {
    display: block;
    color: var(--muted);
    font-size: 8px;
    margin-top: 3px;
}

.float-one {
    left: -10px;
    top: 75px;
}

.float-one i {
    background: var(--green);
}

.float-two {
    right: -20px;
    bottom: 85px;
}

.float-two i {
    background: var(--primary);
}

/* =========================
   QUICK SERVICES
========================= */
.quick-wrap {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.quick-panel {
    background: #fff;
    border-radius: 22px;
    padding: 9px;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.quick-item {
    padding: 20px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-right: 1px solid var(--line);
    transition: .2s;
}

.quick-item:last-child {
    border-right: 0;
}

.quick-item:hover {
    background: #f8fbff;
    border-radius: 15px;
}

.quick-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.quick-icon.blue {
    background: #eaf2ff;
    color: #1769ff;
}

.quick-icon.green {
    background: #e9faf3;
    color: #19a86d;
}

.quick-icon.orange {
    background: #fff7e5;
    color: #e89b00;
}

.quick-icon.purple {
    background: #f2edff;
    color: #7957db;
}

.quick-item strong {
    display: block;
    font-size: 12px;
    margin-bottom: 4px;
}

.quick-item span {
    color: var(--muted);
    font-size: 9px;
    line-height: 1.4;
}

/* =========================
   SECTIONS
========================= */
.section {
    padding: 85px 0 0;
}

.section-header {
    max-width: 650px;
    margin: 0 auto 35px;
    text-align: center;
}

.section-header .eyebrow {
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.section-header h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    margin: 8px 0 10px;
    font-size: clamp(25px, 3vw, 34px);
    letter-spacing: -1px;
    font-weight: 800;
}

.section-header p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
    margin: 0;
}

/* SERVICE CARDS */
.service-grid-v3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.service-v3 {
    position: relative;
    padding: 24px 20px;
    min-height: 210px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    transition: .25s;
    overflow: hidden;
}

.service-v3::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    right: -50px;
    bottom: -55px;
    background: rgba(23, 105, 255, .04);
}

.service-v3:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: #d4e4fa;
}

.service-icon-v3 {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    font-size: 18px;
}

.c-blue {
    background: #eaf2ff;
    color: #1769ff;
}

.c-green {
    background: #e8faf2;
    color: #16a66c;
}

.c-orange {
    background: #fff6df;
    color: #e69a00;
}

.c-red {
    background: #fff0f1;
    color: #e4515f;
}

.c-purple {
    background: #f1edff;
    color: #7957dc;
}

.c-cyan {
    background: #e7faff;
    color: #079dbf;
}

.service-v3 h3 {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 800;
}

.service-v3 p {
    color: var(--muted);
    font-size: 10px;
    line-height: 1.65;
    margin: 0;
    min-height: 48px;
}

.service-v3 a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary);
    margin-top: 15px;
    font-size: 9px;
    font-weight: 800;
}

/* INFO / STATS */
.info-section {
    padding-top: 85px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.info-card {
    min-height: 270px;
    border-radius: 22px;
    padding: 35px;
    position: relative;
    overflow: hidden;
}

.info-card.blue {
    background: linear-gradient(135deg, #0b4bb5, #1769ff);
    color: #fff;
}

.info-card.light {
    background: #fff;
    border: 1px solid var(--line);
}

.info-card h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 25px;
    font-weight: 800;
    margin: 0 0 10px;
}

.info-card p {
    max-width: 480px;
    font-size: 11px;
    line-height: 1.8;
    margin: 0 0 20px;
}

.blue p {
    color: rgba(255, 255, 255, .78);
}

.light p {
    color: var(--muted);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-top: 20px;
}

.stat {
    padding: 14px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
}

.stat strong {
    display: block;
    font-size: 18px;
}

.stat span {
    font-size: 8px;
    color: rgba(255, 255, 255, .7);
}

.download-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.download-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--text);
    background: #fafcff;
    flex: 1;
    min-width: 200px;
}

.download-card i {
    width: 35px;
    height: 35px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--primary);
}

.download-card strong {
    display: block;
    font-size: 10px;
}

.download-card span {
    display: block;
    font-size: 8px;
    color: var(--muted);
    margin-top: 3px;
}

/* DYNAMIC CONTENT */

.dynamic-section {
    padding: 85px 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, .90),
            rgba(255, 255, 255, .90)),
        url('images/grb_batik.png');

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    border-radius: 0;
}



.dynamic-card {
    /* background: #fff; */
    background-image:
        linear-gradient(rgba(255, 255, 255, .80),
            rgba(255, 255, 255, .50)),
        url('images/grb_batik.png');

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

/* FOOTER */
.footer-v3 {
    background: var(--dark);
    color: #91a1b8;
    margin-top: 20px;
}

.footer-main {
    padding: 60px 0 45px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 50px;
}

.footer-v3 h3 {
    color: #fff;
    font-size: 14px;
    margin: 0 0 16px;
    font-weight: 800;
}

.footer-v3 p,
.footer-v3 li,
.footer-v3 a {
    color: #91a1b8;
    font-size: 11px;
    line-height: 1.8;
}

.footer-v3 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-v3 li {
    margin-bottom: 5px;
}

.footer-v3 a:hover {
    color: #fff;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.footer-logos img {
    max-width: 145px;
    max-height: 48px;
    background: #fff;
    border-radius: 6px;
    padding: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 17px 0;
    font-size: 10px;
    color: #66768c;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        padding: 12px 16px 18px;
        background: #fff;
        box-shadow: 0 15px 30px rgba(10, 40, 80, .1);
        flex-direction: column;
        align-items: stretch;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        display: block;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-copy {
        padding-top: 60px;
    }

    .hero-mockup {
        min-height: 430px;
    }

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

    .quick-item {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .quick-item:nth-child(odd) {
        border-right: 1px solid var(--line);
    }

    .quick-item:nth-last-child(-n+2) {
        border-bottom: 0;
    }

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

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

@media (max-width: 767px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .brand-v3 small {
        display: none;
    }

    .brand-v3 strong {
        font-size: 18px;
    }

    .hero-copy h1 {
        font-size: 37px;
        letter-spacing: -1.5px;
    }

    .hero-mockup {
        min-height: 360px;
    }

    .mockup-main {
        transform: none;
    }

    .float-one {
        left: -4px;
        top: 30px;
    }

    .float-two {
        right: -4px;
        bottom: 35px;
    }

    .quick-panel {
        grid-template-columns: 1fr;
    }

    .quick-item,
    .quick-item:nth-child(odd) {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .quick-item:last-child {
        border-bottom: 0;
    }

    .service-grid-v3 {
        grid-template-columns: 1fr;
    }

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

    .info-card {
        padding: 27px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .dynamic-card {
        padding: 18px;
    }
}

/* =========================================================
   FINAL NAVBAR FIX - V4
   Hamburger vanilla JS, no Bootstrap dependency
========================================================= */

.nav-links li {
    list-style: none !important;
}

.nav-links a,
.nav-links a:link,
.nav-links a:visited,
.nav-links a:hover,
.nav-links a:focus,
.nav-links a:active {
    text-decoration: none !important;
    border: 0 !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
    outline: none !important;
}

.nav-links a::before,
.nav-links a::after {
    display: none !important;
    content: none !important;
}

.nav-toggle {
    display: none;
    border: 0 !important;
    outline: none !important;
    cursor: pointer;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 12px;
    background: transparent;
    color: var(--primary);
    align-items: center;
    justify-content: center;
    font-size: 18px;
    position: relative;
    z-index: 1101;
}

.nav-toggle:hover,
.nav-toggle:focus {
    background: transparent;
    color: var(--primary-dark);
}

.nav-links .login-btn,
.nav-links .login-btn:link,
.nav-links .login-btn:visited,
.nav-links .login-btn:hover,
.nav-links .login-btn:focus,
.nav-links .login-btn:active {
    color: #fff !important;
    text-decoration: none !important;
    border: 0 !important;
    border-bottom: 0 !important;
}

@media (max-width: 991px) {
    .nav-toggle {
        display: flex !important;
    }

    .nav-links {
        display: flex !important;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        position: fixed;
        top: 78px;
        left: 12px;
        right: 12px;
        width: auto;
        padding: 10px;
        margin: 0;
        background: rgba(255, 255, 255, .98);
        border: 1px solid #e7edf5;
        border-radius: 18px;
        box-shadow: 0 18px 45px rgba(10, 40, 80, .14);
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        transform: translateY(-8px);
        transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
        z-index: 1100;
    }

    .nav-links.open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links li {
        width: 100%;
        margin: 0 !important;
        padding: 0 !important;
    }

    .nav-links a,
    .nav-links a:link,
    .nav-links a:visited,
    .nav-links a:hover,
    .nav-links a:focus,
    .nav-links a:active {
        display: flex !important;
        align-items: center;
        width: 100%;
        min-height: 45px;
        padding: 0 14px;
        margin: 0;
        border-radius: 11px;
        font-size: 12px;
        line-height: 1;
        text-decoration: none !important;
        border: 0 !important;
        border-bottom: 0 !important;
    }

    .nav-links a:hover,
    .nav-links a:focus {
        background: var(--primary-soft);
        color: var(--primary);
    }

    .nav-links .login-btn {
        justify-content: center;
        min-height: 46px;
        margin-top: 5px;
        color: #fff !important;
        background: var(--primary);
    }

    .nav-links .login-btn:hover,
    .nav-links .login-btn:focus {
        color: #fff !important;
        background: var(--primary-dark);
    }

    .nav-overlay {
        display: block;
        visibility: hidden;
        opacity: 0;
        position: fixed;
        inset: 0;
        background: rgba(7, 22, 45, .18);
        pointer-events: none;
        transition: opacity .2s ease, visibility .2s ease;
        z-index: 1090;
    }

    .nav-overlay.open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }
}

@media (max-width: 767px) {

    .navbar-v3,
    .nav-inner {
        height: 70px;
    }

    .nav-links {
        top: 66px;
        left: 10px;
        right: 10px;
        padding: 8px;
        border-radius: 16px;
    }

    .nav-links a,
    .nav-links a:link,
    .nav-links a:visited,
    .nav-links a:hover,
    .nav-links a:focus,
    .nav-links a:active {
        min-height: 46px;
        padding: 0 13px;
        font-size: 12px;
    }

    .nav-links .login-btn {
        min-height: 46px;
        margin-top: 4px;
    }
}


/* =========================================================
   HERO SLIDER - LEFT SIDE
========================================================= */
.hero-v3 {
    position: relative;
    overflow: hidden;
}

.hero-v3 .container {
    position: relative;
    z-index: 2;
}

.hero-layout-v3 {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(0, .85fr);
    align-items: center;
    gap: 45px;
    min-height: 575px;
}

.hero-slider-v3 {
    position: relative;
    width: 100%;
    min-height: 430px;
    border-radius: 28px;
    overflow: hidden;
    background: #eaf3ff;
    box-shadow: 0 22px 55px rgba(20, 65, 120, .16);
}

.hero-slide-v3 {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.035);
    transition: opacity .65s ease, transform 1s ease, visibility .65s ease;
}

.hero-slide-v3.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.hero-slide-v3 img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    display: block;
}


.hero-slider-nav-v3 {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 5;
    pointer-events: none;
}

.hero-slider-arrow-v3 {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;
    background: rgba(255, 255, 255, .88);
    color: #17345f;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: .2s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

.hero-slider-arrow-v3:hover {
    transform: scale(1.07);
    background: #fff;
}

.hero-slider-dots-v3 {
    position: absolute;
    bottom: 22px;
    right: 30px;
    display: flex;
    gap: 7px;
    z-index: 6;
}

.hero-slider-dot-v3 {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .55);
    cursor: pointer;
    transition: .25s ease;
}

.hero-slider-dot-v3.active {
    width: 25px;
    border-radius: 10px;
    background: #fff;
}

.hero-content-v3 {
    position: relative;
    z-index: 3;
}

@media (max-width: 991px) {
    .hero-layout-v3 {
        grid-template-columns: 1fr;
        gap: 35px;
        min-height: auto;
    }

    .hero-slider-v3 {
        width: 100%;
        height: 450px;
    }

    .hero-content-v3 {
        max-width: 100%;
        text-align: center;
    }

    .hero-content-v3>p {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hero-v3 {
        padding-top: 30px;
        padding-bottom: 40px;
    }

    .hero-layout-v3 {
        grid-template-columns: 1fr;
        gap: 30px;
        min-height: auto;
    }

    .hero-slider-v3 {
        width: 100%;
        height: 320px;
        border-radius: 18px;
    }

    .hero-content-v3 {
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .hero-content-v3 h1 {
        font-size: 34px;
        line-height: 1.12;
        letter-spacing: -1.2px;
    }

    .hero-content-v3>p {
        font-size: 13px;
        line-height: 1.7;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 40px;
    }

    .btn-primary-v3,
    .btn-secondary-v3 {
        width: 100%;
    }
}

/* =========================================================
   DAFTAR NPWPD DROPDOWN
========================================================= */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    cursor: pointer;
}

.nav-dropdown-toggle .dropdown-chevron {
    font-size: 9px;
    transition: transform .2s ease;
}

.nav-dropdown:hover .dropdown-chevron,
.nav-dropdown.open .dropdown-chevron {
    transform: rotate(180deg);
}

.nav-submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-5px);

    min-width: 205px;
    padding: 8px;
    margin: 0;

    list-style: none !important;
    background: rgba(255, 255, 255, .98);
    border: 1px solid #e7edf5;
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(10, 40, 80, .14);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity .2s ease,
        transform .2s ease,
        visibility .2s ease;

    z-index: 1200;
}

.nav-submenu::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    width: 11px;
    height: 11px;
    background: #fff;
    border-left: 1px solid #e7edf5;
    border-top: 1px solid #e7edf5;
    transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown.open .nav-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-submenu li {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.nav-submenu a,
.nav-submenu a:link,
.nav-submenu a:visited,
.nav-submenu a:hover,
.nav-submenu a:focus,
.nav-submenu a:active {
    display: flex !important;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 42px;
    padding: 0 12px !important;
    border-radius: 9px !important;
    color: #435067 !important;
    background: transparent !important;
    text-decoration: none !important;
    border: 0 !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.nav-submenu a:hover,
.nav-submenu a:focus {
    color: var(--primary) !important;
    background: var(--primary-soft) !important;
}

.nav-submenu a i {
    width: 18px;
    text-align: center;
    color: var(--primary);
}

@media (max-width: 991px) {
    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .nav-submenu {
        position: static;
        width: 100%;
        min-width: 0;
        padding: 4px 0 4px 10px;
        margin: 2px 0 4px;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
        background: #f7faff;
        border: 0;
        border-radius: 10px;
        box-shadow: none;
    }

    .nav-dropdown.open .nav-submenu {
        display: block;
    }

    .nav-submenu::before {
        display: none;
    }

    .nav-submenu a {
        min-height: 42px;
        padding: 0 12px !important;
    }
}


@media (max-width: 991px) {
    .nav-dropdown:hover .nav-submenu {
        display: none;
    }

    .nav-dropdown.open:hover .nav-submenu {
        display: block;
    }

    .nav-dropdown.open .nav-dropdown-toggle {
        color: var(--primary) !important;
        background: var(--primary-soft) !important;
    }
}


@media (max-width: 991px) {
    .nav-dropdown:hover .nav-submenu {
        display: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none !important;
    }

    .nav-dropdown.open .nav-submenu {
        display: block !important;
    }

    .nav-dropdown-toggle {
        position: relative;
        z-index: 2;
    }
}



.register-card {
    width: 100%;
    max-width: 1100px;
    margin: 20px auto;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.register-header {
    padding: 25px 30px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
}

.register-header h2 {
    margin: 0 0 8px;
    font-size: 24px;
}

.register-header p {
    margin: 0;
    opacity: 0.9;
}

.register-body {
    padding: 30px;
}

.register-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 1fr);
    gap: 30px;
}

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

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

.modern-input {
    width: 100%;
    min-height: 46px;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #fff;
    font-size: 15px;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.modern-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}


/* UPLOAD AREA */

.upload-area {
    width: 100%;
    min-height: 100px;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.2s;
    box-sizing: border-box;
    color: #64748b;
}

.upload-area:hover {
    border-color: #2563eb;
    background: #f8fafc;
}

.upload-area i {
    font-size: 28px;
    color: #2563eb;
}

.upload-area input[type="file"] {
    display: none;
}


/* CAPTCHA */

.captcha-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.captcha-box img {
    width: 150px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

.captcha-input {
    flex: 1;
}

.captcha-input small {
    display: block;
    margin-top: 5px;
}


/* BUTTON */

.btn-register {
    min-height: 48px;
    border: none;
    border-radius: 10px;
    background: #2563eb;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.btn-register:hover {
    background: #1d4ed8;
}


/* INFO */

.register-info {
    display: flex;
    align-items: stretch;
}

.info-box {
    width: 100%;
    padding: 30px;
    border-radius: 15px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    box-sizing: border-box;
}

.info-box>i {
    font-size: 40px;
    color: #2563eb;
    margin-bottom: 15px;
}

.info-box h4 {
    margin: 0 0 15px;
}


/* TABLET & MOBILE */

@media (max-width: 768px) {

    .register-card {
        margin: 10px;
        width: calc(100% - 20px);
        border-radius: 12px;
    }

    .register-header {
        padding: 20px;
    }

    .register-header h2 {
        font-size: 20px;
    }

    .register-body {
        padding: 20px;
    }

    .register-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .register-info {
        order: 2;
    }

    .register-form {
        order: 1;
    }

    .captcha-box {
        flex-direction: column;
    }

    .captcha-box img {
        width: 100%;
        max-width: 250px;
    }

    .captcha-input {
        width: 100%;
    }

}


/* HP KECIL */

@media (max-width: 480px) {

    .register-card {
        margin: 0;
        width: 100%;
        border-radius: 0;
    }

    .register-header {
        padding: 18px;
    }

    .register-body {
        padding: 15px;
    }

    .register-header h2 {
        font-size: 18px;
    }

}


/* =========================================================
FIX DROPDOWN NPWPD MOBILE
========================================================= */

@media (max-width: 991px) {

    .nav-dropdown {
        position: relative;
        width: 100%;
    }

    .nav-dropdown>.nav-dropdown-toggle {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        cursor: pointer;
        user-select: none;
    }

    .nav-dropdown>.nav-submenu {
        display: none !important;

        position: static !important;
        width: 100%;

        margin: 4px 0 6px !important;
        padding: 5px 0 5px 12px !important;

        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;

        background: #f5f8fd !important;
        border-radius: 10px;
        box-shadow: none !important;
    }

    /* Semua dropdown yang punya .open akan terbuka */
    .nav-dropdown.open>.nav-submenu {
        display: block !important;
    }

    .nav-dropdown>.nav-submenu>li {
        display: block !important;
        width: 100%;
    }

    .nav-dropdown>.nav-submenu>li>a {
        display: flex !important;
        align-items: center;

        width: 100%;
        min-height: 44px;

        padding: 0 12px !important;

        color: #435067 !important;
        background: transparent !important;
    }

    .nav-dropdown>.nav-submenu>li>a:hover {
        color: var(--primary) !important;
        background: var(--primary-soft) !important;
    }

    .nav-dropdown .dropdown-chevron {
        transition: transform .25s ease;
    }

    .nav-dropdown.open .dropdown-chevron {
        transform: rotate(180deg);
    }

}

.service-v3 {
    position: relative;
    overflow: hidden;
}

.service-image-v3 {
    width: 100%;
    height: 150px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
}

.service-image-v3 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform .3s ease;
}

.service-v3:hover .service-image-v3 img {
    transform: scale(1.04);
}


/* loginnn */
/* Container */
.login-card {
    width: 360px;
    margin: 40px auto;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
    overflow: hidden;
}

/* Header */
.login-header {
    padding: 20px;
    text-align: center;
    background: #0d6efd;
    color: #fff;
}

.login-header h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

.login-header p {
    margin-top: 6px;
    font-size: 13px;
    opacity: .9;
}

.card-header2 {
    padding: 20px;
    text-align: center;
    background: #2a904c;
    color: #fff;
}

.card-header2 h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

.card-header2 p {
    margin-top: 6px;
    font-size: 13px;
    opacity: .9;
}

/* Body */
.login-body {
    padding: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

/* Input */
.modern-input {
    width: 100%;
    height: 42px;
    padding: 0 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    transition: .3s;
    box-sizing: border-box;
}

.modern-input:focus {
    border-color: #0d6efd;
    outline: none;
    box-shadow: 0 0 0 .15rem rgba(13, 110, 253, .2);
}

/* Captcha */
.captcha-box {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 18px;
}

.captcha-box img {
    height: 45px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 18px;
}

.captcha-input {
    flex: 1;
}

.captcha-input small {
    display: block;
    margin-top: 4px;
}

.captcha-input a {
    text-decoration: none;
    font-size: 12px;
}

/* Tombol Login */
.btn-login {
    width: 100%;
    height: 42px;
    border: none;
    border-radius: 25px;
    background: #0d6efd;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.btn-login:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(13, 110, 253, .3);
}

.btn-login2 {
    width: 100%;
    height: 42px;
    border: none;
    border-radius: 25px;
    background: #238B45;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.btn-login2:hover {
    background: #1B7339;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(13, 110, 253, .3);
}

/* Link lupa password */
.text-right {
    text-align: right;
}

.text-right a {
    font-size: 13px;
    text-decoration: none;
}



/* loginn */


/* register */

.modern-register {
    padding: 40px 0;
}

.modern-register .register-card {
    max-width: 850px;
    margin: auto;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}


/* HEADER */
.modern-register .register-header {
    background: #ffffff;
    color: #fff;
    text-align: center;
    padding: 25px;
}

.modern-register .register-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.modern-register .register-header p {
    margin: 8px 0 0;
    font-size: 14px;
}



/* TAB */
.modern-register .nav-tabs {
    border: none;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}


.modern-register .nav-tabs li a {
    border: none;
    border-radius: 30px;
    padding: 10px 30px;
    color: #555;
    font-weight: 600;
}


.modern-register .nav-tabs li.active a {
    background: #0d6efd;
    color: white;
}



/* INPUT */
.modern-register .form-control {

    height: 45px;
    border-radius: 12px;
    border: 1px solid #ddd;
    padding: 0 15px;

    transition: .3s;
}


.modern-register .form-control:focus {

    border-color: #0d6efd;

    box-shadow:
        0 0 0 .2rem rgba(13, 110, 253, .15);
}



/* JUDUL */
.modern-register h4 {

    color: #333;
    font-weight: 700;

}


/* CAPTCHA */
.modern-register img {

    border-radius: 10px;
    border: 1px solid #ddd;

}


/* BUTTON */
.modern-register .btn-info {

    width: 200px;
    height: 45px;

    border: none;
    border-radius: 30px;

    background: #0d6efd;

    font-weight: 600;
    color: white;

    transition: .3s;
}


.modern-register .btn-info:hover {

    background: #0b5ed7;

    transform: translateY(-2px);

    box-shadow:
        0 8px 15px rgba(13, 110, 253, .3);
}


/* NOTE */
.modern-register h5 {

    font-size: 13px;
    color: #777;
}

/* register */


/* register */
.modern-register {
    min-height: 100vh;
    padding: 30px 20px;
    box-sizing: border-box;
}

.modern-register *,
.modern-register *::before,
.modern-register *::after {
    box-sizing: border-box;
}

.register-shell {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(24, 55, 90, .13);
}

/* =========================
   LEFT SLIDER / INFO PANEL
========================= */
.register-side {
    position: relative;
    min-height: 760px;
    padding: 38px 30px;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(145deg, #0879d1 0%, #0757a8 55%, #063c7d 100%);
}

.register-side::before,
.register-side::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
}

.register-side::before {
    width: 260px;
    height: 260px;
    top: -100px;
    right: -110px;
}

.register-side::after {
    width: 220px;
    height: 220px;
    bottom: -90px;
    left: -100px;
}

.side-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.brand-badge {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .25);
    font-size: 24px;
    font-weight: 700;
}

.register-side h1 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 700;
}

.register-side .side-desc {
    margin: 0;
    color: rgba(255, 255, 255, .84);
    line-height: 1.7;
    font-size: 14px;
}

.side-slider {
    position: relative;
    margin-top: 45px;
    min-height: 250px;
}

.side-slide {
    display: none;
    animation: sideFade .5s ease;
}

.side-slide.active {
    display: block;
}

@keyframes sideFade {
    from {
        opacity: 0;
        transform: translateX(10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.side-icon {
    width: 76px;
    height: 76px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, .13);
    font-size: 34px;
}

.side-slide h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 20px;
}

.side-slide p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    line-height: 1.7;
    font-size: 14px;
}

.side-dots {
    display: flex;
    gap: 7px;
    margin-top: auto;
    padding-top: 30px;
}

.side-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    cursor: pointer;
    transition: .25s;
}

.side-dot.active {
    width: 24px;
    border-radius: 10px;
    background: #fff;
}

/* =========================
   RIGHT FORM PANEL
========================= */
.register-main {
    min-width: 0;
    padding: 34px 38px 40px;
    background: #fff;
}

.register-header {
    margin-bottom: 26px;
}

.register-header h2 {
    margin: 0 0 7px;
    color: #172b4d;
    font-size: 28px;
    font-weight: 700;
}

.register-header p {
    margin: 0;
    color: #718096;
    font-size: 14px;
}

/* =========================
   MODERN TABS
========================= */
.modern-tabs {
    display: flex;
    gap: 8px;
    padding: 6px;
    margin-bottom: 30px;
    border-radius: 14px;
    background: #f1f5f9;
}

.modern-tab {
    flex: 1;
    border: 0;
    padding: 13px 16px;
    border-radius: 10px;
    background: transparent;
    color: #64748b;
    font-weight: 600;
    cursor: pointer;
    transition: .25s;
}

.modern-tab:hover {
    color: #0757a8;
}

.modern-tab.active {
    color: #0757a8;
    background: #fff;
    box-shadow: 0 4px 14px rgba(15, 23, 42, .08);
}

.modern-tab-panel {
    display: none;
}

.modern-tab-panel.active {
    display: block;
    animation: panelFade .3s ease;
}

@keyframes panelFade {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.form-title-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf4ff;
    color: #0879d1;
    font-weight: 700;
}

.form-title h3 {
    margin: 0;
    color: #172b4d;
    font-size: 19px;
}

.form-title p {
    margin: 3px 0 0;
    color: #94a3b8;
    font-size: 12px;
}

/* =========================
   FORM
========================= */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 20px;
}

.form-group {
    min-width: 0;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    margin-bottom: 7px;
    color: #334155;
    font-size: 13px;
    font-weight: 600;
}

.modern-register .form-control {
    width: 100%;
    height: 45px;
    padding: 10px 13px;
    border: 1px solid #dbe3ec;
    border-radius: 10px;
    background: #fff;
    color: #334155;
    font-size: 14px;
    box-shadow: none;
    transition: .2s;
}

.modern-register textarea.form-control {
    height: 90px;
    resize: vertical;
}

.modern-register .form-control:focus {
    border-color: #1689df;
    outline: none;
    box-shadow: 0 0 0 3px rgba(22, 137, 223, .11);
}

.modern-register select.form-control {
    cursor: pointer;
}

.file-box {
    padding: 10px;
    border: 1px dashed #b8c7d9;
    border-radius: 10px;
    background: #f8fafc;
}

.file-box .form-control {
    height: auto;
    border: 0;
    padding: 4px;
    background: transparent;
}

/* =========================
   CAPTCHA + ACTION
========================= */
.register-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #edf1f5;
}

.captcha-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.captcha-modern img {
    width: 150px;
    height: 45px;
    object-fit: cover;
    border-radius: 9px;
    border: 1px solid #dbe3ec;
    background: #f8fafc;
    flex-shrink: 0;
}

.captcha-modern>div {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.captcha-modern .form-control {
    width: 220px;
    max-width: 220px;
}

.captcha-modern #change_captcha2 {
    white-space: nowrap;
    margin-top: 0 !important;
}

.modern-register .btn-register {
    min-width: 135px;
    height: 45px;
    padding: 0 24px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #0879d1, #0757a8);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 7px 18px rgba(7, 87, 168, .22);
    cursor: pointer;
    transition: .2s;
    margin-top: 20px;
}

.modern-register .btn-register:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(7, 87, 168, .28);
}

.modern-register .btn-register:active {
    transform: translateY(0);
}

.badge-required {
    color: #ef4444;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .register-shell {
        grid-template-columns: 240px minmax(0, 1fr);
    }

    .register-side {
        padding: 30px 22px;
    }

    .register-main {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .modern-register {
        padding: 15px 10px;
    }

    .register-shell {
        display: block;
        border-radius: 16px;
    }

    .register-side {
        min-height: auto;
        padding: 25px 22px;
    }

    .register-side h1 {
        font-size: 23px;
    }

    .side-slider {
        min-height: 160px;
        margin-top: 25px;
    }

    .side-dots {
        margin-top: 15px;
        padding-top: 15px;
    }

    .register-main {
        padding: 25px 18px 30px;
    }

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

    .form-group.full {
        grid-column: auto;
    }

    .register-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .captcha-modern {
        align-items: stretch;
        flex-direction: column;
    }

    .captcha-modern img,
    .captcha-modern .form-control {
        width: 100%;
        max-width: none;
    }


}

@media (max-width: 480px) {
    .modern-tabs {
        flex-direction: column;
    }

    .modern-tab {
        width: 100%;
    }

    .register-header h2 {
        font-size: 23px;
    }
}

/* register */

/* =========================================
   MODERN SELECT
========================================= */

select.modern-input {
    width: 100%;
    height: 46px;
    padding: 0 42px 0 14px;

    border: 1px solid #dbe3ec;
    border-radius: 10px;

    background-color: #ffffff;

    color: #334155;
    font-size: 14px;
    font-family: inherit;

    cursor: pointer;

    /* Hilangkan style bawaan browser */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    /* Icon panah custom */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 17px 17px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background-color .2s ease;
}


/* HOVER */

select.modern-input:hover {
    border-color: #b8c7d9;
}


/* FOCUS */

select.modern-input:focus {
    outline: none;

    border-color: #0879d1;

    box-shadow:
        0 0 0 3px rgba(8, 121, 209, .10);
}


/* OPTION */

select.modern-input option {
    padding: 10px;
    background: #ffffff;
    color: #334155;
}


/* OPTION PERTAMA / PLACEHOLDER */

select.modern-input option[value=""] {
    color: #94a3b8;
}

/* =========================================
   HERO SLIDER
========================================= */

.hero-slider-v3 {
    position: relative;
    width: 100%;
    height: 430px;
    overflow: hidden;
    border-radius: 0 0 24px 24px;
    background: #eaf2fb;
}


/* =========================================
   SEMUA SLIDE
========================================= */

.hero-slide-v3 {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;

    z-index: 1;
}


/* HANYA SLIDE AKTIF YANG TAMPIL */

.hero-slide-v3.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}


/* =========================================
   GAMBAR
========================================= */

.hero-slide-v3>img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/* =========================================
   GRADIENT OVERLAY
========================================= */

.hero-slide-v3::after {
    content: "";

    position: absolute;

    inset: 0;

    /* background:
        linear-gradient(
            to top,
            rgba(15, 35, 65, 0.82) 0%,
            rgba(15, 35, 65, 0.45) 45%,
            rgba(15, 35, 65, 0.05) 100%
        ); */

    z-index: 2;

    pointer-events: none;
}


/* =========================================
   BUTTON
========================================= */

.hero-slide-btn-v3 {

    display: inline-flex !important;

    width: auto !important;

    max-width: max-content !important;

    align-items: center;

    gap: 7px;

    margin-bottom: -30px;

    padding: 9px 15px;

    border: none;

    border-radius: 7px;

    background: #0d6efd;

    color: #ffffff !important;

    font-size: 13px;

    font-weight: 600;

    line-height: 1;

    cursor: pointer;

    text-decoration: none;

    transition: all 0.25s ease;
}

.hero-slide-v3>img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    display: block;
}

.hero-slide-btn-v3:hover {

    background: #0b5ed7;

    color: #ffffff !important;

    transform: translateY(-2px);

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.2);
}


.hero-slide-btn-v3 i {

    font-size: 11px;

    transition: transform 0.25s ease;
}


.hero-slide-btn-v3:hover i {

    transform: translateX(3px);
}


/* =========================================
   NAVIGASI
========================================= */

.hero-slider-nav-v3 {

    position: absolute;

    top: 50%;

    left: 0;
    right: 0;

    transform: translateY(-50%);

    z-index: 5;

    display: flex;

    justify-content: space-between;

    padding: 0 20px;

    pointer-events: none;
}


.hero-slider-arrow-v3 {

    width: 40px;

    height: 40px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.9);

    color: #17365d;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    pointer-events: auto;

    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.12);

    transition: all 0.25s ease;
}


.hero-slider-arrow-v3:hover {

    background: #ffffff;

    transform: scale(1.05);
}


/* =========================================
   DOTS
========================================= */

.hero-slider-dots-v3 {

    position: absolute;

    bottom: 18px;

    right: 25px;

    z-index: 6;

    display: flex;

    align-items: center;

    gap: 7px;
}


.hero-slider-dot-v3 {

    width: 7px;

    height: 7px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.6);

    cursor: pointer;

    transition: all 0.3s ease;
}


.hero-slider-dot-v3.active {

    width: 22px;

    border-radius: 10px;

    background: #ffffff;
}

/* =========================================
   SLIDER
========================================= */

.hero-slider-v3 {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    border-radius: 26px;
}


/* =========================================
   SLIDE DESKTOP
========================================= */

.hero-slide-v3 {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;

    transition: opacity .5s ease;
}

.hero-slide-v3.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}


/* =========================================
   GAMBAR
========================================= */

.hero-slide-v3 img {
    width: 100%;
    height: 100%;

    display: block;

    /* object-fit: cover; */
}


/* =========================================
   OVERLAY DESKTOP
========================================= */

.hero-slide-overlay-v3 {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 3;

    padding: 70px 30px 35px;

    color: #fff;

    background: linear-gradient(to top,
            rgba(10, 35, 70, .78),
            rgba(10, 35, 70, .35),
            transparent);
}


/* =========================================
   JUDUL 1
========================================= */

.hero-slide-overlay-v3 h3 {
    margin: 0 0 6px;

    font-size: 28px;
    line-height: 1.2;

    font-weight: 700;

    color: #fff;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, .35);
}


/* =========================================
   JUDUL 2
========================================= */

.hero-slide-overlay-v3 h4 {
    margin: 0 0 8px;

    font-size: 17px;
    line-height: 1.3;

    font-weight: 600;

    color: #fff;

    text-shadow:
        0 2px 6px rgba(0, 0, 0, .3);
}


/* =========================================
   ISI
========================================= */

.hero-slide-overlay-v3 p {
    margin: 0 0 15px;

    max-width: 520px;

    font-size: 13px;
    line-height: 1.5;

    color: rgba(255, 255, 255, .92);

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 576px) {

    /* =====================================
       SLIDER MOBILE
    ====================================== */



    /* JUDUL */
    .hero-slide-overlay-v3 h3 {
        margin: 0 0 2px;

        font-size: 13px;
        line-height: 1.25;

        font-weight: 800;

        color: #172b4d;

        /* BOLEH TURUN BARIS */
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;

        overflow: hidden;

        /* JANGAN PAKAI nowrap */
        white-space: normal;

        overflow-wrap: break-word;
    }


    /* SUB JUDUL */
    .hero-slide-overlay-v3 h4 {
        margin: 0 0 3px;

        font-size: 10px;
        line-height: 1.3;

        font-weight: 700;

        color: var(--primary);

        /* BOLEH TURUN BARIS */
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;

        overflow: hidden;

        white-space: normal;

        overflow-wrap: break-word;
    }


    /* DESKRIPSI */
    .hero-slide-overlay-v3 p {
        margin: 0 0 7px;

        font-size: 9px;
        line-height: 1.3;

        color: var(--muted);

        /* BOLEH TURUN BARIS */
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;

        overflow: hidden;

        white-space: normal;

        overflow-wrap: break-word;
    }



    .hero-slider-v3 {
        width: 100%;
        height: auto !important;

        min-height: 0 !important;

        overflow: visible !important;

        border-radius: 16px;

        background: transparent;
    }


    /* =====================================
       SLIDE AKTIF
    ====================================== */

    .hero-slide-v3 {
        position: absolute;

        inset: 0;

        width: 100%;
        height: auto;

        display: none;

        opacity: 0;
        visibility: hidden;
    }


    .hero-slide-v3.active {
        position: relative;

        display: flex;

        flex-direction: column;

        width: 100%;
        height: auto;

        opacity: 1;
        visibility: visible;

        z-index: 2;
    }


    /* =====================================
       GAMBAR
       TIDAK CROP
       TINGGI MENGIKUTI RASIO ASLI
    ====================================== */

    .hero-slide-v3>img {

        position: relative;

        width: 100%;

        height: auto !important;

        min-height: 0 !important;

        max-height: none !important;

        display: block;

        object-fit: contain;
        margin-top: 45px;
        border-radius:
            16px 16px 0 0;
    }


    /* =====================================
       TEXT CARD
       LANGSUNG DI BAWAH GAMBAR
    ====================================== */

    .hero-slide-overlay-v3 {

        position: relative !important;

        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;

        width: 100%;


        min-height: 108px;

        max-height: 157px;

        box-sizing: border-box;

        padding:
            10px 14px;

        margin: 0;

        background: #fff;

        color: var(--dark);

        border-radius:
            0 0 14px 14px;

        box-shadow:
            0 6px 16px rgba(26, 76, 130, .08);

        overflow: hidden;
    }




    /* =====================================
       BUTTON
    ====================================== */

    .hero-slide-btn-v3 {

        display: inline-flex !important;

        width: fit-content !important;

        min-height: 25px;

        height: 25px;

        padding:
            0 9px;

        margin: 0;

        border-radius: 6px;

        gap: 4px;

        font-size: 8px;

        line-height: 1;

        font-weight: 700;
    }


    /* =====================================
       ARROW
       TETAP DI TENGAH GAMBAR
    ====================================== */

    .hero-slider-nav-v3 {

        position: absolute;

        top: 50%;

        left: 0;
        right: 0;

        transform:
            translateY(-50%);

        z-index: 10;

        padding:
            0 9px;

        pointer-events: none;
    }


    .hero-slider-arrow-v3 {

        width: 34px;

        height: 34px;

        pointer-events: auto;
    }


    /* =====================================
       DOTS
    ====================================== */

    .hero-slider-dots-v3 {

        position: relative;

        left: auto;
        right: auto;
        bottom: auto;

        margin-top: 10px;

        display: flex;

        justify-content: center;
    }

}



.sipada-service-page {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px 60px;

    /* Background halaman */
    background: linear-gradient(180deg,
            #f4f8fc 0%,
            #f8fafc 100%);

    border-radius: 24px;
}

/* HEADER */

.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.06);
}

/* ICON */

.service-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;

    background: linear-gradient(135deg,
            #eaf3ff,
            #dbeafe);

    color: #0d6efd;
    font-size: 28px;
}

/* DOCUMENT */

.document-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.document-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;

    background: rgba(255, 255, 255, 0.96);

    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 14px;

    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.035);

    transition: all 0.25s ease;
}

.document-card:hover {
    transform: translateY(-2px);

    border-color: #bfdbfe;

    box-shadow:
        0 10px 25px rgba(13, 110, 253, 0.10);
}

/* NUMBER */

.document-number {
    width: 45px;
    height: 45px;
    min-width: 45px;

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

    border-radius: 12px;

    background: #eff6ff;
    color: #0d6efd;

    font-size: 14px;
    font-weight: 700;
}

/* TEXT */

.document-info {
    flex: 1;
    min-width: 0;
}

.document-info h4 {
    margin: 0 0 5px;

    font-size: 16px;
    font-weight: 600;

    color: #1e293b;
}

.document-info p {
    margin: 0;

    font-size: 13px;
    color: #64748b;
}

/* BUTTON */

.btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-width: 115px;
    padding: 10px 16px;

    border-radius: 9px;

    background: #0d6efd;
    color: #fff !important;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none !important;

    transition: all 0.2s ease;
}

.btn-download:hover {
    background: #0b5ed7;
    color: #fff !important;
    transform: translateY(-1px);
}


/* MOBILE */

@media (max-width: 576px) {

    .sipada-service-page {
        padding: 15px 10px 40px;
        border-radius: 16px;
    }

    .service-header {
        padding: 18px;
        gap: 14px;
        border-radius: 14px;
    }

    .service-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 21px;
    }

    .service-header h2 {
        font-size: 18px;
    }

    .service-header p {
        font-size: 12px;
    }

    .document-card {
        display: grid;
        grid-template-columns: 42px 1fr;
        gap: 12px;
        padding: 14px;
    }

    .document-info h4 {
        font-size: 14px;
    }

    .document-info p {
        font-size: 11px;
    }

    .btn-download {
        grid-column: 1 / -1;
        width: 100%;
    }

}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.btn-primary-v3,
.btn-secondary-v3 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 12px 22px;
    min-height: 46px;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none !important;

    transition: all 0.25s ease;
    cursor: pointer;
}

/* Tombol utama */
.btn-primary-v3 {
    background: #0d6efd;
    color: #ffffff !important;
    border: 1px solid #0d6efd;
}

.btn-primary-v3:hover {
    background: #0b5ed7;
    border-color: #0b5ed7;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(13, 110, 253, 0.25);
}

/* Tombol kedua */
.btn-secondary-v3 {
    background: #ffffff;
    color: #0d6efd !important;
    border: 1px solid #0d6efd;
}

.btn-secondary-v3:hover {
    background: #0d6efd;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(13, 110, 253, 0.18);
}

/* Icon */
.hero-actions i {
    font-size: 15px;
}


/* MOBILE */
@media (max-width: 576px) {

    .hero-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .btn-primary-v3,
    .btn-secondary-v3 {
        width: 100%;
        padding: 11px 18px;
    }

}

.login-footer-link {
    margin-top: 20px;

    text-align: center;
}

.login-footer-link a {
    color: #6b7280;

    font-size: 13px;

    text-decoration: none;

    transition: color 0.2s ease;
}

.login-footer-link a:hover {
    color: #0d6efd;
}

.login-footer-link i {
    margin-right: 5px;
}


/* ================================================= */
/* TAX SUMMARY CARD                                  */
/* ================================================= */

.tax-summary-card {
    width: 100%;
    max-width: 1100px;
    margin: 30px auto;
    padding: 35px;
    box-sizing: border-box;

    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #e5e7eb;
    border-radius: 20px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.08);

    color: #1f2937;
}


/* ================================================= */
/* HEADER                                            */
/* ================================================= */

.tax-summary-card .tax-summary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 25px;
    margin-bottom: 25px;

    border-bottom: 1px solid #e5e7eb;
}

.tax-summary-card .tax-summary-header h2 {
    margin: 0;
    font-size: 26px;
    line-height: 1.3;
    font-weight: 700;
    color: #172033;
}

.tax-summary-card .tax-summary-header p {
    margin: 7px 0 0;
    font-size: 14px;
    color: #6b7280;
}


/* ================================================= */
/* STATUS                                            */
/* ================================================= */

.tax-summary-card .tax-status-paid {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 18px;

    background: #e8f7ee;
    color: #198754;

    border-radius: 50px;

    font-size: 13px;
    font-weight: 700;
}


/* ================================================= */
/* IDENTITAS                                         */
/* ================================================= */

.tax-summary-card .tax-identity-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;

    margin-bottom: 25px;
}

.tax-summary-card .tax-identity-item {
    padding: 20px;

    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.tax-summary-card .tax-identity-item span {
    display: block;

    margin-bottom: 7px;

    font-size: 13px;
    color: #6b7280;
}

.tax-summary-card .tax-identity-item strong {
    display: block;

    font-size: 16px;
    font-weight: 600;
    color: #172033;
}


/* ================================================= */
/* RINGKASAN NOMINAL                                 */
/* ================================================= */

.tax-summary-card .tax-amount-summary {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 15px;

    margin-bottom: 35px;
}

.tax-summary-card .tax-amount-main,
.tax-summary-card .tax-amount-item {
    padding: 25px;

    border-radius: 14px;
}

.tax-summary-card .tax-amount-main {
    background: #f0f7ff;
    border: 1px solid #dbeafe;
}

.tax-summary-card .tax-amount-item {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
}

.tax-summary-card .tax-amount-main span,
.tax-summary-card .tax-amount-item span {
    display: block;

    margin-bottom: 8px;

    font-size: 13px;
    color: #6b7280;
}

.tax-summary-card .tax-amount-main strong {
    display: block;

    font-size: 28px;
    font-weight: 700;
    color: #172033;
}

.tax-summary-card .tax-amount-item strong {
    display: block;

    font-size: 20px;
    font-weight: 700;
    color: #172033;
}


/* ================================================= */
/* DETAIL PAJAK                                      */
/* ================================================= */

.tax-summary-card .tax-detail-section {
    margin-bottom: 30px;
}

.tax-summary-card .tax-detail-section h3 {
    margin: 0 0 15px;

    font-size: 18px;
    font-weight: 700;
    color: #172033;
}

.tax-summary-card .tax-detail-list {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.tax-summary-card .tax-detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 55px;
    padding: 0 20px;

    border-bottom: 1px solid #e5e7eb;
}

.tax-summary-card .tax-detail-row:last-child {
    border-bottom: none;
}

.tax-summary-card .tax-detail-row span {
    font-size: 14px;
    color: #6b7280;
}

.tax-summary-card .tax-detail-row strong {
    font-size: 14px;
    font-weight: 600;
    color: #172033;
    text-align: right;
}


/* ================================================= */
/* TOTAL PEMBAYARAN                                  */
/* ================================================= */

.tax-summary-card .tax-payment-total {
    padding: 20px;

    background: #f8fafc;

    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.tax-summary-card .tax-payment-total>div {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 10px 0;
}

.tax-summary-card .tax-payment-total span {
    font-size: 14px;
    color: #6b7280;
}

.tax-summary-card .tax-payment-total strong {
    font-size: 15px;
    color: #172033;
}

.tax-summary-card .tax-payment-total .tax-total-final {
    margin-top: 10px;
    padding-top: 18px;

    border-top: 1px solid #d1d5db;
}

.tax-summary-card .tax-total-final span {
    font-size: 16px;
    font-weight: 700;
    color: #172033;
}

.tax-summary-card .tax-total-final strong {
    font-size: 22px;
    font-weight: 700;
    color: #172033;
}


/* ================================================= */
/* FOOTER                                            */
/* ================================================= */

.tax-summary-card .tax-summary-footer {
    display: flex;
    justify-content: flex-end;

    margin-top: 25px;
}

.tax-summary-card .tax-print-button {
    padding: 12px 22px;

    border: none;
    border-radius: 10px;

    background: #172033;
    color: #ffffff;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.2s ease;
}

.tax-summary-card .tax-print-button:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}


/* ================================================= */
/* MOBILE                                            */
/* ================================================= */

@media (max-width: 768px) {

    .tax-summary-card {
        padding: 22px;
        margin: 20px auto;
        border-radius: 16px;
    }

    .tax-summary-card .tax-summary-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .tax-summary-card .tax-identity-box {
        grid-template-columns: 1fr;
    }

    .tax-summary-card .tax-amount-summary {
        grid-template-columns: 1fr;
    }

    .tax-summary-card .tax-detail-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
        padding: 14px 16px;
    }

    .tax-summary-card .tax-detail-row strong {
        text-align: left;
    }

    .tax-summary-card .tax-summary-footer {
        justify-content: stretch;
    }

    .tax-summary-card .tax-print-button {
        width: 100%;
    }

}

/* ========================================= */
/* CARD CHECK STATUS NPWPD                   */
/* ========================================= */

.npwpd-card {
    width: 100%;
    max-width: 720px;
    margin: 40px auto;

    border-radius: 20px;
    overflow: hidden;
}


/* HEADER */

.npwpd-card .login-header {
    padding: 35px 40px 25px;
}

.npwpd-card .login-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.npwpd-card .login-header p {
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.6;
}


/* BODY */

.npwpd-card .login-body {
    padding: 35px 40px 40px;
}


/* FORM GROUP */

.npwpd-card .form-group {
    margin-bottom: 25px;
}

.npwpd-card .form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
}


/* INPUT */

.npwpd-card .modern-input {
    width: 100%;
    height: 52px;
    padding: 0 16px;

    box-sizing: border-box;

    font-size: 15px;
    border-radius: 10px;
}


/* CAPTCHA */

.npwpd-card .captcha-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;

    margin-bottom: 30px;
}

.npwpd-card .captcha-box img {
    width: 190px;
    height: 55px;
    object-fit: cover;

    border-radius: 8px;
    border: 1px solid #ddd;
}

.npwpd-card .captcha-input {
    flex: 1;
}

.npwpd-card .captcha-input .modern-input {
    height: 55px;
}


/* REFRESH CAPTCHA */

.npwpd-card .captcha-input small {
    display: block;
    margin-top: 8px;
}

.npwpd-card .captcha-input small a {
    font-size: 13px;
}


/* BUTTON */

.npwpd-card .btn-login2 {
    width: 100%;
    height: 54px;

    border-radius: 10px;

    font-size: 15px;
    font-weight: 700;
}


/* MOBILE */

@media (max-width: 768px) {

    .npwpd-card {
        max-width: calc(100% - 30px);
        margin: 25px auto;
    }

    .npwpd-card .login-header {
        padding: 28px 22px 20px;
    }

    .npwpd-card .login-header h2 {
        font-size: 23px;
    }

    .npwpd-card .login-body {
        padding: 25px 22px 30px;
    }

    .npwpd-card .captcha-box {
        flex-direction: column;
        gap: 12px;
    }

    .npwpd-card .captcha-box img {
        width: 100%;
        height: 60px;
    }

    .npwpd-card .captcha-input {
        width: 100%;
    }

}

/* ================================================= */
/* PBB RESULT CARD                                   */
/* ================================================= */

.pbb-result-card {
    width: 100%;
    max-width: 1100px;

    margin: 30px auto;
    padding: 35px;

    box-sizing: border-box;

    background: rgba(255, 255, 255, 0.96);

    border: 1px solid #e5e7eb;
    border-radius: 20px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.08);
}


/* HEADER */

.pbb-result-header {
    padding-bottom: 25px;
    margin-bottom: 25px;

    border-bottom: 1px solid #e5e7eb;
}

.pbb-result-header h2 {
    margin: 0 0 7px;

    font-size: 26px;
    font-weight: 700;
    color: #172033;
}

.pbb-result-header p {
    margin: 0;

    color: #6b7280;
}


/* OBJECT INFO */

.pbb-object-info {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

    margin-bottom: 35px;
}

.pbb-info-item {
    padding: 18px 20px;

    background: #f8fafc;

    border: 1px solid #e5e7eb;

    border-radius: 12px;
}

.pbb-info-item span {
    display: block;

    margin-bottom: 7px;

    font-size: 13px;

    color: #6b7280;
}

.pbb-info-item strong {
    display: block;

    font-size: 15px;

    color: #172033;
}


/* HISTORY */

.pbb-history h3 {
    margin: 0 0 5px;

    font-size: 20px;

    color: #172033;
}

.pbb-history-description {
    margin: 0 0 20px;

    font-size: 14px;

    color: #6b7280;
}


/* TABLE */

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.table-pbb {
    width: 100%;

    border-collapse: collapse;

    white-space: nowrap;
}

.table-pbb th {
    padding: 15px;

    background: #f8fafc;

    border-bottom: 2px solid #e5e7eb;

    font-size: 13px;

    font-weight: 700;

    color: #374151;

    text-align: left;
}

.table-pbb td {
    padding: 15px;

    border-bottom: 1px solid #e5e7eb;

    font-size: 14px;

    color: #374151;
}

.table-pbb tbody tr:hover {
    background: #fafafa;
}


/* STATUS LUNAS */

.pbb-status-paid {
    display: inline-flex;

    padding: 7px 12px;

    background: #e8f7ee;

    color: #198754;

    border-radius: 50px;

    font-size: 12px;

    font-weight: 700;
}


/* STATUS BELUM LUNAS */

.pbb-status-unpaid {
    display: inline-flex;

    padding: 7px 12px;

    background: #fff0f0;

    color: #dc3545;

    border-radius: 50px;

    font-size: 12px;

    font-weight: 700;
}


/* DETAIL BUTTON */

.pbb-detail-button {
    padding: 7px 14px;

    border: 1px solid #d1d5db;

    border-radius: 8px;

    background: #ffffff;

    color: #374151;

    font-size: 12px;

    font-weight: 600;

    cursor: pointer;
}

.pbb-detail-button:hover {
    background: #f3f4f6;
}


/* MOBILE */

@media (max-width: 768px) {

    .pbb-result-card {
        width: calc(100% - 30px);

        padding: 22px;

        border-radius: 16px;
    }

    .pbb-object-info {
        grid-template-columns: 1fr;
    }

    .pbb-result-header h2 {
        font-size: 22px;
    }

}


/* ========================================= */
/* PAYMENT RESULT                            */
/* ========================================= */

/* .payment-result-card {
    width: 100%;
    max-width: 1100px;

    margin: 30px auto;

    display: grid;
    grid-template-columns: 380px 1fr;

    background: #ffffff;

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.08);

    border: 1px solid #e5e7eb;
} */


/* ========================================= */
/* QRIS                                       */
/* ========================================= */

.payment-qris {
    padding: 40px 30px;

    text-align: center;

    background: #f7faf8;

    border-right: 1px solid #e5e7eb;
}

.payment-qris h3 {
    margin: 0 0 8px;

    font-size: 22px;

    color: #172033;
}

.payment-qris p {
    margin: 0 auto 25px;

    max-width: 280px;

    font-size: 14px;

    line-height: 1.6;

    color: #6b7280;
}


.qris-image-box {
    width: 260px;
    height: 260px;

    margin: 0 auto 25px;

    padding: 15px;

    background: #ffffff;

    border-radius: 15px;

    border: 1px solid #e5e7eb;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.05);

    box-sizing: border-box;
}

.qris-image-box img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}


.qris-info {
    margin-bottom: 15px;
}

.qris-info strong {
    display: block;

    margin-bottom: 5px;

    font-size: 13px;

    color: #6b7280;
}

.qris-info span {
    display: block;

    font-size: 24px;

    font-weight: 700;

    color: #238B45;
}


/* ========================================= */
/* DETAIL TAGIHAN                             */
/* ========================================= */

.payment-billing-detail {
    padding: 40px;
}


.billing-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-bottom: 25px;

    margin-bottom: 25px;

    border-bottom: 1px solid #e5e7eb;
}

.billing-header h3 {
    margin: 0 0 5px;

    font-size: 24px;
}

.billing-header p {
    margin: 0;

    color: #6b7280;

    font-size: 14px;
}


.billing-status-unpaid {
    padding: 8px 14px;

    border-radius: 50px;

    background: #fff1f1;

    color: #dc3545;

    font-size: 12px;

    font-weight: 700;

    white-space: nowrap;
}


/* ========================================= */
/* INFO                                        */
/* ========================================= */

.billing-info {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.billing-info div {
    padding: 16px 18px;

    background: #f8fafc;

    border-radius: 10px;

    border: 1px solid #e5e7eb;
}

.billing-info span {
    display: block;

    margin-bottom: 6px;

    font-size: 13px;

    color: #6b7280;
}

.billing-info strong {
    font-size: 15px;

    color: #172033;
}


/* ========================================= */
/* TOTAL                                       */
/* ========================================= */

.billing-total {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 25px;

    padding: 22px;

    border-radius: 12px;

    background: #238B45;

    color: #ffffff;
}

.billing-total span {
    font-size: 15px;
}

.billing-total strong {
    font-size: 24px;
}


/* ========================================= */
/* NOTE                                        */
/* ========================================= */

.billing-note {
    margin-top: 20px;

    padding: 15px;

    border-radius: 10px;

    background: #f0f7ff;

    color: #475569;

    font-size: 14px;

    line-height: 1.6;
}


/* ========================================= */
/* MOBILE                                     */
/* ========================================= */

@media (max-width: 768px) {

    .payment-result-card {
        width: calc(100% - 30px);

        grid-template-columns: 1fr;

        margin: 20px auto;
    }

    .payment-qris {
        border-right: none;

        border-bottom: 1px solid #e5e7eb;

        padding: 30px 20px;
    }

    .payment-billing-detail {
        padding: 25px 20px;
    }

    .qris-image-box {
        width: 240px;
        height: 240px;
    }

    .billing-header {
        align-items: flex-start;

        flex-direction: column;
    }

    .billing-info {
        grid-template-columns: 1fr;
    }

    .billing-total {
        align-items: flex-start;

        flex-direction: column;

        gap: 5px;
    }

}


/* =========================================
   PAYMENT RESULT - QRIS
========================================= */

.payment-result-card {
    width: 100%;
    max-width: 600px;
    margin: 30px auto;

    display: flex;
    justify-content: center;

    background: transparent;
}


/* =========================================
   CARD QRIS
========================================= */

.qris-payment-card {
    width: 100%;
    max-width: 420px;

    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-radius: 12px;

    padding: 25px 20px;

    text-align: center;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.08);

    box-sizing: border-box;
}


/* =========================================
   LOGO QRIS
========================================= */

.qris-logo {
    margin-bottom: 15px;
}

.qris-logo strong {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #111827;
}


/* =========================================
   JUDUL
========================================= */

.qris-payment-card h3 {
    margin: 0 0 8px;

    font-size: 17px;
    font-weight: 700;

    color: #1f2937;
}


/* =========================================
   DESKRIPSI
========================================= */

.qris-description {
    margin: 0 auto;

    max-width: 330px;

    font-size: 12px;
    line-height: 1.6;

    color: #6b7280;
}


/* =========================================
   DIVIDER
========================================= */

.qris-divider {
    width: 100%;

    height: 1px;

    background: #eeeeee;

    margin: 20px 0;
}


/* =========================================
   JUDUL SCAN
========================================= */

.qris-payment-card h4 {
    margin: 0 0 7px;

    font-size: 14px;
    font-weight: 700;

    color: #1f2937;
}


/* =========================================
   INSTRUKSI
========================================= */

.qris-instruction {
    margin: 0 0 15px;

    font-size: 11px;

    color: #9ca3af;
}


/* =========================================
   QR CODE
========================================= */

.qris-image-box {
    width: 250px;
    height: 250px;

    margin: 0 auto 15px;

    padding: 10px;

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

    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 10px;

    box-sizing: border-box;

    overflow: hidden;
}


.qris-image-box img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* =========================================
   DOWNLOAD BUTTON
========================================= */

.btn-download-qris {
    display: inline-flex;

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

    gap: 6px;

    min-width: 130px;

    padding: 9px 16px;

    border: none;
    border-radius: 20px;

    background: #198754;

    color: #ffffff;

    font-size: 12px;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.2s ease;
}


.btn-download-qris:hover {
    background: #157347;

    transform: translateY(-1px);

    box-shadow:
        0 4px 10px rgba(25, 135, 84, 0.25);
}


.btn-download-qris i {
    font-size: 12px;
}


/* =========================================
   DETAIL PEMBAYARAN
========================================= */

.qris-detail {
    margin-top: 15px;

    padding: 15px;

    background: #f8f9fa;

    border-radius: 8px;

    text-align: left;
}


.qris-detail h4 {
    margin: 0 0 12px;

    font-size: 11px;

    font-weight: 700;

    color: #374151;
}


/* =========================================
   DETAIL ROW
========================================= */

.qris-detail-row {
    display: flex;

    align-items: flex-start;

    padding: 6px 0;

    border-bottom: 1px solid #e5e7eb;

    gap: 10px;
}


.qris-detail-row:last-child {
    border-bottom: none;
}


.qris-detail-row span {
    width: 100px;

    flex-shrink: 0;

    font-size: 10px;

    color: #6b7280;
}


.qris-detail-row span::after {
    content: ":";

    float: right;

    margin-right: 8px;
}


.qris-detail-row strong {
    flex: 1;

    font-size: 10px;

    font-weight: 600;

    color: #1f2937;

    word-break: break-word;
}


/* =========================================
   NOMINAL
========================================= */

.qris-detail-row:last-child strong {
    color: #198754;

    font-weight: 700;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .payment-result-card {
        width: calc(100% - 30px);

        margin: 20px auto;
    }


    .qris-payment-card {
        padding: 22px 15px;

        border-radius: 12px;
    }


    .qris-image-box {
        width: 220px;
        height: 220px;
    }


    .qris-detail {
        padding: 12px;
    }


    .qris-detail-row span {
        width: 90px;
    }

}

/* =========================================
   ERROR PAYMENT SEARCH
========================================= */

#paymentSearchError {
    display: none;

    width: 100%;
    box-sizing: border-box;

    margin: 15px 0 0;
    padding: 12px 16px;

    background: #fff5f5;
    border: 1px solid #fecaca;
    border-left: 4px solid #dc3545;

    border-radius: 8px;

    color: #dc3545;

    font-size: 13px;
    line-height: 1.5;

    text-align: left;

    animation: errorFadeIn 0.25s ease;
}

/* Icon / pesan error */
#paymentSearchError::before {
    content: "\f071";

    font-family: FontAwesome;

    margin-right: 8px;

    font-size: 13px;
}

/* Animasi */
@keyframes errorFadeIn {

    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* =========================================
   SIPADA PAYMENT WRAPPER
========================================= */

.sipada-payment-wrapper {
    width: 100%;
    max-width: 1100px;

    margin: 40px auto;

    padding: 0 20px;

    box-sizing: border-box;
}


/* =========================================
   HEADER
========================================= */

.sipada-section-header {
    text-align: center;

    margin-bottom: 30px;
}

.section-badge {
    display: inline-flex;

    align-items: center;
    gap: 7px;

    padding: 7px 14px;

    background: #eef5ff;

    color: var(--primary, #2563eb);

    border-radius: 30px;

    font-size: 12px;
    font-weight: 700;
}

.sipada-section-header h2 {
    margin: 12px 0 8px;

    font-size: 28px;

    font-weight: 750;

    color: #1f2937;
}

.sipada-section-header p {
    margin: 0 auto;

    max-width: 600px;

    color: #6b7280;

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================
   MAIN CARD
========================================= */

.sipada-payment-card {

    display: grid;

    grid-template-columns: 1fr 1fr;

    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        0 15px 40px rgba(15, 23, 42, 0.08);
}


/* =========================================
   LEFT - BILLING
========================================= */

.sipada-billing-section {

    padding: 32px;

    border-right: 1px solid #e5e7eb;
}


/* =========================================
   RIGHT - QRIS
========================================= */

.sipada-qris-section {

    padding: 32px;

    background: #fafcff;

}


/* =========================================
   CARD HEADER
========================================= */

.payment-card-header {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 25px;
}

.header-icon {

    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;

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

    background: #eef5ff;

    color: var(--primary, #2563eb);

    border-radius: 12px;

    font-size: 20px;
}

.header-icon.qris-icon {

    background: #ecfdf5;

    color: #198754;
}

.payment-card-header h3 {

    margin: 0 0 4px;

    font-size: 18px;

    color: #1f2937;
}

.payment-card-header p {

    margin: 0;

    font-size: 12px;

    color: #9ca3af;
}


/* =========================================
   BILLING DETAIL
========================================= */

.billing-detail-list {

    display: flex;

    flex-direction: column;

    gap: 0;
}


.billing-detail-item {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 20px;

    padding: 15px 0;

    border-bottom: 1px solid #eef0f3;
}


.billing-detail-item:last-child {

    border-bottom: none;
}


.billing-label {

    display: flex;

    align-items: center;

    gap: 9px;

    min-width: 130px;

    color: #6b7280;

    font-size: 13px;
}


.billing-label i {

    width: 18px;

    color: #94a3b8;

    text-align: center;
}


.billing-detail-item strong {

    text-align: right;

    color: #1f2937;

    font-size: 13px;

    font-weight: 600;

    word-break: break-word;
}


/* =========================================
   TOTAL TAGIHAN
========================================= */

.billing-total-row {

    margin-top: 8px;

    padding: 18px;

    background: #f0fdf4;

    border: 1px solid #bbf7d0;

    border-radius: 12px;
}


.billing-total-row .billing-label {

    color: #166534;

    font-weight: 600;
}


.billing-total-row .billing-label i {

    color: #16a34a;
}


.billing-total-row strong {

    color: #15803d;

    font-size: 17px;

    font-weight: 750;
}


/* =========================================
   QRIS CONTENT
========================================= */

.qris-content {

    text-align: center;
}


.qris-status-label {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 6px 12px;

    margin-bottom: 18px;

    background: #ecfdf5;

    color: #15803d;

    border-radius: 20px;

    font-size: 11px;

    font-weight: 600;
}


/* =========================================
   QRIS IMAGE
========================================= */

.qris-image-container {

    width: 240px;

    height: 240px;

    margin: 0 auto 20px;

    padding: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 14px;

    box-shadow:
        0 5px 20px rgba(15, 23, 42, 0.06);

    box-sizing: border-box;
}


.qris-image-container img {

    width: 100%;

    height: 100%;

    object-fit: contain;
}


/* =========================================
   QRIS PLACEHOLDER
========================================= */

.qris-placeholder {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 8px;

    color: #94a3b8;
}


.qris-placeholder i {

    font-size: 55px;

    color: #cbd5e1;
}


.qris-placeholder span {

    font-size: 13px;

    font-weight: 600;

    color: #64748b;
}


.qris-placeholder small {

    max-width: 170px;

    font-size: 10px;

    line-height: 1.5;

    color: #94a3b8;
}


/* =========================================
   BUTTON
========================================= */

.qris-action {

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 8px;
}


.btn-generate-qris,
.btn-bima-qris {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    padding: 10px 18px;

    border: none;

    border-radius: 8px;

    font-size: 12px;

    font-weight: 600;

    cursor: pointer;

    transition: all 0.2s ease;
}


.btn-generate-qris {

    background: #198754;

    color: #ffffff;
}


.btn-generate-qris:hover {

    background: #157347;

    transform: translateY(-1px);
}


.btn-bima-qris {

    background: #0dcaf0;

    color: #ffffff;
}


.btn-bima-qris:hover {

    background: #0aa2c0;

    transform: translateY(-1px);
}


/* =========================================
   LOADING
========================================= */

.qris-loading {

    width: 100%;

    margin-top: 12px;

    color: #64748b;

    font-size: 12px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .sipada-payment-wrapper {

        margin: 25px auto;

        padding: 0 15px;
    }


    .sipada-section-header h2 {

        font-size: 23px;
    }


    .sipada-section-header p {

        font-size: 13px;
    }


    .sipada-payment-card {

        grid-template-columns: 1fr;

        border-radius: 16px;
    }


    .sipada-billing-section {

        padding: 24px 20px;

        border-right: none;

        border-bottom: 1px solid #e5e7eb;
    }


    .sipada-qris-section {

        padding: 24px 20px;
    }


    .qris-image-container {

        width: 220px;

        height: 220px;
    }

}


@media (max-width: 480px) {

    .billing-detail-item {

        flex-direction: column;

        gap: 5px;
    }


    .billing-detail-item strong {

        text-align: left;

        padding-left: 27px;
    }


    .billing-total-row {

        flex-direction: row;

        align-items: center;
    }


    .billing-total-row strong {

        padding-left: 0;

        text-align: right;
    }

}



/* =========================================
   SPPT PAGE
========================================= */

.sppt-page {
    width: 100%;
    padding: 30px 15px 60px;
    box-sizing: border-box;
}


/* =========================================
   FORM CARD
========================================= */

.sppt-card {

    width: 100%;
    max-width: 650px;

    margin: 0 auto 30px;

    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 20px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.07);

    overflow: hidden;
}


/* =========================================
   HEADER
========================================= */

.sppt-header {

    padding: 30px 30px 25px;

    text-align: center;

    border-bottom: 1px solid #f1f5f9;
    background-color: #0d6efd;

}


.sppt-header h2 {

    margin: 0 0 8px;

    font-size: 24px;

    font-weight: 700;

    color: #ffffff;
}


.sppt-header p {

    max-width: 500px;

    margin: 0 auto;

    font-size: 13px;

    line-height: 1.6;

    color: #ffffff;
}


/* =========================================
   BODY
========================================= */

.sppt-body {

    padding: 30px;
}


/* =========================================
   FORM GROUP
========================================= */

.sppt-form-group {

    margin-bottom: 20px;
}


.sppt-form-group label {

    display: block;

    margin-bottom: 8px;

    font-size: 13px;

    font-weight: 600;

    color: #374151;
}


/* =========================================
   INPUT
========================================= */

.sppt-input {

    width: 100%;

    height: 46px;

    padding: 0 14px;

    box-sizing: border-box;

    border: 1px solid #d1d5db;

    border-radius: 10px;

    background: #ffffff;

    color: #1f2937;

    font-size: 14px;

    outline: none;

    transition: all 0.2s ease;
}


.sppt-input::placeholder {

    color: #9ca3af;
}


.sppt-input:focus {

    border-color: #1677ff;

    box-shadow:
        0 0 0 3px rgba(22, 119, 255, 0.12);
}


/* =========================================
   CAPTCHA
========================================= */

.sppt-captcha-row {

    display: flex;
    gap: 12px;
}


.sppt-captcha-image {

    width: 150px;

    height: 46px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #f8fafc;

    border: 1px solid #e5e7eb;

    border-radius: 10px;

    overflow: hidden;
}


.sppt-captcha-image img {

    display: block;

    max-width: 100%;

    height: 38px;

    object-fit: contain;
}


.sppt-captcha-input {

    flex: 1;
}


/* =========================================
   BUTTON
========================================= */

.sppt-submit {

    width: 100%;

    height: 46px;

    margin-top: 5px;

    border: none;

    border-radius: 10px;

    background: #1677ff;

    color: #ffffff;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    transition: all 0.2s ease;
}


.sppt-submit:hover {

    background: #0d63d8;

    transform: translateY(-1px);

    box-shadow:
        0 5px 15px rgba(22, 119, 255, 0.25);
}


.sppt-submit i {

    margin-right: 6px;
}


/* =========================================
   RESULT CARD
========================================= */

.sppt-result-card {

    display: none;

    width: 100%;

    max-width: 900px;

    margin: 0 auto;

    padding: 30px;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 20px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.07);
}


/* =========================================
   RESULT HEADER
========================================= */

.sppt-result-header {

    padding-bottom: 20px;

    margin-bottom: 20px;

    border-bottom: 1px solid #e5e7eb;
}


.sppt-result-header h3 {

    margin: 0 0 5px;

    font-size: 20px;

    color: #1f2937;
}


.sppt-result-header p {

    margin: 0;

    font-size: 13px;

    color: #6b7280;
}


/* =========================================
   INFO LIST
========================================= */

.sppt-info-list {

    margin-bottom: 25px;
}


.sppt-info-row {

    display: grid;

    grid-template-columns: 180px 1fr;

    gap: 20px;

    padding: 13px 0;

    border-bottom: 1px solid #f1f5f9;
}


.sppt-info-row span {

    font-size: 13px;

    color: #6b7280;
}


.sppt-info-row strong {

    font-size: 13px;

    color: #1f2937;

    word-break: break-word;
}


/* =========================================
   OBJECT GRID
========================================= */

.sppt-object-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

    margin-bottom: 30px;
}


.sppt-object-card {

    padding: 18px;

    background: #f8fafc;

    border: 1px solid #eef2f7;

    border-radius: 12px;
}


.sppt-object-card span {

    display: block;

    margin-bottom: 6px;

    font-size: 12px;

    color: #6b7280;
}


.sppt-object-card strong {

    font-size: 15px;

    color: #1f2937;
}


/* =========================================
   HISTORY
========================================= */

.sppt-history {

    margin-top: 20px;
}


.sppt-section-title {

    margin-bottom: 15px;
}


.sppt-section-title h4 {

    margin: 0;

    font-size: 16px;

    color: #1f2937;
}


/* =========================================
   TABLE
========================================= */

.sppt-table-wrapper {

    width: 100%;

    overflow-x: auto;
}


.sppt-table {

    width: 100%;

    border-collapse: collapse;
}


.sppt-table th {

    padding: 13px 15px;

    background: #f8fafc;

    color: #374151;

    font-size: 12px;

    font-weight: 600;

    text-align: left;

    border-bottom: 1px solid #e5e7eb;
}


.sppt-table td {

    padding: 13px 15px;

    color: #4b5563;

    font-size: 13px;

    border-bottom: 1px solid #f1f5f9;
}


/* =========================================
   ERROR
========================================= */

.sppt-error {

    display: none;

    width: 100%;

    max-width: 650px;

    margin: 20px auto;

    padding: 13px 15px;

    box-sizing: border-box;

    text-align: center;

    color: #dc2626;

    background: #fef2f2;

    border: 1px solid #fecaca;

    border-radius: 10px;

    font-size: 13px;
}


.sppt-error i {

    margin-right: 5px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .sppt-page {

        padding: 20px 10px 40px;
    }


    .sppt-card {

        border-radius: 15px;
    }


    .sppt-header {

        padding: 25px 20px 20px;
        background-color: #0d6efd;

    }


    .sppt-header h2 {

        font-size: 20px;
    }


    .sppt-body {

        padding: 22px 18px;
    }


    .sppt-captcha-row {

        flex-direction: column;

        align-items: stretch;
    }


    .sppt-captcha-image {

        width: 100%;

        height: 46px;
    }


    .sppt-result-card {

        padding: 22px 18px;

        border-radius: 15px;
    }


    .sppt-info-row {

        grid-template-columns: 1fr;

        gap: 5px;
    }


    .sppt-object-grid {

        grid-template-columns: 1fr;
    }


    .sppt-table th,
    .sppt-table td {

        white-space: nowrap;
    }

}

.btn-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    margin-left: 8px;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-print {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #495057;
}

.btn-print:hover {
    background: #e9ecef;
}

.btn-qris {
    background: #198754;
    color: #fff;
}

.btn-qris:hover {
    background: #157347;
}

#stat_pbb,
#stat_error {
    display: none;
}

/* =========================================
   TOMBOL AKSI: CETAK & QRIS
========================================= */
.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

/* Tombol Cetak */
.btn-print {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #4b5563;
}

.btn-print:hover {
    background: #e9ecef;
    color: #1f2937;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Tombol QRIS */
.btn-qris {
    background: #198754;
    color: #ffffff;
}

.btn-qris:hover {
    background: #157347;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(25, 135, 84, 0.25);
}

/* Penyesuaian posisi tombol */
.sppt-result-header>div:last-child {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

/* Responsif untuk HP */
@media (max-width: 576px) {
    .btn-action {
        font-size: 12px;
        padding: 7px 14px;
    }

    .sppt-result-header>div:last-child {
        justify-content: center;
        margin-top: 10px;
    }
}



/* === PENCARIAN === */
.table-search-box {
    margin: 15px 0;
}

.table-search-box input {
    width: 100%;
    padding: 8px 12px;
}

/* === TABEL === */
.tax-table-wrapper {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.tax-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

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

.tax-table th {
    background: #f9fafb;
    font-weight: 600;
}

.tax-table tr:hover {
    background: #f9fafb;
}

/* WARNA STATUS */
.status-lunas {
    color: #166534;
    font-weight: 600;
}

.status-belum {
    color: #dc2626;
    font-weight: 600;
}

.status-tunggak {
    color: #ca8a04;
    font-weight: 600;
}

/* LAINNYA */
.tax-status-paid {
    background: #dcfce7;
    color: #166534;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
}

.document-section {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.section-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.section-header h3 {
    margin: 0;
    color: #2d3748;
    font-size: 18px;
}

.section-header p {
    margin: 5px 0 0 0;
    color: #718096;
    font-size: 13px;
}

.payment-search-error {
    display: none;
    color: #dc2626;
    font-size: 13px;
    margin: 10px 0;
    padding: 10px;
    background: #fef2f2;
    border-radius: 4px;
    border: 1px solid #fecaca;
}

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

.tax-table {
    width: 100%;
    border-collapse: collapse;
}

.tax-table th,
.tax-table td {
    padding: 12px 10px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
}

.tax-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #1e293b;
}

.tax-table tbody tr:hover {
    background: #f9fafb;
}

.pbb-page {
    width: 100%;
    padding: 20px 15px;
}

/* CARD UTAMA */
.pbb-card {
    width: 100%;
    max-width: 720px;
    margin: 40px auto;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
    border: 1px solid #eef0f4;
}

/* HEADER */
.pbb-card .pbb-header {
    padding: 35px 40px 25px;
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    color: #fff;
    text-align: center;
}

.pbb-card .pbb-header h2 {
    font-size: 28px;
    margin: 0 0 10px;
    font-weight: 700;
}

.pbb-card .pbb-header p {
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 14px;
    opacity: 0.9;
}

/* BODY FORM */
.pbb-card .pbb-form {
    padding: 35px 40px 40px;
}

/* LABEL */
.pbb-card .pbb-label {
    display: block;
    margin-bottom: 12px;
    /* ✅ Jarak label ke input */
    font-size: 15px;
    font-weight: 600;
    color: #344054;
    text-align: left;
}

/* INPUT NOP */
.pbb-card .pbb-input {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    box-sizing: border-box;
    font-size: 15px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    outline: none;
    transition: 0.2s;
    margin-bottom: 18px;
    /* ✅ Jarak input ke CAPTCHA */
}

.pbb-card .pbb-input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.12);
}

/* CAPTCHA BARIS */
.pbb-card .captcha-wrapper {
    display: flex;
    /* align-items: center; */
    gap: 15px;
    margin-bottom: 12px;
    /* ✅ Jarak baris CAPTCHA ke link Refresh */
}

.pbb-card .captcha-image-box img {
    width: 190px;
    height: 55px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.pbb-card .captcha-input-box {
    flex: 1;
}

.pbb-card .captcha-input-box .pbb-input {
    height: 55px;
    margin-bottom: 0;
    /* Hilangkan margin ganda di input captcha */
}

/* LINK REFRESH */
.pbb-card .captcha-refresh {
    display: block;
    /* text-align: center; */
    margin-top: 8px;
    margin-bottom: 28px;
    /* ✅ Jarak Refresh ke TOMBOL */
    font-size: 13px;
    color: #0d6efd;
    text-decoration: none;
    cursor: pointer;
}

.pbb-card .captcha-refresh:hover {
    text-decoration: underline;
}

/* TOMBOL */
.btn-pbb-check {
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 10px;
    background: #0d6efd;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-pbb-check:hover {
    background: #0b5ed7;
}

/* --- SISA CSS TETAP SAMA --- */
#arloji {
    color: #0d6efd !important;
    font-size: 14px !important;
    font-weight: 600;
    padding: 15px;
    background: #f0f6ff;
    border-radius: 10px;
    margin: 0 40px 20px;
}

#stat_pbb {
    display: none;
    padding: 0 40px 40px;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    border-top: 1px solid #eef0f4;
    border-bottom: 1px solid #eef0f4;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.result-title {
    font-size: 18px;
    font-weight: 700;
    color: #101828;
}

.result-actions {
    display: flex;
    gap: 8px;
}

.btn-result {
    height: 40px;
    padding: 0 15px;
    border-radius: 8px;
    border: 1px solid #d0d5dd;
    background: #fff;
    color: #344054;
    font-size: 13px;
    cursor: pointer;
    transition: 0.2s;
}

.btn-result:hover {
    background: #f8f9fa;
}

.btn-qris {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}

.btn-qris:hover {
    background: #0b5ed7;
    color: #fff;
}

.info-card {
    background: #f8fafc;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
}

.info-row {
    display: grid;
    grid-template-columns: 150px 20px 1fr;
    padding: 10px 0;
    border-bottom: 1px solid #e9edf2;
    font-size: 14px;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: #667085;
}

.info-colon {
    color: #98a2b3;
}

.info-value {
    color: #101828;
    font-weight: 600;
    word-break: break-word;
}

.njop-section {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 20px;
    align-items: center;
    margin-bottom: 25px;
}

.njop-card {
    background: #fff;
    border: 1px solid #eaecf0;
    border-radius: 14px;
    overflow: hidden;
}

.njop-row {
    display: grid;
    grid-template-columns: 150px 100px 1fr;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid #eaecf0;
    font-size: 14px;
}

.njop-row:last-child {
    border-bottom: none;
}

.njop-label {
    color: #667085;
}

.njop-value {
    font-weight: 600;
    color: #101828;
}

.njop-price {
    text-align: right;
    font-weight: 700;
    color: #0d6efd;
}

.qris-banner {
    text-align: center;
}

.qris-banner img {
    max-width: 100%;
    height: auto;
    max-height: 90px;
    object-fit: contain;
}

.detail-title {
    font-size: 17px;
    font-weight: 700;
    color: #101828;
    margin: 25px 0 15px;
}

.table-wrapper {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #eaecf0;
    border-radius: 12px;
}

#tb_detail {
    width: 100%;
    min-width: 850px;
    border-collapse: collapse;
    margin: 0;
}

#tb_detail th {
    background: #f8fafc;
    color: #475467;
    font-size: 12px;
    font-weight: 700;
    padding: 13px 12px;
    text-align: left;
    white-space: nowrap;
    border-bottom: 1px solid #eaecf0;
}

#tb_detail td {
    padding: 13px 12px;
    font-size: 13px;
    color: #344054;
    border-bottom: 1px solid #f0f2f5;
}

#tb_detail tr:last-child td {
    border-bottom: none;
}

#stat_error {
    display: none;
    max-width: 720px;
    margin: 20px auto;
}

.error-card {
    background: #fff5f5;
    color: #b42318;
    border: 1px solid #fecdca;
    border-radius: 12px;
    padding: 18px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

#myModalsss .modal-content {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

#myModalsss .modal-header {
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 18px 22px;
}

#myModalsss .modal-title {
    font-weight: 700;
}

#myModalsss .modal-header .close {
    color: #fff;
    opacity: 1;
}

#myModalsss .modal-body {
    padding: 25px;
}

#gbrQris {
    min-height: 250px;
    display: flex;
    justify-content: center;
}

#gbrQris img {
    max-width: 100%;
    height: auto;
}

.qris-info {
    text-align: center;
    color: #667085;
    font-size: 13px;
    line-height: 1.6;
    margin-top: 15px;
}

#myModalsss .modal-footer {
    border-top: 1px solid #eaecf0;
    padding: 15px 25px;
}

/* RESPONSIVE HP */
@media (max-width: 767px) {
    .pbb-card {
        margin: 20px auto;
        border-radius: 16px;
    }

    .pbb-card .pbb-header {
        padding: 25px 20px 18px;
    }

    .pbb-card .pbb-header h2 {
        font-size: 22px;
    }

    .pbb-card .pbb-form {
        padding: 25px 20px 30px;
    }

    #arloji {
        margin: 0 20px 15px;
    }

    #stat_pbb {
        padding: 0 20px 20px;
    }

    .captcha-wrapper {
        flex-direction: column;
        gap: 12px;
    }

    .captcha-image-box img {
        width: 190px;
    }

    .result-header {
        flex-direction: column;
        align-items: stretch;
    }

    .result-actions {
        width: 100%;
    }

    .btn-result {
        flex: 1;
    }

    .info-row {
        grid-template-columns: 110px 15px 1fr;
        font-size: 13px;
    }

    .njop-section {
        grid-template-columns: 1fr;
    }

    .njop-row {
        grid-template-columns: 1fr 70px 1fr;
        padding: 13px;
        font-size: 13px;
    }

    .njop-price {
        font-size: 13px;
    }

    #myModalsss .modal-dialog {
        margin: 10px;
        width: 448px  !important;

    }
}

/* Judul Pajak — diperbesar 3× + warna merah marun */
.judul-pajak {
    color: #990000 !important; /* Merah Marun */
    font-size: 140% !important; 
}

/* Daftar pajak — mendatar, dipisah koma */
.daftar-pajak {
    line-height: 1.6 !important;
    color: #333 !important;
    margin: 0 0 15px !important;
}

@keyframes qrisSpin {
    to { transform: rotate(360deg); }
}