/**
 * 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);
	background-color: var(--ps-cream);
	-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);
}
.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, var(--ps-navy) 0%, var(--ps-navy-mid) 50%, #1a3654 100%);
	color: var(--ps-white);
	padding: clamp(3rem, 8vw, 6rem) 0;
	overflow: hidden;
}
.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-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;
}

/* 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;
}

/* 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);
}
