/*
 * Wildflip Request a Quote — front-end styles.
 * Brand tokens match the live Wildflip Safaris theme.
 */

.wfq-page {
	--wfq-forest: #1a3a2a;
	--wfq-forest-dark: #12281d;
	--wfq-gold: #c8922a;
	--wfq-gold-dark: #a8781f;
	--wfq-cream: #f4f1ea;
	--wfq-paper: #ffffff;
	--wfq-border: #e5e0d3;
	--wfq-text: #2b2b28;
	--wfq-text-muted: #6f6a5c;
	--wfq-error: #a1332a;
	--wfq-radius: 4px;
	--wfq-shadow: 0 2px 10px rgba(26, 58, 42, 0.06);
	--wfq-font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
	--wfq-font-body: 'Raleway', Arial, Helvetica, sans-serif;

	font-family: var(--wfq-font-body);
	color: var(--wfq-text);
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px 80px;
	box-sizing: border-box;
}

.wfq-page *,
.wfq-page *::before,
.wfq-page *::after {
	box-sizing: inherit;
}

.wfq-breadcrumb {
	font-size: 13px;
	color: var(--wfq-text-muted);
	padding: 24px 0 8px;
}

.wfq-breadcrumb a {
	color: var(--wfq-text-muted);
	text-decoration: none;
}

.wfq-breadcrumb a:hover {
	color: var(--wfq-forest);
	text-decoration: underline;
}

.wfq-breadcrumb span[aria-hidden] {
	margin: 0 6px;
}

.wfq-hero {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 40px;
	padding-top: 8px;
}

.wfq-eyebrow {
	font-family: var(--wfq-font-body);
	font-size: 12px;
	letter-spacing: 2.5px;
	color: var(--wfq-gold-dark);
	text-transform: uppercase;
	font-weight: 700;
	margin: 0 0 10px;
}

.wfq-heading {
	font-family: var(--wfq-font-heading);
	font-size: 38px;
	line-height: 1.15;
	color: var(--wfq-forest);
	margin: 0 0 14px;
	font-weight: 700;
}

.wfq-subtext {
	font-size: 16px;
	line-height: 1.6;
	color: var(--wfq-text-muted);
	margin: 0 0 16px;
}

.wfq-reassurance {
	font-size: 14px;
	color: var(--wfq-forest);
	font-weight: 600;
}

.wfq-reassurance span[aria-hidden] {
	color: var(--wfq-gold);
	margin: 0 8px;
}

.wfq-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 40px;
	align-items: start;
}

@media (max-width: 960px) {
	.wfq-layout {
		grid-template-columns: 1fr;
	}
	.wfq-sidebar {
		display: none;
	}
}

.wfq-alert {
	border-radius: var(--wfq-radius);
	padding: 16px 18px;
	margin-bottom: 24px;
	font-size: 14px;
}

.wfq-alert-error {
	background: #fbeceb;
	border: 1px solid #e3b3ae;
	color: var(--wfq-error);
}

.wfq-alert-error:focus {
	outline: 2px solid var(--wfq-error);
	outline-offset: 2px;
}

.wfq-form {
	background: transparent;
}

.wfq-section {
	background: var(--wfq-paper);
	border: 1px solid var(--wfq-border);
	border-radius: var(--wfq-radius);
	box-shadow: var(--wfq-shadow);
	padding: 32px;
	margin-bottom: 28px;
}

@media (max-width: 600px) {
	.wfq-section {
		padding: 22px 18px;
	}
}

.wfq-section-title {
	font-family: var(--wfq-font-heading);
	font-size: 22px;
	color: var(--wfq-forest);
	margin: 0 0 24px;
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 700;
}

.wfq-section-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--wfq-forest);
	color: var(--wfq-gold);
	font-family: var(--wfq-font-body);
	font-size: 14px;
	font-weight: 700;
	flex-shrink: 0;
}

.wfq-field {
	margin-bottom: 22px;
}

.wfq-field:last-child {
	margin-bottom: 0;
}

.wfq-field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 22px;
}

@media (max-width: 600px) {
	.wfq-field-row {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.wfq-field-row .wfq-field {
		margin-bottom: 20px;
	}
}

.wfq-label {
	display: block;
	font-weight: 700;
	font-size: 14.5px;
	color: var(--wfq-text);
	margin-bottom: 8px;
}

.wfq-required {
	color: var(--wfq-error);
}

.wfq-helper {
	font-size: 13px;
	color: var(--wfq-text-muted);
	margin: 0 0 10px;
}

.wfq-error-text {
	font-size: 13px;
	color: var(--wfq-error);
	margin: 6px 0 0;
	min-height: 0;
}

.wfq-error-text:empty {
	display: none;
}

.wfq-input,
.wfq-page input[type="text"],
.wfq-page input[type="email"],
.wfq-page input[type="tel"],
.wfq-page input[type="date"],
.wfq-page input[type="month"],
.wfq-page input[type="number"],
.wfq-page select,
.wfq-page textarea {
	width: 100%;
	font-family: var(--wfq-font-body);
	font-size: 15px;
	padding: 12px 14px;
	border: 1px solid var(--wfq-border);
	border-radius: var(--wfq-radius);
	background: var(--wfq-paper);
	color: var(--wfq-text);
	min-height: 48px;
}

.wfq-page textarea {
	min-height: 90px;
	resize: vertical;
}

.wfq-page input:focus-visible,
.wfq-page select:focus-visible,
.wfq-page textarea:focus-visible,
.wfq-page button:focus-visible,
.wfq-page a:focus-visible {
	outline: 2px solid var(--wfq-gold-dark);
	outline-offset: 2px;
}

.wfq-page [aria-invalid="true"] {
	border-color: var(--wfq-error);
}

.wfq-char-counter {
	font-size: 12px;
	color: var(--wfq-text-muted);
	text-align: right;
	margin: 4px 0 0;
}

.wfq-field-group {
	border: none;
	margin: 0 0 22px;
	padding: 0;
}

.wfq-field-group legend {
	padding: 0;
	width: 100%;
}

.wfq-card-grid,
.wfq-radio-card-grid,
.wfq-checkbox-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
	gap: 12px;
}

.wfq-radio-card-grid-wide {
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.wfq-card-checkbox,
.wfq-radio-card,
.wfq-checkbox {
	display: flex;
	align-items: center;
	gap: 10px;
	border: 1px solid var(--wfq-border);
	border-radius: var(--wfq-radius);
	padding: 12px 14px;
	cursor: pointer;
	font-size: 14px;
	min-height: 44px;
	background: var(--wfq-paper);
	transition: border-color .15s ease, background .15s ease;
}

.wfq-radio-card-wide {
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
}

.wfq-radio-card-title {
	font-weight: 700;
}

.wfq-radio-card-desc {
	font-size: 12.5px;
	color: var(--wfq-text-muted);
}

.wfq-card-checkbox:has(input:checked),
.wfq-radio-card:has(input:checked),
.wfq-checkbox:has(input:checked) {
	border-color: var(--wfq-forest);
	background: #f2f6f3;
}

.wfq-card-checkbox input,
.wfq-radio-card input,
.wfq-checkbox input {
	width: 18px;
	height: 18px;
	accent-color: var(--wfq-forest);
	flex-shrink: 0;
}

.wfq-radio-inline {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	font-size: 14px;
}

.wfq-radio-inline label {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 44px;
}

.wfq-radio-inline input {
	accent-color: var(--wfq-forest);
	width: 18px;
	height: 18px;
}

.wfq-combo {
	position: relative;
}

.wfq-combo-listbox {
	position: absolute;
	z-index: 20;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	max-height: 320px;
	overflow-y: auto;
	background: var(--wfq-paper);
	border: 1px solid var(--wfq-border);
	border-radius: var(--wfq-radius);
	box-shadow: 0 8px 24px rgba(0,0,0,0.12);
	margin: 0;
	padding: 6px 0;
	list-style: none;
}

.wfq-combo-group-label {
	font-size: 11.5px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--wfq-gold-dark);
	font-weight: 700;
	padding: 10px 16px 4px;
}

.wfq-combo-option {
	padding: 10px 16px;
	font-size: 14px;
	cursor: pointer;
	min-height: 44px;
	display: flex;
	align-items: center;
}

.wfq-combo-option:hover,
.wfq-combo-option.is-active {
	background: #f2f6f3;
}

.wfq-combo-permanent {
	font-style: italic;
	color: var(--wfq-forest);
}

.wfq-combo-option[hidden] {
	display: none;
}

.wfq-itinerary-preview {
	display: none;
	gap: 16px;
	margin-top: 14px;
	border: 1px solid var(--wfq-border);
	border-radius: var(--wfq-radius);
	overflow: hidden;
	background: var(--wfq-cream);
}

.wfq-itinerary-preview img {
	width: 120px;
	height: 100px;
	object-fit: cover;
	flex-shrink: 0;
}

.wfq-itinerary-preview-body {
	padding: 14px 16px 14px 0;
}

.wfq-itinerary-preview-body h3 {
	font-family: var(--wfq-font-heading);
	font-size: 16px;
	margin: 0 0 4px;
	color: var(--wfq-forest);
}

.wfq-itinerary-preview-body p {
	font-size: 13px;
	color: var(--wfq-text-muted);
	margin: 0 0 6px;
}

.wfq-itinerary-preview-body a {
	color: var(--wfq-gold-dark);
	font-weight: 700;
	font-size: 13px;
	text-decoration: none;
}

.wfq-itinerary-preview-body a:hover {
	text-decoration: underline;
}

.wfq-park-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.wfq-chip-action {
	font-size: 12.5px;
	border: 1px solid var(--wfq-forest);
	color: var(--wfq-forest);
	background: transparent;
	border-radius: 20px;
	padding: 6px 14px;
	cursor: pointer;
}

.wfq-chip-action:hover {
	background: var(--wfq-forest);
	color: #fff;
}

.wfq-chip-clear {
	border-color: var(--wfq-text-muted);
	color: var(--wfq-text-muted);
}

.wfq-chip-clear:hover {
	background: var(--wfq-text-muted);
	color: #fff;
}

.wfq-park-search {
	margin-bottom: 14px;
}

.wfq-park-region {
	grid-column: 1 / -1;
	margin-top: 10px;
}

.wfq-park-region-title {
	font-size: 12.5px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--wfq-gold-dark);
	font-weight: 700;
	margin: 10px 0 8px;
}

.wfq-park-region-items,
.wfq-chip-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
	gap: 10px;
}

.wfq-chip {
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1px solid var(--wfq-border);
	border-radius: 20px;
	padding: 8px 14px;
	font-size: 13.5px;
	cursor: pointer;
	min-height: 40px;
	background: var(--wfq-paper);
}

.wfq-chip:has(input:checked) {
	border-color: var(--wfq-forest);
	background: #f2f6f3;
	color: var(--wfq-forest);
	font-weight: 600;
}

.wfq-chip input {
	width: 16px;
	height: 16px;
	accent-color: var(--wfq-forest);
}

.wfq-chip[hidden] {
	display: none;
}

.wfq-park-region[hidden] {
	display: none;
}

.wfq-counter-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 20px;
}

@media (max-width: 700px) {
	.wfq-counter-row {
		grid-template-columns: 1fr;
	}
}

.wfq-counter {
	border: 1px solid var(--wfq-border);
	border-radius: var(--wfq-radius);
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.wfq-counter-label .wfq-label {
	margin-bottom: 2px;
}

.wfq-counter-label .wfq-helper {
	margin: 0;
}

.wfq-counter-control {
	display: flex;
	align-items: center;
	gap: 12px;
}
.wfq-sidebar li {
  list-style: disc;
}
.wfq-counter-btn { 
	border-radius: 50%;
	border: 1px solid var(--wfq-forest);
	background: var(--wfq-paper);
	color: var(--wfq-forest);
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	flex-shrink: 0;
}

.wfq-counter-btn:hover {
	background: var(--wfq-forest);
	color: #fff;
}

.wfq-counter-control input {
	width: 56px;
	text-align: center;
	border: none;
	background: transparent;
	font-size: 17px;
	font-weight: 700;
	min-height: auto;
	padding: 0;
}

.wfq-age-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 12px;
	margin-bottom: 6px;
}

.wfq-age-grid label {
	font-size: 13px;
	display: block;
	margin-bottom: 6px;
	color: var(--wfq-text-muted);
}

.wfq-optional-panel {
	border-top: 1px dashed var(--wfq-border);
	margin-top: 24px;
	padding-top: 20px;
}

.wfq-optional-panel summary {
	cursor: pointer;
	font-weight: 700;
	color: var(--wfq-forest);
	font-size: 14.5px;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 8px;
}

.wfq-optional-panel summary::-webkit-details-marker {
	display: none;
}

.wfq-optional-panel summary::before {
	content: "+";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border: 1px solid var(--wfq-forest);
	border-radius: 50%;
	font-size: 14px;
}

.wfq-optional-panel[open] summary::before {
	content: "–";
}

.wfq-optional-panel > *:not(summary) {
	margin-top: 20px;
}

.wfq-consent {
	margin-bottom: 16px;
}

.wfq-checkbox-line {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 14px;
	line-height: 1.5;
	cursor: pointer;
}

.wfq-checkbox-line input {
	width: 20px;
	height: 20px;
	margin-top: 2px;
	accent-color: var(--wfq-forest);
	flex-shrink: 0;
}

.wfq-checkbox-line a {
	color: var(--wfq-gold-dark);
	font-weight: 600;
}

.wfq-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.wfq-mobile-summary {
	display: none;
}

@media (max-width: 960px) {
	.wfq-mobile-summary {
		display: block;
		border: 1px solid var(--wfq-border);
		border-radius: var(--wfq-radius);
		background: var(--wfq-cream);
		margin-bottom: 24px;
		overflow: hidden;
	}
	.wfq-mobile-summary-toggle {
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 16px 18px;
		background: transparent;
		border: none;
		font-family: var(--wfq-font-heading);
		font-size: 16px;
		color: var(--wfq-forest);
		font-weight: 700;
		cursor: pointer;
	}
	.wfq-mobile-summary-chevron {
		transition: transform .2s ease;
	}
	.wfq-mobile-summary-toggle[aria-expanded="true"] .wfq-mobile-summary-chevron {
		transform: rotate(180deg);
	}
	.wfq-mobile-summary-body {
		padding: 0 18px 18px;
		font-size: 13.5px;
	}
	.wfq-mobile-summary-body dl {
		margin: 0;
	}
	.wfq-mobile-summary-body div {
		display: flex;
		justify-content: space-between;
		gap: 10px;
		padding: 6px 0;
		border-bottom: 1px solid var(--wfq-border);
	}
}

.wfq-submit-area {
	text-align: center;
	padding-top: 8px;
}

.wfq-submit-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: var(--wfq-gold);
	color: #1a1a1a;
	font-family: var(--wfq-font-body);
	font-weight: 700;
	font-size: 16px;
	padding: 16px 40px;
	border: none;
	border-radius: var(--wfq-radius);
	cursor: pointer;
	min-height: 52px;
	transition: background .15s ease;
}

.wfq-submit-btn:hover:not(:disabled) {
	background: var(--wfq-gold-dark);
}

.wfq-submit-btn:disabled {
	opacity: .75;
	cursor: not-allowed;
}

.wfq-submit-arrow {
	font-size: 18px;
}

.wfq-spinner {
	width: 16px;
	height: 16px;
	border: 2px solid rgba(0,0,0,.25);
	border-top-color: #1a1a1a;
	border-radius: 50%;
	animation: wfq-spin 0.8s linear infinite;
}

@keyframes wfq-spin {
	to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
	.wfq-spinner {
		animation-duration: 2.4s;
	}
}

.wfq-submit-note {
	font-size: 12.5px;
	color: var(--wfq-text-muted);
	margin-top: 12px;
}

@media (max-width: 600px) {
	.wfq-submit-btn {
		width: 100%;
	}
}

.wfq-sidebar-sticky {
	position: sticky;
	top: 24px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.wfq-summary-card,
.wfq-reassurance-card {
	background: var(--wfq-forest);
	color: #fff;
	border-radius: var(--wfq-radius);
	padding: 24px;
}

.wfq-summary-card h2,
.wfq-reassurance-card h3 {
	font-family: var(--wfq-font-heading);
	font-size: 18px;
	color: #fff;
	margin: 0 0 14px;
}

.wfq-reassurance-card h3 {
	color: var(--wfq-gold);
}

.wfq-summary-list {
	margin: 0;
}

.wfq-summary-empty {
	font-size: 13px;
	opacity: .8;
	margin: 0;
}

.wfq-summary-row {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	font-size: 13.5px;
	padding: 8px 0;
	border-bottom: 1px solid rgba(255,255,255,.15);
}

.wfq-summary-row dt {
	opacity: .75;
}

.wfq-summary-row dd {
	margin: 0;
	font-weight: 600;
	text-align: right;
}

.wfq-reassurance-card ul {
	margin: 0;
	padding: 0 0 0 18px;
	font-size: 13.5px;
	line-height: 1.7;
}

.wfq-contact-block {
	margin: 16px 0 0;
	font-size: 13.5px;
	line-height: 1.8;
}

.wfq-contact-block a {
	color: var(--wfq-gold);
	text-decoration: none;
}

.wfq-contact-block a:hover {
	text-decoration: underline;
}

.wfq-success-panel {
	background: var(--wfq-paper);
	border: 1px solid var(--wfq-border);
	border-radius: var(--wfq-radius);
	box-shadow: var(--wfq-shadow);
	padding: 48px 40px;
	text-align: center;
}

.wfq-success-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--wfq-forest);
	color: #fff;
	font-size: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.wfq-success-panel h2 {
	font-family: var(--wfq-font-heading);
	font-size: 28px;
	color: var(--wfq-forest);
	margin: 0 0 12px;
}

.wfq-success-message {
	font-size: 15px;
	color: var(--wfq-text-muted);
	max-width: 520px;
	margin: 0 auto 24px;
	line-height: 1.6;
}

.wfq-success-details {
	max-width: 460px;
	margin: 0 auto 20px;
	text-align: left;
	background: var(--wfq-cream);
	border-radius: var(--wfq-radius);
	padding: 18px 22px;
}

.wfq-success-details > div {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 6px 0;
	font-size: 13.5px;
	border-bottom: 1px solid var(--wfq-border);
}

.wfq-success-details > div:last-child {
	border-bottom: none;
}

.wfq-success-details dt {
	color: var(--wfq-text-muted);
}

.wfq-success-details dd {
	margin: 0;
	font-weight: 700;
	text-align: right;
}

.wfq-success-note {
	font-size: 12.5px;
	color: var(--wfq-text-muted);
	margin-bottom: 28px;
}

.wfq-success-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

.wfq-btn-secondary {
	border: 1px solid var(--wfq-forest);
	color: var(--wfq-forest);
	text-decoration: none;
	padding: 12px 22px;
	border-radius: var(--wfq-radius);
	font-size: 14px;
	font-weight: 600;
}

.wfq-btn-secondary:hover {
	background: var(--wfq-forest);
	color: #fff;
}

.wfq-disclosure[hidden] {
	display: none;
}