/* ==========================================================================
   SKT Booking Form — light & orange theme (Safari Kenya Travel)
   Matches the Safari Kenya Travel logo palette.
   ========================================================================== */

.skt-form-wrap {
	--skt-bg: #fffaf5;
	--skt-panel: #ffffff;
	--skt-orange: #dd5e06;
	--skt-orange-light: #fba734;
	--skt-brown-dark: #3d0e04;
	--skt-text: #4a3428;
	--skt-muted: #8a7566;
	--skt-border: rgba(221, 94, 6, 0.25);
	--skt-error: #c0392b;
	--skt-success: #2e7d32;

	max-width: 760px;
	margin: 0 auto;
	background: var(--skt-bg);
	border: 1px solid var(--skt-border);
	border-radius: 14px;
	padding: 32px;
	color: var(--skt-text);
	font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
	box-sizing: border-box;
}
.skt-form-wrap * { box-sizing: border-box; }

/* Step indicator */
.skt-steps-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 32px;
	flex-wrap: wrap;
}
.skt-step-dot {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	opacity: 0.45;
	transition: opacity 0.25s ease;
}
.skt-step-dot.active,
.skt-step-dot.completed { opacity: 1; }
.skt-step-dot span {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1.5px solid var(--skt-orange);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 14px;
	color: var(--skt-orange);
	background: var(--skt-panel);
}
.skt-step-dot.active span,
.skt-step-dot.completed span {
	background: var(--skt-orange);
	color: #ffffff;
}
.skt-step-dot small { font-size: 11px; letter-spacing: 0.04em; color: var(--skt-muted); text-transform: uppercase; }
.skt-step-line { flex: 1; height: 1px; background: var(--skt-border); margin: 0 6px 18px; min-width: 20px; }

/* Headings */
.skt-form-wrap h3 {
	font-size: 20px;
	margin: 0 0 20px;
	color: var(--skt-orange);
	font-weight: 700;
	letter-spacing: 0.01em;
}

/* Quick-pick package chips */
.skt-chip-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 4px 0 22px;
}
.skt-chip-label { font-size: 12px; color: var(--skt-muted); margin-right: 4px; }
.skt-chip {
	border: 1px solid var(--skt-border);
	background: var(--skt-panel);
	color: var(--skt-orange);
	padding: 7px 14px;
	border-radius: 999px;
	font-size: 13px;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
}
.skt-chip:hover,
.skt-chip.active {
	background: var(--skt-orange);
	color: #ffffff;
}

/* Fields */
.skt-field-row { display: flex; gap: 16px; }
.skt-field-row .skt-field { flex: 1; }
.skt-field { margin-bottom: 18px; }
.skt-field label {
	display: block;
	font-size: 13px;
	margin-bottom: 6px;
	color: var(--skt-muted);
	letter-spacing: 0.02em;
	font-weight: 600;
}
.skt-field input,
.skt-field select,
.skt-field textarea {
	width: 100%;
	padding: 11px 13px;
	border-radius: 8px;
	border: 1px solid var(--skt-border);
	background: var(--skt-panel);
	color: var(--skt-text);
	font-size: 14px;
	outline: none;
	transition: border-color 0.2s ease;
}
.skt-field input:focus,
.skt-field select:focus,
.skt-field textarea:focus { border-color: var(--skt-orange); }
.skt-field input::placeholder,
.skt-field textarea::placeholder { color: #b8a99b; }

/* Review box */
.skt-review-box {
	background: var(--skt-panel);
	border: 1px solid var(--skt-border);
	border-radius: 10px;
	padding: 18px;
	margin-bottom: 18px;
	font-size: 14px;
	line-height: 1.9;
}
.skt-review-box strong { color: var(--skt-orange); }
.skt-review-row { display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px dashed var(--skt-border); padding: 4px 0; }
.skt-review-row:last-child { border-bottom: none; }
.skt-review-row span:first-child { color: var(--skt-muted); }

.skt-payment-note {
	background: rgba(221, 94, 6, 0.07);
	border-left: 3px solid var(--skt-orange);
	padding: 12px 16px;
	border-radius: 6px;
	font-size: 14px;
	margin-bottom: 18px;
}

.skt-terms { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--skt-muted); margin-bottom: 20px; }
.skt-terms input { margin-top: 3px; }

/* Buttons */
.skt-nav-row { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; }
.skt-btn {
	padding: 12px 26px;
	border-radius: 8px;
	border: none;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	letter-spacing: 0.02em;
	transition: transform 0.15s ease, opacity 0.15s ease;
}
.skt-btn:active { transform: scale(0.97); }
.skt-btn-next,
.skt-btn-submit {
	background: linear-gradient(135deg, var(--skt-orange-light), var(--skt-orange));
	color: #ffffff;
	margin-left: auto;
}
.skt-btn-back {
	background: transparent;
	color: var(--skt-muted);
	border: 1px solid var(--skt-border);
}
.skt-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.skt-form-message { margin-top: 14px; font-size: 13px; }
.skt-form-message.error { color: var(--skt-error); }
.skt-form-message.success { color: var(--skt-success); }

/* Success screen */
.skt-step-success { text-align: center; padding: 30px 10px; }
.skt-success-icon {
	width: 62px;
	height: 62px;
	line-height: 62px;
	border-radius: 50%;
	background: var(--skt-orange);
	color: #ffffff;
	font-size: 28px;
	margin: 0 auto 16px;
}
.skt-step-success h3 { color: var(--skt-orange); }
.skt-step-success p { color: var(--skt-muted); font-size: 14px; max-width: 420px; margin: 6px auto; }
#sktSuccessRef { color: var(--skt-orange); font-weight: 700; font-size: 16px; }
.skt-whatsapp-link {
	display: inline-block;
	margin-top: 10px;
	color: #1ea952;
	font-weight: 600;
	text-decoration: none;
	border: 1px solid rgba(37, 211, 102, 0.4);
	padding: 8px 18px;
	border-radius: 20px;
}
.skt-whatsapp-link:hover { background: rgba(37, 211, 102, 0.1); }

/* Responsive */
@media (max-width: 600px) {
	.skt-form-wrap { padding: 20px 16px; border-radius: 0; }
	.skt-field-row { flex-direction: column; gap: 0; }
	.skt-step-dot small { display: none; }
	.skt-steps-nav { margin-bottom: 24px; }
	.skt-nav-row { flex-direction: row-reverse; justify-content: space-between; }
}
