/*
Theme Name: Copenhagen Airport Ride
Theme URI: https://copenhagenairportride.com
Author: Copenhagen Airport Ride
Description: Light, fast, mobile-first theme for the Copenhagen Airport Ride transfer service. Built for SEO/AEO with semantic markup, large readable type and simple navigation for all age groups.
Version: 1.3.2
Requires PHP: 7.4
License: GPL-2.0-or-later
Text Domain: copenhagenairportride
*/

/* ==========================================================================
   Tokens
   ========================================================================== */
:root {
	--c-primary: #1f6fce;
	--c-primary-dark: #17539b;
	--c-primary-tint: #eaf2fc;
	--c-ink: #1d2b3a;
	--c-ink-soft: #46586d;
	--c-line: #d5dfeb;
	--c-bg: #ffffff;
	--c-bg-soft: #f5f8fc;
	--c-accent: #f0b429;
	--c-wa: #25d366;
	--radius: 14px;
	--shadow: 0 10px 30px rgba(30, 60, 100, 0.10);
	--container: 1160px;
	--font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ==========================================================================
   Base
   ========================================================================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font);
	font-size: 18px;
	line-height: 1.65;
	color: var(--c-ink);
	background: var(--c-bg);
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); }
a:hover { color: var(--c-primary-dark); }

h1, h2, h3, h4 { line-height: 1.25; color: var(--c-ink); margin: 0 0 0.6em; }
h1 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); font-weight: 750; }
h3 { font-size: 1.25rem; font-weight: 700; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }

.screen-reader-text {
	position: absolute !important;
	clip-path: inset(50%);
	width: 1px; height: 1px;
	overflow: hidden;
	word-wrap: normal !important;
}
.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--c-primary);
	color: #fff;
	padding: 0.6rem 1rem;
	z-index: 200;
}
.skip-link:focus { left: 0; color: #fff; }

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background: var(--c-primary);
	color: #fff !important;
	font-weight: 700;
	font-size: 1.05rem;
	text-decoration: none;
	border: 0;
	border-radius: 10px;
	padding: 0.85rem 1.6rem;
	min-height: 52px;
	cursor: pointer;
	transition: background 0.15s ease, transform 0.1s ease;
}
.btn:hover { background: var(--c-primary-dark); transform: translateY(-1px); }
.btn--ghost {
	background: transparent;
	color: var(--c-primary) !important;
	border: 2px solid var(--c-primary);
}
.btn--ghost:hover { background: var(--c-primary-tint); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--c-line);
}
.site-header__inner {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	min-height: 72px;
}
.site-logo { display: flex; align-items: center; flex: 0 0 auto; }
.site-logo__img { height: 52px; width: auto; display: block; }
@media (max-width: 560px) { .site-logo__img { height: 42px; } }

.site-footer__logo { display: inline-block; background: #fff; border-radius: 12px; padding: 4px; margin-bottom: 0.9rem; }
.site-footer__logo img { display: block; width: 240px; height: auto; border-radius: 9px; }

.site-nav { margin-left: auto; }
.site-nav ul { display: flex; gap: 0.25rem; list-style: none; margin: 0; padding: 0; }
.site-nav a,
.site-nav .dropdown-toggle {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.6rem 0.85rem;
	text-decoration: none;
	color: var(--c-ink);
	font-weight: 600;
	font-size: 1rem;
	font-family: inherit;
	border: 0;
	background: none;
	border-radius: 8px;
	cursor: pointer;
	white-space: nowrap;
}
.site-nav a:hover, .site-nav .dropdown-toggle:hover,
.site-nav .current-menu-item > a { color: var(--c-primary-dark); background: var(--c-primary-tint); }

/* Dropdown (Services) */
.site-nav .menu-item-has-children { position: relative; }
.site-nav .dropdown-caret { transition: transform 0.18s ease; }
.site-nav .menu-item-has-children.is-open > .dropdown-toggle .dropdown-caret { transform: rotate(180deg); }

.site-nav .sub-menu {
	display: none;
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%);
	flex-direction: column;
	gap: 0.25rem;
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 18px 50px rgba(20, 40, 70, 0.18);
	padding: 1rem;
	min-width: 300px;
	z-index: 120;
}
.site-nav .menu-item-has-children.is-open > .sub-menu { display: flex; }

@media (hover: hover) and (min-width: 921px) {
	/* Keep the dropdown in the layout and fade it, instead of display:none —
	   this allows a close delay so the menu survives the mouse briefly
	   leaving on its way to the items. */
	.site-nav .sub-menu {
		display: flex;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateX(-50%) translateY(8px);
		transition:
			opacity 0.16s ease,
			transform 0.16s ease,
			visibility 0s linear 0.35s; /* grace period before it actually closes */
	}
	/* Invisible bridge covering the 10px gap between the button and the card,
	   so hover never drops while crossing it. */
	.site-nav .sub-menu::before {
		content: "";
		position: absolute;
		top: -14px;
		left: 0;
		right: 0;
		height: 14px;
	}
	.site-nav .menu-item-has-children:hover > .sub-menu,
	.site-nav .menu-item-has-children:focus-within > .sub-menu,
	.site-nav .menu-item-has-children.is-open > .sub-menu {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateX(-50%) translateY(0);
		transition: opacity 0.16s ease, transform 0.16s ease, visibility 0s;
	}
}

.site-nav .sub-menu a {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	padding: 0.55rem 0.7rem;
	border-radius: 12px;
	font-size: 1.02rem;
	white-space: nowrap;
}
.sub-menu__icon {
	flex: 0 0 auto;
	width: 52px;
	height: 52px;
	border-radius: 12px;
	background: var(--c-bg-soft);
	color: var(--c-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.site-nav .sub-menu a:hover { background: var(--c-primary-tint); }
.site-nav .sub-menu a:hover .sub-menu__icon { background: #fff; }

.header-contact { display: flex; align-items: center; gap: 0.6rem; }
.header-contact__phone {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-weight: 700;
	text-decoration: none;
	color: var(--c-ink);
	white-space: nowrap;
}
.header-contact__phone:hover { color: var(--c-primary-dark); }
.header-contact .car-wa-btn { padding: 0.5rem 1rem; min-height: 44px; font-size: 0.95rem; }

.menu-toggle {
	display: none;
	margin-left: auto;
	background: var(--c-primary-tint);
	border: 0;
	border-radius: 10px;
	width: 48px; height: 48px;
	cursor: pointer;
	color: var(--c-primary-dark);
	align-items: center;
	justify-content: center;
}

@media (max-width: 920px) {
	.menu-toggle { display: inline-flex; }
	.site-nav {
		display: none;
		position: absolute;
		top: 100%; left: 0; right: 0;
		background: #fff;
		border-bottom: 1px solid var(--c-line);
		box-shadow: var(--shadow);
		padding: 0.5rem 1rem 1rem;
	}
	.site-nav.is-open { display: block; }
	.site-nav ul { flex-direction: column; gap: 0; }
	.site-nav a, .site-nav .dropdown-toggle { font-size: 1.1rem; padding: 0.9rem 0.75rem; width: 100%; }
	.header-contact { display: none; }

	/* Dropdown becomes an inline expanding section on mobile */
	.site-nav .sub-menu {
		position: static;
		transform: none;
		box-shadow: none;
		border-radius: 0;
		padding: 0 0 0.5rem 0.75rem;
		min-width: 0;
	}
	.sub-menu__icon { width: 44px; height: 44px; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
	background:
		linear-gradient(115deg, rgba(240, 246, 253, 0.97) 0%, rgba(234, 242, 252, 0.88) 45%, rgba(222, 235, 250, 0.62) 100%),
		var(--hero-image, none) center / cover no-repeat,
		var(--c-bg-soft);
	padding: 3.25rem 0;
}
.hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: 2.5rem;
	align-items: start;
}
.breadcrumb {
	font-size: 0.88rem;
	color: var(--c-ink-soft);
	margin-bottom: 0.9rem;
	display: flex;
	align-items: center;
	gap: 0.45rem;
}
.breadcrumb a { color: var(--c-ink-soft); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { color: var(--c-primary-dark); text-decoration: underline; }
.breadcrumb [aria-current] { color: var(--c-ink); font-weight: 600; }

.hero__eyebrow {
	display: inline-block;
	background: #fff;
	color: var(--c-primary-dark);
	border: 1px solid var(--c-line);
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.02em;
	border-radius: 999px;
	padding: 0.35rem 0.9rem;
	margin-bottom: 1rem;
}
.hero__lead { font-size: 1.15rem; color: var(--c-ink-soft); max-width: 34em; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; margin: 1.5rem 0 0; padding: 0; list-style: none; }
.hero__badges li { display: flex; align-items: center; gap: 0.45rem; font-weight: 600; font-size: 0.95rem; color: var(--c-ink-soft); }
.hero__badges svg { color: var(--c-primary); flex: 0 0 auto; }

/* Dark premium hero (homepage): image-forward with navy gradient, white text */
.hero--dark {
	background:
		linear-gradient(100deg, rgba(9, 24, 44, 0.92) 0%, rgba(12, 32, 58, 0.78) 42%, rgba(14, 36, 64, 0.38) 75%, rgba(10, 26, 46, 0.55) 100%),
		var(--hero-image, none) center 38% / cover no-repeat,
		#0c2038;
	padding: 4rem 0;
}
.hero--dark h1 { color: #fff; text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35); }
.hero--dark .hero__lead { color: #dbe6f3; }
.hero--dark .hero__eyebrow {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.28);
	color: #fff;
	backdrop-filter: blur(4px);
}
.hero--dark .hero__badges li { color: #e8f0fa; }
.hero--dark .hero__badges svg { color: #8fd0ff; }
.hero--dark .breadcrumb,
.hero--dark .breadcrumb a { color: #b9cadd; }
.hero--dark .breadcrumb [aria-current] { color: #fff; }
.hero--dark .car-booking { box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45); border-color: transparent; }

@media (max-width: 920px) {
	/* Lighter 900px hero image on phones (set by the hero shortcode). */
	.hero,
	.hero--dark {
		background:
			linear-gradient(115deg, rgba(240, 246, 253, 0.97) 0%, rgba(234, 242, 252, 0.88) 45%, rgba(222, 235, 250, 0.62) 100%),
			var(--hero-image-m, var(--hero-image, none)) center / cover no-repeat,
			var(--c-bg-soft);
	}
	.hero--dark {
		background:
			linear-gradient(100deg, rgba(9, 24, 44, 0.92) 0%, rgba(12, 32, 58, 0.78) 42%, rgba(14, 36, 64, 0.38) 75%, rgba(10, 26, 46, 0.55) 100%),
			var(--hero-image-m, var(--hero-image, none)) center 38% / cover no-repeat,
			#0c2038;
	}
	.hero { padding: 2.25rem 0; }
	.hero--dark { padding: 2.5rem 0; }
	.hero__grid { grid-template-columns: 1fr; gap: 1.75rem; }
	.car-booking { max-width: none; }
	.hero__lead { font-size: 1.05rem; }
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section { padding: 3.5rem 0; }
@media (max-width: 640px) { .section { padding: 2.4rem 0; } }
.section--soft { background: var(--c-bg-soft); }
.section__intro { max-width: 46em; }
.section__intro p { color: var(--c-ink-soft); }

/* Cards grid (services / steps / posts) */
.cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
}
.card {
	background: #fff;
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.card--link { text-decoration: none; color: inherit; transition: transform 0.15s ease, box-shadow 0.15s ease; }
.card--link:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: inherit; }
.card__icon {
	width: 52px; height: 52px;
	border-radius: 12px;
	background: var(--c-primary-tint);
	color: var(--c-primary-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.5rem;
}
.card p { margin: 0; color: var(--c-ink-soft); font-size: 0.98rem; }
.card__more { margin-top: auto; font-weight: 700; color: var(--c-primary); }

/* Services grid: featured card + 2x2 */
.services-grid {
	display: grid;
	grid-template-columns: 1.08fr 1fr 1fr;
	grid-auto-rows: 1fr;
	gap: 1.5rem;
	margin-top: 2rem;
}
.service-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	background: #fff;
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	padding: 1.6rem;
	text-decoration: none;
	color: inherit;
	overflow: hidden;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.service-card::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--c-primary), #7db9f5);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); color: inherit; }
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
	width: 56px; height: 56px;
	border-radius: 14px;
	background: linear-gradient(150deg, var(--c-primary-tint), #dcebfc);
	color: var(--c-primary-dark);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.4rem;
}
.service-card h3 { margin: 0; }
.service-card p { margin: 0; color: var(--c-ink-soft); font-size: 0.98rem; }
.service-card__more {
	margin-top: auto;
	padding-top: 0.8rem;
	font-weight: 700;
	color: var(--c-primary);
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}
.service-card__arrow { transition: transform 0.18s ease; display: inline-block; }
.service-card:hover .service-card__arrow { transform: translateX(5px); }

/* Featured card: spans both rows, dark premium gradient */
.service-card--featured {
	grid-row: 1 / span 2;
	background: linear-gradient(155deg, #14283e 0%, #1c4370 55%, #1f6fce 130%);
	border: 0;
	color: #dbe6f3;
	padding: 2rem;
	gap: 0.7rem;
}
.service-card--featured::before { background: linear-gradient(90deg, #8fd0ff, #fff); }
.service-card--featured h3 { color: #fff; font-size: 1.5rem; }
.service-card--featured p { color: #c6d6e8; font-size: 1.02rem; }
.service-card--featured .service-card__icon {
	width: 64px; height: 64px;
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
}
.service-card__badge {
	position: absolute;
	top: 1.15rem; right: 1.15rem;
	background: var(--c-accent);
	color: #3d2c00;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	border-radius: 999px;
	padding: 0.3rem 0.75rem;
}
.service-card__perks {
	list-style: none;
	margin: 0.4rem 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}
.service-card__perks li {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	color: #e8f0fa;
	font-weight: 600;
	font-size: 0.95rem;
}
.service-card__perks svg { color: #8fd0ff; flex: 0 0 auto; }
.service-card__more--pill {
	background: #fff;
	color: var(--c-primary-dark);
	border-radius: 999px;
	padding: 0.7rem 1.4rem;
	justify-content: center;
	min-height: 48px;
}
.service-card--featured:hover .service-card__more--pill { background: var(--c-primary-tint); }

@media (max-width: 1080px) {
	.services-grid { grid-template-columns: 1fr 1fr; }
	.service-card--featured { grid-row: auto; grid-column: 1 / -1; }
}
@media (max-width: 640px) {
	.services-grid { grid-template-columns: 1fr; }
}

/* Fleet — balanced 2x2 with media chips and hover zoom */
.fleet {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-top: 2rem;
}
@media (max-width: 760px) { .fleet { grid-template-columns: 1fr; } }

.fleet-card {
	background: #fff;
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.fleet-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.fleet-card__media { position: relative; overflow: hidden; }
.fleet-card__media img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}
.fleet-card:hover .fleet-card__media img { transform: scale(1.05); }
.fleet-card__media::after {
	content: "";
	position: absolute;
	inset: 55% 0 0 0;
	background: linear-gradient(to top, rgba(10, 25, 45, 0.45), transparent);
	pointer-events: none;
}
.fleet-card__class {
	position: absolute;
	top: 1rem; left: 1rem;
	z-index: 1;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(4px);
	color: var(--c-primary-dark);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	border-radius: 999px;
	padding: 0.35rem 0.85rem;
}

.fleet-card__body { padding: 1.3rem 1.5rem 1.5rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.fleet-card__body h3 { margin: 0; font-size: 1.3rem; }
.fleet-card__meta { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.fleet-card__meta span {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: var(--c-primary-tint);
	color: var(--c-primary-dark);
	font-size: 0.88rem;
	font-weight: 700;
	border-radius: 999px;
	padding: 0.3rem 0.8rem;
}
.fleet-card p { margin: 0.2rem 0 0; color: var(--c-ink-soft); font-size: 0.97rem; }
.fleet-card__cta {
	margin-top: auto;
	padding-top: 0.9rem;
	font-weight: 700;
	color: var(--c-primary);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}
.fleet-card__cta:hover .service-card__arrow { transform: translateX(5px); }

/* Steps */
.steps { counter-reset: step; }
.steps .card { position: relative; padding-top: 2.1rem; }
.steps .card::before {
	counter-increment: step;
	content: counter(step);
	position: absolute;
	top: -22px; left: 1.4rem;
	width: 44px; height: 44px;
	border-radius: 50%;
	background: var(--c-primary);
	color: #fff;
	font-weight: 800;
	font-size: 1.15rem;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow);
}

/* Testimonials — slider showing 3 reviews per slide */
.t-slider { margin-top: 2rem; }
.t-slider__viewport { overflow: hidden; }
.t-slider__track {
	display: flex;
	transition: transform 0.45s ease;
}
@media (prefers-reduced-motion: reduce) {
	.t-slider__track { transition: none; }
}
.t-slide { flex: 0 0 100%; min-width: 100%; padding: 2px; box-sizing: border-box; }
.t-slide .testimonials { margin-top: 0; }

.t-slider__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-top: 1.5rem;
}
.t-slider__arrow {
	width: 48px; height: 48px;
	border-radius: 50%;
	border: 1.5px solid var(--c-line);
	background: #fff;
	color: var(--c-primary-dark);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s ease, border-color 0.15s ease;
}
.t-slider__arrow:hover { background: var(--c-primary-tint); border-color: var(--c-primary); }
.t-slider__dots { display: flex; gap: 0.6rem; }
.t-slider__dot {
	width: 12px; height: 12px;
	padding: 0;
	border-radius: 50%;
	border: 0;
	background: var(--c-line);
	cursor: pointer;
	transition: background 0.15s ease, transform 0.15s ease;
}
.t-slider__dot:hover { background: var(--c-primary); }
.t-slider__dot.is-active { background: var(--c-primary); transform: scale(1.25); }

.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.testimonial {
	background: #fff;
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	padding: 1.5rem;
	margin: 0;
}
.testimonial__stars { color: var(--c-accent); letter-spacing: 2px; font-size: 1.05rem; }
.testimonial p { color: var(--c-ink-soft); font-size: 1rem; }
.testimonial footer { font-weight: 700; color: var(--c-ink); }

/* FAQ accordion (native details/summary — works without JS) */
.faq { margin-top: 1.5rem; max-width: 54em; }
.faq details {
	background: #fff;
	border: 1px solid var(--c-line);
	border-radius: 14px;
	margin-bottom: 0.9rem;
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq details[open] {
	border-color: rgba(31, 111, 206, 0.45);
	box-shadow: inset 4px 0 0 var(--c-primary), 0 12px 32px rgba(30, 60, 100, 0.10);
}
.faq summary {
	cursor: pointer;
	font-weight: 700;
	font-size: 1.05rem;
	padding: 1.05rem 4.4rem 1.05rem 1.4rem;
	list-style: none;
	position: relative;
	min-height: 56px;
	display: flex;
	align-items: center;
	transition: color 0.15s ease, background 0.15s ease;
}
.faq summary:hover { color: var(--c-primary-dark); background: var(--c-bg-soft); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
	content: "+";
	position: absolute;
	right: 1.1rem;
	top: 50%;
	width: 36px;
	height: 36px;
	margin-top: -18px;
	border-radius: 50%;
	background: var(--c-primary-tint);
	color: var(--c-primary-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.45rem;
	font-weight: 500;
	line-height: 1;
	transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease;
}
.faq summary:hover::after { background: #dcebfc; }
.faq details[open] summary::after {
	transform: rotate(45deg);
	background: var(--c-primary);
	color: #fff;
}
.faq details[open] summary { color: var(--c-primary-dark); }
.faq .faq__answer {
	padding: 0.1rem 4.4rem 1.35rem 1.4rem;
	color: var(--c-ink-soft);
}
.faq details[open] .faq__answer { animation: faq-open 0.28s ease; }
@keyframes faq-open {
	from { opacity: 0; transform: translateY(-6px); }
	to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
	.faq details[open] .faq__answer { animation: none; }
}
.faq .faq__answer p { margin: 0; }
@media (max-width: 560px) {
	.faq summary { padding-right: 3.6rem; font-size: 1rem; }
	.faq .faq__answer { padding-right: 1.4rem; }
}

/* CTA band */
.cta-band {
	background: linear-gradient(120deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
	border-radius: var(--radius);
	color: #fff;
	padding: 2.5rem 2rem;
	text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.85); max-width: 40em; margin: 0 auto 1.4rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }
.cta-band .btn { background: #fff; color: var(--c-primary-dark) !important; }
.cta-band .btn:hover { background: var(--c-primary-tint); }

/* Page content (inner pages) */
.page-hero {
	background: var(--c-bg-soft);
	border-bottom: 1px solid var(--c-line);
	padding: 2.5rem 0;
}
.page-hero p { color: var(--c-ink-soft); max-width: 46em; margin-bottom: 0; font-size: 1.1rem; }
.entry-content { padding: 2.5rem 0 3.5rem; }
.entry-content > .container > * + * { margin-top: 1.1rem; }
.entry-content h2 { margin-top: 2rem; }
.entry-content ul { color: var(--c-ink-soft); }

/* Two-column landing layout: copy + form */
.landing-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: 2.5rem;
	align-items: start;
}
@media (max-width: 920px) { .landing-grid { grid-template-columns: 1fr; } }

/* Split section: media + copy side by side (About block on the homepage) */
.split {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: 2.5rem;
	align-items: center;
	margin-top: 2rem;
}
.split__media {
	margin: 0;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--c-line);
	box-shadow: var(--shadow);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4 / 3; }
.split__body h2 { margin-top: 0; }
.split__body p { color: var(--c-ink-soft); }
.split__points { list-style: none; margin: 1.2rem 0 1.6rem; padding: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.split__points li { display: flex; gap: 0.6rem; align-items: flex-start; font-weight: 600; }
.split__points svg { color: var(--c-primary); flex: 0 0 auto; margin-top: 3px; }
.split__points span { color: var(--c-ink); }
.split__points small { display: block; font-weight: 500; color: var(--c-ink-soft); font-size: 0.92rem; }
@media (max-width: 860px) {
	.split { grid-template-columns: 1fr; gap: 1.5rem; }
	.split__media img { aspect-ratio: 16 / 10; }
}

/* Fancy About variant: eyebrow, layered image, floating chip, stat tiles */
.split__eyebrow {
	display: inline-block;
	background: var(--c-primary-tint);
	color: var(--c-primary-dark);
	font-weight: 800;
	font-size: 0.8rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-radius: 999px;
	padding: 0.35rem 0.9rem;
	margin-bottom: 0.9rem;
}
.split__media-stack { position: relative; padding: 0 1.1rem 1.1rem 0; }
.split__media-stack::before {
	content: "";
	position: absolute;
	top: 1.4rem; right: 0; bottom: 0; left: 1.4rem;
	border-radius: var(--radius);
	background: linear-gradient(150deg, var(--c-primary), #14283e);
	opacity: 0.9;
}
.split__media-stack .split__media { position: relative; box-shadow: 0 18px 45px rgba(20, 40, 70, 0.28); border: 0; }
.split__chip {
	position: absolute;
	left: 1.4rem; bottom: -0.4rem;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 0.6rem;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 14px 34px rgba(20, 40, 70, 0.22);
	padding: 0.7rem 1.1rem;
	color: var(--c-primary-dark);
	font-weight: 800;
	font-size: 0.95rem;
	line-height: 1.25;
}
.split__chip small { display: block; font-weight: 600; font-size: 0.8rem; color: var(--c-ink-soft); }
.split__chip svg { flex: 0 0 auto; }

.split__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.8rem;
	margin: 0 0 1.6rem;
}
.split__stat {
	background: #fff;
	border: 1px solid var(--c-line);
	border-radius: 12px;
	padding: 0.8rem 0.9rem;
	text-align: center;
}
.split__stat strong { display: block; font-size: 1.3rem; color: var(--c-primary-dark); line-height: 1.2; }
.split__stat span { font-size: 0.82rem; color: var(--c-ink-soft); font-weight: 600; }
@media (max-width: 480px) {
	.split__stats { grid-template-columns: 1fr 1fr; }
	.split__stat:last-child { grid-column: 1 / -1; }
}

/* Photo grid + captioned figures inside content sections */
.photo-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	margin: 2rem 0;
}
.photo-grid figure,
.entry-figure {
	margin: 0;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--c-line);
	background: #fff;
}
.photo-grid img,
.entry-figure img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.photo-grid figcaption,
.entry-figure figcaption {
	padding: 0.7rem 1rem;
	font-size: 0.9rem;
	color: var(--c-ink-soft);
}
.entry-figure { margin: 2rem 0; }
.entry-figure img { aspect-ratio: 21 / 9; }

/* Simple comparison table */
.car-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--c-line); font-size: 0.98rem; }
.car-table th, .car-table td { padding: 0.8rem 1rem; text-align: left; border-bottom: 1px solid var(--c-line); }
.car-table th { background: var(--c-primary-tint); color: var(--c-primary-dark); }
.car-table tr:last-child td { border-bottom: 0; }
.car-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
@media (max-width: 640px) {
	.car-table { font-size: 0.88rem; min-width: 480px; }
	.car-table th, .car-table td { padding: 0.55rem 0.7rem; }
	.entry-figure img { aspect-ratio: 16 / 10; }
	.cta-band { padding: 1.8rem 1.25rem; }
	.testimonial { padding: 1.15rem; }
	.photo-grid { gap: 1rem; }
}

/* Blog */
.post-card time { color: var(--c-ink-soft); font-size: 0.88rem; }
.single-post .entry-content { max-width: 760px; margin: 0 auto; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: #14283e; color: #c8d6e6; margin-top: 3rem; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; color: #fff; }
.site-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 2rem;
	padding: 3rem 0 2rem;
}
.site-footer h3 { color: #fff; font-size: 1.05rem; margin-bottom: 0.9rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.55rem; }
.site-footer__contact li { display: flex; gap: 0.55rem; align-items: flex-start; }
.site-footer__contact svg { flex: 0 0 auto; margin-top: 4px; color: #7fa8d4; }
.site-footer .car-wa-btn { margin-top: 0.75rem; }
.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	padding: 1.1rem 0;
	font-size: 0.88rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.5rem;
	justify-content: space-between;
}
@media (max-width: 920px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Floating WhatsApp bubble + mobile action bar
   ========================================================================== */
.wa-float {
	position: fixed;
	right: 18px; bottom: 18px;
	z-index: 90;
	width: 60px; height: 60px;
	border-radius: 50%;
	background: var(--c-wa);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
	transition: transform 0.15s ease;
}
.wa-float:hover { transform: scale(1.08); color: #fff; }

.mobile-bar {
	display: none;
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 95;
	background: #fff;
	border-top: 1px solid var(--c-line);
	box-shadow: 0 -6px 20px rgba(30, 60, 100, 0.12);
	padding: 0.55rem 0.75rem calc(0.55rem + env(safe-area-inset-bottom));
	gap: 0.6rem;
}
.mobile-bar a {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	font-weight: 700;
	text-decoration: none;
	border-radius: 10px;
	min-height: 50px;
	font-size: 1rem;
}
.mobile-bar__call { background: var(--c-primary-tint); color: var(--c-primary-dark); }
.mobile-bar__wa { background: var(--c-wa); color: #fff; }
.mobile-bar__book { background: var(--c-primary); color: #fff; }
@media (max-width: 920px) {
	.mobile-bar { display: flex; }
	body { padding-bottom: 76px; }
	.wa-float { display: none; }
}
