:root {
    --primary: #FFA500; /* Zamil Tour Orange */
    --primary-hover: #e69500;
    --secondary: #1e293b;
    --bg-light: #f8f9fa;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-light);
    color: #333;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* --- SKELETON / SHIMMER ANIMATION --- */
.skeleton-img { 
    background-color: #e2e8f0; 
    position: relative; 
    overflow: hidden; 
}
.skeleton-img::after {
    content: ''; 
    position: absolute; 
    top: 0; 
    right: 0; 
    bottom: 0; 
    left: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shimmer 1.5s infinite; 
    z-index: 1;
}
@keyframes shimmer { 
    100% { transform: translateX(100%); } 
}

/* --- STYLING PUBLIC (BERANDA PAKET) --- */
.zamiltour-header { 
    text-align: center; 
    margin-bottom: 30px; 
}
.zamiltour-header h1 { 
    font-family: 'Poppins', sans-serif; 
    font-size: 36px; 
    margin-bottom: 15px; 
    font-weight: 800; 
    color: #1e293b; 
}
.package-filter { 
    display: flex; 
    justify-content: center; 
    gap: 10px; 
    margin-bottom: 30px; 
    flex-wrap: wrap; 
}
.filter-btn { 
    padding: 10px 24px; 
    border: 2px solid #e2e8f0; 
    background: white; 
    border-radius: 30px; 
    font-family: 'Inter', sans-serif; 
    font-weight: 600; 
    font-size: 14px; 
    color: #4a5568; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
}
.filter-btn:hover { 
    border-color: var(--primary); 
    color: var(--primary); 
    transform: translateY(-2px); 
}
.filter-btn.active { 
    background: linear-gradient(135deg, var(--primary), #e53e3e); 
    color: white; 
    border-color: transparent; 
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3); 
}

.app-container { 
    margin: 0 auto; 
    padding: 20px 15px; 
    width: 100%;
    max-width: 100%;
}

@media (min-width: 1400px) {
    .container, .app-container {
        max-width: 1400px;
    }
    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
}
@media (min-width: 1920px) {
    .container, .app-container {
        max-width: 1600px;
    }
}

.zamiltour-card { 
    background: white; 
    border-radius: 15px; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); 
    transition: all 0.3s ease; 
    border: 1px solid #e2e8f0; 
    position: relative; 
    display: flex; 
    flex-direction: column; 
    height: 100%; 
    width: 100%; 
    max-width: 380px; 
    margin: 0 auto; 
}
.zamiltour-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1); 
    border-color: var(--primary); 
}
.card-image { 
    width: 100%; 
    aspect-ratio: 4 / 5; 
    position: relative; 
    overflow: hidden; 
    border-radius: 15px 15px 0 0; 
    border-bottom: 1px solid #e2e8f0; 
    cursor: zoom-in; 
}
.card-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}
.card-image:hover img { 
    transform: scale(1.08); 
}

.promo-ribbon { 
    position: absolute; 
    top: 20px; 
    left: -8px; 
    background: #E74C3C; 
    color: white; 
    padding: 8px 16px; 
    font-family: 'Poppins', sans-serif; 
    font-size: 13px; 
    font-weight: 800; 
    letter-spacing: 1px; 
    box-shadow: 3px 4px 10px rgba(0,0,0,0.2); 
    border-radius: 0 8px 8px 0; 
    z-index: 10; 
    text-transform: uppercase; 
}
.promo-ribbon::before { 
    content: ''; 
    position: absolute; 
    top: 100%; 
    left: 0; 
    border-top: 8px solid #922B21; 
    border-left: 8px solid transparent; 
}
.type-badge { 
    position: absolute; 
    top: 15px; 
    right: 15px; 
    padding: 6px 14px; 
    border-radius: 30px; 
    font-size: 10px; 
    font-weight: 800; 
    letter-spacing: 0.5px; 
    text-transform: uppercase; 
    display: inline-flex; 
    align-items: center; 
    gap: 6px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); 
    z-index: 5; 
}
.badge-reguler { 
    background: linear-gradient(135deg, #10b981, #059669); 
    color: white; 
}
.badge-plus { 
    background: linear-gradient(135deg, #3b82f6, #1d4ed8); 
    color: white; 
}
.badge-pelataran { 
    background: linear-gradient(135deg, #8b5cf6, #7c3aed); 
    color: white; 
}

.overlay-soldout { 
    position: absolute; 
    inset: 0; 
    background: rgba(255,255,255,0.6); 
    backdrop-filter: grayscale(40%) blur(1px); 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    z-index: 5; 
    border-radius: 15px 15px 0 0; 
}
.stamp-full { 
    border: 4px solid #DC2626; 
    color: #DC2626; 
    padding: 10px 30px; 
    font-family: 'Poppins', sans-serif; 
    font-weight: 900; 
    font-size: 2.2rem; 
    border-radius: 12px; 
    letter-spacing: 4px; 
    text-transform: uppercase; 
    transform: rotate(-15deg); 
    background: rgba(255, 255, 255, 0.8); 
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2); 
    line-height: 1; 
}

.card-body-content { 
    padding: 20px; 
    display: flex; 
    flex-direction: column; 
    flex-grow: 1; 
    border-radius: 0 0 15px 15px; 
}
.package-title { 
    font-family: 'Poppins', sans-serif; 
    font-size: 18px; 
    font-weight: 800; 
    color: #000; 
    text-align: center; 
    line-height: 1.3; 
    min-height: 46px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-transform: uppercase; 
}
.package-main-info { 
    background: #f7f9fa; 
    padding: 12px 15px; 
    border-radius: 10px; 
    margin: 15px 0; 
    border: 1px solid #e2e8f0; 
}
.date-item { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    margin-bottom: 10px; 
    padding-bottom: 10px; 
    border-bottom: 1px dashed #e2e8f0; 
}
.date-item:last-child { 
    border-bottom: none; 
    margin-bottom: 0; 
    padding-bottom: 0; 
}
.date-label { 
    font-size: 13px; 
    color: #718096; 
    font-weight: 600; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
}
.date-value { 
    font-weight: 700; 
    color: #2d3748; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    font-size: 13px; 
}
.date-value i { 
    color: var(--primary); 
    font-size: 14px; 
}
.facilities { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 6px; 
    justify-content: center; 
    margin-bottom: 15px; 
}
.facility-tag { 
    background: #e6fffa; 
    color: #065f46; 
    padding: 5px 12px; 
    border-radius: 20px; 
    font-size: 11px; 
    font-weight: 600; 
    border: 1px solid #a7f3d0; 
}
.price-section { 
    text-align: center; 
    margin-top: auto; 
    padding-top: 15px; 
    border-top: 1px dashed #e2e8f0; 
}
.price-label { 
    font-family: 'Inter', sans-serif; 
    font-size: 13px; 
    color: #718096; 
    font-weight: 600; 
    margin-bottom: 2px; 
}
.price-old { 
    text-decoration: line-through; 
    color: #ef4444; 
    font-family: 'Poppins', sans-serif; 
    font-size: 16px; 
    font-weight: 700; 
    margin-bottom: 0; 
}
.price { 
    font-family: 'Poppins', sans-serif; 
    font-size: 26px; 
    font-weight: 800; 
    color: #000; 
    line-height: 1.1; 
    background: linear-gradient(135deg, #000000, #e53e3e); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    background-clip: text; 
}
.price-note { 
    font-size: 12px; 
    color: #94a3b8; 
    font-style: italic; 
    margin-top: 2px; 
}
.action-row { 
    margin-top: 15px; 
    width: 100%; 
    display: flex; 
    justify-content: center;
}

.limited-badges { 
    background: linear-gradient(135deg, var(--primary), #e53e3e); 
    color: white !important; 
    padding: 12px 20px; 
    border-radius: 30px; 
    font-size: 14px; 
    font-weight: 700; 
    text-align: center; 
    display: block; 
    text-decoration: none; 
    transition: all 0.3s ease; 
    border: none; 
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3); 
    width: 100%; 
    max-width: 300px; 
}
.limited-badges:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 6px 15px rgba(255, 165, 0, 0.4); 
}
.limited-badges:disabled, .limited-badges.disabled { 
    background: linear-gradient(135deg, #94a3b8, #64748b) !important; 
    color: #cbd5e1 !important; 
    cursor: not-allowed; 
    box-shadow: none; 
    pointer-events: none;
}
.flash-sale-banner { 
    background: linear-gradient(90deg, #f59e0b, #ea580c); 
    color: white; 
    border-radius: 8px; 
    padding: 6px; 
    text-align: center; 
    margin-bottom: 12px; 
    font-size: 11px; 
    font-weight: 700; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 5px; 
}
/* Loading Spinner */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    width: 100%;
}
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.loading-text {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

/* --- MODAL DETAIL --- */
.modal-backdrop { z-index: 999998 !important; }
.modal { z-index: 999999 !important; }
.modal#modalDet .modal-dialog { max-width: min(1200px, 95vw); width: 100%; }
.modal#modalDet .modal-content { border: 0; border-radius: 1rem; overflow: hidden; }
.modal#modalDet .modal-body { overflow-y: auto; padding: 0; scrollbar-width: thin; }
.modal#modalDet .modal-header { flex-shrink: 0; }

.list-icon-inc, .list-icon-exc { list-style: none; padding: 0; margin: 0; text-align: left; }
.list-icon-inc li { position: relative; padding-left: 28px; margin-bottom: 8px; font-size: 14px; color: #4a5568; font-weight: 500; }
.list-icon-inc li::before { content: '\f058'; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; top: 1px; color: #10B981; font-size: 16px; }
.list-icon-exc li { position: relative; padding-left: 28px; margin-bottom: 8px; font-size: 14px; color: #4a5568; font-weight: 500; }
.list-icon-exc li::before { content: '\f057'; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; top: 1px; color: #EF4444; font-size: 16px; }
.detail-title-icon { font-size: 24px; vertical-align: middle; margin-right: 8px; }
.detail-box { border: 1px solid #e2e8f0; border-radius: 16px; padding: 20px; background: #fff; height: 100%; box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.itinerary-img { width: 100%; border-radius: 12px; border: 1px solid #e2e8f0; cursor: zoom-in; margin-bottom: 20px; }
.btn-booking-modal { 
    background: linear-gradient(135deg, #FF8C00, #F35508) !important; 
    color: white !important; 
    padding: 14px 30px !important; 
    border-radius: 50px !important; 
    font-size: 16px !important; 
    font-family: 'Poppins', sans-serif !important; 
    font-weight: 700 !important; 
    text-align: center !important; 
    display: inline-flex !important; 
    align-items: center !important; 
    justify-content: center !important; 
    gap: 10px !important; 
    border: none !important; 
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4) !important; 
    width: 100% !important; 
    max-width: 350px !important; 
    cursor: pointer !important; 
    transition: all 0.3s ease !important; 
    margin: 0 auto !important; 
}

#img-viewer { 
    position: fixed; 
    inset: 0; 
    background: rgba(0,0,0,0.95); 
    z-index: 1000000; 
    display: none; 
    justify-content: center; 
    align-items: center; 
    padding: 20px; 
    backdrop-filter: blur(5px); 
}
#img-viewer img { 
    max-width: 100%; 
    max-height: 90vh; 
    border-radius: 12px; 
    object-fit: contain; 
}
#close-viewer { 
    position: absolute; 
    top: 20px; 
    right: 20px; 
    background: white; 
    border: none; 
    width: 40px; 
    height: 40px; 
    border-radius: 50%; 
    font-size: 1.2rem; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: center;
}

/* --- LOGIN ADMIN STYLING --- */
.login-card { 
    background: white; 
    border-radius: 20px; 
    overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
    border: 1px solid #e2e8f0; 
    max-width: 900px; 
    margin: 40px auto; 
}
.login-left { 
    background: url('https://images.unsplash.com/photo-1592326871020-04f58c1a52f3?q=80') center/cover no-repeat; 
    min-height: 400px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    position: relative; 
}
.login-left::before { 
    content: ''; 
    position: absolute; 
    inset: 0; 
    background: rgba(0,0,0,0.4); 
}
.login-left h2 { 
    position: relative; 
    z-index: 1; 
    color: white; 
    font-family: 'Poppins', sans-serif; 
    font-weight: 800; 
    font-size: 2.5rem; 
    text-shadow: 0 4px 10px rgba(0,0,0,0.5); 
}
.login-right { 
    padding: 40px 30px; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
}

.admin-brand { 
    color: var(--primary); 
    font-family: 'Poppins', sans-serif; 
    font-weight: 800; 
    font-size: 28px; 
    text-align: center; 
    margin-bottom: 5px; 
}
.form-control-admin { 
    border: 1px solid #e2e8f0; 
    border-radius: 8px; 
    padding: 12px 15px; 
    font-size: 14px; 
    background: #f8fafc; 
}
.form-control-admin:focus { 
    border-color: var(--primary); 
    box-shadow: 0 0 0 0.2rem rgba(255, 165, 0, 0.25); 
    background: white; 
}
.btn-admin-primary { 
    background: var(--primary); 
    color: white; 
    border-radius: 8px; 
    padding: 12px; 
    font-weight: 700; 
    border: none; 
    width: 100%; 
    transition: 0.3s; 
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3); 
}
.btn-admin-primary:hover { 
    background: var(--primary-hover); 
    color: white; 
    transform: translateY(-2px); 
    box-shadow: 0 6px 15px rgba(255, 165, 0, 0.4); 
}

/* --- ADMIN SIDEBAR & CONTENT --- */
.admin-sidebar-box { 
    background: white; 
    border-radius: 16px; 
    border: 1px solid #e2e8f0; 
    padding: 20px 0; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.02); 
    height: 100%; 
}
.sidebar-brand-box { 
    padding: 0 20px 20px; 
    border-bottom: 1px solid #f1f5f9; 
    margin-bottom: 15px; 
    text-align: center; 
}

.menu-label { 
    font-size: 11px; 
    font-weight: 700; 
    color: #94a3b8; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    padding: 10px 20px 5px; 
    margin-top: 10px; 
}
.sidebar-menu { 
    list-style: none; 
    padding: 0 10px; 
    margin: 0; 
}
.sidebar-menu li a { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    padding: 10px 15px; 
    color: #475569; 
    text-decoration: none; 
    font-weight: 500; 
    font-size: 14px; 
    border-radius: 8px; 
    transition: 0.2s;
}
.sidebar-menu li a i { 
    font-size: 16px; 
    width: 20px; 
    text-align: center; 
    color: #94a3b8; 
}
.sidebar-menu li a:hover { 
    background: #fff7ed; 
    color: var(--primary); 
}
.sidebar-menu li a:hover i { 
    color: var(--primary); 
}
.sidebar-menu li.active a { 
    background: var(--primary); 
    color: white; 
    font-weight: 600; 
    box-shadow: 0 4px 10px rgba(255, 165, 0, 0.2); 
}
.sidebar-menu li.active a i { 
    color: white; 
}

.admin-topbar { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 25px; 
    background: white; 
    padding: 15px 25px; 
    border-radius: 16px; 
    border: 1px solid #e2e8f0; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.02); 
}
.admin-title { 
    font-family: 'Poppins', sans-serif; 
    font-size: 20px; 
    font-weight: 700; 
    color: #1e293b; 
    margin: 0; 
    display: flex;
    align-items: center;
    gap: 15px;
}
.admin-profile { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
}
.avatar-circle { 
    width: 40px; 
    height: 40px; 
    background: #fff7ed; 
    color: var(--primary); 
    border: 1px solid #ffd8a8; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: bold; 
    font-size: 16px;
}

.stat-card { 
    background: white; 
    padding: 20px; 
    border-radius: 16px; 
    border: 1px solid #e2e8f0; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.stat-icon { 
    width: 45px; 
    height: 45px; 
    background: var(--primary); 
    color: white; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 18px; 
    box-shadow: 0 4px 10px rgba(255, 165, 0, 0.3); 
}

.admin-panel-card { 
    background: white; 
    border-radius: 16px; 
    border: 1px solid #e2e8f0; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.02); 
    overflow: hidden;
}
.admin-panel-header { 
    padding: 20px 25px; 
    border-bottom: 1px solid #e2e8f0; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    background: white;
    flex-wrap: wrap;
    gap: 10px;
}

/* Progress Bar Upload */
.upload-progress {
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
    margin-top: 10px;
}
.upload-progress-bar {
    height: 100%;
    background: var(--primary);
    width: 0%;
    transition: width 0.3s ease;
}
/* Admin Full Width */
.container-fluid {
    width: 100%;
    padding-right: 30px;
    padding-left: 30px;
    margin-right: auto;
    margin-left: auto;
}
/* Sidebar tetap proporsional */
.admin-sidebar-box {
    position: sticky;
    top: 20px;
}
/* Konten tabel bisa scroll horizontal */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
/* Card admin panel lebar penuh */
.admin-panel-card {
    width: 100%;
}
@media (min-width: 1600px) {
    .container-fluid {
        padding-right: 50px;
        padding-left: 50px;
    }
    .col-lg-3 {
        flex: 0 0 auto;
        width: 18%;
    }
    .col-lg-9 {
        flex: 0 0 auto;
        width: 82%;
    }
}
/* Kwitansi Styles */
.kwitansi-box {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.kwitansi-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--primary);
}
.kwitansi-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-weight: bold;
    color: var(--primary);
}
.kwitansi-terbilang {
    font-style: italic;
    color: #666;
    margin-top: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
}
.kwitansi-footer {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}
.ttd-line {
    width: 200px;
    border-top: 1px solid #000;
    margin-top: 50px;
    padding-top: 10px;
    text-align: center;
}

/* Table Admin */
.table-admin {
    width: 100%;
    border-collapse: collapse;
}
.table-admin th {
    background: #f8fafc;
    padding: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #64748b;
    border-bottom: 2px solid #e2e8f0;
}
.table-admin td {
    padding: 12px;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: middle;
}

/* Badges */
.badge-success { background: #d1fae5; color: #065f46; }
.badge-warning { background: #fed7aa; color: #92400e; }
.badge-danger { background: #fee2e2; color: #991b1b; }
.badge-info { background: #dbeafe; color: #1e40af; }

/* Refresh Button */
.btn-refresh {
    background: none;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px 15px;
    color: #64748b;
    transition: all 0.3s ease;
}
.btn-refresh:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}
.btn-refresh i {
    transition: transform 0.3s ease;
}
.btn-refresh:hover i {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .zamiltour-header h1 { font-size: 28px; }
    .package-filter { gap: 8px; }
    .filter-btn { padding: 8px 16px; font-size: 12px; }
    .package-title { font-size: 16px; min-height: 40px;}
    .price { font-size: 24px; }
    
    .login-left { display: none; }
    .admin-topbar { flex-direction: column; align-items: flex-start; gap: 15px; }
}
/* SPLIT SCREEN LOGIN */
.split-login {
    display: flex;
    min-height: 100vh;
    width: 100%;
}
.split-left {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.split-left::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1592326871020-04f58c1a52f3?q=80') center/cover no-repeat;
    opacity: 0.3;
    z-index: 1;
}
.split-left-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 40px;
}
.split-left-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.split-left-content p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
}
.split-left-content .quote {
    margin-top: 40px;
    font-style: italic;
    font-size: 16px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 30px;
}
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 40px;
}
.login-card-split {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}
.login-header-split {
    margin-bottom: 30px;
}
.login-header-split h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}
.welcome-textt {
    background: none;
    color: #FFFFFF;
    padding: 12px 20px;
    border-radius: 10px;
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 20px;
}
.welcome-text i {
    margin-right: 8px;
    color: #FFA500;
}
.form-group-split {
    margin-bottom: 25px;
}
.form-group-split label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}
.form-group-split label i {
    color: #FFA500;
    margin-right: 8px;
    width: 20px;
}
.input-split {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #eef2f6;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f8fafc;
}
.input-split:focus {
    border-color: #FFA500;
    background: white;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.1);
    outline: none;
}
.btn-split {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #FFA500, #FF8C00);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px 0 20px;
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-split:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 165, 0, 0.3);
}
.login-footer-split {
    text-align: center;
    margin-top: 20px;
}
.login-footer-split a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.login-footer-split a:hover {
    color: #FFA500;
}
.create-password-split {
    margin-top: 20px;
    text-align: center;
}
.create-password-split a {
    color: #FFA500;
    font-weight: 600;
    text-decoration: none;
}
.create-password-split a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .split-left {
        display: none;
    }
    .split-right {
        flex: none;
        width: 100%;
        min-height: 100vh;
    }
}
/* Reset untuk area admin panel */
.zamiltour-container * {
    box-sizing: border-box;
}

.zamiltour-container {
    all: initial; /* Reset semua properti */
}

.zamiltour-container * {
    font-family: 'Inter', sans-serif;
}
#jamaah-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 768px) {
    #jamaah-pagination {
        flex-direction: column;
    }
}

/* Style untuk upload area */
.upload-ktp-area {
    background: #f8f9fa;
    transition: all 0.3s;
}

.upload-ktp-area:hover {
    border-color: #FFA500 !important;
    background: #fff8f0;
}

.upload-ktp-area.drag-over {
    border-color: #FFA500 !important;
    background: #fff0dd;
}
/* ============================================
   DASHBOARD JAMAHAH - MOBILE FIRST (SEMUA DEVICE)
   ============================================ */

/* Reset & Base */
.jam-app {
    min-height: 100vh;
    background: #ffffff;
    position: relative;
    padding-bottom: 70px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Background gambar Masjidil Haram - Lebih terlihat */
.jam-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://kaleela.com/wp-content/uploads/2025/02/the-rituals-of-making-the-islamic-pilgrimage-to-mecca-for-hajj-and-umrah.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
}

.jam-app > * {
    position: relative;
    z-index: 1;
}

/* Container utama untuk memusatkan semua konten */
.jam-container {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header (Putih) - FULL WIDTH DI DESKTOP */
.jam-header {
    background: white;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 8px rgba(0,0,0,0.05);
}

.jam-header-logo {
    height: 38px;
    width: auto;
}

.jam-header-btn {
    background: #f5f5f5;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 19px;
    color: #FFA500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.jam-header-btn:hover {
    background: #FFA500;
    color: white;
}

/* Konten Utama */
.jam-content {
    flex: 1;
    padding: 16px;
}

.jam-tab-content {
    display: none;
}

.jam-tab-content.active {
    display: block;
    animation: jamFadeIn 0.3s ease;
}

@keyframes jamFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   DESKTOP (Lebar > 768px)
   ============================================ */
@media (min-width: 768px) {
    /* Header full width dengan spacing */
    .jam-header {
        position: sticky;
        top: 0;
        width: 100%;
        padding-left: max(20px, calc((100% - 500px) / 2));
        padding-right: max(20px, calc((100% - 500px) / 2));
    }
    
    .jam-header-logo {
        height: 42px;
    }
    
    /* Konten tetap di tengah dengan max-width 500px */
    .jam-content {
        max-width: 500px;
        margin: 0 auto;
        padding: 20px;
    }
    
    /* Bottom nav tetap di tengah */
    .jam-bottom-nav {
        max-width: 500px;
        margin: 0 auto;
        left: auto;
        right: auto;
        transform: none;
        position: relative;
    }
}

/* Welcome Card - Modern */
.jam-welcome-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 20px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background-image: url('https://kaleela.com/wp-content/uploads/2025/02/the-rituals-of-making-the-islamic-pilgrimage-to-mecca-for-hajj-and-umrah.png');
}

.jam-welcome-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.jam-welcome-card > * {
    position: relative;
    z-index: 1;
}

.jam-welcome-greeting {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.jam-greeting-icon {
    font-size: 20px;
}

.jam-welcome-card h2 {
    font-size: 28px;
    margin: 0 0 8px 0;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.jam-welcome-card p {
    font-size: 13px;
    opacity: 0.75;
    margin: 0;
}

/* Decoration - Modern */
.jam-welcome-decoration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 6px;
}

.jam-decoration-dot {
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    animation: jamPulse 1.5s infinite;
}

.jam-decoration-dot:nth-child(2) {
    animation-delay: 0.3s;
}

.jam-decoration-dot:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes jamPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Countdown Card */
.jam-countdown-card {
    background: white;
    border-radius: 16px;
    padding: 14px 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.jam-countdown-icon {
    width: 45px;
    height: 45px;
    background: #fff8f0;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jam-countdown-icon i {
    font-size: 20px;
    color: #FFA500;
}

.jam-countdown-info {
    flex: 1;
}

.jam-countdown-label {
    font-size: 11px;
    color: #999;
    margin-bottom: 2px;
}

.jam-countdown-date {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.jam-countdown-value {
    font-size: 14px;
    font-weight: 700;
}

.jam-countdown-card.normal .jam-countdown-value {
    color: #FFA500;
}

.jam-countdown-card.urgent .jam-countdown-value {
    color: #dc3545;
}

.jam-countdown-card.today .jam-countdown-value {
    color: #28a745;
}

/* Order Card */
.jam-order-card {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.jam-order-header {
    padding: 12px 16px;
    background: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.jam-order-title {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.jam-order-title i {
    color: #FFA500;
    margin-right: 6px;
}

.jam-order-status {
    background: #d4edda;
    color: #28a745;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 600;
}

.jam-order-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.jam-order-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
}

.jam-order-details {
    width: 100%;
    text-align: center;
}

.jam-order-name {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #333;
}

.jam-order-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.jam-order-duration {
    font-size: 11px;
    color: #666;
}

.jam-order-duration i {
    margin-right: 4px;
    color: #FFA500;
}

.jam-order-price {
    font-weight: 700;
    color: #FFA500;
    font-size: 14px;
}

.jam-order-divider {
    height: 1px;
    background: #eee;
    margin: 12px 0;
}

.jam-order-info-row {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    padding: 6px 0;
    color: #666;
}

.jam-order-info-row span:first-child i {
    color: #FFA500;
    margin-right: 5px;
    width: 16px;
}

/* Progress Card */
.jam-progress-card {
    background: white;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.jam-progress-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 500;
    flex-wrap: wrap;
    gap: 8px;
}

.jam-progress-card-header i {
    color: #FFA500;
    margin-right: 6px;
}

.jam-status-badge {
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 600;
}

.jam-status-lunas {
    background: #d4edda;
    color: #28a745;
}

.jam-status-dp {
    background: #fff3cd;
    color: #856404;
}

.jam-progress-bar-container {
    background: #e9ecef;
    border-radius: 20px;
    height: 28px;
    overflow: hidden;
    margin-bottom: 16px;
}

.jam-progress-bar-fill {
    background: linear-gradient(90deg, #FFA500, #FFD700);
    height: 100%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
}

.jam-progress-percent {
    color: white;
    font-size: 11px;
    font-weight: bold;
}

.jam-progress-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.jam-stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 10px;
}

.jam-stat-label {
    font-size: 11px;
    color: #999;
}

.jam-stat-value {
    font-size: 13px;
    font-weight: bold;
    color: #333;
}

/* Quick Stats */
.jam-quick-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.jam-stat-card-mini {
    background: white;
    border-radius: 14px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.jam-stat-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jam-stat-icon.bg-gold {
    background: #fff8f0;
    color: #FFA500;
}

.jam-stat-icon.bg-green {
    background: #d4edda;
    color: #28a745;
}

.jam-stat-icon.bg-blue {
    background: #e7f3ff;
    color: #2196F3;
}

.jam-stat-icon i {
    font-size: 20px;
}

.jam-stat-info {
    flex: 1;
}

.jam-stat-number {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.jam-stat-label-mini {
    display: block;
    font-size: 10px;
    color: #999;
}

/* Section Title */
.jam-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.jam-section-title i {
    font-size: 20px;
    color: #FFA500;
}

.jam-section-title h3 {
    font-size: 16px;
    margin: 0;
    font-weight: 600;
    color: #333;
}

/* Detail Order Card */
.jam-detail-order-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.jam-detail-order-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #f0f0f0;
}

.jam-detail-order-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jam-detail-order-body {
    padding: 16px;
}

.jam-detail-order-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: #333;
}

.jam-detail-order-price {
    font-size: 20px;
    font-weight: 700;
    color: #FFA500;
    margin-bottom: 10px;
}

.jam-detail-order-meta {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
    margin-bottom: 12px;
}

.jam-detail-order-meta span {
    font-size: 12px;
    color: #666;
}

.jam-detail-order-meta i {
    color: #FFA500;
    margin-right: 5px;
}

.jam-detail-order-section {
    margin-bottom: 16px;
}

.jam-detail-order-section h4 {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #333;
}

.jam-include-list, .jam-exclude-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.jam-include-list li, .jam-exclude-list li {
    padding: 5px 0;
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.jam-include-list li i {
    color: #28a745;
    font-size: 11px;
}

.jam-exclude-list li i {
    color: #dc3545;
    font-size: 11px;
}

.jam-addon-info {
    background: #fff8f0;
    padding: 10px;
    border-radius: 10px;
}

.jam-addon-info div {
    font-size: 12px;
    padding: 4px 0;
    color: #FFA500;
}

.jam-addon-info i {
    margin-right: 8px;
}

/* Dokumen List */
.jam-dokumen-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.jam-dokumen-item {
    background: white;
    border-radius: 14px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border-left: 3px solid #ccc;
}

.jam-dokumen-item.valid {
    border-left-color: #28a745;
}

.jam-dokumen-item.uploaded {
    border-left-color: #FFA500;
}

.jam-dokumen-item.pending {
    border-left-color: #dc3545;
}

.jam-dokumen-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jam-dokumen-item.valid .jam-dokumen-icon {
    background: #d4edda;
    color: #28a745;
}

.jam-dokumen-item.uploaded .jam-dokumen-icon {
    background: #fff8f0;
    color: #FFA500;
}

.jam-dokumen-item.pending .jam-dokumen-icon {
    background: #f8d7da;
    color: #dc3545;
}

.jam-dokumen-icon i {
    font-size: 18px;
}

.jam-dokumen-info {
    flex: 1;
}

.jam-dokumen-name {
    font-weight: 600;
    font-size: 13px;
    color: #333;
}

.jam-dokumen-status {
    font-size: 10px;
    color: #999;
    margin-top: 2px;
}

.jam-dokumen-link {
    color: #FFA500;
    font-size: 16px;
    padding: 6px;
}

/* Info Note */
.jam-info-note {
    background: #e7f3ff;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 11px;
    color: #0066cc;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.jam-info-note i {
    font-size: 14px;
}

/* Pembayaran List */
.jam-pembayaran-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.jam-pembayaran-item {
    background: white;
    border-radius: 14px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.jam-pembayaran-icon {
    width: 45px;
    height: 45px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.jam-pembayaran-icon.bg-success {
    background: #28a745;
}

.jam-pembayaran-icon.bg-info {
    background: #17a2b8;
}

.jam-pembayaran-icon i {
    font-size: 18px;
}

.jam-pembayaran-info {
    flex: 1;
    min-width: 120px;
}

.jam-pembayaran-title {
    font-weight: 600;
    font-size: 13px;
    color: #333;
}

.jam-pembayaran-date {
    font-size: 10px;
    color: #999;
    margin-top: 2px;
}

.jam-pembayaran-amount {
    font-weight: bold;
    font-size: 13px;
    color: #28a745;
}

.jam-btn-kwitansi {
    background: none;
    border: none;
    color: #dc3545;
    font-size: 20px;
    cursor: pointer;
    padding: 6px 12px;
}

/* Payment Summary */
.jam-payment-summary {
    background: #f8f9fa;
    border-radius: 14px;
    padding: 14px;
    margin-top: 16px;
}

.jam-payment-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 12px;
    border-bottom: 1px solid #eee;
}

.jam-payment-summary-row.total {
    font-weight: bold;
    font-size: 14px;
    border-bottom: none;
    padding-top: 10px;
}

/* Profil Card */
.jam-profil-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.jam-profil-avatar {
    background: linear-gradient(135deg, #FFA500, #FF8C00);
    padding: 25px;
    text-align: center;
    color: white;
}

.jam-profil-avatar i {
    font-size: 50px;
    margin-bottom: 8px;
}

.jam-profil-avatar h4 {
    font-size: 16px;
    margin: 0;
    font-weight: 500;
    word-break: break-word;
}

.jam-profil-info {
    padding: 16px;
}

.jam-profil-row {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    gap: 4px;
}

.jam-profil-row:last-child {
    border-bottom: none;
}

.jam-profil-label {
    font-size: 11px;
    color: #999;
}

.jam-profil-value {
    font-weight: 500;
    font-size: 13px;
    color: #333;
    word-break: break-word;
}

.jam-btn-toggle-password {
    background: none;
    border: none;
    color: #FFA500;
    cursor: pointer;
    margin-left: 6px;
    font-size: 12px;
}

/* Empty State */
.jam-empty-state {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 16px;
}

.jam-empty-state i {
    color: #ccc;
    margin-bottom: 10px;
}

.jam-empty-state p {
    color: #666;
    margin: 0 0 6px 0;
    font-size: 13px;
}

.jam-empty-state small {
    color: #999;
    font-size: 10px;
}

/* Bottom Navigation - DIPUSATKAN */
.jam-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 16px 16px;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.05);
    border-top: 1px solid #eee;
    z-index: 100;
}

.jam-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 6px 16px;
    border-radius: 30px;
    transition: all 0.2s;
    flex: 1;
    max-width: 80px;
}

.jam-nav-item i {
    font-size: 22px;
    color: #aaa;
}

.jam-nav-item span {
    font-size: 10px;
    color: #aaa;
}

.jam-nav-item.active i,
.jam-nav-item.active span {
    color: #FFA500;
}

.jam-nav-item.active {
    background: #fff8f0;
}

/* Desktop - Tetap Mobile (max-width 500px) */
@media (min-width: 768px) {
    body {
        background: #f0f2f5;
    }
    
    .jam-app {
        max-width: 500px;
        margin: 0 auto;
        background: #ffffff;
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
    }
    
    .jam-container {
        margin: 0;
    }
    
    .jam-content {
        padding: 16px;
    }
    
    .jam-bottom-nav {
        left: auto;
        right: auto;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .jam-header {
        max-width: 500px;
        margin: 0 auto;
    }
}
/* Rekening Card - Modern */
.rekening-card {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2b45 100%);
    border-radius: 20px;
    padding: 0;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.rekening-header {
    background: rgba(255,255,255,0.1);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    color: #FFD700;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.rekening-header i {
    font-size: 18px;
}

.rekening-body {
    padding: 18px;
}

.rekening-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.rekening-row:last-child {
    border-bottom: none;
}

.rekening-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    min-width: 110px;
}

.rekening-label i {
    width: 18px;
    font-size: 14px;
    color: #FFD700;
}

.rekening-value {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: white;
}

.rekening-number {
    font-family: monospace;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
    background: rgba(255,255,255,0.15);
    padding: 4px 10px;
    border-radius: 8px;
}

.btn-copy-rek {
    background: rgba(255,215,0,0.2);
    border: 1px solid rgba(255,215,0,0.4);
    color: #FFD700;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-copy-rek:hover {
    background: #FFD700;
    color: #1e3a5f;
    border-color: #FFD700;
}

.rekening-footer {
    background: rgba(0,0,0,0.2);
    padding: 12px 18px;
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 8px;
}

.rekening-footer i {
    font-size: 12px;
    color: #FFD700;
}

/* Responsive Mobile */
@media (max-width: 480px) {
    .rekening-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .rekening-label {
        min-width: auto;
    }
    
    .btn-copy-rek {
        align-self: flex-start;
        margin-top: 5px;
    }
}

/* Itinerary Section */
.jam-itinerary-section {
    margin-top: 20px;
}

.jam-itinerary-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.jam-itinerary-image img {
    width: 100%;
    transition: transform 0.3s ease;
}

.jam-itinerary-image:hover img {
    transform: scale(1.02);
}

.jam-itinerary-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    padding: 30px 15px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.jam-itinerary-image:hover .jam-itinerary-overlay {
    opacity: 1;
}

.jam-itinerary-overlay i {
    font-size: 14px;
}

.jam-itinerary-overlay span {
    font-size: 12px;
}

/* ============================================
   DASHBOARD AGEN - MOBILE FRIENDLY
   ============================================ */

.agen-app {
    min-height: 100vh;
    background: #f5f7fa;
    padding-bottom: 70px;
}

.agen-container {
    max-width: 500px;
    margin: 0 auto;
    background: #f5f7fa;
    min-height: 100vh;
}

/* Header */
.agen-header {
    background: white;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 8px rgba(0,0,0,0.05);
}

.agen-header-logo {
    height: 38px;
    width: auto;
}

.agen-header-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.agen-header-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.agen-header-btn {
    background: #f5f5f5;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 18px;
    color: #FFA500;
    cursor: pointer;
}

/* Welcome Card */
.agen-welcome-card {
    background: linear-gradient(135deg, #FFA500, #FF8C00);
    border-radius: 20px;
    padding: 20px;
    margin: 16px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.agen-welcome-greeting {
    font-size: 13px;
    opacity: 0.9;
    display: block;
}

.agen-welcome-card h2 {
    font-size: 24px;
    margin: 5px 0;
    font-weight: 700;
}

.agen-welcome-card p {
    font-size: 12px;
    opacity: 0.8;
    margin: 0;
}

.agen-welcome-icon i {
    font-size: 48px;
    opacity: 0.8;
}


/* Info Card */
.agen-info-card {
    background: white;
    border-radius: 16px;
    margin: 0 16px 16px;
    overflow: hidden;
}

.agen-info-header {
    background: #f8f9fa;
    padding: 12px 16px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
}

.agen-info-header i {
    color: #FFA500;
    margin-right: 8px;
}

.agen-info-body {
    padding: 12px 16px;
}

.agen-info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.agen-info-row:last-child {
    border-bottom: none;
}

.agen-info-value {
    font-weight: 600;
    color: #FFA500;
}

/* Komisi Card */
.agen-komisi-card {
    background: white;
    border-radius: 16px;
    margin: 0 16px 16px;
    overflow: hidden;
}

.agen-komisi-header {
    background: #f8f9fa;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.agen-komisi-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.agen-komisi-badge.pending {
    background: #fff3cd;
    color: #856404;
}

.agen-komisi-badge.paid {
    background: #d4edda;
    color: #28a745;
}

.agen-komisi-body {
    padding: 12px 16px;
}

.agen-komisi-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
}

/* Tab Content */
.agen-tab-content {
    display: none;
}

.agen-tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Section Title */
.agen-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    margin-bottom: 16px;
    margin-top: 10px;
}

.agen-section-title i {
    font-size: 20px;
    color: #FFA500;
}

.agen-section-title h3 {
    font-size: 16px;
    margin: 0;
    font-weight: 600;
}

/* Jamaah List */
.agen-jamaah-list {
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.agen-jamaah-item {
    background: white;
    border-radius: 14px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.agen-jamaah-avatar i {
    font-size: 40px;
    color: #FFA500;
}

.agen-jamaah-info {
    flex: 1;
}

.agen-jamaah-name {
    font-weight: 600;
    font-size: 14px;
}

.agen-jamaah-paket {
    font-size: 11px;
    color: #666;
}

.agen-jamaah-status {
    margin-top: 4px;
}

.agen-jamaah-actions {
    display: flex;
    gap: 8px;
}

.agen-btn-icon {
    background: none;
    border: none;
    color: #FFA500;
    font-size: 18px;
    cursor: pointer;
    padding: 6px;
}

/* Komisi List */
.agen-komisi-list {
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.agen-komisi-item {
    background: white;
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.agen-komisi-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.agen-komisi-item-title {
    font-weight: 600;
    font-size: 14px;
}

.agen-komisi-item-status {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
}

.agen-komisi-item-status.paid {
    background: #d4edda;
    color: #28a745;
}

.agen-komisi-item-status.pending {
    background: #fff3cd;
    color: #856404;
}

.agen-komisi-item-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    padding: 4px 0;
}

.agen-komisi-total {
    background: white;
    border-radius: 14px;
    margin: 16px;
    padding: 12px;
}

.agen-komisi-total-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
}

/* Profil Card */
.agen-profil-card {
    background: white;
    border-radius: 20px;
    margin: 0 16px;
    overflow: hidden;
}

.agen-profil-avatar {
    background: linear-gradient(135deg, #FFA500, #FF8C00);
    padding: 24px;
    text-align: center;
    color: white;
}

.agen-profil-avatar i {
    font-size: 50px;
    margin-bottom: 8px;
}

.agen-profil-avatar h4 {
    font-size: 18px;
    margin: 0 0 10px 0;
}

.agen-btn-kartu {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
}

.agen-profil-info {
    padding: 16px;
}

.agen-profil-row {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    gap: 4px;
}

.agen-profil-row:last-child {
    border-bottom: none;
}

.agen-profil-label {
    font-size: 11px;
    color: #999;
}

.agen-profil-value {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    word-break: break-word;
}

.agen-profil-actions {
    padding: 16px;
    border-top: 1px solid #eee;
}

.agen-btn-edit {
    background: #FFA500;
    border: none;
    color: white;
    padding: 10px;
    border-radius: 12px;
    width: 100%;
    font-weight: 600;
    cursor: pointer;
}

/* Empty State */
.agen-empty-state {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 16px;
    margin: 0 16px;
}

.agen-empty-state i {
    color: #ccc;
    margin-bottom: 10px;
}

.agen-empty-state p {
    color: #666;
    margin: 0;
}

/* Bottom Navigation */
.agen-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    display: flex;
    justify-content: space-around;
    padding: 8px 16px 16px;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.05);
    border-top: 1px solid #eee;
    max-width: 500px;
    margin: 0 auto;
}

.agen-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 30px;
    transition: all 0.2s;
}

.agen-nav-item i {
    font-size: 20px;
    color: #aaa;
}

.agen-nav-item span {
    font-size: 10px;
    color: #aaa;
}

.agen-nav-item.active i,
.agen-nav-item.active span {
    color: #FFA500;
}

.agen-nav-item.active {
    background: #fff8f0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Stat Cards - Vertical Style */
.agen-stats-vertical {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 16px;
    margin-bottom: 20px;
}

.agen-stat-card-vertical {
    background: white;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.agen-stat-card-vertical:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.agen-stat-icon {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.agen-stat-icon.bg-primary { background: linear-gradient(135deg, #FFA500, #FF8C00); }
.agen-stat-icon.bg-success { background: linear-gradient(135deg, #28a745, #20c997); }
.agen-stat-icon.bg-warning { background: linear-gradient(135deg, #ffc107, #fd7e14); color: #333; }
.agen-stat-icon.bg-info { background: linear-gradient(135deg, #17a2b8, #6f42c1); }

.agen-stat-info {
    flex: 1;
}

.agen-stat-value {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    line-height: 1.2;
}

.agen-stat-label {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

/* Paket Card untuk Agen - Menampilkan daftar paket */
.agen-paket-card {
    background: white;
    border-radius: 16px;
    margin: 0 16px 16px;
    overflow: hidden;
}

.agen-paket-header {
    background: #f8f9fa;
    padding: 12px 16px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
}

.agen-paket-header i {
    color: #FFA500;
    margin-right: 8px;
}

.agen-paket-body {
    padding: 8px 0;
}

.agen-paket-list {
    display: flex;
    flex-direction: column;
}

.agen-paket-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    flex-wrap: wrap;
    gap: 10px;
}

.agen-paket-item:last-child {
    border-bottom: none;
}

.agen-paket-info {
    flex: 2;
    min-width: 150px;
}

.agen-paket-name {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 4px;
}

.agen-paket-meta {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: #999;
}

.agen-paket-meta i {
    margin-right: 3px;
    color: #FFA500;
}

.agen-paket-price {
    display: flex;
    gap: 20px;
    text-align: right;
}

.agen-paket-harga-jual small,
.agen-paket-komisi small {
    display: block;
    font-size: 9px;
    color: #999;
}

.agen-paket-harga-jual strong {
    font-size: 14px;
    color: #333;
}

.agen-paket-komisi strong {
    font-size: 14px;
}

.agen-paket-komisi.text-success strong {
    color: #28a745;
}

.agen-paket-komisi.text-danger strong {
    color: #dc3545;
}

/* Responsive untuk paket item */
@media (max-width: 480px) {
    .agen-paket-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .agen-paket-price {
        width: 100%;
        justify-content: space-between;
    }
}

