/**
 * Salkantay Treks Peru - Booking Page Styles
 *
 * Checkout, process steps, payment gateway cards, policy tabs & concierge box.
 * @package SalkantayTreksPeru
 */

.stp-booking-page {
	background-color: #f8fafc;
	color: #334155;
}

/* Trust Bar */
.stp-booking-trust-bar {
	background: #ffffff;
	border-radius: 1rem;
	border: 1px solid #e2e8f0;
	box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
	padding: 1.5rem 2rem;
	margin-top: -2.5rem;
	position: relative;
	z-index: 10;
}

.stp-trust-badge-item {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.stp-trust-badge-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(120, 192, 68, 0.12);
	color: #5ea828;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	flex-shrink: 0;
}

.stp-trust-badge-title {
	font-size: 0.95rem;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 0.15rem;
	line-height: 1.2;
}

.stp-trust-badge-desc {
	font-size: 0.8rem;
	color: #64748b;
	margin-bottom: 0;
	line-height: 1.3;
}

/* 3-Step Process Cards */
.stp-steps-section {
	padding: 3.5rem 0 2rem 0;
}

.stp-section-kicker {
	color: #78c044;
	font-weight: 700;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	display: inline-block;
	margin-bottom: 0.35rem;
}

.stp-section-title {
	font-size: 1.85rem;
	font-weight: 800;
	color: #0f172a;
	letter-spacing: -0.02em;
	margin-bottom: 1.5rem;
}

.stp-step-card {
	background: #ffffff;
	border-radius: 1rem;
	border: 1px solid #e2e8f0;
	padding: 1.75rem 1.5rem;
	height: 100%;
	position: relative;
	transition: all 0.25s ease;
}

.stp-step-card:hover {
	transform: translateY(-4px);
	border-color: #78c044;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.stp-step-number-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #78c044;
	color: #ffffff;
	font-weight: 800;
	font-size: 1rem;
	margin-bottom: 1rem;
}

.stp-step-card-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 0.5rem;
}

.stp-step-card-desc {
	font-size: 0.9rem;
	color: #64748b;
	line-height: 1.55;
	margin-bottom: 0;
}

/* Main Booking Form / Checkout Area */
.stp-booking-main-card {
	background: #ffffff;
	border-radius: 1.25rem;
	border: 1px solid #e2e8f0;
	box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
	padding: 2.5rem;
	margin-bottom: 3.5rem;
}

/* Payment Gateways Section */
.stp-payment-methods-section {
	padding: 1.5rem 0 3.5rem 0;
}

.stp-payment-card {
	background: #ffffff;
	border-radius: 1rem;
	border: 1px solid #e2e8f0;
	padding: 1.75rem 1.5rem;
	height: 100%;
	transition: all 0.25s ease;
	display: flex;
	flex-direction: column;
}

.stp-payment-card:hover {
	transform: translateY(-4px);
	border-color: #78c044;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.stp-payment-icon {
	font-size: 2rem;
	margin-bottom: 1rem;
}

.stp-payment-title {
	font-size: 1.15rem;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 0.5rem;
}

.stp-payment-desc {
	font-size: 0.9rem;
	color: #64748b;
	line-height: 1.5;
	flex: 1;
	margin-bottom: 1rem;
}

.stp-payment-badges {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
	font-size: 0.8rem;
	color: #64748b;
	border-top: 1px solid #f1f5f9;
	padding-top: 0.75rem;
}

/* Policies & Terms Box */
.stp-policies-box {
	background: #ffffff;
	border-radius: 1rem;
	border: 1px solid #e2e8f0;
	padding: 2rem;
	margin-bottom: 3rem;
}

.stp-policy-item {
	padding: 1.25rem 0;
	border-bottom: 1px solid #f1f5f9;
}

.stp-policy-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.stp-policy-title {
	font-size: 1.15rem;
	font-weight: 800;
	color: #0f172a;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}

.stp-policy-content {
	font-size: 0.925rem;
	color: #475569;
	line-height: 1.65;
}

/* Checklist Section */
.stp-checklist-card {
	background: #ffffff;
	border-radius: 1rem;
	border: 1px solid #e2e8f0;
	padding: 2rem;
	margin-bottom: 3.5rem;
}

.stp-checklist-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.25rem;
}

.stp-checklist-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.925rem;
	color: #334155;
	line-height: 1.5;
}

.stp-checklist-list li i {
	color: #78c044;
	font-size: 1.15rem;
	margin-top: 0.2rem;
	flex-shrink: 0;
}

/* 24/7 Concierge Support Banner */
.stp-booking-support-box {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	border-radius: 1.25rem;
	padding: 2.75rem 2.5rem;
	color: #ffffff;
	position: relative;
	overflow: hidden;
	margin-bottom: 4rem;
}

.stp-booking-support-box::after {
	content: '';
	position: absolute;
	top: -40%;
	right: -15%;
	width: 340px;
	height: 340px;
	background: radial-gradient(circle, rgba(120, 192, 68, 0.16) 0%, rgba(120, 192, 68, 0) 70%);
	pointer-events: none;
}

.stp-support-title {
	font-size: 1.5rem;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 0.65rem;
}

.stp-support-desc {
	color: #94a3b8;
	font-size: 0.95rem;
	line-height: 1.6;
	max-width: 620px;
	margin-bottom: 0;
}

.stp-btn-booking-wa {
	background: #25d366;
	color: #ffffff;
	font-weight: 700;
	padding: 0.85rem 1.65rem;
	border-radius: 50rem;
	border: none;
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.95rem;
	text-decoration: none;
	transition: all 0.25s ease;
	box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.stp-btn-booking-wa:hover {
	background: #20ba59;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
	text-decoration: none;
}

.stp-btn-booking-phone {
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.25);
	font-weight: 600;
	padding: 0.85rem 1.5rem;
	border-radius: 50rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.95rem;
	text-decoration: none;
	transition: all 0.2s ease;
}

.stp-btn-booking-phone:hover {
	background: #ffffff;
	color: #0f172a;
	text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
	.stp-booking-trust-bar {
		margin-top: -1.5rem;
		padding: 1.25rem;
	}

	.stp-booking-main-card {
		padding: 1.75rem 1.25rem;
	}

	.stp-booking-support-box {
		padding: 2rem 1.5rem;
		text-align: center;
	}

	.stp-support-desc {
		margin: 0 auto 1.5rem auto;
	}
}

@media (max-width: 575.98px) {
	.stp-booking-support-box .d-flex {
		flex-direction: column;
		width: 100%;
	}

	.stp-btn-booking-wa,
	.stp-btn-booking-phone {
		width: 100%;
		justify-content: center;
	}
}
