:root {
	--pcrm-primary: #0f172a;
	--pcrm-secondary: #2563eb;
	--pcrm-accent: #06b6d4;
	--pcrm-bg: #ffffff;
	--pcrm-gray: #f8fafc;
	--pcrm-text: #334155;
	--pcrm-muted: #64748b;
	--pcrm-border: rgba(15, 23, 42, 0.1);
	--pcrm-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
	--pcrm-radius: 8px;
	--pcrm-radius-lg: 18px;
	--pcrm-container: 1180px;
	--pcrm-headings: "Poppins", system-ui, sans-serif;
	--pcrm-body: "Inter", system-ui, sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--pcrm-bg);
	color: var(--pcrm-text);
	font-family: var(--pcrm-body);
	font-size: 16px;
	line-height: 1.7;
	text-rendering: optimizeLegibility;
}

body.nav-open {
	overflow: hidden;
}

img,
svg,
iframe {
	max-width: 100%;
}

img {
	height: auto;
	border-radius: var(--pcrm-radius-lg);
}

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

a:hover {
	color: var(--pcrm-secondary);
}

h1,
h2,
h3,
h4 {
	margin: 0 0 16px;
	color: var(--pcrm-primary);
	font-family: var(--pcrm-headings);
	line-height: 1.08;
	letter-spacing: 0;
}

h1 {
	font-size: clamp(42px, 8vw, 82px);
}

h2 {
	font-size: clamp(32px, 5vw, 54px);
}

h3 {
	font-size: 22px;
}

p {
	margin: 0 0 18px;
}

svg {
	display: block;
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.container {
	width: min(100% - 32px, var(--pcrm-container));
	margin-inline: auto;
}

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

.skip-link:focus {
	z-index: 1000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	border-radius: var(--pcrm-radius);
	background: var(--pcrm-primary);
	color: #fff;
}

.site-header {
	position: sticky;
	z-index: 100;
	top: 0;
	border-bottom: 1px solid transparent;
	background: rgba(255, 255, 255, 0.86);
	backdrop-filter: blur(18px);
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
	border-color: var(--pcrm-border);
	box-shadow: 0 10px 35px rgba(15, 23, 42, 0.06);
}

.site-header__inner {
	display: flex;
	align-items: center;
	min-height: 78px;
	gap: 18px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	color: var(--pcrm-primary);
}

.site-brand__mark {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border-radius: 50%;
	background: var(--pcrm-primary);
	color: #fff;
	font-size: 13px;
	letter-spacing: 0.04em;
}

.site-brand__text {
	font-family: var(--pcrm-headings);
}

.primary-nav {
	margin-left: auto;
}

.primary-nav ul {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
	gap: 4px;
	list-style: none;
}

.primary-nav a {
	display: block;
	padding: 10px 12px;
	border-radius: var(--pcrm-radius);
	color: var(--pcrm-primary);
	font-size: 14px;
	font-weight: 650;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a {
	background: var(--pcrm-gray);
	color: var(--pcrm-secondary);
}

.primary-nav .menu-item-has-children {
	position: relative;
}

.primary-nav .sub-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	display: grid;
	min-width: 220px;
	padding: 10px;
	border: 1px solid var(--pcrm-border);
	border-radius: var(--pcrm-radius-lg);
	background: #fff;
	box-shadow: var(--pcrm-shadow);
	opacity: 0;
	pointer-events: none;
	transform: translateY(6px);
	transition: opacity 180ms ease, transform 180ms ease;
}

.primary-nav .menu-item-has-children:hover > .sub-menu,
.primary-nav .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.primary-nav .mega-menu > .sub-menu {
	width: min(760px, calc(100vw - 32px));
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nav-toggle {
	display: none;
	margin-left: auto;
	border: 0;
	background: transparent;
	color: var(--pcrm-primary);
	cursor: pointer;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 20px;
	border: 1px solid var(--pcrm-border);
	border-radius: 999px;
	font-weight: 750;
	line-height: 1;
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
	transform: translateY(-1px);
}

.button--primary {
	border-color: var(--pcrm-secondary);
	background: var(--pcrm-secondary);
	color: #fff;
	box-shadow: 0 16px 35px rgba(37, 99, 235, 0.24);
}

.button--primary:hover {
	background: #1d4ed8;
	color: #fff;
}

.button--ghost {
	background: #fff;
	color: var(--pcrm-primary);
}

.button--light {
	border-color: rgba(255, 255, 255, 0.16);
	background: #fff;
	color: var(--pcrm-primary);
}

.button--small {
	min-height: 40px;
	padding: 10px 16px;
	font-size: 14px;
}

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

.hero {
	overflow: hidden;
	padding: 72px 0 56px;
}

.hero__grid,
.car-hero__grid {
	display: grid;
	align-items: center;
	gap: 42px;
}

.hero__content p {
	max-width: 640px;
	font-size: 19px;
}

.eyebrow {
	margin-bottom: 12px;
	color: var(--pcrm-secondary);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	margin: 30px 0;
	gap: 12px;
}

.trusted-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	color: var(--pcrm-muted);
	font-size: 13px;
}

.trusted-row strong {
	padding: 7px 10px;
	border: 1px solid var(--pcrm-border);
	border-radius: 999px;
	color: var(--pcrm-primary);
}

.hero__media {
	position: relative;
}

.hero__media img,
.car-hero__image img {
	width: 100%;
	box-shadow: var(--pcrm-shadow);
	object-fit: cover;
}

.hero__glass {
	position: absolute;
	right: 18px;
	bottom: 18px;
	padding: 16px 18px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: var(--pcrm-radius-lg);
	background: rgba(255, 255, 255, 0.76);
	box-shadow: 0 20px 60px rgba(15, 23, 42, 0.18);
	backdrop-filter: blur(16px);
}

.hero__glass span,
.hero__glass small {
	display: block;
	color: var(--pcrm-muted);
	font-size: 12px;
}

.hero__glass strong {
	display: block;
	color: var(--pcrm-primary);
	font-family: var(--pcrm-headings);
	font-size: 42px;
	line-height: 1;
}

.section {
	padding: 82px 0;
}

.section--soft {
	background: var(--pcrm-gray);
}

.section--dark,
.final-cta {
	background: var(--pcrm-primary);
	color: rgba(255, 255, 255, 0.76);
}

.section--dark h2,
.section--dark h3,
.final-cta h2 {
	color: #fff;
}

.section__heading {
	max-width: 760px;
	margin-bottom: 34px;
	text-align: center;
}

.split-heading,
.why-grid,
.coverage-grid,
.faq-layout,
.location-layout,
.car-detail-grid {
	display: grid;
	gap: 30px;
}

.split-heading {
	align-items: end;
	margin-bottom: 34px;
}

.feature-grid,
.car-grid,
.review-grid,
.step-grid,
.archive-grid {
	display: grid;
	gap: 18px;
}

.feature-card,
.car-card,
.review-card,
.step-card,
.booking-panel,
.map-panel,
.metric,
details {
	border: 1px solid var(--pcrm-border);
	border-radius: var(--pcrm-radius-lg);
	background: #fff;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.feature-card {
	padding: 26px;
}

.feature-card__icon {
	display: grid;
	width: 46px;
	height: 46px;
	margin-bottom: 18px;
	place-items: center;
	border-radius: 50%;
	background: rgba(6, 182, 212, 0.1);
	color: var(--pcrm-accent);
}

.car-card {
	overflow: hidden;
}

.car-card__image {
	display: block;
	aspect-ratio: 16 / 10;
	background: var(--pcrm-gray);
}

.car-card__image img {
	width: 100%;
	height: 100%;
	border-radius: 0;
	object-fit: cover;
}

.car-card__body {
	padding: 22px;
}

.car-card__body h2,
.car-card__body h3 {
	font-size: 24px;
}

.car-card__specs {
	display: flex;
	flex-wrap: wrap;
	margin: 16px 0;
	gap: 8px;
}

.car-card__specs span {
	padding: 6px 10px;
	border-radius: 999px;
	background: var(--pcrm-gray);
	color: var(--pcrm-muted);
	font-size: 13px;
}

.car-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.car-card__footer strong {
	color: var(--pcrm-primary);
	font-family: var(--pcrm-headings);
	font-size: 22px;
}

.car-card__footer small {
	color: var(--pcrm-muted);
	font-family: var(--pcrm-body);
	font-size: 12px;
}

.text-link {
	color: var(--pcrm-secondary);
	font-weight: 800;
}

.metric-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

.metric {
	padding: 26px;
}

.metric strong {
	display: block;
	color: var(--pcrm-primary);
	font-family: var(--pcrm-headings);
	font-size: 40px;
	line-height: 1;
}

.metric span {
	color: var(--pcrm-muted);
	font-weight: 700;
}

.step-card {
	padding: 28px;
	border-color: rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.05);
	color: rgba(255, 255, 255, 0.72);
}

.step-card span {
	display: inline-flex;
	margin-bottom: 24px;
	color: var(--pcrm-accent);
	font-family: var(--pcrm-headings);
	font-size: 34px;
}

.coverage-panel {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 28px;
	border-radius: var(--pcrm-radius-lg);
	background: linear-gradient(135deg, var(--pcrm-gray), #eef9ff);
}

.coverage-panel span {
	padding: 10px 13px;
	border: 1px solid var(--pcrm-border);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	color: var(--pcrm-primary);
	font-weight: 700;
}

.review-card {
	margin: 0;
	padding: 28px;
}

.review-card blockquote {
	margin: 0 0 18px;
	color: var(--pcrm-primary);
	font-size: 19px;
	font-weight: 700;
}

.review-card figcaption {
	color: var(--pcrm-muted);
	font-weight: 750;
}

.faq-list {
	display: grid;
	gap: 12px;
}

details {
	padding: 20px 22px;
}

summary {
	color: var(--pcrm-primary);
	cursor: pointer;
	font-weight: 800;
}

details p {
	margin-top: 12px;
	margin-bottom: 0;
}

.final-cta {
	padding: 76px 0;
}

.final-cta__inner {
	display: grid;
	gap: 20px;
	text-align: center;
}

.site-footer {
	padding: 70px 0 28px;
	background: #020617;
	color: rgba(255, 255, 255, 0.66);
}

.site-footer h2,
.site-footer .site-brand {
	color: #fff;
}

.site-footer__grid {
	display: grid;
	gap: 30px;
}

.site-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer a:hover {
	color: #fff;
}

.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 44px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	gap: 14px;
}

.site-footer__bottom p {
	margin: 0;
}

.floating-whatsapp,
.back-to-top {
	position: fixed;
	z-index: 90;
	right: 18px;
	display: grid;
	width: 50px;
	height: 50px;
	place-items: center;
	border: 0;
	border-radius: 50%;
	box-shadow: 0 16px 35px rgba(15, 23, 42, 0.18);
	cursor: pointer;
}

.floating-whatsapp {
	bottom: 86px;
	background: #25d366;
	color: #fff;
}

.back-to-top {
	bottom: 24px;
	background: var(--pcrm-primary);
	color: #fff;
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px) rotate(-90deg);
	transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0) rotate(-90deg);
}

.page-hero,
.car-hero {
	padding: 64px 0;
	background: var(--pcrm-gray);
}

.page-hero p {
	max-width: 720px;
}

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

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 20px;
	gap: 8px;
	color: var(--pcrm-muted);
	font-size: 13px;
}

.breadcrumbs a {
	color: var(--pcrm-secondary);
	font-weight: 750;
}

.content-wrap {
	padding: 54px 0;
}

.content-wrap--plain {
	padding: 0;
}

.content-wrap--elementor {
	width: 100%;
	max-width: none;
	padding: 0;
}

.content-wrap > * {
	max-width: 820px;
}

.content-wrap--elementor > * {
	max-width: none;
}

.content-wrap .alignwide {
	max-width: 100%;
}

.feature-image {
	margin: 0 0 32px;
}

.booking-panel,
.map-panel {
	align-self: start;
	padding: 24px;
}

.price-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	padding: 14px 0;
	border-bottom: 1px solid var(--pcrm-border);
	gap: 14px;
}

.price-row strong {
	color: var(--pcrm-primary);
	font-family: var(--pcrm-headings);
	font-size: 24px;
}

.spec-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin: 18px 0;
	gap: 10px;
}

.spec-list dt {
	color: var(--pcrm-muted);
	font-size: 13px;
}

.spec-list dd {
	margin: 0;
	color: var(--pcrm-primary);
	font-weight: 800;
}

.check-list {
	display: grid;
	padding: 0;
	gap: 10px;
	list-style: none;
}

.check-list li {
	position: relative;
	padding-left: 28px;
}

.check-list li::before {
	position: absolute;
	left: 0;
	color: var(--pcrm-accent);
	content: "✓";
	font-weight: 900;
}

.map-panel iframe,
.map-placeholder {
	width: 100%;
	aspect-ratio: 4 / 3;
	margin-bottom: 18px;
	border: 0;
	border-radius: var(--pcrm-radius);
	background: var(--pcrm-gray);
}

.map-placeholder {
	display: grid;
	place-items: center;
	padding: 24px;
	color: var(--pcrm-muted);
	text-align: center;
}

.post-card__image img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.pagination {
	grid-column: 1 / -1;
}

[data-animate] {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 520ms ease, transform 520ms ease;
}

[data-animate].is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (min-width: 720px) {
	.hero__grid,
	.car-hero__grid,
	.why-grid,
	.coverage-grid,
	.faq-layout,
	.location-layout,
	.car-detail-grid {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}

	.split-heading {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.feature-grid,
	.car-grid,
	.review-grid,
	.step-grid,
	.archive-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.site-footer__grid {
		grid-template-columns: 1.3fr 1fr 0.8fr;
	}

	.final-cta__inner {
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
		text-align: left;
	}
}

@media (max-width: 920px) {
	.nav-toggle {
		display: inline-grid;
		place-items: center;
	}

	.site-header__cta {
		display: none;
	}

	.primary-nav {
		position: fixed;
		inset: 78px 16px auto;
		display: none;
		margin: 0;
		padding: 16px;
		border: 1px solid var(--pcrm-border);
		border-radius: var(--pcrm-radius-lg);
		background: #fff;
		box-shadow: var(--pcrm-shadow);
	}

	.primary-nav.is-open {
		display: block;
	}

	.primary-nav ul {
		display: grid;
	}

	.primary-nav .sub-menu {
		position: static;
		display: grid;
		margin-left: 10px;
		padding: 4px 0 4px 10px;
		border: 0;
		background: transparent;
		box-shadow: none;
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}

	.primary-nav .mega-menu > .sub-menu {
		width: auto;
		grid-template-columns: 1fr;
	}
}

@media (max-width: 719px) {
	.section {
		padding: 58px 0;
	}

	.hero {
		padding-top: 46px;
	}

	.metric-grid {
		grid-template-columns: 1fr;
	}

	.car-card__footer {
		align-items: flex-start;
		flex-direction: column;
	}
}

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

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

	[data-animate] {
		opacity: 1;
		transform: none;
	}
}
