/**
 * Salkantay Treks Peru - Custom Trip Planner Form Styles
 *
 * Adventure Intake & Trip Designer Form.
 * Theme: Salkantay Treks Peru
 * @package SalkantayTreksPeru
 */

.stp-planner-container {
	max-width: 960px;
	margin: 0 auto;
	padding: 1.5rem 0;
}

/* Card Wrapper */
.stp-planner-card {
	background: #ffffff;
	border-radius: 1.25rem;
	border: 1px solid #e2e8f0;
	box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
	overflow: hidden;
}

/* Header Banner */
.stp-planner-header {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	color: #ffffff;
	padding: 2.75rem 2.25rem;
	position: relative;
	overflow: hidden;
}

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

.stp-planner-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(120, 192, 68, 0.2);
	color: #92e059;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 0.4rem 1rem;
	border-radius: 50rem;
	border: 1px solid rgba(120, 192, 68, 0.35);
	margin-bottom: 1rem;
}

.stp-planner-title {
	font-size: 2rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #ffffff;
	margin-bottom: 0.75rem;
}

.stp-planner-subtitle {
	font-size: 1.05rem;
	color: #cbd5e1;
	line-height: 1.6;
	max-width: 720px;
	margin-bottom: 0;
}

/* Body & Sections */
.stp-planner-body {
	padding: 2.5rem 2.25rem;
}

.stp-planner-section {
	margin-bottom: 2.75rem;
	padding-bottom: 2.25rem;
	border-bottom: 1px solid #f1f5f9;
}

.stp-planner-section:last-of-type {
	border-bottom: none;
	margin-bottom: 1.5rem;
	padding-bottom: 0;
}

/* Section Headings */
.stp-planner-section-title {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1.25rem;
	font-weight: 800;
	color: #0f172a;
	letter-spacing: -0.01em;
	margin-bottom: 0.4rem;
}

.stp-planner-step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #78c044;
	color: #ffffff;
	font-size: 0.9rem;
	font-weight: 700;
	flex-shrink: 0;
}

.stp-planner-section-desc {
	font-size: 0.925rem;
	color: #64748b;
	margin-bottom: 1.5rem;
	margin-left: 2.75rem;
}

/* Form Controls & Input Groups */
.stp-planner-form .form-label {
	font-size: 0.875rem;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 0.35rem;
}

.stp-planner-form .form-text {
	font-size: 0.8rem;
	color: #94a3b8;
}

.stp-planner-form .input-group-text {
	background-color: #f8fafc;
	border-color: #e2e8f0;
	color: #64748b;
	font-size: 0.95rem;
	padding-left: 0.9rem;
	padding-right: 0.9rem;
}

.stp-planner-form .form-control,
.stp-planner-form .form-select {
	border-color: #e2e8f0;
	background-color: #f8fafc;
	font-size: 0.95rem;
	color: #0f172a;
	padding: 0.65rem 0.9rem;
	border-radius: 0.5rem;
	transition: all 0.2s ease-in-out;
}

.stp-planner-form .input-group .form-control,
.stp-planner-form .input-group .form-select {
	background-color: #f8fafc;
}

.stp-planner-form .form-control:focus,
.stp-planner-form .form-select:focus {
	background-color: #ffffff;
	border-color: #78c044;
	box-shadow: 0 0 0 3px rgba(120, 192, 68, 0.18);
	color: #0f172a;
}

/* Option Cards (Grid Selectable Radios/Checkboxes) */
.stp-choice-card {
	position: relative;
	height: 100%;
}

.stp-choice-card input[type="radio"],
.stp-choice-card input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.stp-choice-label {
	display: flex;
	flex-direction: column;
	background: #f8fafc;
	border: 2px solid #e2e8f0;
	border-radius: 0.85rem;
	padding: 1.15rem 1rem;
	height: 100%;
	cursor: pointer;
	transition: all 0.2s ease;
	position: relative;
	user-select: none;
}

.stp-choice-label:hover {
	background: #f1f5f9;
	border-color: #cbd5e1;
	transform: translateY(-2px);
}

.stp-choice-card input:checked + .stp-choice-label {
	background: #f2f9ed;
	border-color: #78c044;
	box-shadow: 0 4px 14px rgba(120, 192, 68, 0.18);
}

.stp-choice-card input:checked + .stp-choice-label::after {
	content: '\f058';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	color: #78c044;
	font-size: 1.1rem;
}

.stp-choice-icon {
	font-size: 1.5rem;
	color: #64748b;
	margin-bottom: 0.65rem;
	transition: color 0.2s ease;
}

.stp-choice-card input:checked + .stp-choice-label .stp-choice-icon {
	color: #5ea828;
}

.stp-choice-title {
	font-size: 0.95rem;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 0.25rem;
	line-height: 1.3;
}

.stp-choice-desc {
	font-size: 0.825rem;
	color: #64748b;
	line-height: 1.4;
	margin-bottom: 0;
}

/* Multi-Choice Compact Checkboxes (Regions, Gear) */
.stp-check-pill {
	position: relative;
}

.stp-check-pill input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

.stp-check-pill-label {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 0.5rem;
	padding: 0.6rem 0.9rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: #334155;
	cursor: pointer;
	transition: all 0.2s ease;
	width: 100%;
}

.stp-check-pill-label:hover {
	background: #f1f5f9;
	border-color: #cbd5e1;
}

.stp-check-pill input:checked + .stp-check-pill-label {
	background: #eef8e8;
	border-color: #78c044;
	color: #386616;
}

.stp-check-pill input:checked + .stp-check-pill-label i.fa-check-icon {
	color: #78c044;
}

/* Trust & Guarantee Banner */
.stp-planner-trust-box {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 0.85rem;
	padding: 1.25rem 1.5rem;
	margin-bottom: 2rem;
}

.stp-trust-item {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: #334155;
}

.stp-trust-item i {
	color: #78c044;
	font-size: 1.15rem;
}

/* Submission Actions */
.stp-planner-actions {
	padding-top: 1.5rem;
	border-top: 2px dashed #e2e8f0;
}

.stp-planner-submit-btn {
	background: #78c044;
	color: #ffffff;
	border: none;
	border-radius: 50rem;
	padding: 1rem 2.25rem;
	font-size: 1.05rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	box-shadow: 0 4px 14px rgba(120, 192, 68, 0.35);
	transition: all 0.25s ease;
	cursor: pointer;
}

.stp-planner-submit-btn:hover {
	background: #68aa38;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(120, 192, 68, 0.45);
}

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

.stp-planner-wa-btn:hover {
	background: #20ba59;
	color: #ffffff;
	transform: translateY(-2px);
	text-decoration: none;
}

/* Mobile Responsiveness */
@media (max-width: 767.98px) {
	.stp-planner-header {
		padding: 2rem 1.25rem;
	}

	.stp-planner-title {
		font-size: 1.6rem;
	}

	.stp-planner-body {
		padding: 1.5rem 1.25rem;
	}

	.stp-planner-section-desc {
		margin-left: 0;
	}

	.stp-planner-submit-btn {
		width: 100%;
		justify-content: center;
	}

	.stp-planner-wa-btn {
		width: 100%;
		justify-content: center;
	}
}
