/* ==========================================================================
   Elbay Tuning - site stylesheet
   Standalone: relies only on Bootstrap's grid/forms + Font Awesome.
   (No Porto theme CSS - its skin colors and header/collapse machinery
   were the source of the wrapped-nav and floating-button bugs.)

   Palette taken from the live site's Elementor kit settings:
     red   #D52F2F   gold #DDAE17   near-black #0A0A0C   body grey #7A7A7A
   ========================================================================== */

:root {
	--red: #D52F2F;
	--red-dark: #A82424;
	--red-deep: #8E1E1E;
	--gold: #DDAE17;
	--black: #000000;
	--bg: #0A0A0C;
	--bg-2: #131316;
	--bg-3: #1A1A1E;
	--line: rgba(255, 255, 255, 0.09);
	--text: #A8A8AC;
	--white: #FFFFFF;

	--header-h: 92px;
	--radius: 6px;
}

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

/* Poppins, matching the live site: its homepage stylesheet (post-10.css)
   sets Poppins on every heading and body run - h1 62px/700, section
   headings 46px/600, intro text 24px/400, body 16px/300. */
body {
	margin: 0;
	font-family: "Poppins", Arial, Helvetica, sans-serif;
	font-weight: 300;
	line-height: 1.7;
	color: var(--text);
	background-color: var(--bg);
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Poppins", Arial, sans-serif;
	font-weight: 600;
	color: var(--white);
	line-height: 1.3;
	margin: 0 0 .75rem;
}

h1 { font-size: clamp(2.2rem, 4.3vw, 3.875rem); font-weight: 700; line-height: 1.2; }
h2 { font-size: clamp(1.75rem, 3vw, 2.875rem); }
h3 { font-size: 1.2rem; font-weight: 600; }

p { margin: 0 0 1rem; }
a { color: var(--red); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--white); }
img { max-width: 100%; height: auto; }

.section { padding: 5.5rem 0; }
.section-tight { padding: 4rem 0; }
.bg-1 { background-color: var(--bg); }
.bg-2 { background-color: var(--bg-2); }

/* Content typography, matched to the live site's own stylesheets:
   body copy is white 16px/1.5, section headings 25px semibold capitalize,
   page titles 46px semibold. Grey body text (only used for supporting
   captions) was making the rebuilt pages look washed out. */
main p { color: #F2F2F3; font-size: 1rem; line-height: 1.6; }
main .section h2,
main .photo-section h2 { font-size: clamp(1.4rem, 2vw, 1.5625rem); text-transform: capitalize; }
main .section h1 { font-size: clamp(2rem, 3.6vw, 2.875rem); text-transform: capitalize; }
main .card-elbay p,
main .vm-card p { font-size: .9375rem; }

.lead-muted { color: #D6D6D9; font-size: 1.05rem; }
.eyebrow {
	color: var(--red);
	font-size: .82rem;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	margin-bottom: .5rem;
}
.section-head { max-width: 720px; margin: 0 auto 3.25rem; text-align: center; }
.section-head p { margin-bottom: 0; }

/* Diagonal hatch rule, echoing the striped divider on the original site */
.hatch {
	height: 8px;
	width: 108px;
	background-image: repeating-linear-gradient(-45deg, var(--red) 0 7px, transparent 7px 14px);
	margin: 0 0 1.5rem;
}
.hatch-center { margin-left: auto; margin-right: auto; }

/* ---------------------------------------------------------------- buttons */
.btn-elbay,
.btn-elbay-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .55rem;
	padding: 1rem 2.4rem;
	border-radius: 3px;
	font-size: .85rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	border: 2px solid transparent;
	cursor: pointer;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.btn-elbay {
	background-color: var(--red);
	color: var(--white);
}
.btn-elbay:hover {
	background-color: var(--red-dark);
	color: var(--white);
	transform: translateY(-2px);
}
.btn-elbay-outline {
	background-color: transparent;
	border-color: rgba(255, 255, 255, .5);
	color: var(--white);
}
.btn-elbay-outline:hover {
	background-color: var(--white);
	border-color: var(--white);
	color: var(--bg);
}
.btn-sm-elbay { padding: .7rem 1.6rem; font-size: .78rem; }

/* ----------------------------------------------------------------- header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background-color: var(--black);
	border-bottom: 3px solid var(--red);
}
.header-inner {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	min-height: var(--header-h);
}
.brand { flex: 0 0 auto; display: flex; align-items: center; }
.brand img { height: 48px; width: auto; display: block; }

.header-meta {
	display: flex;
	align-items: center;
	gap: .5rem;
	color: var(--white);
	font-size: .86rem;
	line-height: 1.3;
	white-space: nowrap;
}
.header-meta i { color: var(--red); }

.header-spacer { flex: 1 1 auto; }

.socials { display: flex; align-items: center; gap: .5rem; }
.social-btn {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, .1);
	color: var(--white);
	font-size: .95rem;
	transition: background-color .2s ease, color .2s ease;
}
.social-btn:hover { background: var(--red); color: var(--white); }

/* Desktop navigation */
.main-nav ul {
	display: flex;
	align-items: center;
	gap: 1.55rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.main-nav a {
	color: var(--white);
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .07em;
	text-transform: uppercase;
	white-space: nowrap;
	padding: .35rem 0;
	border-bottom: 2px solid transparent;
}
.main-nav a:hover { color: var(--red); }
.main-nav a.is-active { color: var(--red); border-bottom-color: var(--red); }

/* Hamburger - only ever visible below the desktop breakpoint */
.nav-toggle {
	display: none;
	flex: 0 0 auto;
	background: none;
	border: 0;
	color: var(--white);
	font-size: 1.5rem;
	line-height: 1;
	padding: .25rem .35rem;
	cursor: pointer;
}
.nav-toggle:hover { color: var(--red); }

@media (max-width: 1199.98px) {
	.header-meta { display: none; }
}
@media (max-width: 991.98px) {
	:root { --header-h: 74px; }
	.nav-toggle { display: block; }
	.main-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--black);
		border-bottom: 3px solid var(--red);
		max-height: 0;
		overflow: hidden;
		transition: max-height .3s ease;
	}
	.main-nav.is-open { max-height: 26rem; }
	.main-nav ul {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: .5rem 0 1rem;
	}
	.main-nav li { border-top: 1px solid var(--line); }
	.main-nav a { display: block; padding: .85rem 1.25rem; border-bottom: 0; }
	.brand img { height: 38px; }
}

/* Below ~576px the socials would crowd the hamburger off the edge of the
   header, so they give way - they remain available in the footer. */
@media (max-width: 575.98px) {
	.site-header .socials { display: none; }
	.header-inner { gap: 1rem; }
}

/* ------------------------------------------------------------------- hero */
.hero {
	position: relative;
	min-height: 660px;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.55) 45%, rgba(0,0,0,.15) 100%);
}
.hero > .container { position: relative; z-index: 1; }
.hero-copy { max-width: 640px; padding: 4.5rem 0; }
.hero-copy h1 { margin-bottom: 1.1rem; }
.hero-copy p {
	color: #DCDCDE;
	font-size: clamp(1.05rem, 1.6vw, 1.4rem);
	font-weight: 400;
	line-height: 1.45;
	margin-bottom: 2rem;
}

@media (max-width: 767.98px) {
	.hero { min-height: 500px; }
	.hero-copy { padding: 3rem 0; }
}

/* --------------------------------------------- dark panels (cards + forms)
   Shared surface for the tuning selector and the contact form, matching the
   dark form styling used on the live site. */
.panel-dark {
	background: var(--bg-3);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 2.25rem;
}
.panel-dark label {
	display: block;
	color: var(--white);
	font-size: .95rem;
	font-weight: 500;
	margin-bottom: .45rem;
}
.panel-dark .form-control,
.panel-dark .form-select {
	background-color: #232328;
	border: 1px solid #3A3A42;
	border-radius: 4px;
	color: var(--white);
	font-size: .95rem;
	padding: .8rem .95rem;
}
.panel-dark .form-select { height: 52px; padding-block: 0; }
.panel-dark .form-control::placeholder { color: #8A8A92; }
.panel-dark .form-control:focus,
.panel-dark .form-select:focus {
	background-color: #232328;
	border-color: var(--red);
	color: var(--white);
	box-shadow: 0 0 0 .2rem rgba(213, 47, 47, .22);
}
.panel-dark .form-select:disabled {
	background-color: #1B1B20;
	border-color: #2E2E35;
	color: #6E6E76;
}
/* Bootstrap's caret is a dark SVG - swap it for a light one so it stays
   visible against the dark field. */
.panel-dark .form-select {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23B9B9C2' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

/* ------------------------------------------------- vehicle/tuning selector */
.selector-card { box-shadow: 0 24px 60px rgba(0, 0, 0, .35); }

.pk-result {
	display: none;
	margin-top: 1.5rem;
	padding: 1.5rem 1.75rem;
	border-radius: 4px;
	background: #101014;
	border: 1px solid var(--line);
	border-left: 4px solid var(--red);
}
.pk-result.is-visible { display: block; }

.result-head {
	padding-bottom: 1.1rem;
	margin-bottom: 1.4rem;
	border-bottom: 1px solid var(--line);
}
.result-car {
	color: var(--white);
	font-weight: 700;
	font-size: 1.05rem;
	line-height: 1.35;
}
.result-car span {
	display: block;
	color: #9A9AA2;
	font-weight: 400;
	font-size: .9rem;
}
.result-metrics {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}
.metric {
	background: rgba(255, 255, 255, .03);
	border: 1px solid var(--line);
	border-radius: 4px;
	padding: 1.1rem 1.25rem;
}
.metric-label {
	color: #9A9AA2;
	font-size: .76rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	margin-bottom: .5rem;
}
.metric-values {
	display: flex;
	align-items: baseline;
	gap: .5rem;
	flex-wrap: wrap;
}
.metric-values .from {
	color: #7C7C85;
	font-size: 1.15rem;
	font-weight: 500;
	text-decoration: line-through;
	text-decoration-color: rgba(124, 124, 133, .6);
}
.metric-values .arrow { color: var(--red); font-size: 1.1rem; }
.metric-values .to {
	color: var(--white);
	font-size: 1.9rem;
	font-weight: 900;
	line-height: 1.1;
}
.metric-values .to small {
	font-size: .95rem;
	font-weight: 700;
	color: #C9C9D0;
}
.gain {
	margin-top: .35rem;
	color: var(--gold);
	font-weight: 800;
	font-size: .98rem;
}

.result-note, .result-empty {
	color: #8A8A92;
	font-size: .84rem;
	margin: 1.1rem 0 0;
}
.result-empty { color: #B9B9BE; font-size: .92rem; }
.result-cta { margin-top: 1.25rem; }

@media (max-width: 575.98px) {
	.result-metrics { grid-template-columns: 1fr; }
}
.selector-note {
	color: #6E6E74;
	font-size: .82rem;
	text-align: center;
	margin: 1.25rem 0 0;
}

/* ------------------------------------------------------------ media + text */
.media-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.media-pair img {
	width: 100%;
	height: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	border-radius: var(--radius);
	display: block;
}
.media-pair img:nth-child(2) { margin-top: 2.5rem; }

.pull-quote {
	position: relative;
	margin: 2.5rem 0 0;
	padding-left: 3.25rem;
	color: var(--white);
	font-size: 1.22rem;
	font-weight: 500;
	line-height: 1.6;
}
.pull-quote::before {
	content: "\201C";
	position: absolute;
	left: 0;
	top: -1.6rem;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 4.5rem;
	line-height: 1;
	color: var(--red);
}

/* ------------------------------------------------------------------ cards */
/* Cards stretch to equal height when they are the only child of a grid
   column. Stack two or more inside .card-stack, which opts out of that. */
.card-stack { display: flex; flex-direction: column; gap: 1.5rem; }
.card-stack > .card-elbay { height: auto; }

.card-elbay {
	height: 100%;
	background: var(--bg-2);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.9rem 1.6rem;
	transition: border-color .2s ease, transform .2s ease;
}
.card-elbay:hover { border-color: rgba(213, 47, 47, .55); transform: translateY(-3px); }
.card-elbay h3 { color: var(--red); font-size: 1.05rem; margin-bottom: .6rem; }
.card-elbay p { margin: 0; font-size: .93rem; }

/* ------------------------------------------- "wat we doen" photo section
   Four translucent panels laid out around a centred seal, over the ECU
   workbench photo - the layout used on the original homepage. */
.doen-section {
	position: relative;
	overflow: hidden;
	padding: clamp(2.5rem, 6vw, 5.5rem) 0;
}
/* The photo lives on its own layer so it can be blurred without softening
   the panels and seal on top of it. The negative inset + slight scale hide
   the translucent edges blur leaves behind. */
.doen-bg {
	position: absolute;
	inset: -30px;
	z-index: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	filter: blur(6px);
	transform: scale(1.04);
}
.doen-section::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(0, 0, 0, .34);
}
.doen-section > .container { position: relative; z-index: 2; }

.doen-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	/* The wide middle column keeps the seal clear of the panels. */
	column-gap: clamp(1.5rem, 22vw, 19rem);
	row-gap: clamp(1.25rem, 5vw, 5rem);
}
.doen-card {
	background: rgba(12, 12, 14, .74);
	padding: clamp(1.25rem, 2vw, 1.9rem);
}
.doen-card h3 {
	color: var(--red);
	text-transform: uppercase;
	font-weight: 700;
	font-size: clamp(1.05rem, 1.5vw, 1.3rem);
	letter-spacing: .01em;
	margin-bottom: .55rem;
}
.doen-card p {
	color: var(--white);
	font-weight: 300;
	font-size: .98rem;
	margin: 0;
}
.doen-badge {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: clamp(130px, 15vw, 215px);
	height: auto;
	z-index: 2;
	pointer-events: none;
}

@media (max-width: 767.98px) {
	.doen-grid { grid-template-columns: 1fr; }
	.doen-badge {
		position: static;
		transform: none;
		display: block;
		width: 150px;
		margin: 1.75rem auto 0;
	}
}

/* Service icon tiles (the round red badges from the original site) */
.service-tile {
	height: 100%;
	background: var(--bg-2);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 2.4rem 1.25rem;
	text-align: center;
	transition: border-color .2s ease, transform .2s ease;
}
.service-tile:hover { border-color: rgba(213, 47, 47, .55); transform: translateY(-3px); }
.service-icon {
	width: 84px;
	height: 84px;
	margin: 0 auto 1.15rem;
	border-radius: 50%;
	background: var(--red-deep);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
/* The source PNGs already carry a dark-red tile background, so they sit
   flush inside the circle rather than being recoloured. */
.service-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-tile h3 {
	color: var(--white);
	font-size: 1.05rem;
	letter-spacing: .02em;
	margin: 0;
}

/* ----------------------------------------------------------- testimonials */
.review-card {
	height: 100%;
	background: var(--bg-2);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 2rem 1.75rem;
}
.review-stars { color: var(--gold); letter-spacing: 3px; font-size: .95rem; }
.review-name { color: var(--white); font-weight: 700; margin: .85rem 0 .35rem; }
.review-text { margin: 0; font-size: .95rem; font-style: italic; }

/* ------------------------------------------------------------- result box */
.result-figure {
	background: var(--white);
	border-radius: var(--radius);
	padding: 2.5rem 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ------------------------------------------------------------------- form */
.form-card { padding: 2.5rem; }

/* Honeypot: kept in the DOM for bots that fill every input,
   removed from view and from the tab order for real users. */
.hp-field {
	position: absolute !important;
	left: -9999px !important;
	top: -9999px !important;
	width: 0 !important;
	height: 0 !important;
	overflow: hidden !important;
}

.form-status { display: none; margin: 1rem 0 0; font-weight: 500; }
.form-status.is-visible { display: block; }
.form-status.is-ok { color: #4CD07D; }
.form-status.is-error { color: #FF6B6B; }

/* ----------------------------------------------------------------- footer */
.site-footer {
	background-color: var(--black);
	border-top: 3px solid var(--red);
	padding: 3.5rem 0 2rem;
}
.badges {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 2.75rem;
	padding-bottom: 2.5rem;
	border-bottom: 1px solid var(--line);
}
.badges img {
	height: 74px;
	width: auto;
	opacity: .95;
}
.badges img.badge-wide { height: 46px; }

.footer-grid { padding: 2.75rem 0 2rem; }
.site-footer h5 {
	color: var(--white);
	font-size: .95rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	margin-bottom: 1.1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .55rem; font-size: .93rem; }
.site-footer a { color: #C9C9CE; }
.site-footer a:hover { color: var(--red); }
.footer-logo { height: 52px; width: auto; margin-bottom: 1rem; }
.footer-bottom {
	border-top: 1px solid var(--line);
	padding-top: 1.5rem;
	text-align: center;
	font-size: .86rem;
	color: #77777D;
}

/* ------------------------------------------- full-width photo banner band
   The photo sits on its own layer (fed by the --hero-bg custom property set
   inline per page) so it can carry a soft blur. The layer is inset past the
   edges and scaled slightly, otherwise blur leaves translucent seams. */
.banner-image {
	position: relative;
	overflow: hidden;
	height: clamp(180px, 26vw, 380px);
}
.banner-image::before {
	content: "";
	position: absolute;
	inset: -12px;
	background-image: var(--hero-bg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	filter: blur(2px);
	transform: scale(1.03);
}

/* Section with its own photographic background */
.photo-section {
	position: relative;
	background-size: cover;
	background-position: center;
}
.photo-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(8, 8, 10, .74);
}
.photo-section > .container { position: relative; z-index: 1; }

.img-block {
	display: block;
	width: 100%;
	height: auto;
	border-radius: var(--radius);
}

.pt-0 { padding-top: 0 !important; }
.text-white { color: var(--white); }

/* Round icon badge - the source PNGs carry their own dark-red tile, so they
   fill the circle rather than being recoloured. */
.icon-round {
	width: 62px;
	height: 62px;
	border-radius: 50%;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--red-deep);
}
.icon-round img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* The Our-Expert-Service PNGs carry an opaque dark tile of their own, so they
   fill the circle as-is. (Knocking them out to white turns the whole tile
   white - they are not transparent line art.) */
.icon-round--line img { width: 100%; height: 100%; object-fit: cover; }

/* Visie / missie / prijs trio, middle card highlighted like the original */
.vm-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	align-items: center;
}
.vm-card {
	background: var(--bg-2);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 2rem 1.4rem;
	text-align: center;
	height: 100%;
	transition: transform .25s ease, border-color .25s ease;
}
.vm-card:hover { transform: translateY(-4px); border-color: rgba(213, 47, 47, .5); }
.vm-card h3 {
	color: var(--white);
	font-size: 1.25rem;
	text-transform: capitalize;
	margin: 1.1rem 0 .7rem;
}
.vm-card p { margin: 0; }
.vm-card.is-featured {
	background: var(--red);
	border-color: var(--red);
	padding-block: 3rem;
	box-shadow: 0 18px 40px rgba(213, 47, 47, .25);
}
.vm-card.is-featured:hover { border-color: var(--red); }
.vm-card.is-featured p { color: rgba(255, 255, 255, .95); }
.vm-card.is-featured .icon-round { background: rgba(0, 0, 0, .28); }

@media (max-width: 767.98px) {
	.vm-row { grid-template-columns: 1fr; }
	.vm-card.is-featured { padding-block: 1.75rem; }
}

/* Icon + text row (the benefit list on "wat we doen").
   The live site uses a red Font Awesome check-circle here, not an image. */
.benefit-row { display: flex; gap: 1.1rem; align-items: flex-start; }
.benefit-check {
	flex: 0 0 auto;
	color: var(--red);
	font-size: 1.75rem;
	line-height: 1.2;
}
.benefit-row h3 { color: var(--white); font-size: 1.15rem; margin-bottom: .45rem; }
.benefit-row p { margin: 0; }

/* Fill top-to-bottom per column (1,2 left / 3,4 right) rather than
   left-to-right, matching the live site's ordering. */
@media (min-width: 768px) {
	.benefit-cols {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-auto-flow: column;
		grid-template-rows: auto auto;
	}
	.benefit-cols > * { width: 100%; max-width: 100%; }
}

/* Translucent service tiles over a photo background */
.tile-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}
.tile {
	background: rgba(12, 12, 14, .72);
	border-radius: var(--radius);
	padding: 1.6rem 1rem;
	text-align: center;
	transition: background-color .2s ease;
}
.tile:hover { background: rgba(213, 47, 47, .75); }
.tile h3 {
	color: var(--white);
	font-size: 1rem;
	margin: .9rem 0 0;
	font-weight: 500;
}
@media (max-width: 991.98px) { .tile-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 575.98px) { .tile-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------- inner-page hero band */
.page-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(3.5rem, 8vw, 6.5rem) 0;
	text-align: center;
}
/* Blurred photo layer... */
.page-hero::before {
	content: "";
	position: absolute;
	inset: -12px;
	z-index: 0;
	background-image: var(--hero-bg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	filter: blur(2px);
	transform: scale(1.03);
}
/* ...then the darkening overlay on top of it, with the copy above both. */
.page-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(0, 0, 0, .68);
}
.page-hero > .container { position: relative; z-index: 2; }
.page-hero h1 { margin-bottom: .75rem; }
.page-hero p {
	max-width: 760px;
	margin: 0 auto;
	color: #D2D2D6;
	font-size: clamp(1rem, 1.4vw, 1.15rem);
	font-weight: 300;
}
.text-red { color: var(--red); }

/* Left-aligned hero variant (contact page) */
.page-hero-left { text-align: left; }
.page-hero-left h1 { margin-bottom: .5rem; }
.hero-sub-rule {
	display: inline-block;
	margin: 0 !important;
	padding-bottom: .75rem;
	border-bottom: 2px solid var(--white);
	color: #E3E3E6 !important;
}

/* Bordered contact boxes */
.contact-box {
	height: 100%;
	border: 1px solid var(--red);
	border-radius: var(--radius);
	background: rgba(213, 47, 47, .05);
	padding: 2rem 1.25rem;
	text-align: center;
}
.contact-box h3 { color: var(--white); font-size: 1.15rem; margin-bottom: .5rem; }
.contact-box p { margin: 0; }
.contact-box a { color: var(--text); }
.contact-box a:hover { color: var(--red); }

/* Form panel sitting on a photo */
.form-over-photo { padding: clamp(3rem, 6vw, 5rem) 0; }
.form-over-photo .form-panel-head { text-align: center; margin-bottom: 1.25rem; }
.form-over-photo .form-panel-head h2 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); margin-bottom: .25rem; }
.form-over-photo .form-panel-head p { color: var(--text); margin: 0; }
.form-over-photo .form-card { background: rgba(26, 26, 30, .94); }

.form-heading {
	text-align: center;
	font-size: clamp(1.4rem, 2.2vw, 1.9rem);
	margin-bottom: 1.75rem;
}
.btn-block-elbay { width: 100%; }
.field-group-label {
	color: var(--white);
	font-weight: 500;
	margin: .75rem 0 -.25rem;
}

/* Opening hours block inside the appointment form */
.hours-panel {
	margin-top: 2.25rem;
	background: rgba(0, 0, 0, .45);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.75rem;
}
.hours-panel h3 { text-align: center; font-size: 1.35rem; margin-bottom: 1rem; }
.hours-panel ul { list-style: none; margin: 0 auto; padding: 0; max-width: 340px; }
.hours-panel li {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: .35rem 0;
	font-size: .93rem;
}
.hours-panel li span:first-child { color: var(--white); }

/* ------------------------------------------------------------- CTA band */
.cta-band {
	background: var(--red);
	padding: clamp(2rem, 4vw, 3rem) 0;
}
.cta-band-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}
.cta-band h2 { color: #fff; margin-bottom: .25rem; font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
.cta-band p { color: rgba(255, 255, 255, .9); margin: 0; font-weight: 300; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.cta-band .btn-elbay {
	background: #fff;
	color: var(--red);
}
.cta-band .btn-elbay:hover { background: var(--bg); color: #fff; }
.cta-band .btn-elbay-outline { border-color: rgba(255, 255, 255, .8); color: #fff; }
.cta-band .btn-elbay-outline:hover { background: #fff; color: var(--red); }

/* --------------------------------------------------------- contact bits */
.contact-tile { text-align: center; }
.contact-icon {
	width: 58px;
	height: 58px;
	margin: 0 auto 1rem;
	border-radius: 50%;
	background: var(--red-deep);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.15rem;
}
.contact-tile p { margin: 0; }
.contact-tile a { color: var(--white); }
.contact-tile a:hover { color: var(--red); }

.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { display: flex; gap: .7rem; margin-bottom: .7rem; color: var(--text); }
.contact-list li i { color: var(--red); margin-top: .35rem; }
.contact-list a { color: var(--white); }
.contact-list a:hover { color: var(--red); }

.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-list li {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: .45rem 0;
	border-bottom: 1px solid var(--line);
	font-size: .93rem;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list li span:first-child { color: var(--white); font-weight: 500; }

/* ------------------------------------------------------- error pages */
.error-page { padding: clamp(4rem, 10vw, 8rem) 0; }
.error-code {
	font-size: clamp(4rem, 12vw, 8rem);
	font-weight: 800;
	line-height: 1;
	color: var(--red);
	margin: 0 0 .5rem;
}
.error-page .btn-elbay,
.error-page .btn-elbay-outline { margin: .35rem; }

/* ------------------------------------------- floating WhatsApp button */
.wa-float {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 900;
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	height: 58px;
	padding: 0 18px;
	border-radius: 999px;
	background: #25D366;
	color: #fff;
	font-weight: 600;
	font-size: .95rem;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
	transition: background-color .2s ease, transform .2s ease;
}
.wa-float i { font-size: 1.75rem; line-height: 1; }
.wa-float:hover { background: #1FB855; color: #fff; transform: translateY(-2px); }
.wa-float-label { white-space: nowrap; }

/* On small screens collapse to a round icon so it never covers content. */
@media (max-width: 575.98px) {
	.wa-float { width: 54px; height: 54px; padding: 0; justify-content: center; right: 16px; bottom: 16px; }
	.wa-float-label { display: none; }
}
@media (prefers-reduced-motion: reduce) {
	.wa-float:hover { transform: none; }
}

/* ------------------------------------------------------- brand coverage */
.brand-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	justify-content: center;
}
.brand-list li {
	background: var(--bg-3);
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: .4rem 1rem;
	font-size: .88rem;
	color: #D8D8DC;
}

/* ------------------------------------------------------------------- FAQ */
.faq-item {
	background: var(--bg-2);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	margin-bottom: .75rem;
	overflow: hidden;
}
.faq-item summary {
	cursor: pointer;
	list-style: none;
	padding: 1.15rem 3rem 1.15rem 1.4rem;
	color: var(--white);
	font-weight: 500;
	font-size: 1.05rem;
	position: relative;
	transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
	content: "\f078"; /* chevron-down */
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	right: 1.4rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--red);
	font-size: .8rem;
	transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(180deg); }
.faq-item summary:hover { color: var(--red); }
.faq-item p { margin: 0; padding: 0 1.4rem 1.3rem; }

/* ---------------------------------------------------------------- polish */

/* Visible keyboard focus everywhere (Bootstrap's default is easy to lose
   against a dark background). */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 2px solid var(--red);
	outline-offset: 2px;
}

/* Photos get a subtle lift so they read as deliberate, not pasted in. */
.img-block {
	box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
	transition: transform .35s ease;
}
.img-block:hover { transform: translateY(-4px); }

/* Alternating sections shouldn't double up their padding when stacked. */
.section + .section.pt-0 { margin-top: -1rem; }

/* Section intro spacing */
.section-head h1, .section-head h2 { margin-bottom: .5rem; }
.section-head .hatch { margin-bottom: 1.25rem; }

/* Links inside body copy stay legible on dark - but buttons are not links
   to underline. */
main p a:not([class*="btn-"]) {
	color: var(--red);
	text-decoration: underline;
	text-underline-offset: 2px;
}
main p a:not([class*="btn-"]):hover { color: var(--white); }

/* Skip-link for keyboard users */
.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 2000;
	background: var(--red);
	color: #fff;
	padding: .75rem 1.25rem;
	border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* --------------------------------------------------------------- reveal fx */
/* Only hide content when JS is present to bring it back (see the inline
   script in head.ejs). Without JS the page stays fully readable. */
html.js .reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity .6s ease, transform .6s ease;
}
html.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	html.js .reveal { opacity: 1; transform: none; transition: none; }
	.btn-elbay:hover, .card-elbay:hover, .service-tile:hover { transform: none; }
}
