/*!
Theme Name: USA Parking Lot-JFK
Theme URI: https://hachiweb.com/
Author: Hachiweb
Author URI: https://hachiweb.com/
Description: USA Parking Lot-JFK is a WordPress theme meant for managing parking lot bookings. And track sales in realtime
Version: 1.0.1
Tested up to: 6
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: USA Parking Lot-JFK
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

USA Parking Lot-JFK is developed by Hachiweb https://hachiweb.com/, (C) 2012-2020 Automattic, Inc.
Hachiweb is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
:root {
	--bg: #f7f9fc;
	--surface: rgba(255, 255, 255, 0.82);
	--surface-strong: #ffffff;
	--surface-muted: #edf3fb;
	--line: rgba(8, 27, 61, 0.12);
	--line-strong: rgba(8, 27, 61, 0.2);
	--text: #081b3d;
	--muted: #4f637d;
	--accent: #ff9f1c;
	--accent-strong: #ff7b00;
	--success: #13795b;
	--error: #c2352a;
	--shadow: 0 22px 60px rgba(8, 27, 61, 0.08);
	--radius: 24px;
	--radius-sm: 16px;
	--container: 1180px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
	background:
		radial-gradient(circle at top left, rgba(255, 159, 28, 0.18), transparent 28%),
		radial-gradient(circle at top right, rgba(76, 201, 240, 0.16), transparent 26%),
		linear-gradient(180deg, #fdfefe 0%, #f6f9fd 100%);
	color: var(--text);
	line-height: 1.6;
}

body.has-open-modal {
	overflow: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

p,
ul,
ol {
	margin: 0 0 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.75rem;
	line-height: 1.15;
	font-weight: 700;
	letter-spacing: -0.03em;
}

input,
select,
textarea,
button {
	font: inherit;
}

input,
select,
textarea {
	width: 100%;
	padding: 0.95rem 1rem;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: #fff;
	color: var(--text);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
	outline: none;
	border-color: rgba(255, 123, 0, 0.4);
	box-shadow: 0 0 0 4px rgba(255, 159, 28, 0.16);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.container,
.container-fluid {
	width: min(100% - 2rem, var(--container));
	margin: 0 auto;
}

.row {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
}

[class*="col-"] {
	flex: 1 1 100%;
	min-width: 0;
}

.text-center {
	text-align: center;
}

.mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 2rem; }
.pt-4 { padding-top: 1.5rem; }
.pb-3 { padding-bottom: 1rem; }
.img-fluid { width: 100%; height: auto; }
.d-flex { display: flex; }
.d-grid { display: grid; }
.d-none,
.is-hidden {
	display: none !important;
}

.button,
button,
input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	padding: 0.95rem 1.35rem;
	border: 0;
	border-radius: 999px;
	font-weight: 700;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
button:hover,
input[type="submit"]:hover {
	transform: translateY(-1px);
}

.button--primary {
	background: linear-gradient(135deg, var(--accent), var(--accent-strong));
	color: #fff;
	box-shadow: 0 18px 36px rgba(255, 123, 0, 0.2);
}

.button--secondary {
	background: #fff;
	color: var(--text);
	border: 1px solid var(--line);
}

.button--ghost {
	background: rgba(255, 255, 255, 0.72);
	color: var(--text);
	border: 1px solid var(--line);
	backdrop-filter: blur(12px);
}

.button--block {
	width: 100%;
}

.icon {
	width: 1.15rem;
	height: 1.15rem;
	flex: none;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	/* padding: 1rem 0; */
	background: rgba(247, 249, 252, 0.72);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(8, 27, 61, 0.06);
}

.site-header__inner {
	display: grid;
	grid-template-columns: auto auto 1fr auto;
	align-items: center;
	gap: 1rem;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.9rem;
	min-width: 0;
}

.site-brand__logo {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 18px;
	background: #fff;
	padding: 0.45rem;
	box-shadow: var(--shadow);
}

.site-brand__text {
	display: grid;
}

.site-brand__kicker,
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.8rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--accent-strong);
	font-weight: 700;
}

.site-brand__title {
	font-size: 1.05rem;
	color: var(--text);
}

.site-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.1rem;
}

.site-nav a {
	color: var(--muted);
	font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
	color: var(--text);
}

.site-nav-toggle {
	display: none;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 0.8rem;
}

.site-nav-toggle span:not(.screen-reader-text) {
	display: block;
	width: 1.2rem;
	height: 2px;
	background: var(--text);
	border-radius: 999px;
}

.site-header__actions {
	display: flex;
	justify-content: flex-end;
}

.site-main {
	padding: 2rem 0 0;
}

.hero,
.page-hero {
	padding: 2.5rem 0 1rem;
}

.hero__grid,
.direction-card,
.overview-grid,
.contact-grid {
	display: grid;
	gap: 1.5rem;
}

.hero__grid {
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr);
	align-items: start;
}

.hero__content,
.booking-shell,
.direction-card,
.prose-card,
.overview-card,
.feature-card,
.process-card,
.contact-card,
.form-shell {
	background: var(--surface);
	border: 1px solid rgba(255, 255, 255, 0.64);
	backdrop-filter: blur(14px);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.hero__content {
	padding: 3rem;
	position: relative;
	overflow: hidden;
}

.hero__content::after {
	content: "";
	position: absolute;
	inset: auto -3rem -3rem auto;
	width: 14rem;
	height: 14rem;
	background: radial-gradient(circle, rgba(255, 159, 28, 0.22), transparent 68%);
	pointer-events: none;
}

.hero__visual {
	margin-top: 1.5rem;
	position: relative;
	overflow: hidden;
	border-radius: 22px;
	min-height: 15rem;
	border: 1px solid rgba(255, 255, 255, 0.64);
	box-shadow: 0 18px 38px rgba(8, 27, 61, 0.12);
}

.hero__visual img {
	width: 100%;
	height: 100%;
	min-height: 15rem;
	object-fit: cover;
	transform: scale(1.02);
}

.hero__visual::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(8, 27, 61, 0.08), rgba(8, 27, 61, 0.7));
}

.hero__visual-copy {
	position: absolute;
	left: 1.2rem;
	right: 1.2rem;
	bottom: 1.2rem;
	z-index: 1;
	display: grid;
	gap: 0.35rem;
	color: #fff;
}

.hero__visual-copy strong {
	font-size: 1.1rem;
}

.hero__visual-copy span {
	color: rgba(255, 255, 255, 0.84);
	font-size: 0.95rem;
}

.hero h1,
.page-hero h1 {
	font-size: clamp(2.4rem, 4vw, 4.4rem);
	max-width: 14ch;
}

.hero__lede,
.page-hero p {
	color: var(--muted);
	font-size: 1.05rem;
	max-width: 62ch;
}

.hero__stats,
.direction-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin: 1.5rem 0;
}

.hero-stat,
.direction-meta span {
	display: grid;
	gap: 0.15rem;
	padding: 0.85rem 1rem;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid var(--line);
}

.hero-stat__value {
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--text);
}

.hero-stat__label {
	font-size: 0.85rem;
	color: var(--muted);
}

.hero__actions,
.form-step__actions,
.direction-card__actions,
.form-actions,
.site-modal__actions,
.promo-code-shell,
.social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.form-step__actions {
	margin-top: 1.15rem;
}

.booking-shell,
.form-shell {
	padding: 2rem;
}

.booking-shell__header h2,
.section-heading h2,
.contact-card h2,
.overview-card h2 {
	font-size: clamp(1.5rem, 2vw, 2.2rem);
}

.booking-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem;
	margin: 1.5rem 0;
}

.booking-steps__item {
	padding: 0.7rem 0.85rem;
	border-radius: 999px;
	text-align: center;
	background: var(--surface-muted);
	color: var(--muted);
	font-weight: 700;
	font-size: 0.9rem;
}

.booking-steps__item.is-active {
	background: linear-gradient(135deg, rgba(255, 159, 28, 0.18), rgba(255, 123, 0, 0.12));
	color: var(--text);
}

.field-grid {
	display: grid;
	gap: 1rem;
}

.field-grid--2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field-grid--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.field {
	display: grid;
	gap: 0.45rem;
	/* position: relative; */
}

.field span {
	font-size: 0.92rem;
	font-weight: 700;
}

/* Floating label on focus */
/* .field:focus-within span {
    transform: translateY(-0.8rem) scale(0.85);
    transition: transform 0.2s ease, color 0.2s ease;
    color: var(--accent);
}
.field input {
    transition: border-color 0.2s;
}
.field input:focus {
    outline: none;
    border-color: var(--accent);
} */

.tpp-select {
	position: relative;
}

.tpp-select__native {
	position: absolute;
	inset: 0;
	opacity: 0;
	pointer-events: none;
}

.tpp-select__trigger {
	width: 100%;
	justify-content: space-between;
	padding: 0.95rem 1rem;
	border-radius: 16px;
	background: #fff;
	color: var(--text);
	border: 1px solid var(--line);
	box-shadow: none;
}

.tpp-select__trigger::after {
	content: "";
	width: 0.55rem;
	height: 0.55rem;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.24s ease;
}

.tpp-select.is-open .tpp-select__trigger::after {
	transform: rotate(-135deg);
}

.tpp-select__dropdown {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 0.45rem);
	z-index: 20;
	padding: 0.75rem;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid var(--line);
	box-shadow: 0 22px 48px rgba(8, 27, 61, 0.14);
	backdrop-filter: blur(14px);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.tpp-select.is-open .tpp-select__dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.tpp-select__search {
	margin-bottom: 0.65rem;
}

.tpp-select__list {
	max-height: 15rem;
	overflow: auto;
	display: grid;
	gap: 0.35rem;
}

.tpp-select__option,
.tpp-select__empty {
	width: 100%;
	padding: 0.75rem 0.85rem;
	border-radius: 12px;
	text-align: left;
	font-weight: 600;
}

.tpp-select__option {
	background: transparent;
	color: var(--text);
}

.tpp-select__option:hover,
.tpp-select__option.is-selected {
	background: linear-gradient(135deg, rgba(255, 159, 28, 0.14), rgba(86, 198, 255, 0.12));
	color: var(--accent-strong);
}

.tpp-select__empty {
	color: var(--muted);
	font-size: 0.92rem;
}

.field--full {
	grid-column: 1 / -1;
}

.field__helper {
	font-size: 0.88rem;
	color: var(--muted);
}

.field__helper--error {
	color: var(--error);
}

.section {
	padding: 1.5rem 0 2rem;
}

.section--muted {
	background: linear-gradient(180deg, rgba(237, 243, 251, 0.4), rgba(247, 249, 252, 0));
}

.section-heading {
	display: grid;
	gap: 0.5rem;
	text-align: center;
	max-width: 48rem;
	margin: 0 auto 1.5rem;
}

.section-heading--left {
	text-align: left;
	margin-inline: 0;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
	max-width: 68rem;
	margin: 0 auto;
}

.feature-card,
.process-card,
.contact-card,
.overview-card {
	padding: 1.5rem;
}

.feature-card__icon,
.contact-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 14px;
	background: rgba(255, 159, 28, 0.14);
	color: var(--accent-strong);
	margin-bottom: 1rem;
}

.feature-card p,
.process-card p,
.contact-card p,
.overview-card p,
.prose-card p {
	color: var(--muted);
}

.process-card {
	text-align: center;
}

.process-card__count,
.overview-card__label {
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--accent-strong);
}

.prose-card {
	padding: 2rem;
}

.direction-card {
	grid-template-columns: minmax(0, 1.3fr) auto;
	padding: 2rem;
	align-items: center;
}

.map-section,
.about-profile-grid,
.about-hero__grid {
	display: grid;
	gap: 1.5rem;
}

.map-section {
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
	align-items: stretch;
}

.map-shell,
.direction-panel,
.about-profile,
.about-signal,
.about-hero__panel {
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid var(--line);
	border-radius: 28px;
	box-shadow: var(--shadow);
	backdrop-filter: blur(14px);
}

.map-shell {
	padding: 0.75rem;
	min-height: 100%;
}

.map-frame {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 26rem;
	border: 0;
	border-radius: 22px;
}

.direction-panel {
	position: relative;
	padding: 2rem;
	overflow: hidden;
}

.direction-panel::before,
.about-hero__panel::before,
.about-profile::before {
	content: "";
	position: absolute;
	inset: auto auto 0 0;
	width: 12rem;
	height: 12rem;
	background: radial-gradient(circle, rgba(76, 201, 240, 0.18), transparent 70%);
	pointer-events: none;
}

.mini-steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.85rem;
	margin-top: 1.5rem;
}

.mini-step {
	padding: 1rem;
	border-radius: 18px;
	background: rgba(237, 243, 251, 0.85);
	border: 1px solid rgba(8, 27, 61, 0.08);
}

.mini-step p {
	margin-bottom: 0;
	color: var(--muted);
}

.mini-step__count {
	display: inline-flex;
	margin-bottom: 0.45rem;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--accent-strong);
}

.faq-list {
	display: grid;
	gap: 0.85rem;
}

.faq-item {
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid var(--line);
	border-radius: 18px;
	padding: 0 1.15rem;
	box-shadow: 0 18px 36px rgba(8, 27, 61, 0.04);
}

.faq-item summary {
	position: relative;
	list-style: none;
	cursor: pointer;
	padding: 1.15rem 2rem 1.15rem 0;
	font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	color: var(--accent-strong);
	font-size: 1.3rem;
}

.faq-item[open] summary::after {
	content: "−";
}

.faq-item p {
	padding: 0 0 1.15rem;
	color: var(--muted);
}

.site-footer {
	margin-top: 3rem;
	padding: 3rem 0 1.5rem;
	background: rgba(255, 255, 255, 0.74);
	border-top: 1px solid rgba(8, 27, 61, 0.08);
	backdrop-filter: blur(16px);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
}

.site-footer__column,
.site-footer__brand {
	display: grid;
	gap: 0.5rem;
}

.site-footer__label {
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--accent-strong);
	font-weight: 700;
}

.site-footer__bottom {
	display: grid;
	gap: 0.85rem;
	justify-items: center;
	padding-top: 1.5rem;
	margin-top: 1.5rem;
	border-top: 1px solid var(--line);
	text-align: center;
	color: var(--muted);
}

.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 999px;
	background: #fff;
	border: 1px solid var(--line);
}

.social-link {
	position: relative;
	overflow: hidden;
	transition:
		transform 0.28s cubic-bezier(.2,.8,.2,1),
		box-shadow 0.28s cubic-bezier(.2,.8,.2,1),
		border-color 0.28s cubic-bezier(.2,.8,.2,1),
		background 0.28s cubic-bezier(.2,.8,.2,1),
		color 0.28s cubic-bezier(.2,.8,.2,1);
}

.social-link svg {
	transition: transform 0.28s cubic-bezier(.2,.8,.2,1);
}

.social-link:hover,
.social-link:focus-visible {
	transform: translateY(-4px) scale(1.06);
	color: #fff;
	border-color: transparent;
	box-shadow: 0 16px 28px rgba(8, 27, 61, 0.18);
}

.social-link:hover svg,
.social-link:focus-visible svg {
	transform: scale(1.08) rotate(-6deg);
}

.social-link--instagram:hover,
.social-link--instagram:focus-visible {
	background: linear-gradient(135deg, #f58529, #dd2a7b 52%, #8134af 100%);
}

.social-link--facebook:hover,
.social-link--facebook:focus-visible {
	background: #1877f2;
}

.social-link--x:hover,
.social-link--x:focus-visible {
	background: #000;
}

.social-link--linkedin:hover,
.social-link--linkedin:focus-visible {
	background: #0a66c2;
}

.site-footer__legal {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem 1.25rem;
}

.site-footer__legal a {
	position: relative;
	font-weight: 600;
	color: var(--text);
	padding: 0.15rem 0.05rem;
}

.site-footer__legal a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -0.1rem;
	width: 100%;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--accent), #56c6ff);
	transform: scaleX(0.24);
	transform-origin: left center;
	opacity: 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
	color: var(--accent-strong);
}

.site-footer__legal a:hover::after,
.site-footer__legal a:focus-visible::after {
	transform: scaleX(1);
	opacity: 1;
}

.site-modal {
	position: fixed;
	inset: 0;
	z-index: 90;
	display: grid;
	place-items: center;
	padding: 1rem;
}

.site-modal[hidden] {
	display: none;
}

.site-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(8, 27, 61, 0.46);
	backdrop-filter: blur(10px);
}

.site-modal__dialog {
	position: relative;
	width: min(100%, 36rem);
	padding: 2rem;
	border-radius: 28px;
	background: #fff;
	box-shadow: 0 32px 80px rgba(8, 27, 61, 0.24);
}

.site-modal__dialog--promo {
	text-align: center;
}

.site-modal__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 999px;
	background: var(--surface-muted);
	color: var(--text);
	font-size: 1.2rem;
}

.site-modal__title {
	font-size: 1.8rem;
}

.site-modal__content {
	color: var(--muted);
	margin-bottom: 1rem;
}

.promo-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	margin-bottom: 1rem;
	border-radius: 20px;
	background: rgba(255, 159, 28, 0.14);
	color: var(--accent-strong);
}

.promo-code-shell__input {
	flex: 1 1 12rem;
	text-align: center;
	font-weight: 700;
	letter-spacing: 0.14em;
}

.theme-toast-stack {
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	z-index: 95;
	display: grid;
	gap: 0.75rem;
	width: min(22rem, calc(100% - 2rem));
}

.theme-toast {
	padding: 0.9rem 1rem;
	border-radius: 18px;
	background: rgba(8, 27, 61, 0.92);
	color: #fff;
	box-shadow: 0 24px 60px rgba(8, 27, 61, 0.18);
	opacity: 0;
	transform: translateY(0.5rem);
	transition: opacity 0.24s ease, transform 0.24s ease;
}

.theme-toast--success {
	background: rgba(19, 121, 91, 0.94);
}

.theme-toast--error {
	background: rgba(194, 53, 42, 0.96);
}

.theme-toast.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.loader {
	position: fixed;
	inset: 0;
	z-index: 99;
	display: grid;
	place-items: center;
	background: rgba(247, 249, 252, 0.65);
	backdrop-filter: blur(8px);
}

.loader__ring {
	width: 4rem;
	height: 4rem;
	border-radius: 999px;
	border: 4px solid rgba(255, 159, 28, 0.15);
	border-top-color: var(--accent-strong);
	animation: spin 0.8s linear infinite;
}

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

.page-hero--compact {
	padding: 0.85rem 0 0.35rem;
}

.page-hero--compact .container {
	padding: 0.35rem 0 0;
}

.contact-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-form,
.mbr-form {
	display: grid;
	gap: 1.25rem;
}

.field--captcha {
	align-items: start;
}

.checkout-card,
form[name="checkout"] {
	background: rgba(255, 255, 255, 0.92);
	border-radius: 24px;
	padding: 1.5rem;
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
}

.checkout-vehicle-note {
	margin-top: 0.85rem;
	padding: 0.9rem 1rem;
	border-radius: 14px;
	background: rgba(255, 159, 28, 0.12);
	color: var(--text);
	font-weight: 600;
}

.entry-title,
.page-title {
	font-size: clamp(2rem, 3vw, 3rem);
	color: var(--text);
}

.entry-content,
.page-content,
.woocommerce,
.site-main .container > .row + .row {
	color: var(--text);
}

.card-top-image,
#about-bg,
#reach-us-bg {
	width: 100%;
	height: 18rem;
	object-fit: cover;
	border-radius: 28px;
}

.about-header,
.reachus-header {
	position: relative;
}

.centered-about,
.centered-reach {
	position: absolute;
	left: 2rem;
	bottom: 2rem;
	color: #fff;
	font-size: clamp(2rem, 4vw, 3.25rem);
}

.person1,
.person2 {
	margin: 0 auto 1rem;
	max-width: 18rem;
	border-radius: 24px;
	border: 3px solid rgba(255, 159, 28, 0.24);
}

.khalid,
.ejaz,
#person-2-p {
	color: var(--text);
}

.about-page {
	position: relative;
}

.about-hero {
	padding: 2rem 0 1rem;
}

.about-hero__grid {
	grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
	align-items: center;
}

.about-hero__content,
.about-hero__panel {
	position: relative;
}

.about-hero__content {
	padding: 1.5rem 0.5rem 1.5rem 0;
}

.about-hero__content h1 {
	font-size: clamp(2.4rem, 5vw, 4.6rem);
	max-width: 12ch;
}

.about-hero__lede {
	max-width: 42rem;
	font-size: 1.05rem;
	color: var(--muted);
}

.about-hero__stats {
	max-width: 42rem;
}

.about-hero__panel {
	padding: 1rem;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(237, 243, 251, 0.9)),
		radial-gradient(circle at top right, rgba(255, 123, 0, 0.14), transparent 40%);
}

.about-signal {
	position: relative;
	padding: 2rem;
	min-height: 100%;
	background:
		linear-gradient(160deg, rgba(8, 27, 61, 0.96), rgba(15, 52, 96, 0.92)),
		radial-gradient(circle at top right, rgba(76, 201, 240, 0.3), transparent 40%);
	color: #fff;
	overflow: hidden;
}

.about-signal::after {
	content: "";
	position: absolute;
	inset: 1.1rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 22px;
	pointer-events: none;
}

.about-signal h2 {
	font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.about-signal p {
	color: rgba(255, 255, 255, 0.8);
}

.about-signal__label,
.about-profile__eyebrow {
	display: inline-flex;
	margin-bottom: 0.85rem;
	padding: 0.4rem 0.7rem;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.about-signal__label {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.about-profile-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-profile {
	position: relative;
	display: grid;
	grid-template-columns: minmax(12rem, 14rem) minmax(0, 1fr);
	gap: 1.25rem;
	padding: 1.25rem;
	overflow: hidden;
}

.about-profile__media {
	display: flex;
	align-items: stretch;
}

.about-profile__media img {
	width: 100%;
	height: 100%;
	min-height: 19rem;
	object-fit: cover;
	margin: 0;
}

.about-profile__content {
	position: relative;
	z-index: 1;
	padding-right: 0.25rem;
}

.about-profile__content p {
	color: var(--muted);
}

.about-profile__eyebrow {
	background: rgba(255, 159, 28, 0.12);
	color: var(--accent-strong);
}

.about-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-top: 1rem;
}

.about-tags span {
	display: inline-flex;
	padding: 0.55rem 0.85rem;
	border-radius: 999px;
	background: rgba(237, 243, 251, 0.9);
	border: 1px solid rgba(8, 27, 61, 0.08);
	font-size: 0.86rem;
	font-weight: 700;
	color: var(--text);
}

.about-pillars {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-vision .prose-card {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(242, 247, 255, 0.88)),
		radial-gradient(circle at top right, rgba(76, 201, 240, 0.12), transparent 35%);
	border: 1px solid var(--line);
	border-radius: 28px;
	box-shadow: var(--shadow);
}

@media (min-width: 768px) {
	.col-md-4 { flex-basis: calc(33.333% - 1rem); }
	.col-md-6 { flex-basis: calc(50% - 0.75rem); }
}

@media (min-width: 992px) {
	.col-lg-3 { flex-basis: calc(25% - 1.125rem); }
	.col-lg-4 { flex-basis: calc(33.333% - 1rem); }
	.col-lg-5 { flex-basis: calc(41.666% - 0.875rem); }
	.col-lg-6 { flex-basis: calc(50% - 0.75rem); }
	.col-lg-8 { flex-basis: calc(66.666% - 0.5rem); }
	.text-lg-start { text-align: left; }
	.text-lg-end { text-align: right; }
}

@media (max-width: 1080px) {
	.hero__grid,
	.feature-grid,
	.process-grid,
	.contact-grid,
	.site-footer__grid,
	.direction-card,
	.map-section,
	.about-hero__grid,
	.about-profile-grid,
	.about-profile,
	.about-pillars {
		grid-template-columns: 1fr 1fr;
	}

	.site-header__inner {
		grid-template-columns: auto auto 1fr;
	}

	.site-header__actions {
		display: none;
	}
}

@media (max-width: 820px) {
	.hero__grid,
	.feature-grid,
	.process-grid,
	.contact-grid,
	.site-footer__grid,
	.direction-card,
	.map-section,
	.overview-grid,
	.about-hero__grid,
	.about-profile-grid,
	.about-profile,
	.about-pillars,
	.mini-steps,
	.field-grid--2,
	.field-grid--3 {
		grid-template-columns: 1fr;
	}

	.site-header__inner {
		grid-template-columns: auto auto;
	}

	.site-nav-toggle {
		display: inline-flex;
		flex-direction: column;
		gap: 0.25rem;
		justify-self: end;
	}

	.site-nav {
		grid-column: 1 / -1;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 0.65rem;
		padding: 0 1rem;
		border-radius: 20px;
		background: rgba(255, 255, 255, 0.92);
		border: 1px solid var(--line);
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		transition: max-height 0.3s cubic-bezier(.2,.8,.2,1), opacity 0.24s ease, padding 0.24s ease;
	}

	.site-nav.is-open {
		opacity: 1;
		padding: 1rem;
		max-height: fit-content !important;
	}

	.hero__content,
	.booking-shell,
	.form-shell,
	.site-modal__dialog {
		padding: 1.5rem;
	}

	.direction-panel,
	.about-signal,
	.about-profile__content {
		padding-right: 0;
	}

	.hero h1,
	.page-hero h1 {
		max-width: none;
	}

	.hero__actions .button,
	.form-step__actions .button,
	.direction-card__actions .button {
		width: 100%;
	}

	.map-frame {
		min-height: 20rem;
	}
}

.site-nav a,
.button,
.hero-stat,
.feature-card,
.process-card,
.contact-card,
.overview-card,
.direction-card,
.map-shell,
.direction-panel,
.about-profile,
.about-signal,
.faq-item,
.site-brand__logo {
	transition:
		transform 0.28s cubic-bezier(.2,.8,.2,1),
		box-shadow 0.28s cubic-bezier(.2,.8,.2,1),
		border-color 0.28s cubic-bezier(.2,.8,.2,1),
		background-color 0.28s cubic-bezier(.2,.8,.2,1),
		color 0.28s cubic-bezier(.2,.8,.2,1),
		opacity 0.28s ease;
}

.site-nav a {
	position: relative;
	padding: 0.35rem 0.1rem;
}

.site-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -0.1rem;
	width: 100%;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--accent), #56c6ff);
	transform: scaleX(0.24);
	transform-origin: left center;
	opacity: 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
	color: var(--text);
	transform: translateY(-1px);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
	transform: scaleX(1);
	opacity: 1;
}

.button {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	margin: 1.5rem 0;
}

.button::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(115deg, transparent 18%, rgba(255,255,255,0.34) 46%, transparent 70%);
	transform: translateX(-130%);
	transition: transform 0.48s ease;
	z-index: -1;
}

.button:hover::before,
.button:focus-visible::before {
	transform: translateX(130%);
}

.button:hover,
.button:focus-visible {
	box-shadow: 0 20px 38px rgba(8, 27, 61, 0.14);
}

.hero__content,
.booking-shell,
.feature-card,
.process-card,
.contact-card,
.overview-card,
.direction-card,
.prose-card,
.hero-stat {
	position: relative;
	transform-style: preserve-3d;
	will-change: transform;
}

.feature-card::before,
.process-card::before,
.contact-card::before,
.overview-card::before,
.direction-card::before,
.hero-stat::before {
	content: "";
	position: absolute;
	inset: 1px;
	border-radius: inherit;
	background:
		radial-gradient(220px circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(255,255,255,0.65), transparent 44%),
		linear-gradient(180deg, rgba(255,255,255,0.42), rgba(255,255,255,0));
	opacity: 0;
	transition: opacity 0.28s ease;
	pointer-events: none;
}

.feature-card:hover::before,
.process-card:hover::before,
.contact-card:hover::before,
.overview-card:hover::before,
.direction-card:hover::before,
.hero-stat:hover::before {
	opacity: 1;
}

.feature-card:hover,
.process-card:hover,
.contact-card:hover,
.overview-card:hover,
.direction-card:hover,
.hero-stat:hover {
	border-color: rgba(255, 159, 28, 0.24);
	box-shadow: 0 28px 58px rgba(8, 27, 61, 0.14);
}

.feature-card:hover .feature-card__icon,
.contact-card:hover .contact-card__icon {
	transform: translateY(-3px) scale(1.06);
	background: linear-gradient(135deg, rgba(255,159,28,0.22), rgba(86,198,255,0.2));
}

.hero-stat:hover .hero-stat__value,
.overview-card:hover h2,
.contact-card:hover h2,
.feature-card:hover h3,
.process-card:hover h3 {
	color: var(--accent-strong);
}

.site-brand:hover .site-brand__logo {
	transform: rotate(-8deg) scale(1.04);
	box-shadow: 0 22px 44px rgba(8, 27, 61, 0.16);
}

.faq-item summary {
	transition: color 0.24s ease, padding-left 0.24s ease;
}

.faq-item:hover summary,
.faq-item[open] summary {
	color: var(--accent-strong);
	padding-left: 0.15rem;
}

.faq-item summary::after {
	transition: transform 0.24s ease, color 0.24s ease;
}

.faq-item:hover summary::after,
.faq-item[open] summary::after {
	transform: translateY(-50%) rotate(90deg);
}

.faq-item[open] summary::after {
	transform: translateY(-50%) rotate(180deg);
}

.hero__content,
.booking-shell,
.feature-card,
.process-card,
.contact-card,
.overview-card,
.direction-card,
.prose-card,
.hero-stat,
.faq-item {
	opacity: 0;
	transform: translateY(24px);
}

.hero__content.is-revealed,
.booking-shell.is-revealed,
.feature-card.is-revealed,
.process-card.is-revealed,
.contact-card.is-revealed,
.overview-card.is-revealed,
.direction-card.is-revealed,
.prose-card.is-revealed,
.hero-stat.is-revealed,
.faq-item.is-revealed {
	opacity: 1;
	transform: translateY(0);
	transition:
		opacity 0.7s cubic-bezier(.2,.8,.2,1) var(--reveal-delay, 0ms),
		transform 0.7s cubic-bezier(.2,.8,.2,1) var(--reveal-delay, 0ms),
		box-shadow 0.28s cubic-bezier(.2,.8,.2,1),
		border-color 0.28s cubic-bezier(.2,.8,.2,1);
}

.hero__actions .button:first-child:hover,
.form-step__actions .button:last-child:hover {
	transform: translateY(-2px) scale(1.015);
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.site-nav a,
	.button,
	.hero-stat,
	.feature-card,
	.process-card,
	.contact-card,
	.overview-card,
	.direction-card,
	.faq-item,
	.site-brand__logo {
		transition: none;
	}

	.hero__content,
	.booking-shell,
	.feature-card,
	.process-card,
	.contact-card,
	.overview-card,
	.direction-card,
	.prose-card,
	.hero-stat,
	.faq-item {
		opacity: 1;
		transform: none;
	}
}

/* WooCommerce Cart & Checkout Layout Fix */

.woocommerce-cart .site-main,
.woocommerce-checkout .site-main,
.woocommerce-page .site-main {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* Optional better spacing on mobile */
@media (max-width: 768px) {
    .woocommerce-cart .site-main,
    .woocommerce-checkout .site-main,
    .woocommerce-page .site-main {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* Improve cart table spacing */
.woocommerce table.shop_table {
    border-radius: 12px;
    overflow: hidden;
}

.wp-block-woocommerce-product-new
{
	display: none;
}

body.privacy-policy,
body.page-template-default.page {
    background: linear-gradient(135deg, #f8fafc 0%, #eef5ff 100%);
}

/* Main container */
body.privacy-policy .site-main {
    padding: 80px 20px;
}

/* White card */
body.privacy-policy article.page {
    max-width: 920px;
    margin: auto;
    background: #ffffff;
    border-radius: 28px;
    padding: 70px;
    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.05),
        0 1px 3px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.9);
}

/* Main title */
body.privacy-policy .entry-title {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 50px;
    letter-spacing: -1px;
}

/* Section headings */
body.privacy-policy .wp-block-heading {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin-top: 50px;
    margin-bottom: 18px;
    position: relative;
}

/* Decorative accent line */
body.privacy-policy .wp-block-heading::before {
    content: "";
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    position: absolute;
    left: 0;
    top: -14px;
    border-radius: 999px;
}

/* Paragraphs */
body.privacy-policy .wp-block-paragraph,
body.privacy-policy p {
    font-size: 18px;
    line-height: 1.95;
    color: #475569;
    margin-bottom: 24px;
}

/* Suggested text label */
body.privacy-policy .privacy-policy-tutorial {
    color: #2563eb;
    font-weight: 700;
}

/* Links */
body.privacy-policy a {
    color: #2563eb;
    text-decoration: none;
    transition: all 0.2s ease;
}

body.privacy-policy a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Edit footer hidden */
body.privacy-policy .entry-footer {
    display: none;
}

/* Mobile */
@media (max-width: 768px) {

    body.privacy-policy article.page {
        padding: 36px 24px;
        border-radius: 20px;
    }

    body.privacy-policy .entry-title {
        font-size: 40px;
    }

    body.privacy-policy .wp-block-heading {
        font-size: 24px;
    }

    body.privacy-policy .wp-block-paragraph,
    body.privacy-policy p {
        font-size: 16px;
    }
}

/* =========================================
   LEGAL PAGES
   Privacy Policy + Terms & Conditions
========================================= */

body.page {
    background:
        radial-gradient(circle at top left, #dbeafe 0%, transparent 30%),
        radial-gradient(circle at bottom right, #bfdbfe 0%, transparent 25%),
        linear-gradient(135deg, #f8fafc 0%, #eef4ff 100%);
}

/* Main spacing */
body.page .site-main {
    padding: 80px 20px;
}

/* Main legal card */
body.page article.page {
    max-width: 960px;
    margin: auto;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    border-radius: 30px;
    padding: 70px;
    border: 1px solid rgba(255,255,255,0.7);

    box-shadow:
        0 10px 40px rgba(15,23,42,0.06),
        0 2px 8px rgba(15,23,42,0.05);
}

/* Main title */
body.page .entry-title {
    font-size: 58px;
    line-height: 1.05;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 18px;
    letter-spacing: -1.5px;
}

/* Last updated */
body.page .entry-content > p:first-child {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: #eff6ff;
    color: #2563eb;

    padding: 10px 18px;
    border-radius: 999px;

    font-size: 14px;
    font-weight: 700;

    margin-bottom: 40px;
}

/* Headings */
body.page .wp-block-heading {
    font-size: 34px;
    font-weight: 750;
    color: #0f172a;
    margin-top: 55px;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    position: relative;
}

/* Decorative accent */
body.page .wp-block-heading::before {
    content: "";
    position: absolute;
    left: 0;
    top: -16px;

    width: 60px;
    height: 4px;

    border-radius: 999px;

    background: linear-gradient(
        90deg,
        #2563eb,
        #60a5fa
    );
}

/* Paragraphs */
body.page p {
    font-size: 18px;
    line-height: 1.95;
    color: #475569;
    margin-bottom: 22px;
}

/* Lists */
body.page ul {
    margin: 20px 0 28px 0;
    padding-left: 0;
}

body.page ul li {
    list-style: none;
    position: relative;

    padding-left: 34px;
    margin-bottom: 14px;

    font-size: 18px;
    line-height: 1.8;
    color: #475569;
}

/* Custom bullet */
body.page ul li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 0;

    width: 22px;
    height: 22px;

    border-radius: 50%;

    background: #dbeafe;
    color: #2563eb;

    font-size: 13px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Separators */
body.page hr.wp-block-separator {
    border: none;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(148,163,184,0.45),
        transparent
    );

    margin: 45px 0;
}

/* Links */
body.page a 
{
    /* color: #2563eb; */
    /* text-decoration: none;
    transition: all 0.2s ease; */
}

body.page a:hover 
{
    /* color: #1d4ed8;
    text-decoration: underline; */
}

/* Code blocks */
body.page code 
{
    background: #f1f5f9;
    color: #0f172a;

    padding: 4px 10px;
    border-radius: 8px;

    font-size: 15px;
}

/* Strong text */
body.page strong 
{
    color: #0f172a;
}

/* Hide WP edit footer */
body.page .entry-footer 
{
    display: none;
}

/* Mobile */
@media (max-width: 768px) 
{

    body.page .site-main 
	{
        padding: 40px 16px;
    }

    body.page article.page 
	{
        padding: 34px 24px;
        border-radius: 22px;
    }

    body.page .entry-title 
	{
        font-size: 40px;
    }

    body.page .wp-block-heading 
	{
        font-size: 26px;
    }

    body.page p,
    body.page ul li 
	{
        font-size: 16px;
    }
}