header {
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.04);
}

.hero-badge,
.hero-title,
.hero-text,
.hero-button {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 0.9s ease forwards;
}

.hero-badge {
    animation-delay: 0.2s;
}

.hero-title {
    animation-delay: 0.4s;
}

.hero-text {
    animation-delay: 0.6s;
}

.hero-button {
    animation-delay: 0.8s;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-animate {
    opacity: 0;
    transform: translateY(45px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-animate.show {
    opacity: 1;
    transform: translateY(0);
}

.delay-150 {
    transition-delay: 0.15s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-450 {
    transition-delay: 0.45s;
}

.delay-600 {
    transition-delay: 0.6s;
}

.delay-750 {
    transition-delay: 0.75s;
}


/* admin */

.admin-body {
    margin: 0;
    min-height: 100vh;
    background: #020617;
    color: #ffffff;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.admin-wrapper {
    min-height: 100vh;
    display: flex;
    background: #020617;
}


/* Sidebar */

.admin-sidebar {
    width: 280px;
    min-height: 100vh;
    background: #020617;
    border-right: 1px solid #1e293b;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
}

.admin-brand {
    padding: 32px 28px 24px;
}

.admin-brand h1 {
    margin: 0;
    color: #facc15;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.admin-brand p {
    margin: 6px 0 0;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}

.admin-menu {
    padding: 0 16px;
}

.admin-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    margin-bottom: 8px;
    border-radius: 16px;
    color: #94a3b8;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
}

.admin-menu-link span {
    font-size: 18px;
}

.admin-menu-link:hover {
    background: #0f172a;
    color: #ffffff;
}

.admin-menu-link.active {
    background: #facc15;
    color: #020617;
    box-shadow: 0 16px 35px rgba(250, 204, 21, 0.18);
}

.admin-logout-box {
    padding: 18px;
    border-top: 1px solid #1e293b;
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    margin-bottom: 14px;
    border-radius: 18px;
    background: #0f172a;
}

.admin-avatar,
.admin-profile {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #facc15;
    color: #020617;
    font-weight: 900;
}

.admin-user strong {
    display: block;
    font-size: 14px;
    color: #ffffff;
}

.admin-user small {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    color: #64748b;
}

.admin-logout {
    display: block;
    text-align: center;
    padding: 13px 16px;
    border-radius: 16px;
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.2);
    text-decoration: none;
    font-weight: 800;
    transition: 0.2s ease;
}

.admin-logout:hover {
    background: #ef4444;
    color: #ffffff;
}


/* Main */

.admin-main {
    flex: 1;
    min-width: 0;
    background: #0f172a;
}

.admin-topbar {
    height: 82px;
    padding: 0 32px;
    border-bottom: 1px solid #1e293b;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0f172a;
}

.admin-topbar-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.admin-topbar h2 {
    margin: 0;
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.admin-topbar p {
    margin: 4px 0 0;
    color: #94a3b8;
    font-size: 14px;
}

.admin-topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-date {
    padding: 12px 18px;
    border-radius: 16px;
    background: #1e293b;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 700;
}

.hamburger-btn {
    display: none;
    background: #1e293b;
    color: #ffffff;
    border: 1px solid #334155;
    border-radius: 14px;
    padding: 10px 13px;
    cursor: pointer;
}


/* Content */

.admin-content {
    padding: 32px;
}

.admin-welcome {
    background: linear-gradient(135deg, #020617 0%, #111827 50%, #1e293b 100%);
    border: 1px solid #1e293b;
    border-radius: 28px;
    padding: 32px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    margin-bottom: 28px;
}

.admin-badge {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(250, 204, 21, 0.1);
    color: #facc15;
    font-size: 12px;
    font-weight: 900;
}

.admin-welcome h1 {
    margin: 18px 0 0;
    font-size: 36px;
    line-height: 1.1;
    font-weight: 950;
    letter-spacing: -0.05em;
    color: #ffffff;
}

.admin-welcome p {
    max-width: 680px;
    margin: 14px 0 0;
    color: #94a3b8;
    line-height: 1.7;
}

.admin-primary-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 16px;
    background: #facc15;
    color: #020617;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 16px 35px rgba(250, 204, 21, 0.18);
    transition: 0.2s ease;
}

.admin-primary-btn:hover {
    background: #fde047;
    transform: translateY(-2px);
}


/* Stats */

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.admin-card {
    background: #020617;
    border: 1px solid #1e293b;
    border-radius: 24px;
    padding: 24px;
    transition: 0.2s ease;
}

.admin-card:hover {
    border-color: rgba(250, 204, 21, 0.5);
    transform: translateY(-2px);
}

.admin-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.admin-card-header p {
    margin: 0;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 800;
}

.admin-card h3 {
    margin: 20px 0 0;
    font-size: 42px;
    font-weight: 950;
    color: #ffffff;
    letter-spacing: -0.05em;
}

.admin-card small {
    display: block;
    margin-top: 8px;
    color: #64748b;
    font-size: 13px;
}

.status {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
}

.status.yellow {
    background: rgba(250, 204, 21, 0.12);
    color: #facc15;
}

.status.blue {
    background: rgba(96, 165, 250, 0.12);
    color: #60a5fa;
}

.status.orange {
    background: rgba(251, 146, 60, 0.12);
    color: #fb923c;
}

.status.green {
    background: rgba(74, 222, 128, 0.12);
    color: #4ade80;
}


/* Grid */

.admin-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
    gap: 24px;
}

.admin-table-card,
.admin-summary-card {
    background: #020617;
    border: 1px solid #1e293b;
    border-radius: 24px;
    overflow: hidden;
}

.admin-section-header {
    padding: 22px 24px;
    border-bottom: 1px solid #1e293b;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-section-header h3,
.admin-summary-card h3 {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 950;
}

.admin-section-header p,
.admin-summary-card p {
    margin: 5px 0 0;
    color: #64748b;
    font-size: 14px;
}

.admin-section-header a {
    padding: 10px 14px;
    border-radius: 14px;
    background: #1e293b;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
}

.table-responsive {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}

.admin-table thead {
    background: #0f172a;
}

.admin-table th {
    padding: 16px 24px;
    text-align: left;
    color: #64748b;
    font-size: 13px;
    font-weight: 900;
}

.admin-table td {
    padding: 18px 24px;
    color: #cbd5e1;
    border-top: 1px solid #1e293b;
    font-size: 14px;
}

.admin-table td strong {
    color: #ffffff;
}

.table-status {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.table-status.waiting {
    background: rgba(250, 204, 21, 0.12);
    color: #facc15;
}

.table-status.success {
    background: rgba(74, 222, 128, 0.12);
    color: #4ade80;
}

.table-status.process {
    background: rgba(96, 165, 250, 0.12);
    color: #60a5fa;
}


/* Summary */

.admin-summary-card {
    padding: 24px;
}

.progress-list {
    margin-top: 26px;
    display: grid;
    gap: 22px;
}

.progress-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 9px;
    color: #94a3b8;
    font-size: 14px;
}

.progress-label strong {
    color: #ffffff;
}

.progress-bar {
    height: 9px;
    background: #1e293b;
    border-radius: 999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 999px;
}

.progress-fill.yellow {
    background: #facc15;
}

.progress-fill.blue {
    background: #60a5fa;
}

.progress-fill.green {
    background: #4ade80;
}

.progress-fill.red {
    background: #f87171;
}


/* Mobile */

.mobile-sidebar-overlay {
    display: none;
}

.mobile-sidebar-overlay.show {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 999;
}

.mobile-sidebar-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
}

.mobile-sidebar {
    position: relative;
    width: 280px;
    height: 100%;
    background: #020617;
    border-right: 1px solid #1e293b;
    padding: 20px;
}

.mobile-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.mobile-sidebar-header h1 {
    margin: 0;
    color: #facc15;
    font-size: 24px;
    font-weight: 950;
}

.mobile-sidebar-header p {
    margin: 4px 0 0;
    color: #64748b;
    font-size: 12px;
}

.mobile-sidebar-header button {
    background: #1e293b;
    color: #ffffff;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 8px 12px;
    cursor: pointer;
}

@media (max-width: 1200px) {
    .admin-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .admin-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .admin-sidebar {
        display: none;
    }
    .hamburger-btn {
        display: inline-flex;
    }
    .admin-wrapper {
        display: block;
    }
    .admin-main {
        min-height: 100vh;
    }
}

@media (max-width: 768px) {
    .admin-content {
        padding: 20px;
    }
    .admin-topbar {
        padding: 0 20px;
    }
    .admin-topbar p {
        display: none;
    }
    .admin-date {
        display: none;
    }
    .admin-welcome {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }
    .admin-welcome h1 {
        font-size: 28px;
    }
    .admin-stats {
        grid-template-columns: 1fr;
    }
    .admin-primary-btn {
        width: 100%;
    }
}


/* data paket admin */


/* Data Paket Page */

.admin-page-header {
    background: linear-gradient(135deg, #020617 0%, #111827 55%, #1e293b 100%);
    border: 1px solid #1e293b;
    border-radius: 28px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.admin-page-header h1 {
    margin: 18px 0 0;
    color: #ffffff;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.admin-page-header p {
    margin: 12px 0 0;
    max-width: 680px;
    color: #94a3b8;
    line-height: 1.7;
}

.paket-stats {
    margin-bottom: 28px;
}

.admin-filter-card {
    background: #020617;
    border: 1px solid #1e293b;
    border-radius: 24px;
    padding: 22px;
    margin-bottom: 28px;
}

.admin-filter-form {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 220px 180px 120px;
    gap: 16px;
    align-items: end;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 800;
}

.admin-input,
.admin-select {
    width: 100%;
    height: 46px;
    border: 1px solid #1e293b;
    border-radius: 14px;
    background: #0f172a;
    color: #ffffff;
    padding: 0 14px;
    outline: none;
    font-size: 14px;
}

.admin-input::placeholder {
    color: #64748b;
}

.admin-input:focus,
.admin-select:focus {
    border-color: #facc15;
}

.admin-secondary-btn {
    width: 100%;
    height: 46px;
    border: none;
    border-radius: 14px;
    background: #1e293b;
    color: #ffffff;
    font-weight: 900;
    cursor: pointer;
    transition: 0.2s ease;
}

.admin-secondary-btn:hover {
    background: #334155;
}

.paket-table td small {
    display: block;
    margin-top: 6px;
    max-width: 360px;
    color: #64748b;
    line-height: 1.5;
}

.paket-thumb {
    width: 72px;
    height: 56px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid #1e293b;
    background: #0f172a;
}

.text-right {
    text-align: right !important;
}

.table-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    height: 34px;
    padding: 0 12px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    transition: 0.2s ease;
}

.action-btn.edit {
    background: rgba(96, 165, 250, 0.12);
    color: #60a5fa;
}

.action-btn.edit:hover {
    background: #60a5fa;
    color: #020617;
}

.action-btn.delete {
    background: rgba(248, 113, 113, 0.12);
    color: #f87171;
}

.action-btn.delete:hover {
    background: #ef4444;
    color: #ffffff;
}

@media (max-width: 1200px) {
    .admin-filter-form {
        grid-template-columns: 1fr 1fr;
    }
    .form-action {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .admin-page-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }
    .admin-page-header h1 {
        font-size: 28px;
    }
    .admin-page-header .admin-primary-btn {
        width: 100%;
    }
    .admin-filter-form {
        grid-template-columns: 1fr;
    }
    .form-action {
        grid-column: span 1;
    }
    .table-actions {
        justify-content: flex-start;
    }
}


/* data booking admin */


/* Data Booking Page */

.booking-stats {
    margin-bottom: 28px;
}

.booking-filter-form {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) 180px 180px 180px 120px;
    gap: 16px;
    align-items: end;
}

.booking-table td small {
    display: block;
    margin-top: 6px;
    max-width: 300px;
    color: #64748b;
    line-height: 1.5;
}

.action-btn.detail {
    background: rgba(250, 204, 21, 0.12);
    color: #facc15;
}

.action-btn.detail:hover {
    background: #facc15;
    color: #020617;
}

.table-status.canceled {
    background: rgba(248, 113, 113, 0.12);
    color: #f87171;
}

@media (max-width: 1280px) {
    .booking-filter-form {
        grid-template-columns: 1fr 1fr;
    }
    .booking-filter-form .form-action {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .booking-filter-form {
        grid-template-columns: 1fr;
    }
    .booking-filter-form .form-action {
        grid-column: span 1;
    }
}


/* ===============================
   ADMIN PAKET CRUD - DARK THEME FIX
   tempel di PALING BAWAH style.css
================================ */


/* Global spacing admin */

.admin-content {
    padding: 36px 40px;
    background: #0f172a;
}


/* Alert */

.admin-alert {
    margin-bottom: 26px;
    padding: 16px 18px;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
}

.admin-alert.success {
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.25);
    color: #4ade80;
}

.admin-alert.error {
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid rgba(248, 113, 113, 0.25);
    color: #f87171;
}

.admin-alert ul {
    margin: 0;
    padding-left: 18px;
}


/* Page header */

.admin-page-header {
    background: linear-gradient(135deg, #020617 0%, #111827 55%, #1e293b 100%);
    border: 1px solid #1e293b;
    border-radius: 28px;
    padding: 36px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 32px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.admin-page-header h1 {
    margin: 18px 0 0;
    color: #ffffff;
    font-size: 36px;
    line-height: 1.1;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.admin-page-header p {
    margin: 14px 0 0;
    max-width: 720px;
    color: #94a3b8;
    line-height: 1.75;
    font-size: 15px;
}

.admin-badge {
    display: inline-flex;
    width: fit-content;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(250, 204, 21, 0.1);
    color: #facc15;
    font-size: 12px;
    font-weight: 950;
}


/* Button */

.admin-primary-btn,
.admin-secondary-btn {
    min-height: 46px;
    padding: 0 20px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 950;
    border: none;
    cursor: pointer;
    transition: 0.2s ease;
    white-space: nowrap;
}

.admin-primary-btn {
    background: #facc15;
    color: #020617;
    box-shadow: 0 16px 35px rgba(250, 204, 21, 0.18);
}

.admin-primary-btn:hover {
    background: #fde047;
    transform: translateY(-2px);
}

.admin-secondary-btn {
    background: #1e293b;
    color: #ffffff;
    border: 1px solid #334155;
}

.admin-secondary-btn:hover {
    background: #334155;
    transform: translateY(-1px);
}


/* Stats */

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 34px;
}

.admin-card {
    background: #020617;
    border: 1px solid #1e293b;
    border-radius: 24px;
    padding: 26px 28px;
    min-height: 150px;
    transition: 0.2s ease;
}

.admin-card:hover {
    border-color: rgba(250, 204, 21, 0.45);
    transform: translateY(-2px);
}

.admin-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.admin-card-header p {
    margin: 0;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 850;
}

.admin-card h3 {
    margin: 24px 0 0;
    color: #ffffff;
    font-size: 42px;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.admin-card small {
    display: block;
    margin-top: 10px;
    color: #64748b;
    font-size: 13px;
}


/* Status chip */

.status {
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 950;
}

.status.yellow {
    background: rgba(250, 204, 21, 0.12);
    color: #facc15;
}

.status.green {
    background: rgba(74, 222, 128, 0.12);
    color: #4ade80;
}

.status.orange {
    background: rgba(251, 146, 60, 0.12);
    color: #fb923c;
}

.status.blue {
    background: rgba(96, 165, 250, 0.12);
    color: #60a5fa;
}


/* Filter */

.admin-filter-card {
    background: #020617;
    border: 1px solid #1e293b;
    border-radius: 24px;
    padding: 24px 26px;
    margin-bottom: 34px;
}

.admin-filter-form {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) 260px auto;
    gap: 20px;
    align-items: end;
}

.form-action {
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-action .admin-primary-btn,
.form-action .admin-secondary-btn {
    width: auto;
    min-width: 104px;
}


/* Form group */

.form-group {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.form-group label {
    display: block;
    margin: 0;
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 900;
}

.form-group small {
    display: block;
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
}


/* Input, select, textarea */

.admin-input,
.admin-select,
.admin-textarea {
    width: 100%;
    border: 1px solid #1e293b;
    border-radius: 16px;
    background: #0f172a;
    color: #ffffff;
    outline: none;
    font-size: 14px;
    transition: 0.2s ease;
}

.admin-input,
.admin-select {
    height: 52px;
    padding: 0 16px;
}

.admin-textarea {
    min-height: 150px;
    padding: 16px;
    resize: vertical;
    line-height: 1.7;
}

.admin-input::placeholder,
.admin-textarea::placeholder {
    color: #64748b;
}

.admin-input:focus,
.admin-select:focus,
.admin-textarea:focus {
    border-color: #facc15;
    box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.08);
}


/* Table card */

.admin-table-card {
    background: #020617;
    border: 1px solid #1e293b;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.admin-section-header {
    padding: 26px 30px;
    border-bottom: 1px solid #1e293b;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.admin-section-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: 22px;
    font-weight: 950;
    letter-spacing: -0.03em;
}

.admin-section-header p {
    margin: 7px 0 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

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

.admin-table {
    width: 100%;
    min-width: 920px;
    border-collapse: collapse;
}

.admin-table thead {
    background: #0f172a;
}

.admin-table th {
    padding: 18px 26px;
    text-align: left;
    color: #64748b;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.admin-table td {
    padding: 20px 26px;
    color: #cbd5e1;
    border-top: 1px solid #1e293b;
    font-size: 14px;
    vertical-align: middle;
}

.admin-table tbody tr {
    transition: 0.18s ease;
}

.admin-table tbody tr:hover td {
    background: rgba(15, 23, 42, 0.7);
}

.admin-table td strong {
    display: block;
    color: #ffffff;
    font-weight: 900;
}

.paket-table td small {
    display: block;
    margin-top: 7px;
    max-width: 380px;
    color: #64748b;
    line-height: 1.55;
}

.paket-thumb {
    width: 82px;
    height: 62px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid #1e293b;
    background: #0f172a;
}

.text-right {
    text-align: right !important;
}


/* Table status */

.table-status {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
}

.table-status.success {
    background: rgba(74, 222, 128, 0.12);
    color: #4ade80;
}

.table-status.process {
    background: rgba(96, 165, 250, 0.12);
    color: #60a5fa;
}

.table-status.waiting {
    background: rgba(250, 204, 21, 0.12);
    color: #facc15;
}

.table-status.canceled {
    background: rgba(248, 113, 113, 0.12);
    color: #f87171;
}


/* Actions */

.table-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.table-actions form {
    display: inline-flex;
    margin: 0;
}

.action-btn {
    min-width: 68px;
    height: 36px;
    padding: 0 13px;
    border-radius: 12px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 12px;
    font-weight: 950;
    font-family: inherit;
    cursor: pointer;
    transition: 0.2s ease;
}

.action-btn.edit {
    background: rgba(96, 165, 250, 0.12);
    color: #60a5fa;
}

.action-btn.edit:hover {
    background: #60a5fa;
    color: #020617;
}

.action-btn.delete {
    background: rgba(248, 113, 113, 0.12);
    color: #f87171;
}

.action-btn.delete:hover {
    background: #ef4444;
    color: #ffffff;
}


/* Empty table */

.empty-table {
    padding: 48px 24px;
    text-align: center;
}

.empty-table strong {
    display: block;
    color: #ffffff;
    font-size: 20px;
    font-weight: 950;
}

.empty-table p {
    margin: 10px 0 0;
    color: #64748b;
    line-height: 1.6;
}


/* ===============================
   CREATE / EDIT FORM CARD
================================ */

.admin-form-card {
    background: #020617;
    border: 1px solid #1e293b;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.admin-form-body {
    padding: 30px;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

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

.admin-form-footer {
    padding: 24px 30px;
    border-top: 1px solid #1e293b;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.admin-form-footer .admin-secondary-btn,
.admin-form-footer .admin-primary-btn {
    width: auto;
    min-width: 150px;
}


/* Current image in edit */

.current-image-box {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px;
    border: 1px dashed #334155;
    border-radius: 18px;
    background: #0f172a;
}

.current-image-box img {
    width: 160px;
    height: 105px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid #1e293b;
}

.current-image-box strong {
    display: block;
    color: #ffffff;
    font-weight: 950;
    margin-bottom: 6px;
}

.current-image-box p {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
    font-size: 13px;
}


/* File input */

input[type="file"].admin-input {
    padding: 13px 16px;
    height: auto;
    cursor: pointer;
}

input[type="file"].admin-input::file-selector-button {
    margin-right: 14px;
    border: none;
    border-radius: 12px;
    background: #facc15;
    color: #020617;
    padding: 10px 14px;
    font-weight: 950;
    cursor: pointer;
}


/* Responsive */

@media (max-width: 1280px) {
    .admin-content {
        padding: 28px;
    }
    .admin-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .admin-filter-form {
        grid-template-columns: 1fr 260px;
    }
    .form-action {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .admin-content {
        padding: 20px;
    }
    .admin-page-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 26px;
    }
    .admin-page-header h1 {
        font-size: 28px;
    }
    .admin-page-header .admin-primary-btn,
    .admin-page-header .admin-secondary-btn {
        width: 100%;
    }
    .admin-stats {
        grid-template-columns: 1fr;
    }
    .admin-filter-form {
        grid-template-columns: 1fr;
    }
    .form-action {
        flex-direction: column;
        width: 100%;
    }
    .form-action .admin-primary-btn,
    .form-action .admin-secondary-btn {
        width: 100%;
    }
    .admin-form-grid {
        grid-template-columns: 1fr;
    }
    .admin-form-body {
        padding: 24px;
    }
    .admin-form-footer {
        padding: 22px 24px;
        flex-direction: column-reverse;
    }
    .admin-form-footer .admin-secondary-btn,
    .admin-form-footer .admin-primary-btn {
        width: 100%;
    }
    .current-image-box {
        flex-direction: column;
        align-items: flex-start;
    }
    .current-image-box img {
        width: 100%;
        height: 180px;
    }
    .table-actions {
        justify-content: flex-start;
    }
}


/* ===============================
   ADMIN BOOKING MODAL
================================ */

body.modal-open {
    overflow: hidden;
}

.admin-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.admin-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.admin-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.78);
    backdrop-filter: blur(8px);
}

.admin-modal-panel {
    position: relative;
    z-index: 2;
    width: min(920px, 100%);
    max-height: 90vh;
    overflow: hidden;
    background: #020617;
    border: 1px solid #1e293b;
    border-radius: 28px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
}

.admin-modal-header {
    padding: 28px 30px;
    border-bottom: 1px solid #1e293b;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    background: linear-gradient(135deg, #020617 0%, #111827 55%, #1e293b 100%);
}

.admin-modal-header h3 {
    margin: 14px 0 0;
    color: #ffffff;
    font-size: 28px;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.admin-modal-header p {
    margin: 8px 0 0;
    color: #94a3b8;
    line-height: 1.6;
}

.admin-modal-close {
    width: 42px;
    height: 42px;
    border: 1px solid #334155;
    border-radius: 14px;
    background: #0f172a;
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: 0.2s ease;
}

.admin-modal-close:hover {
    background: #1e293b;
}

.admin-modal-body {
    padding: 30px;
    max-height: calc(90vh - 150px);
    overflow-y: auto;
}

.booking-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.booking-detail-item {
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 18px;
    padding: 18px;
}

.booking-detail-item.full {
    grid-column: 1 / -1;
}

.booking-detail-item small {
    display: block;
    color: #64748b;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 8px;
}

.booking-detail-item strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
}

.booking-detail-item .normal-text {
    font-weight: 700;
    white-space: pre-line;
}

.admin-map-link {
    display: inline-flex;
    margin-top: 14px;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(250, 204, 21, 0.12);
    color: #facc15;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.admin-map-link:hover {
    background: #facc15;
    color: #020617;
}

.admin-modal-section {
    margin-top: 24px;
    padding: 22px;
    border-radius: 20px;
    background: #0f172a;
    border: 1px solid #1e293b;
}

.admin-modal-section h4 {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 950;
}

.admin-modal-section p {
    margin: 8px 0 0;
    color: #64748b;
    line-height: 1.6;
}

.modal-status-form {
    margin-top: 18px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
}

.booking-status-timeline {
    margin-top: 18px;
    display: grid;
    gap: 16px;
}

.booking-status-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.booking-status-row strong {
    display: block;
    color: #ffffff;
    font-size: 14px;
}

.booking-status-row small {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 13px;
}

.booking-status-dot {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    margin-top: 3px;
    flex-shrink: 0;
}

.booking-status-dot.waiting {
    background: #facc15;
}

.booking-status-dot.process {
    background: #60a5fa;
}

.booking-status-dot.success {
    background: #4ade80;
}

.booking-status-dot.canceled {
    background: #f87171;
}

.modal-empty-text {
    margin-top: 14px !important;
    color: #94a3b8 !important;
}

.action-btn.detail {
    background: rgba(250, 204, 21, 0.12);
    color: #facc15;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.action-btn.detail:hover {
    background: #facc15;
    color: #020617;
}

@media (max-width: 768px) {
    .admin-modal.show {
        padding: 14px;
        align-items: flex-start;
    }
    .admin-modal-panel {
        max-height: 94vh;
        margin-top: 20px;
    }
    .admin-modal-header {
        padding: 24px;
    }
    .admin-modal-header h3 {
        font-size: 22px;
    }
    .admin-modal-body {
        padding: 22px;
        max-height: calc(94vh - 140px);
    }
    .booking-detail-grid {
        grid-template-columns: 1fr;
    }
    .modal-status-form {
        grid-template-columns: 1fr;
    }
    .modal-status-form .admin-primary-btn {
        width: 100%;
    }
}

.header {
    backdrop-filter: blur(14px);
    background: rgba(0, 0, 0, 0.72);
    border-bottom: 1px solid rgba(250, 204, 21, 0.18);
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
}

#mobileMenu {
    box-shadow: 0 24px 60px rgba(255, 255, 255, 0.45);
}