@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Playfair+Display:ital,wght@0,400;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Playfair+Display:ital,wght@0,400;1,400&display=swap");

:root {
    --putih: #ffffff;
    --hitam: #000000;
    --blue: #1a56db;
    --blue-dark: #1341b0;
    --blue-light: #d5eeff94;
    --blue-soft: #f0f7ff;
    /* --biru: #385d8d; */
    /* --biru: #669dc1; */
    --biru: #035f9c;
    --biru-dark: #006bb2;
    /* --biru: #5692ba; */
    --green: #1f6d8c;
    --green-soft: #f0f7ff;
    --text: #1e293b;
    --muted: #64748b;
    --border: #e2e8f0;
    --bg: #f0f6ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    overflow-x: hidden;
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--text);
    background: #fff;
}

/* ════════════════════════════════════════
   HERO — biru gradient + ilustrasi kiri
   ════════════════════════════════════════ */

.info-box {
    margin-top: 10px;
    padding: 12px;
    background: #f0f7ff;
    border-left: 4px solid #3b82f6;
    border-radius: 6px;
    font-size: 14px;
    color: #1e3a8a;
}
/* .hero {
    position: relative;
    overflow: hidden;
    background: #ffffff;

    display: flex;
    align-items: center;
    gap: 0;

    min-height: calc(100vh - 72px);
    margin-top: 42px;

    padding: 0;
} */

.hero {
    position: relative;
    overflow: hidden;
    background: #fff;
    margin-top: 42px;
    padding: 0 24px;
}

.hero-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;

    min-height: calc(100vh - 72px);

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-left,
.hero-right {
    min-height: calc(100vh - 72px);
}

/* ── Sisi kiri: ilustrasi lingkaran + floating cards ── */
.hero-left {
    flex: 0 0 560px;
    max-width: 560px;
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px 40px 60px;
}

/* Lingkaran besar biru di tengah ilustrasi */
.hero-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: #ffffff; /* 🔥 isi lingkaran putih */

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    z-index: 2;
}

.hero-circle::before {
    content: "";
    position: absolute;
    inset: -60px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(3, 95, 156, 0.539) 0%,
        rgba(3, 95, 156, 0.386) 30%,
        rgba(3, 95, 156, 0.12) 55%,
        rgba(255, 255, 255, 0.05) 70%,
        transparent 85%
    );

    z-index: -1;
}

.hero-circle-icon {
    font-size: 80px;
    line-height: 1;
}

.icon {
    font-size: 28px; /* coba 28–36px */
    display: block;
    margin-bottom: 4px;
}

/* Dot decoration di belakang lingkaran */
.hero-left::before {
    content: "";
    position: absolute;
    left: 30px;
    bottom: 30px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(
        circle,
        rgba(59, 130, 246, 0.25) 2px,
        transparent 2px
    );
    background-size: 16px 16px;
    z-index: 1;
}

/* Floating card umum */
.float-card {
    position: absolute;
    background: #ffffff;
    border-radius: 14px;
    padding: 10px 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
    z-index: 3;
    min-width: 100px;
    font-size: 12px;
    font-weight: 600;
    color: #1e293b;
}

.float-card i {
    font-size: 22px;
    color: var(--biru);
    background: #eff6ff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-card .float-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #dcfce7;
    color: #16a34a;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
}

/* Posisi 4 floating card */
.float-card.top-left {
    top: 14%;
    left: 22%;
    transform: rotate(-6deg);
}
.float-card.top-right {
    top: 8%;
    right: 2%;
    transform: rotate(5deg);
}
.float-card.bot-left {
    bottom: 14%;
    left: 12%;
    transform: rotate(5deg);
}
.float-card.bot-right {
    bottom: 0.2%;
    right: 12%;
    transform: rotate(-4deg);
}

/* Bintang dekoratif */
.hero-star {
    position: absolute;
    z-index: 4;
    color: #93c5fd;
    font-size: 18px;
    pointer-events: none;
}
.hero-star.s1 {
    top: 10%;
    left: 36%;
}
.hero-star.s2 {
    bottom: 20%;
    right: 12%;
}

/* ── Sisi kanan: card teks putih ── */
.hero-right {
    flex: 1;
    max-width: 620px;
    display: flex;
    align-items: center;
    padding: 40px 60px 40px 20px;
}

.hero-content-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: 0 8px 32px rgba(29, 78, 216, 0.1);
    width: 100%;
    max-width: 520px;
}

.hero-title {
    font-family: "Literature", serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--biru);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.hero-title em {
    font-family: "Literature", serif;

    font-style: italic;
    color: var(--biru);
}

.hero-desc {
    font-size: 14px;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 20px;
}

.hero-desc strong {
    color: var(--biru);
    font-weight: 700;
}

/* Dua fitur kecil */
.hero-mini-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.hero-mini-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--biru);
    font-weight: 500;
}

.hero-mini-feature i {
    font-size: 16px;
    color: var(--biru);
}

/* Tombol */
.hero-btns {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--biru);
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(26, 86, 219, 0.3);
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background: var(--biru-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #1e293b;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    border: 1.5px solid #e2e8f0;
    transition: all 0.2s;
}
.btn-secondary:hover {
    border-color: var(--biru);
    color: var(--biru);
}

/* ════════════════════════════════════════
   CARA SECTION — 4 kolom horizontal
   ════════════════════════════════════════ */
/* .cara-section {
    padding: 80px;
    background: #fff;
    text-align: center;
}

.cara-section .section-title {
    font-family: "Montserrat", sans-serif;
    color: var(--biru);
    font-size: 38px;
    margin-bottom: 10px;
}

.topik-section .section-title {
    font-family: "Montserrat", sans-serif;
    color: var(--biru);
    font-size: 38px;
    margin-bottom: 10px;
}

.reservasi-section .section-title {
    font-family: "Montserrat", sans-serif;
    color: var(--biru);
    font-size: 38px;
    margin-bottom: 10px;
}

.cara-section .section-sub {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 48px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cara-section .section-sub a {
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
}


.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

.step-card {
    background: #f0f6ff;
    border: 1px solid #dbeafe;
    border-radius: 20px;
    padding: 28px 24px;
    text-align: left;
    transition: all 0.2s;
    position: relative;
}

.step-card:hover {
    border-color: #93c5fd;
    box-shadow: 0 4px 20px rgba(26, 86, 219, 0.08);
    transform: translateY(-2px);
}

.step-number-big {
    font-size: 48px;
    font-weight: 800;
    color: #bfdbfe;
    line-height: 1;
    margin-bottom: 4px;
    font-family: "Playfair Display", serif;
}

.step-icon-wrap {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 28px;
    color: var(--biru);
    opacity: 0.7;
}

.step-card h4 {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.7;
}

.step-card .step-note {
    font-size: 12px;
    color: #1a56db;
    margin-top: 8px;
    font-weight: 600;
} */

.cara-section {
    padding: 100px 0 80px;
    background: #ffffff;
    overflow: hidden;
}

.cara-section .section-title {
    font-family: "Montserrat", sans-serif;

    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--biru);
    margin-bottom: 12px;
}

.cara-section .section-sub {
    text-align: center;
    color: #64748b;
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto 72px;
    line-height: 1.7;
}

/* ── Steps container ── */
.steps-z {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Row base ── */
.step-row {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    gap: 0;
    position: relative;
    min-height: 220px;
    opacity: 0;
    transform: translateY(36px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.step-row.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-row:nth-child(1) {
    transition-delay: 0s;
}
.step-row:nth-child(2) {
    transition-delay: 0.15s;
}
.step-row:nth-child(3) {
    transition-delay: 0.3s;
}
.step-row:nth-child(4) {
    transition-delay: 0.45s;
}

/* Z-pattern column placement */
.step-odd .step-content {
    grid-column: 1;
    grid-row: 1;
}
.step-odd .step-center {
    grid-column: 2;
    grid-row: 1;
}
.step-odd .step-visual {
    grid-column: 3;
    grid-row: 1;
}

.step-even .step-visual {
    grid-column: 1;
    grid-row: 1;
}
.step-even .step-center {
    grid-column: 2;
    grid-row: 1;
}
.step-even .step-content {
    grid-column: 3;
    grid-row: 1;
}

/* ── Content card ── */
.step-content {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e8ecf4;
    padding: 36px 40px;
    position: relative;
    box-shadow: 0 2px 16px rgba(15, 23, 42, 0.06);
    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.step-content:hover {
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.12);
    transform: translateY(-3px);
}

.step-num {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 8px;
}

/* Gradient colors per step */
.step-row:nth-child(1) .step-num {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.step-row:nth-child(2) .step-num {
    background: linear-gradient(135deg, #10b981, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.step-row:nth-child(3) .step-num {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.step-row:nth-child(4) .step-num {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px;
}

.step-content p {
    color: #64748b;
    font-size: 0.93rem;
    line-height: 1.7;
    margin: 0;
}

.step-note {
    display: inline-block;
    margin-top: 10px !important;
    font-size: 0.82rem !important;
    color: #3b82f6 !important;
    font-weight: 600;
}

/* ── Center column (icon + connector line) ── */
.step-center {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
}

.step-center::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: linear-gradient(to bottom, #e2e8f0, #c7d2fe 50%, #e2e8f0);
    z-index: 0;
}

.step-row:first-child .step-center::before {
    top: 50%;
}
.step-row:last-child .step-center::before {
    bottom: 50%;
}

.step-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    flex-shrink: 0;
    z-index: 2;
    position: relative;
}

.step-row:nth-child(1) .step-icon-circle {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
}
.step-row:nth-child(2) .step-icon-circle {
    background: linear-gradient(135deg, #10b981, #06b6d4);
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.35);
}
.step-row:nth-child(3) .step-icon-circle {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
}
.step-row:nth-child(4) .step-icon-circle {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.35);
}

/* ── Visual / illustration column ── */
.step-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.step-visual-inner {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 68px;
}

.step-row:nth-child(1) .step-visual-inner {
    background: #eef2ff;
}
.step-row:nth-child(2) .step-visual-inner {
    background: #f0fdf4;
}
.step-row:nth-child(3) .step-visual-inner {
    background: #fff7ed;
}
.step-row:nth-child(4) .step-visual-inner {
    background: #fdf4ff;
}

.topik-section .section-title {
    font-family: "Montserrat", sans-serif;
    color: var(--biru);
    font-size: 38px;
    margin-bottom: 10px;
}
/* Keep btn-konsultasi-sm for backward compat */
.btn-konsultasi-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--blue);
    color: #fff;
    text-decoration: none;
    padding: 9px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.2s;
    margin-bottom: 48px;
}
.btn-konsultasi-sm:hover {
    background: var(--blue-dark);
}
.steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}
.step-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.2s;
}
.step-card:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 20px rgba(26, 86, 219, 0.1);
}
.step-number {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--blue);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.step-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
}
.step-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
}
.step-card .step-note {
    font-size: 12px;
    color: var(--blue);
    margin-top: 8px;
    font-weight: 600;
}

/* ════════════════════════════════════════════════════
   RESERVASI SECTION — Sidebar Filter + Social Cards
   ════════════════════════════════════════════════════ */

.reservasi-section {
    padding: 80px 60px;
    background: #ffffff;
}

.reservasi-header {
    text-align: center;
    margin-bottom: 40px;
}

.reservasi-header .section-title {
    font-family: "Montserrat", sans-serif;
    color: var(--biru);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--biru);
    margin-bottom: 12px;
}

/* ── Layout: sidebar kiri + grid kanan ── */
.reservasi-body {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 28px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

/* ── SIDEBAR FILTER ── */
.filter-sidebar {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px 0;
    position: sticky;
    top: 80px;
}

.filter-sidebar-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 0 20px 12px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 8px;
}

.filter-sidebar-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 8px;
    max-height: 520px;
    overflow-y: auto;
}

.filter-sidebar-list::-webkit-scrollbar {
    width: 4px;
}
.filter-sidebar-list::-webkit-scrollbar-track {
    background: transparent;
}
.filter-sidebar-list::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 9px 12px;
    border: none;
    border-radius: 10px;
    background: transparent;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    transition: all 0.18s;
    text-align: left;
}

.filter-btn i {
    font-size: 16px;
    color: #94a3b8;
    flex-shrink: 0;
    transition: color 0.18s;
}

.filter-btn:hover {
    background: #f0f6ff;
    color: var(--biru);
}
.filter-btn:hover i {
    color: var(--biru);
}

.filter-btn.active {
    background: #eff6ff;
    color: var(--biru);
    font-weight: 700;
}
.filter-btn.active i {
    color: var(--biru);
}

.filter-btn-reset {
    display: flex;
    align-items: center;
    gap: 8px;
    width: calc(100% - 16px);
    margin: 10px 8px 4px;
    padding: 9px 12px;
    border: 1.5px dashed #fca5a5;
    border-radius: 10px;
    background: transparent;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #ef4444;
    cursor: pointer;
    transition: all 0.18s;
}
.filter-btn-reset:hover {
    background: #fef2f2;
}
.filter-btn-reset i {
    font-size: 14px;
}

/* ── PETUGAS GRID ── */
.petugas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ── SOCIAL-STYLE CARD ── */
.petugas-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition:
        box-shadow 0.25s,
        transform 0.25s;
    display: flex;
    flex-direction: column;
}

.petugas-card:hover {
    box-shadow: 0 8px 28px rgba(3, 95, 156, 0.14);
    transform: translateY(-3px);
}

/* Gradient banner atas */
/* ── Banner atas dengan gelombang ── */
.petugas-banner {
    height: 80px;
    position: relative;
    overflow: visible;
    flex-shrink: 0;
    background: linear-gradient(160deg, #4a9fd4 0%, #6cb8e8 40%, #a8d8f5 100%);
}

/* Dot pattern di kiri atas */
/* .petugas-banner::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 10px;
    width: 100px;
    height: 50px;
    background-image: radial-gradient(
        rgba(255, 255, 255, 0.4) 1.5px,
        transparent 1.5px
    );
    background-size: 10px 10px;
    opacity: 0.8;
    z-index: 1;
} */

/* Wave putih bawah — ditangani SVG inline */

/* SVG wave */
.petugas-banner-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 72px;
    z-index: 2;
}

/* Avatar overlap — di atas wave */
.petugas-avatar-wrap {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 4px 18px rgba(3, 95, 156, 0.22);
    background: linear-gradient(135deg, #dbeafe, #93c5fd);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    z-index: 10;
}

.petugas-avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top; /* atau center / 50% 20% */
}

/* Body kartu — padding top lebih besar karena avatar lebih besar */
.petugas-body {
    padding: 52px 20px 20px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.petugas-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
    line-height: 1.3;
}

.petugas-instansi {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 3px;
}

.petugas-role {
    font-size: 12px;
    color: var(--biru);
    font-weight: 700;
    margin-bottom: 14px;
}

/* Tags */
.petugas-tags {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
}

.petugas-tags:has(.petugas-tag:nth-child(2):last-child) {
    flex-wrap: nowrap; /* 🔥 kalau cuma 2 item, jangan turun */
}

.petugas-tag {
    background: #eff6ff;
    color: var(--biru);
    font-size: 10.5px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
    border: 1px solid #bfdbfe;
    white-space: nowrap;
    margin-bottom: 10px;
}

/* Tag +N lainnya — tooltip */
.tag-more {
    position: relative;
    background: #f1f5f9;
    color: #64748b;
    font-size: 10.5px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    cursor: default;
    white-space: nowrap;

    margin-bottom: 10px;
}

.tag-more-tooltip {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #1e293b;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 10px;
    white-space: nowrap;
    line-height: 1.7;
    z-index: 20;
    text-align: left;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
    min-width: 140px;
    pointer-events: none;
}

.tag-more-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #1e293b;
}

.tag-more:hover .tag-more-tooltip {
    display: block;
}

/* Tombol reservasi — outline style */
.btn-reservasi {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 13px;
    font-weight: 700;
    font-family: "Plus Jakarta Sans", sans-serif;
    text-align: center;
    text-decoration: none;
    color: var(--biru);
    background: transparent;
    border: 1.5px solid var(--biru);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;

    margin-top: auto;
}

.btn-reservasi:hover {
    background: var(--biru);
    color: #fff;
    box-shadow: 0 4px 14px rgba(3, 95, 156, 0.3);
}

/* ── Filter empty state ── */
.filter-empty {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 60px 20px;
    text-align: center;
    color: var(--muted);
    grid-column: 1 / -1;
}
.filter-empty i {
    font-size: 52px;
    color: #cbd5e1;
}
.filter-empty p {
    font-size: 15px;
    font-weight: 500;
}
.filter-empty button {
    padding: 10px 24px;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s;
}
.filter-empty button:hover {
    background: var(--blue-dark);
}

/* ════════════════════════════════════════════════════
   TOPIK SECTION — Display Only (no filter interaction)
   ════════════════════════════════════════════════════ */

.topik-section {
    padding: 80px 60px;
    background: #fff;
}

.topik-header {
    text-align: center;
    margin-bottom: 40px;
}

.topik-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Item — display only, no pointer cursor */
.topik-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 8px;
    /* background: #f8fafc; */
    /* border: 1px solid #e2e8f0; */
    border-radius: 16px;
    cursor: default;
    transition:
        box-shadow 0.2s,
        transform 0.2s;
    font-family: "Plus Jakarta Sans", sans-serif;
    pointer-events: none; /* tidak bisa diklik */
    user-select: none;
}

.topik-item:hover {
    /* no hover effect — display only */
}

/* Icon circle */
.topik-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.topik-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

.topik-label {
    font-size: 11px;
    font-weight: 600;
    color: #475569;
    text-align: center;
    line-height: 1.4;
}

/* Hapus semua active/hover effects karena topik tidak interaktif */
.topik-item.active .topik-icon,
.topik-item:hover .topik-icon {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.topik-item.active .topik-label {
    color: #475569;
    font-weight: 600;
}
.topik-item.active .topik-icon img {
    filter: none;
}

/* Tombol hapus filter — dipakai oleh sidebar reset saja */
.btn-hapus-filter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: #fee2e2;
    color: #dc2626;
    border: 2px solid #fecaca;
    border-radius: 12px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}
.btn-hapus-filter:hover {
    background: #fecaca;
}

.btn-wrapper {
    text-align: center;
}

.btn-submit {
    background: #035f9c;
    color: #fff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.05em;
    padding: 13px 48px;
    border-radius: 12px;
    border: none;
    cursor: pointer;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    box-shadow: 0 4px 16px rgba(0, 60, 99, 0.3);
    transition: all 0.25s ease;
}

/* Hover effect */
.btn-submit:hover {
    background: #005a94;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 60, 99, 0.4);
}

/* Klik effect */
.btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0, 60, 99, 0.3);
}

/* Icon biar lebih balance */
.btn-submit i {
    font-size: 16px;
}
/* ══ RESPONSIVE KONSULTASI ══════════════════════════════════ */

@media (max-width: 1024px) {
    .hero {
        padding: 0 24px 60px;
        margin-top: 72px;
    }

    .hero-container {
        flex-direction: column;
        min-height: unset;
        gap: 0;
        padding-top: 24px;
    }

    .hero-left,
    .hero-right {
        min-height: unset;
    }

    .hero-left {
        flex: none;
        width: 100%;
        max-width: 100%;
        padding: 40px 20px 32px;
    }

    .hero-right {
        flex: none;
        width: 100%;
        max-width: 100%;
        padding: 0 0 40px;
    }

    .hero-content-card {
            margin-top: 40px;

        max-width: 100%;
    }

    .cara-section {
        padding: 60px 40px;
    }

    .reservasi-section {
        padding: 60px 32px;
    }

    .topik-section {
        padding: 60px 32px;
    }

    .reservasi-body {
        grid-template-columns: 1fr;
    }

    .filter-sidebar {
        position: static;
        padding: 14px 16px;
    }

    .filter-sidebar-title {
        display: block;
        margin-bottom: 8px;
        font-size: 12px;
        text-align: center;
    }

    .filter-sidebar-list {
        flex-direction: row;
        flex-wrap: wrap;
        max-height: unset;
        overflow: visible;
        gap: 6px;
        padding: 0;
    }

    .filter-btn {
        padding: 6px 14px;
        border-radius: 20px;
        border: 1px solid var(--border);
        font-size: 12px;
        gap: 6px;
    }

    .filter-btn.active {
        border-color: var(--biru);
    }

    .filter-btn-reset {
        width: auto;
        margin: 0;
        padding: 6px 14px;
        font-size: 12px;
        border-radius: 20px;
    }

    .petugas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .topik-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    /* Alur tablet */
    .cara-section .section-title {
        font-size: 1.8rem;
    }

    .steps-z {
        padding: 0 16px;
    }

    .step-row {
        grid-template-columns: 1fr 60px 1fr;
        min-height: 180px;
    }

    .step-content {
        padding: 24px;
    }

    .step-num {
        font-size: 3rem;
    }

    .step-content h4 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.86rem;
    }

    .step-icon-circle {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .step-visual-inner {
        width: 120px;
        height: 120px;
        font-size: 52px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 0 16px 0;
    }

    .hero-left {
        /*min-height: unset !important;*/
        min-height: 250px;
        height: auto;
        /*height: 340px;*/
        padding: 20px 16px;
        position: relative;
    }

    .hero-circle {
        width: 150px;
        height: 150px;
    }

    .hero-circle-icon {
        font-size: 56px;
    }

    .hero-circle::before {
        inset: -36px;
    }

    .float-card {
        min-width: 76px;
        font-size: 10px;
        padding: 7px 9px;
        gap: 3px;
        border-radius: 10px;
        /*transform: scale(0.7);*/
        transform-origin: center;
        z-index: 10;
    }

    .float-card i {
        font-size: 15px;
        width: 28px;
        height: 28px;
    }

    .hero-right {
        padding: 0 0 40px;
    }

    .hero-content-card {
            margin-top: 40px;

        padding: 24px 18px;
        border-radius: 16px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-desc {
        font-size: 13px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
        justify-content: center;
    }

    .reservasi-section {
        padding: 48px 20px;
    }

    .topik-section {
        padding: 48px 20px;
    }

    .steps-grid,
    .petugas-grid {
        grid-template-columns: 1fr;
    }

    .topik-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
    }

    .topik-icon {
        width: 48px;
        height: 48px;
    }

    .topik-icon img {
        width: 28px;
        height: 28px;
    }

    .topik-label {
        font-size: 10.5px;
    }

    .reservasi-card {
        padding: 24px 18px;
        border-radius: 16px;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
        gap: 8px;
    }

    .form-label {
        width: 100%;
    }

    .btn-submit {
        width: 100%;
    }

    /* Alur Reservasi mobile */
    .cara-section {
        padding: 60px 0 50px;
    }

    .cara-section .section-title {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    .cara-section .section-sub {
        font-size: 0.85rem;
        margin-bottom: 36px;
    }

    .steps-z {
        padding: 0 14px;
    }

    .step-row {
        display: grid;
        grid-template-columns: 48px 1fr;
        grid-template-rows: auto auto;
        min-height: unset;
        gap: 0;
        align-items: start;
        padding-bottom: 8px;
    }

    .step-odd .step-center,
    .step-even .step-center {
        grid-column: 1;
        grid-row: 1 / 3;
        align-items: flex-start;
        padding-top: 20px;
        height: 100%;
    }

    .step-odd .step-visual,
    .step-even .step-visual {
        grid-column: 2;
        grid-row: 1;
        display: flex;
        justify-content: flex-start;
        padding: 12px 0 8px 12px;
    }

    .step-odd .step-content,
    .step-even .step-content {
        grid-column: 2;
        grid-row: 2;
        margin-left: 12px;
    }

    .step-visual-inner {
        width: 72px;
        height: 72px;
        font-size: 32px;
    }

    .step-content {
        padding: 16px 18px;
        border-radius: 14px;
        margin-bottom: 4px;
    }

    .step-num {
        font-size: 2.2rem;
        letter-spacing: -1px;
        margin-bottom: 4px;
    }

    .step-content h4 {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }

    .step-content p {
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .step-note {
        font-size: 0.75rem !important;
    }

    .step-icon-circle {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .step-center::before {
        left: 19px;
    }

    .step-row:first-child .step-center::before {
        top: 0;
    }

    .step-row:last-child .step-center::before {
        bottom: 0;
    }
}

@media (max-width: 480px) {
    .reservasi-section,
    .topik-section {
        padding: 36px 14px;
    }

    .petugas-grid {
        grid-template-columns: 1fr;
    }

    .topik-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .topik-icon {
        width: 44px;
        height: 44px;
    }

    .topik-icon img {
        width: 26px;
        height: 26px;
    }

    .reservasi-card {
        padding: 20px 14px;
    }

    textarea,
    input,
    select {
        font-size: 16px !important;
    }
}