/* ==================== PAKET BASE CSS ==================== */
/* Digunakan untuk semua paket (Family, Ziarah, Umum, Sekolah) */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8edf2 100%);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ============ SPLASH SCREEN ============ */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.splash-content {
    text-align: center;
    padding: 0 20px;
}

.splash-logo {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: logoPulse 1.5s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.9; }
}

.splash-logo i {
    font-size: 50px;
    color: #fff;
}

.splash-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease-out 0.3s forwards;
}

.splash-title span {
    color: #ffd700;
}

.splash-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease-out 0.5s forwards;
}

.splash-loading-container {
    width: 200px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease-out 0.7s forwards;
}

.splash-loading-bar {
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
    overflow: hidden;
}

.splash-loading-fill {
    width: 0%;
    height: 100%;
    background: #ffd700;
    border-radius: 3px;
    animation: loadingFill 2s ease-in-out forwards;
}

.splash-loading-text {
    font-size: 11px;
    margin-top: 10px;
    opacity: 0.7;
    letter-spacing: 1px;
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes loadingFill {
    0% { width: 0%; }
    30% { width: 45%; }
    60% { width: 75%; }
    100% { width: 100%; }
}

/* ============ MAIN CONTENT ============ */
.main-content {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.main-content.visible {
    opacity: 1;
}

/* ============ FLOATING BUTTON ============ */
.floating-home-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.floating-home-btn:hover {
    transform: scale(1.1);
}

.floating-home-btn:active {
    transform: scale(0.95);
}

/* ============ NAVBAR ============ */
.navbar {
    background: linear-gradient(135deg, #1a1a2e, #2d2d44);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 15px;
    box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 65px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
}

.logo i {
    font-size: 1.8rem;
    color: #ffd700;
}

.logo h2 {
    font-size: 1.3rem;
    font-weight: 700;
}

.logo span {
    color: #ffd700;
}

.btn-back-header {
    position: absolute;
    left: 15px;
    background: rgba(255,255,255,0.15);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-back-header:hover {
    background: rgba(255,255,255,0.25);
    transform: scale(1.05);
}

/* ============ HERO SECTION ============ */
.hero-paket {
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 30px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero-paket h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.hero-paket p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ============ KALKULATOR CONTAINER ============ */
.kalkulator-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px 40px;
}

/* ============ CARD ============ */
.card {
    background: linear-gradient(135deg, #fff, #fefefe);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-bottom: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.card h2 {
    background: linear-gradient(135deg, #1e293b, #334155);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary, #ff9a56);
    font-size: 1.3rem;
    text-align: center;
}

.card h2 i {
    color: var(--primary, #ff9a56);
    margin-right: 8px;
}

/* ============ FORM GRID ============ */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #555;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label i {
    color: var(--primary, #ff9a56);
}

.form-group select,
.form-group input {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s;
    background: white;
    width: 100%;
    cursor: pointer;
    font-family: inherit;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: var(--primary, #ff9a56);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb, 255,154,86), 0.2);
}

.form-group select:disabled,
.form-group input:disabled {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.form-group small {
    color: #888;
    font-size: 11px;
    margin-top: 4px;
}

/* ============ DROPDOWN CARD ============ */
.dropdown-card-container {
    position: relative;
    width: 100%;
}

.dropdown-card-trigger {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    min-height: 52px;
}

.dropdown-card-trigger:hover {
    border-color: var(--primary, #ff9a56);
    background: rgba(var(--primary-rgb, 255,154,86), 0.05);
}

.dropdown-card-trigger.selected {
    border-color: var(--primary, #ff9a56);
    background: rgba(var(--primary-rgb, 255,154,86), 0.1);
}

.dropdown-card-trigger span {
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    font-size: 14px;
}

.dropdown-card-trigger i {
    color: var(--primary, #ff9a56);
    transition: transform 0.3s;
    margin-left: 10px;
    flex-shrink: 0;
}

.dropdown-card-trigger.open i {
    transform: rotate(180deg);
}

.dropdown-card-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    border: 1px solid rgba(var(--primary-rgb, 255,154,86), 0.2);
}

.dropdown-card-menu.show {
    display: block;
    animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-card-item {
    padding: 14px 16px;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dropdown-card-item:last-child {
    border-bottom: none;
}

.dropdown-card-item:hover {
    background: rgba(var(--primary-rgb, 255,154,86), 0.08);
}

.dropdown-card-item.selected {
    background: rgba(var(--primary-rgb, 255,154,86), 0.15);
    border-left: 4px solid var(--primary, #ff9a56);
}

.dropdown-card-item i {
    font-size: 18px;
    color: var(--primary, #ff9a56);
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}

.dropdown-card-item .item-info {
    flex: 1;
    min-width: 0;
}

.dropdown-card-item .item-title {
    font-weight: 600;
    font-size: 13px;
    color: #333;
    word-break: break-word;
    line-height: 1.4;
}

.dropdown-card-item .item-subtitle {
    font-size: 11px;
    color: #888;
    margin-top: 4px;
    word-break: break-word;
    line-height: 1.4;
}

.dropdown-card-item .item-price {
    font-weight: bold;
    color: #27ae60;
    font-size: 12px;
    flex-shrink: 0;
    white-space: nowrap;
}

/* ============ DESTINASI LIST ============ */
.destinasi-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 15px;
    max-height: 400px;
    overflow-y: auto;
    padding: 5px;
}

.destinasi-card {
    background: linear-gradient(135deg, white, #f8f9fa);
    border-radius: 14px;
    padding: 14px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
    position: relative;
}

.destinasi-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-color: var(--primary, #ff9a56);
}

.destinasi-card .destinasi-nama {
    font-weight: 700;
    font-size: 14px;
    color: #333;
    display: block;
    margin-bottom: 6px;
    padding-right: 50px;
    word-break: break-word;
}

.destinasi-card .destinasi-nama i {
    color: var(--primary, #ff9a56);
    margin-right: 6px;
}

.destinasi-card .destinasi-harga {
    font-size: 11px;
    color: #27ae60;
    font-weight: 600;
    display: block;
}

.destinasi-card .btn-hapus {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #e74c3c;
    color: white;
    border: none;
    padding: 4px 8px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 10px;
    font-weight: 500;
    transition: all 0.2s;
}

.destinasi-card .btn-hapus:hover {
    background: #c0392b;
    transform: scale(1.05);
}

/* ============ REKOMENDASI CARD ============ */
.rekomendasi-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
    display: none;
}

.rekomendasi-card h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.armada-rekomendasi-item {
    background: white;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.armada-rekomendasi-item:hover {
    border-color: var(--primary, #ff9a56);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.armada-rekomendasi-item.selected {
    border-color: var(--primary-dark, #e07a3a);
    background: rgba(var(--primary-rgb, 255,154,86), 0.08);
    box-shadow: 0 5px 20px rgba(var(--primary-rgb, 255,154,86), 0.3);
}

.armada-info {
    flex: 1;
    min-width: 0;
}

.armada-info strong {
    font-size: 1rem;
    word-break: break-word;
    display: block;
    margin-bottom: 4px;
}

.armada-info .armada-unit {
    font-size: 0.9rem;
    margin-bottom: 4px;
    display: block;
}

.armada-info .armada-detail {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 4px;
    display: block;
}

.armada-info .armada-status {
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 4px;
    display: block;
}

.armada-info .armada-harga-besar {
    font-size: 1.1rem;
    font-weight: 800;
    margin-top: 6px;
    display: block;
    background: #f0f0f0;
    padding: 6px 12px;
    border-radius: 10px;
    text-align: center;
}

/* ============ HOTEL SECTION ============ */
.hotel-section {
    display: none;
    margin-bottom: 20px;
}

.hotel-option {
    background: white;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.hotel-option:hover {
    border-color: var(--primary, #ff9a56);
    transform: translateX(5px);
}

.hotel-option.selected {
    border-color: var(--primary-dark, #e07a3a);
    background: rgba(var(--primary-rgb, 255,154,86), 0.08);
}

.hotel-name {
    font-weight: bold;
    font-size: 0.95rem;
    color: #333;
    word-break: break-word;
}

.hotel-price {
    color: #27ae60;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* ============ RESULT BOX (DIPERBAIKI - LEBIH JELAS) ============ */
.result-box {
    background: linear-gradient(135deg, #1A2A4F, #0F1A33);
    color: white;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.result-box h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    color: white;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 12px;
}

.rincian-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.rincian-item {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(5px);
    padding: 12px 8px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.2s;
    border: 1px solid rgba(255,255,255,0.15);
}

.rincian-item:hover {
    transform: scale(1.02);
    background: rgba(255,255,255,0.2);
}

.rincian-item small {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.rincian-item .nilai {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.3;
    word-break: break-word;
    color: #FFD966;
}

.total-utama {
    text-align: center;
    padding: 15px;
    border-top: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 15px;
    background: rgba(0,0,0,0.1);
    border-radius: 12px;
}

.total-utama .total-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.total-utama .total {
    font-size: 2rem;
    font-weight: 800;
    color: #FFD966;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.invoice-note {
    text-align: center;
    margin: 15px 0;
    padding: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    font-size: 11px;
    color: rgba(255,255,255,0.8);
}

.biaya-per-orang-box {
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 15px;
    margin-top: 10px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.biaya-per-orang-box .label {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.biaya-per-orang-box .harga-orang {
    font-size: 1.6rem;
    font-weight: 800;
    color: #FFD966;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* ============ VOUCHER SECTION ============ */
.voucher-section {
    background: linear-gradient(135deg, #fff9e6, #fff3cd);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #ffc107;
}

.voucher-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.voucher-container input {
    flex: 1;
    padding: 12px;
    border: 2px solid #ffc107;
    border-radius: 10px;
    min-width: 150px;
    font-size: 14px;
}

.btn-voucher {
    background: #ff9800;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-voucher:hover {
    background: #e68900;
    transform: scale(1.02);
}

.voucher-info {
    font-size: 12px;
    margin-top: 10px;
    padding: 8px;
    border-radius: 8px;
}

.voucher-info.success {
    background: #d4edda;
    color: #155724;
}

.voucher-info.error {
    background: #f8d7da;
    color: #721c24;
}

/* ============ BUTTONS ============ */
.btn-primary {
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.btn-reset {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    color: white;
    padding: 14px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-reset:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(108,117,125,0.4);
}

/* ============ RINGKASAN ============ */
.ringkasan-pesanan {
    background: #f8f9fa;
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 18px;
}

.total-bayar {
    font-size: 1.2rem;
    font-weight: bold;
    color: #27ae60;
}

/* ============ NOTIFICATION ============ */
.notification {
    position: fixed;
    bottom: 90px;
    right: 25px;
    padding: 12px 20px;
    border-radius: 10px;
    color: white;
    display: none;
    z-index: 1000;
    font-size: 0.85rem;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.notification.success {
    background: #27ae60;
    display: block;
}

.notification.warning {
    background: #f39c12;
    display: block;
}

.notification.info {
    background: #3498db;
    display: block;
}

.notification.error {
    background: #e74c3c;
    display: block;
}

/* ============ LOADING OVERLAY ============ */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.loading-overlay .loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,255,255,0.2);
    border-top: 3px solid #ffd700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-overlay p {
    color: white;
    font-size: 14px;
    letter-spacing: 1px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============ DATE INPUT ============ */
input[type="date"] {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s;
    background: white;
    width: 100%;
    cursor: pointer;
    font-family: inherit;
}

input[type="date"]:focus {
    outline: none;
    border-color: var(--primary, #ff9a56);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb, 255,154,86), 0.2);
}

input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(0.5);
}

input::placeholder {
    color: #aaa;
    font-size: 14px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .hero-paket {
        padding: 50px 20px;
        min-height: 250px;
    }
    .hero-paket h1 {
        font-size: 1.8rem;
    }
    .hero-paket p {
        font-size: 0.9rem;
    }
    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .card {
        padding: 20px;
    }
    .rincian-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }
    .rincian-item {
        padding: 10px 6px;
    }
    .rincian-item .nilai {
        font-size: 0.85rem;
    }
    .total-utama .total {
        font-size: 1.5rem;
    }
    .biaya-per-orang-box .harga-orang {
        font-size: 1.2rem;
    }
    .invoice-note {
        font-size: 10px;
    }
    .floating-home-btn {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
        bottom: 20px;
        right: 20px;
    }
    .btn-primary, .btn-reset {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    .destinasi-list {
        grid-template-columns: 1fr;
    }
    .dropdown-card-trigger {
        padding: 12px 14px;
        min-height: 48px;
    }
    .dropdown-card-trigger span {
        font-size: 13px;
        white-space: normal;
        word-break: break-word;
    }
    .dropdown-card-item {
        padding: 12px 14px;
        gap: 10px;
        flex-wrap: wrap;
    }
    .dropdown-card-item i {
        font-size: 16px;
        width: 24px;
    }
    .dropdown-card-item .item-title {
        font-size: 12px;
    }
    .dropdown-card-item .item-price {
        font-size: 11px;
    }
    .dropdown-card-item .item-subtitle {
        font-size: 10px;
        margin-top: 2px;
    }
    .armada-rekomendasi-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .armada-info .armada-harga-besar {
        font-size: 1rem;
        padding: 8px;
        margin-top: 8px;
    }
    .hotel-option {
        flex-direction: column;
        align-items: flex-start;
    }
    .hotel-price {
        font-size: 1rem;
        font-weight: 800;
        margin-top: 8px;
        align-self: flex-end;
        background: #d4edda;
        padding: 6px 12px;
        border-radius: 10px;
        width: auto;
    }
}

@media (max-width: 480px) {
    .hero-paket h1 {
        font-size: 1.5rem;
    }
    .hero-paket {
        padding: 40px 15px;
    }
    .rincian-item .nilai {
        font-size: 0.7rem;
    }
    .total-utama .total {
        font-size: 1.2rem;
    }
    .biaya-per-orang-box .harga-orang {
        font-size: 1rem;
    }
    .splash-logo {
        width: 70px;
        height: 70px;
    }
    .splash-logo i {
        font-size: 35px;
    }
    .splash-title {
        font-size: 1.5rem;
    }
    .swal2-popup {
        width: 95% !important;
        padding: 10px !important;
        font-size: 13px;
    }
}

/* ============ SWAL CUSTOMIZATION ============ */
.swal2-popup {
    border-radius: 20px !important;
}

.swal2-html-container {
    max-height: 70vh;
    overflow-y: auto;
    padding: 5px;
}