@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap");
:root {
--p: #0ea5e9; 
--ph: #0284c7; 
--pl: #e0f2fe;
--ok: #10b981; 
--err: #ef4444;
--g50: #f8fafc;
--g100: #f1f5f9;
--g200: #e2e8f0;
--g300: #cbd5e1;
--g500: #64748b;
--g600: #475569;
--g800: #0f172a;
--r: 16px; 
--shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
--font: 'Outfit', system-ui, sans-serif;
} .ntsp-wizard-app {
font-family: var(--font); 
color: var(--g800);
background: #ffffff; 
border: 1px solid var(--g200);
border-radius: var(--r); 
box-shadow: var(--shadow);
max-width: 100% !important; 
width: 100% !important;
margin: 0 auto; 
position: relative;
overflow: hidden;
box-sizing: border-box;
} .ntsp-header {
padding: 32px 40px 0 !important;
border-bottom: 1px solid var(--g100);
background: #ffffff;
}
.ntsp-steps-bar {
display: flex; 
gap: 12px; 
margin-bottom: 0;
list-style: none;
padding: 0;
}
.ntsp-step-item {
flex: 1; 
display: flex; 
flex-direction: column;
align-items: center; 
gap: 10px; 
padding: 16px 12px;
cursor: pointer; 
position: relative; 
transition: all .2s ease;
border-bottom: 4px solid transparent;
}
.ntsp-step-item.active { 
border-bottom-color: var(--p); 
}
.ntsp-step-item.done { 
border-bottom-color: var(--ok); 
}
.ntsp-step-num {
width: 40px; 
height: 40px; 
border-radius: 50%;
border: 2px solid var(--g300); 
background: #ffffff;
font-size: 16px; 
font-weight: 700;
display: flex; 
align-items: center; 
justify-content: center;
transition: all .2s ease;
color: var(--g500);
}
.ntsp-step-item.active .ntsp-step-num { 
border-color: var(--p); 
color: var(--p);
box-shadow: 0 0 0 4px var(--pl);
}
.ntsp-step-item.done .ntsp-step-num { 
background: var(--ok); 
border-color: var(--ok); 
color: #ffffff; 
}
.ntsp-step-label { 
font-size: 15px !important; 
font-weight: 600; 
color: var(--g500); 
white-space: nowrap; 
}
.ntsp-step-item.active .ntsp-step-label { 
color: var(--g800); 
} .ntsp-body { 
padding: 40px !important; 
background: #ffffff;
}
.ntsp-step { 
animation: fadeUp .3s cubic-bezier(0.16, 1, 0.3, 1); 
}
@keyframes fadeUp { 
from { opacity: 0; transform: translateY(12px); } 
to { opacity: 1; transform: translateY(0); } 
}
.ntsp-step h2 { 
font-size: 22px; 
font-weight: 700; 
margin: 0 0 10px; 
color: var(--g800);
}
@media (min-width: 640px) {
.ntsp-step h2 { font-size: 28px; }
}
@media (min-width: 1024px) {
.ntsp-step h2 { font-size: 36px; }
}
.ntsp-step-sub { 
color: var(--g500); 
font-size: 15px; 
line-height: 1.7;
margin-bottom: 32px; 
}
@media (min-width: 1024px) {
.ntsp-step-sub { font-size: 16px; }
} .ntsp-pickup-hint {
font-size: 13px;
color: var(--g400);
background: var(--g50);
border-left: 3px solid var(--g200);
border-radius: 0 6px 6px 0;
padding: 8px 12px;
margin-bottom: 24px;
line-height: 1.5;
} .ntsp-overlay {
position: absolute; 
inset: 0;
background: rgba(255, 255, 255, 0.92);
backdrop-filter: blur(4px);
display: flex; 
align-items: center; 
justify-content: center;
z-index: 99; 
border-radius: var(--r);
}
.ntsp-spinner-wrap { 
display: flex; 
flex-direction: column; 
align-items: center; 
gap: 16px; 
}
.ntsp-spin {
width: 52px; 
height: 52px; 
border-radius: 50%;
border: 4px solid var(--g200); 
border-top-color: var(--p);
animation: spin 0.8s linear infinite;
}
@keyframes spin { 
to { transform: rotate(360deg); } 
}
.ntsp-spin-label { 
font-weight: 600; 
color: var(--g800); 
font-size: 16px; 
} .ntsp-skeleton {
background: linear-gradient(90deg, var(--g100) 25%, var(--g200) 50%, var(--g100) 75%);
background-size: 200% 100%; 
border-radius: 12px;
animation: shimmer 1.5s infinite;
}
@keyframes shimmer { 
0% { background-position: 200% 0; } 
100% { background-position: -200% 0; } 
}
.ntsp-skeleton-line { height: 24px; margin-bottom: 12px; }
.ntsp-skeleton-card { height: 110px; margin-bottom: 14px; } .ntsp-error {
background: #fef2f2; 
border-left: 4px solid var(--err);
color: #991b1b; 
padding: 16px 20px; 
border-radius: 10px;
margin-bottom: 24px; 
font-size: 15px;
line-height: 1.5;
font-weight: 500;
} .ntsp-date-row { 
display: grid; 
grid-template-columns: 1fr 1fr; 
gap: 20px; 
margin-bottom: 30px; 
}
.ntsp-date-field label { 
display: block; 
font-weight: 600; 
font-size: 15px; 
margin-bottom: 8px; 
color: var(--g600); 
}
.ntsp-date-field input {
width: 100%; 
height: 64px;
padding: 12px 20px; 
border: 2px solid var(--g200);
border-radius: 12px; 
font-size: 18px; 
font-weight: 500;
font-family: var(--font);
box-sizing: border-box; 
transition: all 0.15s ease;
background: #ffffff;
}
.ntsp-date-field input:focus { 
border-color: var(--p); 
outline: none; 
box-shadow: 0 0 0 4px var(--pl);
}
.ntsp-trip-badge {
display: inline-flex; 
align-items: center; 
gap: 24px;
background: var(--pl); 
border-radius: 14px;
padding: 16px 28px; 
font-weight: 600;
margin-top: 10px;
}
.ntsp-trip-badge-item { 
display: flex; 
flex-direction: column; 
align-items: center; 
}
.ntsp-trip-badge-num { 
font-size: 26px; 
font-weight: 800; 
color: var(--p); 
line-height: 1; 
}
.ntsp-trip-badge-lbl { 
font-size: 13px; 
color: var(--g500); 
margin-top: 4px; 
}
.ntsp-trip-badge-div { 
width: 1px; 
height: 40px; 
background: var(--g300); 
} .ntsp-pax-row { 
display: flex; 
align-items: center; 
gap: 24px; 
margin-bottom: 32px; 
background: var(--g50);
padding: 20px 24px !important;
border: 2px solid var(--g200) !important;
border-radius: 14px !important;
}
.ntsp-pax-label { 
font-weight: 700; 
font-size: 17px !important; 
color: var(--g800); 
flex: 1; 
}
.ntsp-pax-ctrl { 
display: flex; 
align-items: center; 
gap: 16px; 
}
.ntsp-pax-btn {
width: 48px; 
height: 48px; 
border-radius: 50%;
border: 2px solid var(--p); 
background: #ffffff; 
color: var(--p);
font-size: 24px; 
cursor: pointer; 
transition: all .15s ease;
display: flex; 
align-items: center; 
justify-content: center; 
font-weight: 700;
}
.ntsp-pax-btn:hover:not(:disabled) { 
background: var(--p); 
color: #ffffff; 
}
.ntsp-pax-btn:disabled {
border-color: var(--g300);
color: var(--g300);
cursor: not-allowed;
}
.ntsp-pax-val { 
font-size: 22px; 
font-weight: 700; 
min-width: 44px; 
text-align: center; 
color: var(--g800);
}
.ntsp-section-title { 
font-weight: 700; 
font-size: 20px; 
color: var(--g800); 
margin-top: 32px;
margin-bottom: 16px; 
text-transform: none;
letter-spacing: normal;
}
@media (min-width: 1024px) {
.ntsp-section-title { font-size: 24px; }
}
.ntsp-armada-list { 
display: flex; 
flex-direction: column; 
gap: 14px; 
margin-bottom: 32px; 
}
.ntsp-armada-row {
display: flex; 
align-items: center; 
gap: 20px;
padding: 20px 24px; 
border: 2px solid var(--g200);
border-radius: 16px; 
cursor: pointer; 
transition: all .15s ease;
background: #ffffff;
}
.ntsp-armada-row:hover { 
border-color: var(--p); 
box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.ntsp-armada-row.selected { 
border-color: var(--p); 
background: var(--pl); 
}
.ntsp-armada-thumb {
width: 90px; 
height: 68px; 
border-radius: 10px;
object-fit: cover; 
background: var(--g100); 
flex-shrink: 0;
}
.ntsp-armada-info { 
flex: 1; 
min-width: 0; 
}
.ntsp-armada-name { 
font-weight: 700; 
font-size: 17px; 
color: var(--g800);
}
.ntsp-armada-desc { 
font-size: 14px !important; 
color: var(--g500); 
margin-top: 4px; 
}
.ntsp-armada-cap { 
font-size: 14px; 
color: var(--g600); 
margin-top: 6px; 
font-weight: 500;
}
.ntsp-armada-price { 
font-weight: 800; 
color: var(--p); 
font-size: 17px; 
white-space: nowrap; 
}
.ntsp-armada-check {
width: 26px; 
height: 26px; 
border-radius: 50%;
border: 2px solid var(--g300); 
transition: all .15s ease; 
flex-shrink: 0;
background: #ffffff;
}
.ntsp-armada-row.selected .ntsp-armada-check {
background: var(--p); 
border-color: var(--p);
box-shadow: inset 0 0 0 4px #ffffff;
} .ntsp-hotel-section { 
margin-bottom: 32px; 
}
.ntsp-tier-pills { 
display: flex; 
flex-wrap: wrap; 
gap: 10px; 
margin-top: 12px; 
}
.ntsp-tier-pill {
padding: 12px 24px; 
border-radius: 100px;
border: 2px solid var(--g200); 
background: #ffffff;
cursor: pointer; 
font-weight: 600; 
font-size: 15px;
font-family: var(--font); 
transition: all .15s ease; 
white-space: nowrap;
color: var(--g600);
}
.ntsp-tier-pill:hover { 
border-color: var(--p); 
color: var(--p);
}
.ntsp-tier-pill.active { 
border-color: var(--p); 
background: var(--p); 
color: #ffffff; 
}
.ntsp-room-calc {
margin-top: 16px; 
padding: 14px 20px;
background: var(--g50); 
border-radius: 12px;
font-size: 15px; 
color: var(--g600);
display: flex; 
gap: 16px; 
align-items: center;
border: 1px solid var(--g200);
}
.ntsp-room-badge {
display: inline-flex; 
align-items: center; 
gap: 8px;
background: var(--pl); 
color: var(--p); 
font-weight: 700;
padding: 6px 14px; 
border-radius: 8px; 
font-size: 14px;
} .ntsp-chips { 
display: flex; 
flex-wrap: wrap; 
gap: 10px; 
margin: 12px 0 28px; 
}
.ntsp-chip {
padding: 10px 20px; 
border-radius: 100px;
border: 2px solid var(--g200); 
background: #ffffff;
cursor: pointer; 
font-size: 15px; 
font-weight: 600;
font-family: var(--font); 
transition: all .15s ease;
color: var(--g600);
}
.ntsp-chip:hover { 
border-color: var(--p); 
color: var(--p);
}
.ntsp-chip.active { 
border-color: var(--p); 
background: var(--p); 
color: #ffffff; 
} .ntsp-form-row { 
display: grid; 
grid-template-columns: 1fr 1fr; 
gap: 20px; 
margin-bottom: 24px; 
}
.ntsp-field label { 
display: block; 
font-weight: 600; 
font-size: 15px; 
color: var(--g600); 
margin-bottom: 8px; 
}
.ntsp-field select, .ntsp-field input {
width: 100%; 
height: 64px;
padding: 12px 20px; 
border: 2px solid var(--g200);
border-radius: 12px; 
font-size: 18px; 
font-weight: 500;
font-family: var(--font);
box-sizing: border-box; 
transition: all 0.15s ease; 
background: #ffffff;
color: var(--g800);
}
.ntsp-field select:focus, .ntsp-field input:focus { 
border-color: var(--p); 
outline: none; 
box-shadow: 0 0 0 4px var(--pl);
} .ntsp-day-nav {
display: flex; 
gap: 10px; 
overflow-x: auto;
padding-bottom: 6px; 
margin-bottom: 24px;
scrollbar-width: none;
}
.ntsp-day-nav::-webkit-scrollbar { display: none; }
.ntsp-day-tab {
padding: 12px 24px !important; 
border-radius: 100px;
border: 2px solid var(--g200); 
background: #ffffff;
font-weight: 600; 
font-size: 16px !important; 
cursor: pointer;
white-space: nowrap; 
transition: all .15s ease; 
font-family: var(--font);
color: var(--g600);
}
.ntsp-day-tab:hover { 
border-color: var(--p); 
color: var(--p);
}
.ntsp-day-tab.active { 
background: var(--p); 
border-color: var(--p); 
color: #ffffff; 
}
.ntsp-add-day-btn {
padding: 12px 20px !important; 
border-radius: 100px;
border: 2px dashed var(--g300); 
background: #ffffff;
font-weight: 600; 
font-size: 15px !important; 
cursor: pointer;
color: var(--g500); 
white-space: nowrap; 
font-family: var(--font);
transition: all .15s ease;
}
.ntsp-add-day-btn:hover { 
border-color: var(--p); 
color: var(--p); 
} .ntsp-add-dest-btn {
display: flex; 
align-items: center; 
justify-content: center;
gap: 12px;
width: 100%; 
height: 64px;
border: 2px dashed var(--p); 
border-radius: 14px;
background: var(--pl); 
color: var(--p);
font-weight: 700; 
font-size: 17px; 
cursor: pointer;
transition: all .15s ease; 
font-family: var(--font); 
margin-bottom: 24px;
}
.ntsp-add-dest-btn:hover { 
background: var(--p); 
color: #ffffff; 
border-style: solid;
}
.ntsp-add-dest-icon { 
font-size: 20px; 
font-weight: 700;
} .ntsp-dest-list { 
display: flex; 
flex-direction: column; 
gap: 14px; 
margin-bottom: 24px; 
}
.ntsp-dest-item {
display: flex; 
align-items: center; 
gap: 16px !important;
padding: 16px !important; 
border: 2px solid var(--g200) !important;
border-radius: 14px !important; 
background: #ffffff; 
transition: all .15s ease;
box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.ntsp-dest-item:hover { 
border-color: var(--g300); 
}
.ntsp-dest-num {
width: 32px !important; 
height: 32px !important; 
border-radius: 50%;
background: var(--p); 
color: #ffffff; 
font-size: 14px !important;
font-weight: 700; 
display: flex; 
align-items: center;
justify-content: center; 
flex-shrink: 0;
}
.ntsp-dest-thumb {
width: 70px !important; 
height: 56px !important; 
border-radius: 8px !important;
object-fit: cover; 
background: var(--g100); 
flex-shrink: 0;
}
.ntsp-dest-info { 
flex: 1; 
min-width: 0; 
}
.ntsp-dest-name { 
font-weight: 700; 
font-size: 17px !important; 
color: var(--g800);
white-space: nowrap; 
overflow: hidden; 
text-overflow: ellipsis; 
}
.ntsp-dest-meta { 
font-size: 14px !important; 
color: var(--g500); 
margin-top: 4px; 
}
.ntsp-dest-time { 
font-size: 14px !important; 
color: var(--p); 
font-weight: 600; 
margin-top: 4px; 
}
.ntsp-dest-actions { 
display: flex; 
gap: 8px; 
flex-shrink: 0; 
}
.ntsp-icon-btn {
width: 36px; 
height: 36px; 
border-radius: 8px; 
border: none;
cursor: pointer; 
display: flex; 
align-items: center;
justify-content: center; 
font-size: 16px; 
transition: all .15s ease;
}
.ntsp-icon-btn-del { 
background: #fef2f2; 
color: var(--err); 
}
.ntsp-icon-btn-del:hover { 
background: var(--err); 
color: #ffffff; 
}
.ntsp-icon-btn-up, .ntsp-icon-btn-dn { 
background: var(--g100); 
color: var(--g600); 
}
.ntsp-icon-btn-up:hover, .ntsp-icon-btn-dn:hover { 
background: var(--g200); 
} .ntsp-map-toggle {
display: flex; 
align-items: center; 
gap: 10px;
padding: 14px 20px; 
border-radius: 10px;
border: 1px solid var(--g200); 
background: var(--g50);
cursor: pointer; 
font-weight: 600; 
font-size: 15px;
color: var(--g600); 
font-family: var(--font); 
margin-bottom: 16px;
transition: all .15s ease; 
width: 100%;
}
.ntsp-map-toggle:hover { 
border-color: var(--p); 
color: var(--p); 
}
#ntsp-route-map {
height: 360px !important; 
border-radius: 14px !important;
border: 2px solid var(--g200); 
margin-bottom: 24px;
transition: all .3s ease; 
z-index: 1;
} .ntsp-modal-backdrop {
position: fixed; 
inset: 0; 
background: rgba(15, 23, 42, 0.4);
backdrop-filter: blur(4px);
z-index: 9999; 
display: flex; 
align-items: flex-end;
}
@media(min-width:640px) { 
.ntsp-modal-backdrop { align-items: center; justify-content: center; } 
}
.ntsp-modal {
background: #ffffff; 
width: 100%;
border-radius: 24px 24px 0 0;
max-height: 85vh; 
display: flex; 
flex-direction: column;
overflow: hidden; 
animation: slideUp .3s cubic-bezier(0.16, 1, 0.3, 1);
box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
@media(min-width:640px) { 
.ntsp-modal { border-radius: 20px; max-width: 600px; max-height: 80vh; } 
}
@keyframes slideUp { 
from { transform: translateY(100%); } 
to { transform: translateY(0); } 
}
.ntsp-modal-header {
display: flex; 
align-items: center; 
justify-content: space-between;
padding: 20px 24px; 
border-bottom: 1px solid var(--g100);
flex-shrink: 0;
}
.ntsp-modal-title { 
font-weight: 700; 
font-size: 18px; 
color: var(--g800);
}
.ntsp-modal-close {
width: 36px; 
height: 36px; 
border-radius: 50%; 
border: none;
background: var(--g100); 
cursor: pointer; 
font-size: 16px;
display: flex; 
align-items: center; 
justify-content: center;
color: var(--g600);
transition: all 0.15s ease;
}
.ntsp-modal-close:hover {
background: var(--g200);
color: var(--g800);
}
.ntsp-modal-search { 
padding: 16px 24px; 
border-bottom: 1px solid var(--g100); 
flex-shrink: 0; 
}
.ntsp-modal-search input {
width: 100%; 
height: 52px;
padding: 12px 16px; 
border: 2px solid var(--g200);
border-radius: 10px; 
font-size: 16px; 
font-family: var(--font);
box-sizing: border-box;
}
.ntsp-modal-search input:focus { 
border-color: var(--p); 
outline: none; 
}
.ntsp-modal-body { 
overflow-y: auto; 
flex: 1; 
padding: 16px 24px; 
}
.ntsp-modal-footer {
display: flex;
align-items: center;
gap: 10px;
padding: 14px 24px;
border-top: 1px solid var(--g100);
flex-shrink: 0;
}
.ntsp-modal-footer span { flex: 1; } .ntsp-dest-drag {
cursor: grab;
font-size: 18px;
color: var(--g300);
padding: 0 4px;
user-select: none;
flex-shrink: 0;
}
.ntsp-dest-drag:active { cursor: grabbing; }
.ntsp-dragging {
opacity: 0.45;
border-style: dashed !important;
}
.ntsp-wisata-row {
display: flex; 
align-items: center; 
gap: 16px;
padding: 16px !important; 
border-radius: 14px !important; 
cursor: pointer;
transition: all .15s ease; 
border: 2px solid var(--g200) !important;
margin-bottom: 12px;
background: #ffffff;
min-height: 110px !important;
box-sizing: border-box;
}
.ntsp-wisata-row:hover { 
border-color: var(--p) !important; 
box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.ntsp-wisata-row.selected { 
border-color: var(--p) !important; 
background: var(--pl) !important; 
}
.ntsp-wisata-thumb {
width: 80px !important; 
height: 64px !important; 
border-radius: 10px !important;
object-fit: cover; 
background: var(--g100); 
flex-shrink: 0;
}
.ntsp-wisata-info { 
flex: 1; 
min-width: 0; 
}
.ntsp-wisata-name { 
font-weight: 700; 
font-size: 16px; 
color: var(--g800);
}
.ntsp-wisata-meta { 
font-size: 14px !important; 
color: var(--g500); 
margin-top: 4px; 
}
.ntsp-wisata-price { 
font-size: 14px !important; 
color: var(--p); 
font-weight: 600; 
margin-top: 4px; 
}
.ntsp-wisata-check {
width: 24px; 
height: 24px; 
border-radius: 50%;
border: 2px solid var(--g300); 
flex-shrink: 0; 
transition: all .15s ease;
background: #ffffff;
}
.ntsp-wisata-row.selected .ntsp-wisata-check {
background: var(--p); 
border-color: var(--p);
box-shadow: inset 0 0 0 4px #ffffff;
} .ntsp-summary-bar {
position: sticky; 
bottom: 0;
background: #ffffff; 
border-top: 2px solid var(--g100);
padding: 20px 40px !important; 
display: flex;
align-items: center; 
gap: 24px !important; 
z-index: 50;
box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.05);
height: 90px !important;
box-sizing: border-box;
}
.ntsp-sum-item { 
display: flex; 
flex-direction: column; 
}
.ntsp-sum-lbl { 
font-size: 13px !important; 
color: var(--g500); 
font-weight: 600; 
text-transform: uppercase; 
letter-spacing: 0.05em;
margin-bottom: 4px;
}
.ntsp-sum-val { 
font-size: 18px !important; 
font-weight: 700; 
color: var(--g800); 
}
.ntsp-sum-val.highlight { 
color: var(--p); 
font-size: 22px !important; 
font-weight: 800;
}
.ntsp-sum-div { 
width: 1px; 
height: 40px; 
background: var(--g200); 
}
.ntsp-sum-spacer { 
flex: 1; 
} .ntsp-generate-wrap { 
text-align: center; 
padding: 40px 0; 
}
.ntsp-generate-btn {
padding: 0 48px; 
height: 64px;
line-height: 64px;
background: linear-gradient(135deg, var(--p), #6366f1);
color: #ffffff; 
border: none; 
border-radius: 100px; 
font-size: 18px;
font-weight: 700; 
cursor: pointer; 
font-family: var(--font);
transition: all .2s ease; 
box-shadow: 0 8px 24px rgba(14, 165, 233, 0.3);
}
.ntsp-generate-btn:hover { 
transform: translateY(-2px); 
box-shadow: 0 12px 32px rgba(14, 165, 233, 0.4); 
} .ntsp-output-split { 
display: flex; 
gap: 32px; 
}
.ntsp-narrative-col { 
flex: 1.4; 
min-width: 0; 
}
.ntsp-pricing-col {
flex: 1; 
background: var(--g50); 
border: 1px solid var(--g200);
border-radius: var(--r); 
padding: 30px; 
align-self: flex-start; 
position: sticky; 
top: 20px;
}
.ntsp-ai-summary {
background: var(--pl); 
border-left: 4px solid var(--p);
padding: 18px 22px; 
border-radius: 10px; 
font-weight: 500;
margin-bottom: 30px; 
line-height: 1.7; 
font-size: 16px;
color: var(--g800);
}
.ntsp-ai-day { 
margin-bottom: 30px; 
border-bottom: 1px solid var(--g100); 
padding-bottom: 24px; 
}
.ntsp-ai-day:last-child { 
border-bottom: none; 
}
.ntsp-ai-day h4 { 
font-size: 18px; 
font-weight: 700; 
margin: 0 0 12px; 
color: var(--p); 
}
.ntsp-ai-day p { 
font-size: 15px; 
line-height: 1.7; 
color: var(--g600); 
margin: 0 0 14px; 
}
@media (min-width: 1024px) {
.ntsp-ai-day p { font-size: 16px; }
}
.ntsp-ai-timeline { 
padding-left: 20px; 
font-size: 15px; 
color: var(--g800); 
}
.ntsp-ai-timeline li { 
margin-bottom: 6px; 
}
.ntsp-inc-exc { 
display: grid; 
grid-template-columns: 1fr 1fr; 
gap: 20px; 
margin-top: 28px; 
}
.ntsp-inc, .ntsp-exc { 
background: #ffffff; 
border: 1px solid var(--g200); 
border-radius: 12px; 
padding: 20px; 
}
.ntsp-inc h5 { 
color: var(--ok); 
font-size: 16px; 
margin: 0 0 12px; 
font-weight: 700;
}
.ntsp-exc h5 { 
color: var(--err); 
font-size: 16px; 
margin: 0 0 12px; 
font-weight: 700;
}
.ntsp-inc ul, .ntsp-exc ul { 
margin: 0; 
padding-left: 18px; 
font-size: 14px; 
line-height: 1.6; 
color: var(--g600);
}
.ntsp-price-rows { 
display: flex; 
flex-direction: column; 
gap: 14px; 
margin-bottom: 24px; 
}
.ntsp-price-row { 
display: flex; 
justify-content: space-between; 
font-size: 15px; 
color: var(--g600);
}
.ntsp-price-row.total { 
font-size: 18px; 
font-weight: 700; 
color: var(--g800);
align-items: center;
}
.ntsp-price-row.total strong { 
color: var(--p); 
font-size: 26px !important;
font-weight: 800;
}
@media (min-width: 1024px) {
.ntsp-price-row.total strong { font-size: 32px !important; }
}
.ntsp-price-sep { 
height: 1px; 
background: var(--g200); 
margin: 8px 0; 
}
.ntsp-export-btns { 
display: flex; 
flex-direction: column; 
gap: 10px; 
margin-top: 24px; 
} .ntsp-btn {
display: inline-flex; 
align-items: center; 
justify-content: center;
gap: 10px; 
height: 56px !important;
min-height: 56px !important;
padding: 0 28px !important;
border-radius: 12px !important; 
font-size: 16px !important;
font-weight: 600; 
cursor: pointer; 
transition: all 0.15s ease;
border: 2px solid transparent; 
font-family: var(--font);
text-decoration: none;
box-sizing: border-box;
}
.ntsp-btn-primary { 
background: linear-gradient(135deg, var(--p), #2563eb) !important; 
color: #ffffff !important; 
border: none !important;
box-shadow: 0 4px 14px rgba(14, 165, 233, 0.3) !important;
}
.ntsp-btn-primary:hover:not(:disabled) { 
background: linear-gradient(135deg, #0284c7, #1d4ed8) !important; 
box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4) !important;
transform: translateY(-1px);
}
.ntsp-btn-outline { 
background: #ffffff !important; 
border: 2px solid var(--p) !important; 
color: var(--p) !important; 
}
.ntsp-btn-outline:hover:not(:disabled) { 
background: var(--pl) !important; 
}
.ntsp-btn-ghost { 
background: var(--g100) !important; 
border-color: var(--g100) !important; 
color: var(--g600) !important; 
}
.ntsp-btn-ghost:hover { 
background: var(--g200) !important; 
}
.ntsp-btn-danger { 
background: var(--err) !important; 
color: #ffffff !important; 
border-color: var(--err) !important; 
}
.ntsp-btn-block { 
display: flex; 
width: 100%; 
}
.ntsp-btn:disabled { 
opacity: .5; 
cursor: not-allowed; 
box-shadow: none !important;
transform: none !important;
}
.ntsp-btn-sm { 
height: 40px !important;
min-height: 40px !important;
padding: 0 16px !important; 
font-size: 14px !important; 
border-radius: 8px !important;
} .ntsp-footer-nav {
display: flex; 
justify-content: space-between; 
align-items: center;
padding: 24px 40px; 
border-top: 1px solid var(--g100);
background: #ffffff;
}
.ntsp-footer-nav-right { 
display: flex; 
gap: 12px; 
align-items: center; 
} @media(max-width: 768px) {
.ntsp-header { 
padding: 20px 20px 0 !important; 
}
.ntsp-body { 
padding: 24px 20px !important; 
}
.ntsp-footer-nav { 
padding: 20px; 
}
.ntsp-summary-bar { 
padding: 16px 20px !important; 
gap: 16px !important; 
flex-wrap: wrap;
height: auto !important;
}
.ntsp-date-row { 
grid-template-columns: 1fr; 
gap: 16px;
}
.ntsp-form-row { 
grid-template-columns: 1fr; 
gap: 16px;
}
.ntsp-output-split { 
flex-direction: column; 
gap: 24px;
}
.ntsp-pricing-col { 
position: static; 
padding: 20px;
}
.ntsp-inc-exc { 
grid-template-columns: 1fr; 
}
.ntsp-steps-bar { 
overflow-x: auto; 
padding-bottom: 4px;
}
.ntsp-step-label { 
display: none; 
}
.ntsp-btn {
height: 52px !important;
min-height: 52px !important;
padding: 0 20px !important;
font-size: 15px !important;
}
.ntsp-wisata-row {
min-height: 100px !important;
padding: 12px !important;
}
.ntsp-wisata-thumb {
width: 70px !important;
height: 56px !important;
}
.ntsp-dest-item {
padding: 12px !important;
}
.ntsp-dest-thumb {
width: 60px !important;
height: 48px !important;
}
.ntsp-dest-name {
font-size: 15px !important;
}
}