/* =========================
   IMPORT FONTS
========================= */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

/* =========================
   ROOT VARIABLES
========================= */
:root {
    /* Colors */
    --bg-light: #f7f9fa;
    --bg-alt: #f7f9fa;
    --border: #f1f1f1;
    --text-main: #1a1d1f;
    --text-muted: #9a9fa5;
    --green: #27ae60;
    --green-soft: #e8f5e9;
    --green-bg: #e8f5e9;
    --red: #eb5757;
    --red-soft: #fee2e2;

    --primary: #6509ce;
    --secondary: #6f767e;
    --success: #27ae60;
    --warning: #ffc505;
    --danger: #eb5757;
    --info: #2d9cdb;
    --light: #f7f9fa;
    --dark: #111315;
}

/* =========================
   BASE BODY STYLE
========================= */
body {
    font-family:
        "Inter",
        sans-serif,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Helvetica,
        Arial,
        sans-serif;
    color: var(--text-main);
    margin: 0;
}

/* =========================
   SIDEBAR UI
========================= */
.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #1f883d;
}
.brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
}
.brand-icon {
    color: var(--green);
    font-size: 24px;
    margin-right: 10px;
}

.sub-nav {
    padding-left: 32px;
    margin-top: 5px;
}
.sub-nav a {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 12px;
}
.dot,
.dot-sm {
    border-radius: 50%;
    display: inline-block;
}
.dot {
    width: 8px;
    height: 8px;
    margin-right: 10px;
}
.dot.green,
.dot-sm.green {
    background: var(--green);
}
.dot.red,
.dot-sm.red {
    background: var(--red);
}
.dot.orange {
    background: #f2994a;
}
.dot.gray {
    background: #c4c4c4;
}
.dot-sm {
    width: 6px;
    height: 6px;
    margin-right: 5px;
}

/* =========================
   HEADER & ACTION BAR
========================= */
.top-header,
.header-top,
.header-bottom,
.action-bar {
    display: flex;
    justify-content: space-between;
    padding: 12px 24px;
    border-bottom: 1px solid var(--border);
    align-items: center;
    background: #fff;
    flex-wrap: wrap;
    gap: 10px;
}
.workspace-pill {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 4px 12px;
    gap: 10px;
    background: #fff;
}
.v-box {
    background: #111;
    color: #fff;
    border-radius: 4px;
    padding: 0 6px;
    font-size: 12px;
    font-weight: 700;
}
.workspace-tag {
    background: var(--bg-light);
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 6px;
}
.btn-invite,
.btn-invite-dark {
    background: #fff;
    border: 1px solid #111;
    border-radius: 50px;
    padding: 6px 18px;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-outline-pill {
    background: #fff;
    border: 1px solid #e6e8ec;
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
}
.btn-sq {
    background: #fff;
    border: 1px solid #e6e8ec;
    border-radius: 8px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-wrap {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e6e8ec;
    border-radius: 8px;
    padding: 0 12px;
    gap: 8px;
}
.search-wrap input {
    border: none;
    outline: none;
    font-size: 13px;
    height: 32px;
    width: 200px;
}
/* =========================
   STATS & METRICS CARDS
========================= */
.stats-container,
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}
.stats-card,
.metric-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1px solid var(--border);
}
.stats-card h4,
.metric-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
}
.stats-card p,
.metric-card p {
    font-size: 12px;
    color: var(--text-muted);
}

/* --- CARDS (FLAT) --- */
.content-box {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
}
.box-header {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.box-body {
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.box-body h3 {
    margin: 0;
    font-weight: 700;
}
.box-body span.up {
    color: var(--green);
    font-size: 13px;
    font-weight: 600;
}
.box-body span.neutral {
    color: var(--text-muted);
    font-size: 13px;
}

/* =========================
   HEATMAP / CHART AREA
========================= */
.heatmap-container,
.chart-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border);
    margin-bottom: 24px;
}
.heatmap-title,
.chart-title {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--text-main);
}

/* =========================
   MEMBER TABLE
========================= */
.table-wrapper,
.members-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}
.table-wrapper th,
.table-wrapper td {
    padding: 12px 16px;
    text-align: left;
    font-size: 13px;
    color: var(--text-main);
    border-bottom: 1px solid var(--border);
}
.table-wrapper th {
    font-weight: 700;
    background: var(--bg-light);
}
.table-wrapper tr:hover {
    background: var(--bg-hover);
}

/* =========================
   RIGHT PANEL / SIDEBAR
========================= */
.right-panel,
.sidebar-right {
    width: 280px;
    background: #fff;
    border-left: 1px solid var(--border);
    padding: 20px;
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}
.right-panel h5,
.panel-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}
.right-panel-section {
    margin-bottom: 24px;
}
.right-panel-section p {
    font-size: 12px;
    color: var(--text-muted);
}
.right-panel .btn-sq,
.sidebar-right .btn-sq {
    margin-right: 8px;
}

/* =========================
   BADGES & LABELS
========================= */
.badge,
.label-pill {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}
.badge.green,
.label-pill.green {
    background: var(--green);
    color: #fff;
}
.badge.red,
.label-pill.red {
    background: var(--red);
    color: #fff;
}
.badge.orange {
    background: #f2994a;
    color: #fff;
}
.badge.gray {
    background: #c4c4c4;
    color: #fff;
}
.badge-private {
    background: #f7f9fa;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
}
.tag-feature {
    color: var(--green);
    font-weight: 700;
    font-size: 13px;
    background: var(--green-soft);
    padding: 2px 8px;
    border-radius: 4px;
}
/* =========================
   ALERTS & NOTIFICATIONS
========================= */
.alert,
.notification {
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 13px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.alert.success {
    background: #e6f4ea;
    color: var(--green);
}
.alert.error {
    background: #fdecea;
    color: var(--red);
}
.alert.warning {
    background: #fff4e5;
    color: #f2994a;
}
.alert-custom {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
}
.alert-custom.success {
    background: var(--green-soft);
    color: #155724;
}
.alert-custom.danger {
    background: var(--red-soft);
    color: #721c24;
}
/* =========================
   MODALS & POPUPS
========================= */

.modal-custom {
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
.modal-header-custom {
    padding: 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal-body-custom {
    padding: 20px;
}
.btn-close-custom {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-muted);
    cursor: pointer;
}

/* =========================
   BUTTON VARIANTS
========================= */
.section-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* --- VARIANTS --- */
.btn-primary-flat {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.2s;
}

.btn-primary-flat:disabled {
    background: #e6e8ec;
    color: #9a9fa5;
    cursor: not-allowed;
}

.btn-secondary-flat {
    background: white;
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
}

.btn-secondary-pill {
    background: #fff;
    border: 1px solid #1a1d1f;
    color: #1a1d1f;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

.btn-outline-custom {
    background: #fff;
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
}
.btn-outline-custom.active {
    border-color: var(--text-main);
    background: #f7f9fa;
}

.btn-ghost {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
}
.btn-ghost:hover {
    color: var(--text-main);
    background: var(--border);
    border-radius: 10px;
}

.btn-danger-soft {
    background: var(--red-soft);
    color: var(--red);
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
}

/* =========================
   BUTTON (REPLACE BOOTSTRAP)
========================= */
.btn {
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 10px !important;
    border: none;
    box-shadow: none !important;
    transition: 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Solid */
.btn-primary {
    background: var(--primary);
    color: #fff;
}
.btn-primary:hover {
    background: var(--primary);
    color: #fff;
}
.btn-secondary {
    background: var(--secondary);
    color: #fff;
}
.btn-secondary:hover {
    background: var(--secondary);
    color: #fff;
}
.btn-success {
    background: var(--success);
    color: #fff;
}
.btn-sucess:hover {
    background: var(--success);
    color: #fff;
}
.btn-warning {
    background: var(--warning);
    color: #000;
}
.btn-warning:hover {
    background: var(--warning);
    color: #fff;
}
.btn-danger {
    background: var(--danger);
    color: #fff;
}
.btn-danger:hover {
    background: var(--danger);
    color: #fff;
}
.btn-info {
    background: var(--info);
    color: #fff;
}
.btn-info:hover {
    background: var(--info);
    color: #fff;
}
.btn-dark {
    background: var(--dark);
    color: #fff;
}
.btn-dark:hover {
    background: var(--dark);
    color: #fff;
}

.btn-light {
    background: #fff;
    border: 1px solid var(--border);
    color: var(--text-main);
}

/* Outline */
.btn-outline-primary {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
}

/* Sizes */
.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 6px !important;
}
.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 12px !important;
}

/* Disabled */
.btn:disabled {
    background: #e6e8ec !important;
    color: #9a9fa5 !important;
}

/* --- REPOVERSE STYLE --- */
.btn-pill-badge {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-pill-badge .count.green {
    background: var(--green-bg);
    color: var(--green);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
}

.btn-invite-dark {
    background: #fff;
    border: 1px solid #1a1d1f;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-sq-border {
    background: #fff;
    border: 1px solid var(--border);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-main);
}

/* --- SIZES --- */
.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 6px;
}
.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 12px;
}

/* --- LOADING STATE --- */
.btn-loading {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
}
.spinner {
    width: 14px;
    height: 14px;
    border: 2px solid #fff;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* --- GLOBAL BUTTON RESET --- */
.btn-flat,
.btn-soft,
.btn-outline {
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* --- SOLID STYLE --- */
.btn-primary {
    background: var(--primary);
    color: white;
}
.btn-secondary {
    background: var(--secondary);
    color: white;
}
.btn-success {
    background: var(--success);
    color: white;
}
.btn-warning {
    background: var(--warning);
    color: white;
}
.btn-info {
    background: var(--info);
    color: white;
}
.btn-danger {
    background: var(--danger);
    color: white;
}
.btn-light {
    background: var(--light);
    color: var(--primary);
    border: 1px solid var(--border);
}
.btn-dark {
    background: var(--dark);
    color: white;
}

.btn-flat:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* --- SOFT STYLE (Keren buat Dashboard) --- */
.btn-soft-primary {
    background: #c7e0f5;
    color: var(--primary);
}
.btn-soft-success {
    background: #e8f5e9;
    color: var(--success);
}
.btn-soft-warning {
    background: #fff4e5;
    color: var(--warning);
}
.btn-soft-info {
    background: #e3f2fd;
    color: var(--info);
}
.btn-soft-danger {
    background: #fee2e2;
    color: var(--danger);
}

.btn-soft:hover {
    filter: brightness(0.95);
}

/* --- OUTLINE STYLE --- */
.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
}
.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}
.btn-outline-success {
    border-color: var(--success);
    color: var(--success);
}
.btn-outline-danger {
    border-color: var(--danger);
    color: var(--danger);
}
.btn-outline-warning {
    border-color: var(--warning);
    color: var(--warning);
}

.btn-outline:hover {
    background: #f8f9fa;
}
/* =========================
   FORM ELEMENTS
========================= */
.input-flat,
.select-pill {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 14px;
    outline: none;
    width: 100%;
    background: var(--bg-alt);
}
.form-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: block;
}

.search-box-kit {
    display: flex;
    align-items: center;
    background: #f7f9fa;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0 15px;
    gap: 10px;
}
.search-box-kit input {
    border: none;
    background: transparent;
    outline: none;
    height: 45px;
    width: 100%;
    font-size: 14px;
}
.select-pill {
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    appearance: none;
    background: #fff
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%239A9FA5' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 9l6 6l6-6'/%3E%3C/svg%3E")
        no-repeat right 15px center;
}

/* =========================
   PAGINATION & TABS
========================= */
.pagination-custom {
    display: flex;
    align-items: center;
    gap: 5px;
}
.page-num,
.page-nav {
    background: white;
    border: 1px solid var(--border);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    transition: 0.2s;
}
.page-num.active {
    background: #1a1d1f;
    color: white;
    border-color: #1a1d1f;
}
.page-num:hover:not(.active) {
    background: var(--bg-alt);
}
.page-dots {
    padding: 0 10px;
    color: var(--text-muted);
}

.nav-tabs,
.nav-tabs-custom {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    border-bottom: 1px solid var(--border);
}
.nav-tabs li,
.nav-link-custom {
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
}
.nav-tabs li.active,
.nav-link-custom.active {
    color: var(--text-main);
}
.nav-tabs li.active::after,
.nav-link-custom.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text-main);
}

.nav-tabs-custom {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 30px;
    border-bottom: 1px solid var(--border);
}
.nav-tabs-custom li {
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
}
.nav-tabs-custom li.active {
    color: var(--text-main);
}
.nav-tabs-custom li.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text-main);
}
.nav-tabs-custom {
    border-bottom: 1px solid var(--border);
    gap: 20px;
}
.nav-link-custom {
    background: none;
    border: none;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
    transition: 0.3s;
}
.nav-link-custom.active {
    color: var(--text-main);
}
.nav-link-custom.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text-main);
}

/* =========================
   PROGRESS BAR
========================= */
.progress-custom {
    height: 8px;
    background: var(--bg-alt);
    border-radius: 10px;
    overflow: hidden;
}
.progress-bar-fill {
    height: 100%;
    border-radius: 10px;
}
.progress-bar-fill.green {
    background: var(--green);
}
.progress-bar-fill.red {
    background: var(--red);
}
.dropdown-mock {
    width: 220px;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 8px;
    background: white;
}
.dropdown-item-custom {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    border-radius: 8px;
}
.dropdown-item-custom:hover {
    background: var(--bg-alt);
}
.divider {
    height: 1px;
    background: var(--border);
    margin: 8px 0;
}
/* =========================
   UTILITIES & MISC
========================= */
.text-center {
    text-align: center;
}
.flex {
    display: flex;
}
.flex-column {
    flex-direction: column;
}
.flex-wrap {
    flex-wrap: wrap;
}
.gap-10 {
    gap: 10px;
}
.gap-20 {
    gap: 20px;
}
.mb-10 {
    margin-bottom: 10px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-24 {
    margin-bottom: 24px;
}
.mt-20 {
    margin-top: 20px;
}
.rounded {
    border-radius: 10px;
}
.overflow-auto {
    overflow: auto;
}
.hidden {
    display: none;
}
.visible {
    display: block;
}

/* Checkbox & Radio */
.form-check-input {
    border: 1px solid var(--border);
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}
/* =========================
   PREMIUM FLOATING FIELD
========================= */

.f-field {
    position: relative;
}

.f-field input {
    width: 100%;
    height: 64px;
    border-radius: 16px;
    border: 1.5px solid #e2e8f0;
    background: #f8fafc;
    padding: 1.4rem 1rem 0.6rem 1rem;
    font-size: 15px;
    transition: all 0.25s ease;
    outline: none;
}

/* Hover */
.f-field input:hover {
    border-color: #cbd5e1;
}

/* Focus */
.f-field input:focus {
    background: #fff;
    border-color: #6366f1;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.12);
}

/* Label default */
.f-field label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #94a3b8;
    transition: all 0.2s ease;
    pointer-events: none;
    padding: 0 4px;
}

/* Floating active */
.f-field input:focus + label,
.f-field input:not(:placeholder-shown) + label {
    top: 10px;
    transform: scale(0.85);
    color: #6366f1;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border-radius: 6px;
    padding: 0 8px;
}

/* Accordiaon */
.accordion {
    --bs-accordion-border-color: transparent;
    --bs-accordion-border-radius: 16px;
}

/* Item */
.accordion-item {
    border: none;
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    /* background: #ffffff; */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

/* Header */
.accordion-header {
    border-radius: 16px;
}

/* Button */
.accordion-button {
    /* background: #f8fafc; */
    font-weight: 600;
    padding: 18px 20px;
    border: none;
    box-shadow: none;
    transition: all 0.25s ease;
}

/* Active */
.accordion-button:not(.collapsed) {
    background: #ffffff;
    color: #0f172a;
    box-shadow: none;
}

/* Fokus (biar tidak biru default) */
.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

/* Body */
.accordion-body {
    padding: 20px;
    color: #475569;
    line-height: 1.6;
    background: #ffffff;
}

/* Collapse animation feel */
.accordion-collapse {
    transition: all 0.3s ease;
}

/* Search Container */
.search-card-modern {
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Input Group Styling */
.input-group-modern {
    position: relative;
    display: flex;
    align-items: center;
    color: #6c757d;
}

.input-group-modern .icon-left {
    position: absolute;
    left: 15px;
    z-index: 5;
    color: #6c757d;
    font-size: 1.2rem;
}

.input-group-modern .form-control,
.input-group-modern .form-select {
    padding-left: 45px;
    height: 55px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    transition: all 0.3s ease;
}

.input-group-modern .form-control:focus {
    background-color: #fff;
    border-color: #ffc107;
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.1);
}

/* Tombol Swap */
.btn-swap-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #ffc107;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.btn-swap-circle:hover {
    background: #ffc107;
    color: #fff;
    transform: rotate(180deg);
}

/* Pastikan select2 tidak menutup icon */
.select2-container {
    z-index: 1;
    width: 100% !important;
}

.select2-container--bootstrap-5 .select2-selection {
    height: 52px !important;
    padding-top: 6px;
    /* supaya teks vertical align */
    padding-bottom: 6px;
    background-color: var(--bs-body-bg) !important;
}

/* Samakan tinggi & radius */
.select2-container--bootstrap-5 .select2-selection {
    height: 52px !important;
    border-radius: 12px !important;
    border: 1px solid #e3e6ea !important;
    padding-left: 42px !important;
    /* ruang icon */
    display: flex !important;
    align-items: center !important;
}

/* Text vertical center */
.select2-container--bootstrap-5 .select2-selection__rendered {
    line-height: normal !important;
    padding-left: 0 !important;
    color: #212529;
}

/* Placeholder */
.select2-container--bootstrap-5 .select2-selection__placeholder {
    color: #6c757d !important;
}

/* Focus effect samakan dengan input tanggal */
.select2-container--bootstrap-5.select2-container--focus .select2-selection {
    border-color: #0d6efd !important;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.15) !important;
}

/* Arrow position */
.select2-container--bootstrap-5 .select2-selection__arrow {
    height: 100% !important;
    right: 12px !important;
}

/* Feature Card */
.feature-card {
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card iconify-icon {
    /* font-size: 80px; */
    color: #0d6efd;
    margin-bottom: 15px;
}

/* Popular */
.popular-section {
    background: linear-gradient(135deg, #0d6efd, #523ada);
}

.route-card {
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.route-card:hover {
    transform: translateY(-5px);
}

.step-card {
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.1);
}

/* nomor kecil di corner */
.step-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fbbf24;
    color: #111827;
    font-weight: 700;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
}

/* icon spacing helper (tidak mengubah icon) */
.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, #0d6efd, #523ada);
}

.seo-detailed-info {
    overflow: hidden;
}

.icon-box-small {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.rounded-4 {
    border-radius: 1.5rem !important;
}

@media (max-width: 768px) {
}
