/**
 * Park Saraland — design system (Bootstrap overrides + sections)
 */

:root {
	--ps-navy: #0c1b2e;
	--ps-navy-mid: #152a45;
	--ps-amber: #e8a317;
	--ps-amber-soft: #f4c14b;
	--ps-cream: #f6f2ea;
	--ps-white: #ffffff;
	--ps-muted: #94a3b8;
	--ps-success: #1a7f5c;
	--font-display: "Outfit", system-ui, sans-serif;
	--font-body: "DM Sans", system-ui, sans-serif;
}

body {
	font-family: var(--font-body);
	color: var(--ps-navy);
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.navbar-brand,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: -0.02em;
}

/* Navbar */
.ps-navbar {
	background: var(--ps-navy) !important;
	padding-top: 0.85rem;
	padding-bottom: 0.85rem;
	box-shadow: 0 4px 24px rgba(12, 27, 46, 0.15);
	z-index: 1000;
	transition: background-color 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.ps-navbar.ps-navbar-overlay {
	background: transparent !important;
	box-shadow: none;
}
.ps-brand-logo img {
	height: 64px;
	width: auto;
	display: block;
	transition: height 0.35s ease, transform 0.35s ease;
}
@media (max-width: 767.98px) {
	.ps-brand-logo img {
		height: 54px;
	}
}
.ps-navbar.is-scrolled {
	background: #113d5b !important;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
	padding-top: 0.55rem;
	padding-bottom: 0.55rem;
}
.ps-navbar.is-scrolled .ps-brand-logo img {
	height: 56px;
	transform: translateY(-1px);
}
@media (max-width: 767.98px) {
	.ps-navbar.is-scrolled .ps-brand-logo img {
		height: 46px;
	}
}
.ps-navbar .navbar-brand {
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--ps-white) !important;
	letter-spacing: -0.03em;
}
.ps-navbar .nav-link {
	color: rgba(255, 255, 255, 0.88) !important;
	font-weight: 500;
	padding: 0.5rem 1rem !important;
	border-radius: 0.375rem;
	transition: color 0.2s, background 0.2s;
}
.ps-navbar .nav-link:hover,
.ps-navbar .nav-link:focus {
	color: var(--ps-amber-soft) !important;
	background: rgba(255, 255, 255, 0.06);
}
.ps-navbar .btn-cta-nav {
	background: var(--ps-amber);
	border: none;
	color: var(--ps-navy) !important;
	font-weight: 700;
	padding: 0.5rem 1.25rem;
	border-radius: 0.5rem;
}
.ps-navbar .btn-cta-nav:hover {
	background: var(--ps-amber-soft);
	color: var(--ps-navy) !important;
}

/* Hero */
.ps-hero {
	position: relative;
	background:
		linear-gradient(135deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.74) 50%, rgba(0, 0, 0, 0.68) 100%),
		url("../../images/banner.jpg") center / cover no-repeat;
	color: var(--ps-white);
	padding: clamp(2rem, 5vw, 3.75rem) 0;
	overflow: hidden;
}
.home .ps-hero {
	padding-top: clamp(6rem, 9vw, 7.25rem);
}

/* Keep fixed header from covering content on inner pages. */
body:not(.home) {
	padding-top: 96px;
}
.ps-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(ellipse 80% 50% at 20% 40%, rgba(232, 163, 23, 0.12), transparent),
		radial-gradient(ellipse 60% 40% at 90% 80%, rgba(255, 255, 255, 0.04), transparent);
	pointer-events: none;
}
.ps-hero .container {
	position: relative;
	z-index: 1;
}
.ps-hero-kicker {
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--ps-amber-soft);
	margin-bottom: 0.75rem;
}
.ps-hero h1 {
	font-size: clamp(2rem, 5vw, 3.25rem);
	line-height: 1.1;
	margin-bottom: 1rem;
}
.ps-hero-lead {
	font-size: 1.15rem;
	opacity: 0.92;
	max-width: 32rem;
	margin-bottom: 1.5rem;
}
.ps-hero-tagline {
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 3.5vw, 2.25rem);
	font-weight: 600;
	color: var(--ps-amber-soft);
	margin-bottom: 0.5rem;
}
.ps-hero-sub {
	font-size: 1rem;
	opacity: 0.85;
	margin-bottom: 1.75rem;
}
.ps-btn-primary {
	background: var(--ps-amber);
	border: none;
	color: var(--ps-navy);
	font-weight: 700;
	padding: 0.75rem 1.75rem;
	border-radius: 0.5rem;
	transition: transform 0.15s, box-shadow 0.2s;
}
.ps-btn-primary:hover {
	background: var(--ps-amber-soft);
	color: var(--ps-navy);
	transform: translateY(-1px);
	box-shadow: 0 8px 24px rgba(232, 163, 23, 0.35);
}
.ps-btn-outline-light {
	border: 2px solid rgba(255, 255, 255, 0.5);
	color: var(--ps-white);
	font-weight: 600;
	padding: 0.65rem 1.5rem;
	border-radius: 0.5rem;
}
.ps-btn-outline-light:hover {
	background: var(--ps-white);
	color: var(--ps-navy);
	border-color: var(--ps-white);
}

/* Feature cards */
.ps-section {
	padding: clamp(3rem, 6vw, 5rem) 0;
}
.ps-section-title {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	margin-bottom: 0.5rem;
	color: var(--ps-navy);
}
.ps-section-intro {
	color: var(--ps-muted);
	max-width: 36rem;
	margin-bottom: 2.5rem;
}
.ps-feature-card {
	background: var(--ps-white);
	border-radius: 1rem;
	padding: 1.75rem;
	height: 100%;
	border: 1px solid rgba(12, 27, 46, 0.08);
	box-shadow: 0 4px 20px rgba(12, 27, 46, 0.06);
	transition: transform 0.2s, box-shadow 0.2s;
}
.ps-feature-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(12, 27, 46, 0.1);
}
.ps-reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform;
}
.ps-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
	.ps-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}
.ps-feature-icon {
	width: 3rem;
	height: 3rem;
	border-radius: 0.75rem;
	background: linear-gradient(135deg, var(--ps-amber), var(--ps-amber-soft));
	color: var(--ps-navy);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.35rem;
	margin-bottom: 1rem;
}
.ps-feature-card h3 {
	font-size: 1.125rem;
	margin-bottom: 0.5rem;
}
.ps-feature-card p {
	font-size: 0.9375rem;
	color: #64748b;
	margin: 0;
	line-height: 1.55;
}

/* Vehicle types */
.ps-vehicles {
	background: var(--ps-navy);
	color: var(--ps-white);
}
.ps-vehicles h2 {
	color: var(--ps-white);
}
.ps-vehicle-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.15);
	padding: 0.65rem 1.15rem;
	border-radius: 2rem;
	font-weight: 600;
	font-size: 0.9375rem;
	margin: 0.35rem;
}

/* Why choose us split section */
.ps-why-split {
	background: #fff;
	position: relative;
	margin-bottom: 2.5rem;
}
.ps-why-split .container {
	position: relative;
}
.ps-why-image-wrap {
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 16px 36px rgba(12, 27, 46, 0.15);
}
.ps-why-image {
	width: 100%;
	height: auto;
	display: block;
}
.ps-why-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 1rem;
	font-size: 1.05rem;
	color: #1e293b;
}
.ps-why-list li:last-child {
	margin-bottom: 0;
}
.ps-why-list i {
	color: var(--ps-success);
	font-size: 1.2rem;
	line-height: 1.2;
	margin-top: 0.1rem;
}
.ps-why-bottom-image-wrap {
	margin-top: 0;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: none;
	position: absolute;
	left: 50%;
	bottom: -170px;
	transform: translateX(-50%);
	width: clamp(260px, 34vw, 430px);
	z-index: 3;
}
.ps-why-bottom-image {
	width: 100%;
	display: block;
	height: auto;
}
@media (max-width: 767.98px) {
	.ps-why-bottom-image-wrap {
		bottom: -72px;
		width: clamp(210px, 52vw, 320px);
	}
}

/* Parking rates block */
.ps-rates-block {
	background: #fff;
}
.ps-rates-title {
	position: relative;
	display: inline-block;
	left: 50%;
	transform: translateX(-50%);
	padding-bottom: 0.7rem;
	border-bottom: none;
}
.ps-rates-title::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 72px;
	height: 3px;
	border-radius: 2px;
	background: var(--ps-amber);
}
.ps-rates-row {
	margin-top: 0.25rem;
}
.ps-rates-image-wrap {
	border-radius: 1rem 0 0 1rem;
	overflow: hidden;
	height: 100%;
	position: relative;
}
.ps-rates-image {
	width: 100%;
	height: 100%;
	min-height: 100%;
	object-fit: cover;
	display: block;
}
.ps-rates-subtitle {
	font-family: var(--font-display);
	font-size: clamp(1.1rem, 2.1vw, 1.35rem);
	color: var(--ps-navy);
}
.ps-rates-subtitle-overlay {
	position: absolute;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	padding: 0.75rem 0.95rem;
	font-family: var(--font-display);
	font-size: clamp(1rem, 1.6vw, 1.25rem);
	line-height: 1.2;
	color: #fff;
	background: rgba(17, 61, 91, 0.82);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 0.65rem;
	backdrop-filter: blur(2px);
}
.ps-rates-text {
	background: #113d5b;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 0 1rem 1rem 0;
	padding: 1.6rem 1.7rem;
	height: 100%;
}
.ps-rates-text p {
	color: rgba(255, 255, 255, 0.92);
	line-height: 1.65;
	margin-bottom: 1rem;
}
.ps-safe-spot-block {
	background: #fff;
}
.ps-safe-spot-text {
	min-height: 100%;
	padding: 2rem;
}
.ps-safe-spot-text .ps-rates-title {
	color: #fff;
	border-bottom: none;
	padding-bottom: 0.7rem;
	left: 0;
	transform: none;
	display: inline-block;
}
.ps-safe-spot-text .ps-rates-title::after {
	background: var(--ps-amber-soft);
	left: 0;
	transform: none;
}
.ps-safe-spot-text .form-label {
	color: rgba(255, 255, 255, 0.95);
}
.ps-safe-spot-text .form-control,
.ps-safe-spot-text .form-select {
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.45);
	color: #0f1f31;
}
.ps-safe-spot-text .form-control::placeholder {
	color: rgba(15, 31, 49, 0.55);
}
.ps-safe-spot-text .form-control:focus,
.ps-safe-spot-text .form-select:focus {
	border-color: var(--ps-amber);
	box-shadow: 0 0 0 0.18rem rgba(232, 163, 23, 0.2);
}
.ps-safe-spot-text .ps-location-status {
	color: rgba(255, 255, 255, 0.85);
}
.ps-locate-block {
	background: #fff;
}
.ps-locate-block .ps-location-box,
.ps-locate-block .ps-map-embed {
	border-radius: 0;
}
.ps-locate-block .ps-location-box {
	padding: clamp(2.5rem, 4vw, 3.5rem);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.ps-locate-block .ps-location-box form {
	width: 100%;
	max-width: 470px;
}
.ps-locate-block .ps-location-box h3 {
	font-size: clamp(1.2rem, 2.2vw, 1.6rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 1rem !important;
}
.ps-locate-block .ps-location-box .d-flex {
	justify-content: center;
}
.ps-locate-block .ps-map-embed iframe {
	height: 100%;
	min-height: 420px;
}
@media (max-width: 991.98px) {
	.ps-rates-image-wrap,
	.ps-rates-text {
		border-radius: 1rem;
	}
	.ps-rates-image-wrap {
		margin-bottom: 0.75rem;
	}
	.ps-locate-block .ps-location-box,
	.ps-locate-block .ps-map-embed {
		border-radius: 1rem;
	}
	.ps-locate-block .ps-map-embed iframe {
		min-height: 340px;
	}
}

/* Forms */
.ps-form-section {
	background: var(--ps-white);
	border-radius: 1.25rem;
	padding: 2rem;
	box-shadow: 0 8px 40px rgba(12, 27, 46, 0.08);
	border: 1px solid rgba(12, 27, 46, 0.06);
}
@media (min-width: 992px) {
	.ps-form-section {
		padding: 2.5rem;
	}
}
.ps-form-section .form-label {
	font-weight: 600;
	font-size: 0.875rem;
	color: var(--ps-navy-mid);
}
.ps-form-section .form-control,
.ps-form-section .form-select {
	border-radius: 0.5rem;
	border-color: #cbd5e1;
	padding: 0.65rem 1rem;
}
.ps-form-section .form-control:focus,
.ps-form-section .form-select:focus {
	border-color: var(--ps-amber);
	box-shadow: 0 0 0 0.2rem rgba(232, 163, 23, 0.2);
}
.ps-form-note {
	font-size: 0.8125rem;
	color: var(--ps-muted);
	margin-top: 1rem;
}
.ps-hero-form {
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.14));
	backdrop-filter: blur(22px) saturate(140%);
	-webkit-backdrop-filter: blur(22px) saturate(140%);
	border: 1px solid rgba(255, 255, 255, 0.38);
	box-shadow:
		0 20px 45px rgba(0, 0, 0, 0.22),
		inset 0 1px 0 rgba(255, 255, 255, 0.45);
	border-radius: 1.25rem;
	position: relative;
	overflow: hidden;
}
.ps-hero-form form {
	position: relative;
	z-index: 2;
}
.ps-hero-car {
	position: relative;
	width: 390px;
	height: auto;
	opacity: 0.95;
	pointer-events: none;
	z-index: 2;
	filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25));
}
.ps-hero-car-anchor {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	z-index: 1;
	pointer-events: none;
}
.ps-hero-car-global {
	animation: psCarSlideInCentered 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}
@keyframes psCarSlideInCentered {
	from {
		transform: translateX(160px) translateY(8px);
		opacity: 0;
	}
	to {
		transform: translateX(0) translateY(0);
		opacity: 0.95;
	}
}
@media (max-width: 991.98px) {
	.ps-hero-car-global {
		width: clamp(150px, 46vw, 250px);
	}
}
@media (prefers-reduced-motion: reduce) {
	.ps-hero-car-global {
		animation: none;
	}
}
.ps-hero-form .form-label {
	color: rgba(255, 255, 255, 0.95);
	font-weight: 600;
}
.ps-hero-form h2 {
	color: #ffffff;
	font-size: clamp(1.85rem, 3.2vw, 2.45rem);
	line-height: 1.1;
	letter-spacing: -0.02em;
}
.ps-hero-form .form-control,
.ps-hero-form .form-select {
	background: rgba(255, 255, 255, 0.65);
	border: 1px solid rgba(255, 255, 255, 0.55);
	color: #0f1f31;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.ps-hero-form .form-control::placeholder {
	color: rgba(15, 31, 49, 0.55);
}
.ps-hero-form .form-select option {
	color: #0c1b2e;
}
.ps-hero-form .form-control:focus,
.ps-hero-form .form-select:focus {
	background: rgba(255, 255, 255, 0.78);
	border-color: rgba(17, 61, 91, 0.38);
	box-shadow:
		0 0 0 0.18rem rgba(17, 61, 91, 0.14),
		inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.ps-hero-form .input-group .btn {
	border: 1px solid rgba(255, 255, 255, 0.62);
	background: rgba(255, 255, 255, 0.32);
	color: #ffffff;
	font-weight: 600;
}
.ps-hero-form .input-group .btn:hover {
	background: rgba(255, 255, 255, 0.52);
	color: #ffffff;
}
.ps-location-status.is-ok {
	color: #1a7f5c !important;
}
.ps-location-status.is-error {
	color: #b42318 !important;
}
.ps-location-status {
	color: rgba(16, 32, 51, 0.78);
}

/* Why choose */
.ps-why {
	background: linear-gradient(180deg, var(--ps-cream) 0%, #ebe6dc 100%);
}
.ps-why-item {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	padding: 1.25rem 0;
	border-bottom: 1px solid rgba(12, 27, 46, 0.08);
}
.ps-why-item:last-child {
	border-bottom: none;
}
.ps-why-check {
	flex-shrink: 0;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	background: var(--ps-success);
	color: var(--ps-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1rem;
}

/* Location */
.ps-location-box {
	background: var(--ps-navy);
	color: var(--ps-white);
	border-radius: 1rem;
	padding: 2rem;
}
.ps-distance-display {
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 800;
	color: var(--ps-amber-soft);
}
.ps-map-embed {
	border-radius: 0.75rem;
	overflow: hidden;
	min-height: 280px;
	background: var(--ps-navy-mid);
}
.ps-map-embed iframe {
	width: 100%;
	height: 280px;
	border: 0;
	display: block;
}

/* Final CTA band */
.ps-cta-band {
	background: linear-gradient(135deg, var(--ps-navy-mid), var(--ps-navy));
	color: var(--ps-white);
	padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.ps-cta-band h2 {
	color: var(--ps-white);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
}

/* Footer */
.ps-footer {
	background: #070f18;
	color: rgba(255, 255, 255, 0.75);
	padding: 2.5rem 0 2rem;
	font-size: 0.9rem;
}
.ps-footer a {
	color: var(--ps-amber-soft);
	text-decoration: none;
}
.ps-footer a:hover {
	text-decoration: underline;
}

/* Pricing strip (opening / early bird) */
.ps-pricing-card {
	background: var(--ps-white);
	border-left: 4px solid var(--ps-amber);
	border-radius: 0 0.75rem 0.75rem 0;
	padding: 1.5rem 1.75rem;
	box-shadow: 0 4px 20px rgba(12, 27, 46, 0.06);
}
.ps-pricing-card strong {
	color: var(--ps-navy);
}

/* Thank you page */
.ps-thankyou-page {
	background:
		linear-gradient(135deg, rgba(12, 27, 46, 0.95) 0%, rgba(17, 61, 91, 0.92) 100%),
		url("../../images/banner.jpg") center / cover no-repeat;
	padding: clamp(4.5rem, 9vw, 7rem) 0;
	min-height: calc(100vh - 180px);
	display: flex;
	align-items: center;
}
.ps-thankyou-card {
	max-width: 760px;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: 1.2rem;
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
	padding: clamp(1.6rem, 4vw, 3rem);
	border: 1px solid rgba(255, 255, 255, 0.55);
}
.ps-thankyou-icon-wrap {
	display: inline-flex;
}
.ps-thankyou-icon {
	width: 78px;
	height: 78px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 2.3rem;
	color: #fff;
	background: linear-gradient(135deg, #1a7f5c, #2da478);
	box-shadow: 0 10px 28px rgba(26, 127, 92, 0.35);
}
.ps-thankyou-kicker {
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-size: 0.78rem;
	color: #1f4b69;
}
.ps-thankyou-title {
	font-size: clamp(1.8rem, 4vw, 2.7rem);
	line-height: 1.15;
	color: var(--ps-navy);
}
.ps-thankyou-lead {
	font-size: 1.05rem;
	line-height: 1.7;
	color: #334155;
	max-width: 620px;
	margin: 0 auto;
}
.ps-thankyou-separator {
	border: 0;
	height: 1px;
	opacity: 1;
	background: linear-gradient(90deg, transparent, rgba(17, 61, 91, 0.35), transparent);
	margin: 1.6rem auto 1.45rem;
	max-width: 520px;
}
.ps-thankyou-actions .btn {
	min-width: 170px;
	font-weight: 700;
	padding: 0.72rem 1.2rem;
	border-radius: 0.55rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1.2;
}
.ps-thankyou-actions .btn-outline-secondary {
	color: #113d5b !important;
	border: 2px solid #113d5b !important;
	background: transparent !important;
}
.ps-thankyou-actions .btn-outline-secondary:hover {
	background: #113d5b !important;
	color: #fff !important;
	border-color: #113d5b !important;
}
.ps-thankyou-actions .btn-outline-secondary:focus,
.ps-thankyou-actions .btn-outline-secondary:active {
	background: #113d5b !important;
	color: #fff !important;
	border-color: #113d5b !important;
	box-shadow: 0 0 0 0.2rem rgba(17, 61, 91, 0.22) !important;
}
@media (max-width: 575.98px) {
	.ps-thankyou-actions .btn {
		width: 100%;
	}
}
