/* =========================================================
   Taxi Centrale Maassluis — Theme stylesheet
   ========================================================= */

/* ---------- Tokens (huisstijl uit huidige site) ----------
   Brand palette geëxtraheerd uit live Elementor site:
   #2ECC71 (groen/accent), #27AE60 (groen donker), #0B1D26 (navy bg),
   #132F3E (navy-2), #081318 (near-black), #F5FAF7 (soft groen-wit),
   #6B7C85 (body op licht), #8EACBA (text op donker), #4A6270 (muted dark)
*/
:root {
	--c-bg:        #ffffff;
	--c-fg:        #0B1D26;
	--c-muted:     #6B7C85;
	--c-muted-2:   #4A6270;
	--c-line:      #e3e9ec;
	--c-soft:      #F5FAF7;
	--c-dark:      #0B1D26;
	--c-dark-2:    #132F3E;
	--c-dark-3:    #081318;

	--c-on-dark:   #8EACBA;

	--c-accent:    #2ECC71;
	--c-accent-2:  #27AE60;
	--c-accent-fg: #ffffff; /* witte tekst default; dark op hover (gewenste klant-aesthetic) */

	--c-success:   #2ECC71;
	--c-danger:    #dc2626;

	--shadow-sm:   0 1px 2px rgba(11,29,38,.06), 0 1px 4px rgba(11,29,38,.04);
	--shadow-md:   0 4px 12px rgba(11,29,38,.06), 0 12px 32px rgba(11,29,38,.06);
	--shadow-lg:   0 12px 36px rgba(11,29,38,.10), 0 32px 80px rgba(11,29,38,.12);

	--r-sm: 6px;
	--r-md: 12px;
	--r-lg: 20px;
	--r-xl: 28px;

	--container: 1180px;
	--gap: clamp(1rem, 2.5vw, 2rem);

	--ff-sans: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
	--ff-display: 'Roboto Slab', 'Roboto', Georgia, serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	overflow-x: clip; /* voorkom horizontale scroll wanneer 3e-partij widget (TaxiFlow) overflows produceert */
}
body {
	margin: 0;
	font-family: var(--ff-sans);
	font-size: 16px;
	line-height: 1.6;
	color: var(--c-fg);
	background: var(--c-bg);
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
	max-width: 100vw;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; }

h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 .5em; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1em; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0,0,0,0);
	white-space: nowrap; border: 0;
}
.skip-link:focus {
	position: absolute; left: 1rem; top: 1rem; z-index: 1000;
	width: auto; height: auto; clip: auto;
	background: var(--c-accent); color: var(--c-fg);
	padding: .5rem 1rem; border-radius: var(--r-sm);
}

.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 clamp(1rem, 3vw, 2rem);
}

/* ---------- Buttons ---------- */
.btn {
	--btn-py: .75rem;
	--btn-px: 1.25rem;
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: var(--btn-py) var(--btn-px);
	border-radius: 999px;
	font-weight: 600;
	text-decoration: none;
	transition: transform .15s ease, background-color .15s ease, color .15s ease, box-shadow .15s ease;
	border: 2px solid transparent;
	white-space: nowrap;
	line-height: 1;
}
.btn-lg { --btn-py: 1rem; --btn-px: 1.75rem; font-size: 1.05rem; }
.btn:hover { transform: translateY(-1px); }
.btn-primary {
	background: var(--c-accent-2);
	color: #fff;
	font-weight: 700;
	box-shadow: 0 8px 24px rgba(46,204,113,.35);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
	background: var(--c-accent);
	color: #0B1D26;
}
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.16); }
.btn-ghost-light { background: rgba(255,255,255,.1); color: #fff; }
.btn-outline-light { border-color: rgba(255,255,255,.4); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-outline-dark { border-color: var(--c-fg); color: var(--c-fg); }
.btn-outline-dark:hover { background: var(--c-fg); color: #fff; }
.btn-block { width: 100%; justify-content: center; }
.btn-phone {
	background: rgba(46,204,113,.18);
	border: 1.5px solid var(--c-accent);
	color: #fff;
}
.btn-phone:hover {
	background: var(--c-accent);
	border-color: var(--c-accent);
	color: var(--c-fg);
}
.btn-phone svg {
	width: 22px;
	height: 22px;
	stroke: currentColor;
	fill: none;
	flex-shrink: 0;
	display: inline-block;
}
.btn-phone-short { display: none; }

/* ---------- Header ---------- */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(13,15,18,.92);
	backdrop-filter: saturate(1.4) blur(10px);
	color: #fff;
	border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding-top: .9rem;
	padding-bottom: .9rem;
}
.brand {
	display: inline-flex; align-items: center; gap: .65rem;
	color: #fff; text-decoration: none;
}
/* Brand wordmark: TAXICENTRALE wit + MAASSLUIS groen, identiek aan huidige site */
.brand-text { display: flex; flex-direction: column; line-height: 1; font-weight: 700; letter-spacing: .02em; }
.brand-text strong { font-weight: 700; font-size: 1.05rem; color: #fff; }
.brand-text em { font-style: normal; color: var(--c-accent); font-size: 1.05rem; font-weight: 700; }

.site-nav { margin-left: auto; }
.nav-list { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.5rem; }
.nav-list a {
	color: rgba(255,255,255,.85);
	text-decoration: none;
	font-weight: 500;
	font-size: .95rem;
	padding: .5rem 0;
	position: relative;
}
.nav-list a:hover { color: #fff; }
.nav-list a:hover::after {
	content: ''; position: absolute; left: 0; right: 0; bottom: 0;
	height: 2px; background: var(--c-accent);
}

.header-cta { display: flex; gap: .5rem; align-items: center; }

.nav-toggle {
	display: none;
	background: none; border: 0; padding: .5rem;
	flex-direction: column; gap: 4px;
	margin-left: auto;
}
.nav-toggle span {
	display: block; width: 26px; height: 2px;
	background: #fff; border-radius: 2px;
	transition: transform .2s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav { display: none; }
.mobile-nav-list { list-style: none; margin: 0; padding: 1rem 1.5rem; display: flex; flex-direction: column; gap: .25rem; }
.mobile-nav-list a { display: block; padding: .75rem 0; color: #fff; text-decoration: none; font-size: 1.1rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-cta { padding: 1rem 1.5rem 1.5rem; display: flex; flex-direction: column; gap: .5rem; }

/* ---------- Hero ---------- */
.hero {
	position: relative;
	color: #fff;
	background: var(--c-dark);
	overflow: hidden;
	isolation: isolate;
}
.hero-bg {
	position: absolute; inset: 0; z-index: -1;
	background:
		radial-gradient(ellipse at 80% 20%, rgba(46,204,113,.22), transparent 50%),
		radial-gradient(ellipse at 10% 80%, rgba(46,204,113,.10), transparent 50%),
		linear-gradient(180deg, var(--c-dark) 0%, var(--c-dark-2) 100%);
}
.hero-bg::after {
	content: ''; position: absolute; inset: 0;
	background-image:
		linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
		linear-gradient(180deg, rgba(255,255,255,.03) 1px, transparent 1px);
	background-size: 40px 40px;
	mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero-inner {
	/* Alleen verticale padding — horizontaal komt van .container.
	   3-value shorthand zou .container's left/right padding overschrijven. */
	padding-top: clamp(4rem, 10vw, 7rem);
	padding-bottom: clamp(4rem, 10vw, 7rem);
	display: grid;
	gap: clamp(2rem, 5vw, 3.5rem);
	grid-template-columns: 1fr;
	align-items: start;
}
@media (min-width: 980px) {
	.hero-inner { grid-template-columns: 1.1fr 1fr; }
	/* Widget kolom een fractie verlagen zodat hij optisch op gelijke hoogte
	   met de headline staat (eyebrow telt visueel mee aan de linkerkant). */
	.hero-aside { padding-top: clamp(.5rem, 2vw, 2rem); }
}
.hero-content { max-width: 760px; }
.hero-aside { min-width: 0; max-width: 100%; overflow: hidden; }
.hero-aside:empty { display: none; }
.hero-aside > * { max-width: 100%; }
.eyebrow {
	display: inline-block;
	font-size: .8rem; font-weight: 600;
	letter-spacing: .14em; text-transform: uppercase;
	color: var(--c-accent);
	margin-bottom: 1rem;
	padding: .35rem .85rem;
	background: rgba(46,204,113,.12);
	border-radius: 999px;
}
.eyebrow-dark { color: var(--c-accent-2); background: rgba(39,174,96,.1); }
.eyebrow-light { color: var(--c-fg); background: rgba(0,0,0,.06); }
.accent { color: var(--c-accent); }
.hero h1 { color: #fff; margin-bottom: 1.2rem; }
.hero-sub { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: rgba(255,255,255,.82); max-width: 56ch; margin-bottom: 2rem; }
.hero-cta { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-badges {
	list-style: none; margin: 0; padding: 0;
	display: flex; flex-wrap: wrap; gap: 1.25rem 2rem;
	color: rgba(255,255,255,.78); font-size: .95rem;
}
.hero-badges li { display: inline-flex; align-items: center; gap: .5rem; }
.hero-badges svg { width: 18px; height: 18px; color: var(--c-accent); }

/* ---------- USPs ---------- */
.usps { padding: clamp(3rem, 6vw, 5rem) 0; background: var(--c-soft); }
.usps-grid {
	display: grid; gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.usp {
	background: #fff;
	padding: 1.75rem 1.5rem;
	border-radius: var(--r-md);
	box-shadow: var(--shadow-sm);
	transition: transform .2s, box-shadow .2s;
}
.usp:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.usp-icon {
	width: 48px; height: 48px;
	display: grid; place-items: center;
	background: rgba(46,204,113,.15); color: var(--c-accent-2);
	border-radius: 12px;
	margin-bottom: 1rem;
}
.usp-icon svg { width: 26px; height: 26px; }
.usp h3 { margin-bottom: .4rem; font-size: 1.1rem; }
.usp p { margin: 0; color: var(--c-muted); font-size: .95rem; }

/* ---------- Section headers ---------- */
.section-header {
	max-width: 720px;
	margin: 0 auto clamp(2rem, 4vw, 3rem);
	text-align: center;
}
.section-header p { color: var(--c-muted); font-size: 1.1rem; }
.section-header-light { color: #fff; }
.section-header-light p { color: rgba(255,255,255,.75); }

/* ---------- Booking section ---------- */
.booking {
	padding: clamp(3.5rem, 7vw, 6rem) 0;
	background: linear-gradient(180deg, #fff 0%, var(--c-soft) 100%);
}
.booking-inner {
	display: grid;
	gap: clamp(2rem, 5vw, 4rem);
	grid-template-columns: 1fr;
}
@media (min-width: 900px) {
	.booking-inner { grid-template-columns: 1fr 1.1fr; align-items: start; }
}
.booking-intro h2 { margin-bottom: 1rem; }
.booking-intro a { color: var(--c-accent-2); font-weight: 600; }
.booking-features {
	list-style: none; padding: 0; margin: 1.5rem 0 0;
	display: grid; gap: .75rem;
}
.booking-features li {
	padding-left: 1.75rem;
	position: relative;
	color: var(--c-muted);
}
.booking-features li::before {
	content: ''; position: absolute; left: 0; top: .35rem;
	width: 18px; height: 18px;
	background: var(--c-accent);
	border-radius: 50%;
	box-shadow: inset 0 0 0 2px #fff, 0 0 0 1px var(--c-accent);
}

/* ---------- Form ---------- */
/* TaxiFlow widget-zones */
.booking-widget { min-width: 0; max-width: 100%; overflow: hidden; }
.booking-widget > * { max-width: 100%; }
.widget-placeholder {
	padding: 1.5rem;
	background: rgba(46,204,113,.08);
	border: 2px dashed var(--c-accent);
	border-radius: var(--r-md);
	color: var(--c-muted-2);
	font-size: .9rem;
}
.widget-placeholder strong { color: var(--c-accent-2); display: block; margin-bottom: .25rem; }
.widget-placeholder-card {
	min-height: 320px;
	display: flex; flex-direction: column; justify-content: center;
	background: #fff;
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-lg);
	border: 2px dashed var(--c-accent);
}
.hero-aside .widget-placeholder {
	background: rgba(46,204,113,.06);
	color: rgba(255,255,255,.85);
}
.hero-aside .widget-placeholder strong { color: var(--c-accent); }

.booking-form {
	background: #fff;
	padding: clamp(1.5rem, 3vw, 2.25rem);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--c-line);
}
.form-row {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
}
@media (min-width: 600px) {
	.form-row { grid-template-columns: repeat(2, 1fr); }
	.form-row:has(select) { grid-template-columns: 1fr 1fr 1fr; }
}
.form-field { display: block; margin-bottom: 1rem; }
.form-label { display: block; font-size: .85rem; font-weight: 600; color: var(--c-fg); margin-bottom: .35rem; }
.form-optional { color: var(--c-muted); font-weight: 400; }
.form-field input,
.form-field select,
.form-field textarea {
	width: 100%;
	padding: .75rem .9rem;
	border: 1.5px solid var(--c-line);
	border-radius: var(--r-md);
	font: inherit;
	color: var(--c-fg);
	background: #fff;
	transition: border-color .15s, box-shadow .15s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	outline: 0;
	border-color: var(--c-accent);
	box-shadow: 0 0 0 4px rgba(46,204,113,.18);
}
.form-field textarea { resize: vertical; min-height: 88px; }
.hp-field { position: absolute; left: -9999px; }
.form-submit { margin-top: 1.5rem; }
.form-disclaimer { color: var(--c-muted); font-size: .82rem; text-align: center; margin: .85rem 0 0; }
.form-response {
	margin-top: 1rem;
	padding: 1rem 1.25rem;
	border-radius: var(--r-md);
	font-size: .95rem;
}
.form-response.is-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.form-response.is-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

.btn-spinner {
	width: 18px; height: 18px;
	border: 2px solid currentColor; border-top-color: transparent;
	border-radius: 50%;
	animation: tcm-spin .7s linear infinite;
}
@keyframes tcm-spin { to { transform: rotate(360deg); } }

/* ---------- Services ---------- */
.services { padding: clamp(4rem, 8vw, 6rem) 0; }
.services-grid {
	display: grid; gap: 1.25rem;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.service-card {
	background: #fff;
	border: 1px solid var(--c-line);
	border-radius: var(--r-lg);
	padding: 2rem;
	transition: transform .2s, border-color .2s, box-shadow .2s;
	position: relative;
	overflow: hidden;
	display: block;
	text-decoration: none;
	color: var(--c-fg);
}
.service-link {
	display: inline-block;
	margin-top: .75rem;
	color: var(--c-accent-2);
	font-weight: 600;
	font-size: .95rem;
}
.service-card::before {
	content: ''; position: absolute;
	top: 0; left: 0; right: 0; height: 3px;
	background: var(--c-accent);
	transform: scaleX(0); transform-origin: left;
	transition: transform .25s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
	width: 56px; height: 56px;
	display: grid; place-items: center;
	background: var(--c-dark); color: var(--c-accent);
	border-radius: 14px;
	margin-bottom: 1.25rem;
}
.service-icon svg { width: 30px; height: 30px; }
.service-card h3 { margin-bottom: .5rem; font-size: 1.2rem; }
.service-card p { color: var(--c-muted); margin: 0; }

/* ---------- Airport tarieven ---------- */
.airport {
	padding: clamp(4rem, 8vw, 6rem) 0;
	background: var(--c-dark);
	color: #fff;
}
.airport-table-wrap {
	max-width: 760px; margin: 0 auto;
	background: var(--c-dark-2);
	border-radius: var(--r-lg);
	overflow: hidden;
	border: 1px solid rgba(255,255,255,.08);
}
.airport-table { width: 100%; border-collapse: collapse; }
.airport-table th,
.airport-table td {
	padding: 1.1rem 1.5rem;
	text-align: left;
	border-bottom: 1px solid rgba(255,255,255,.07);
}
.airport-table th {
	background: rgba(255,255,255,.04);
	font-weight: 600; font-size: .85rem;
	letter-spacing: .04em; text-transform: uppercase;
	color: rgba(255,255,255,.7);
}
.airport-table tbody tr:last-child td { border-bottom: 0; }
.airport-table tbody tr:hover { background: rgba(46,204,113,.04); }
.airport-table td a {
	color: #fff;
	text-decoration: none;
	font-weight: 500;
}
.airport-table td a:hover { color: var(--c-accent); }
.airport-table td:nth-child(2),
.airport-table td:nth-child(3) {
	font-weight: 700; color: var(--c-accent); font-size: 1.05rem;
}
.airport-note {
	text-align: center; color: rgba(255,255,255,.6);
	margin: 1.5rem 0 0; font-size: .9rem;
}
.airport-note a { color: var(--c-accent); }

/* ---------- Werkgebied ---------- */
.area { padding: clamp(4rem, 8vw, 6rem) 0; background: var(--c-soft); }
.area-inner {
	display: grid; gap: clamp(2rem, 5vw, 4rem);
	grid-template-columns: 1fr;
	align-items: center;
}
@media (min-width: 900px) { .area-inner { grid-template-columns: 1fr 1fr; } }
.area-text h2 { margin-bottom: 1rem; }
.area-list {
	list-style: none; padding: 0;
	display: grid; gap: .5rem;
	grid-template-columns: repeat(2, 1fr);
	margin: 1.5rem 0 0;
}
.area-list li {
	background: #fff;
	border-radius: var(--r-sm);
	border: 1px solid var(--c-line);
	font-weight: 500;
	font-size: .95rem;
	position: relative;
	transition: border-color .15s, transform .15s;
}
.area-list li:hover { border-color: var(--c-accent); transform: translateX(2px); }
.area-list a {
	display: block;
	padding: .6rem 1rem .6rem 2rem;
	color: var(--c-fg);
	text-decoration: none;
}
.area-list li::before {
	content: ''; position: absolute; left: .75rem; top: 50%;
	width: 8px; height: 8px;
	background: var(--c-accent);
	border-radius: 50%;
	transform: translateY(-50%);
	pointer-events: none;
}
.area-map {
	position: relative;
	aspect-ratio: 1 / 1; max-width: 420px; width: 100%;
	margin: 0 auto;
	display: grid; place-items: center;
	overflow: hidden; /* clip de pulserende ring zodat hij de body niet doet overflowen */
}
.map-marker {
	position: relative; z-index: 2;
	display: inline-flex; flex-direction: column; align-items: center;
	gap: .5rem;
	color: var(--c-dark);
	font-weight: 700;
}
.map-marker svg { width: 56px; height: 56px; color: var(--c-accent-2); }
.map-ring {
	position: absolute; inset: 25%;
	border: 2px dashed var(--c-accent);
	border-radius: 50%;
	opacity: .5;
	animation: tcm-pulse 4s ease-out infinite;
}
.map-ring-2 { inset: 5%; animation-delay: 2s; }
@keyframes tcm-pulse {
	0%   { transform: scale(.6); opacity: .8; }
	100% { transform: scale(1.2); opacity: 0; }
}

/* ---------- Trust ---------- */
.trust { padding: clamp(4rem, 8vw, 6rem) 0; }
.trust-grid {
	display: grid; gap: 1.5rem;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	text-align: center;
}
.trust-item { padding: 1.5rem; }
.trust-num {
	font-size: clamp(2.5rem, 4vw, 3.5rem);
	font-weight: 800;
	color: var(--c-accent-2);
	letter-spacing: -.03em;
	line-height: 1;
	margin-bottom: .5rem;
}
.trust-item h3 { margin-bottom: .4rem; }
.trust-item p { color: var(--c-muted); margin: 0; }

/* ---------- Blog sectie ---------- */
.blog-section { padding: clamp(4rem, 8vw, 6rem) 0; background: var(--c-soft); }
.blog-grid {
	display: grid; gap: 1.5rem;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.blog-grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.blog-card {
	background: #fff;
	border-radius: var(--r-lg);
	border: 1px solid var(--c-line);
	padding: 1.75rem;
	transition: transform .2s, box-shadow .2s, border-color .2s;
	display: flex;
	flex-direction: column;
}
.blog-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
	border-color: var(--c-accent);
}
.blog-card-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
	font-size: .82rem;
}
.blog-category {
	color: var(--c-accent-2);
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	background: rgba(46,204,113,.1);
	padding: .25rem .65rem;
	border-radius: 999px;
}
.blog-date { color: var(--c-muted); }
.blog-card h3 {
	font-size: 1.15rem;
	margin-bottom: .65rem;
	line-height: 1.35;
}
.blog-card h3 a {
	color: var(--c-fg);
	text-decoration: none;
	transition: color .15s;
}
.blog-card h3 a:hover { color: var(--c-accent-2); }
.blog-card p {
	color: var(--c-muted);
	margin: 0 0 1rem;
	flex-grow: 1;
}
.blog-card-link {
	color: var(--c-accent-2);
	font-weight: 600;
	font-size: .9rem;
	text-decoration: none;
	margin-top: auto;
}
.blog-section-cta {
	text-align: center;
	margin: 2.5rem 0 0;
}

/* Eyebrow als link (op single posts) */
.eyebrow-link { text-decoration: none; transition: opacity .15s; }
.eyebrow-link:hover { opacity: .8; }

/* Single post related */
.post-related { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--c-line); }
.post-related h2 { margin-bottom: 1.25rem; }

/* Pagination */
.pagination-wrap { margin-top: 2.5rem; }
.pagination-wrap .nav-links {
	display: flex; flex-wrap: wrap; gap: .5rem;
	justify-content: center;
}
.pagination-wrap .page-numbers {
	padding: .5rem .85rem;
	border-radius: var(--r-sm);
	border: 1px solid var(--c-line);
	text-decoration: none;
	color: var(--c-fg);
	font-weight: 500;
}
.pagination-wrap .page-numbers.current {
	background: var(--c-accent);
	color: var(--c-accent-fg);
	border-color: var(--c-accent);
}
.pagination-wrap .page-numbers:hover { border-color: var(--c-accent); }

/* ---------- CTA strip ---------- */
.cta-strip {
	padding: clamp(3rem, 6vw, 5rem) 0;
	background: var(--c-accent);
	color: var(--c-fg);
}
.cta-strip-inner {
	display: grid; gap: 1.5rem;
	grid-template-columns: 1fr;
	align-items: center;
}
@media (min-width: 800px) {
	.cta-strip-inner { grid-template-columns: 1fr auto; }
}
.cta-strip h2 { margin-bottom: .25rem; }
.cta-strip p { margin: 0; font-size: 1.1rem; opacity: .85; }
.cta-strip-buttons { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ---------- Sub-page hero + content ---------- */
.page-hero {
	position: relative;
	color: #fff;
	background: var(--c-dark);
	overflow: hidden;
	isolation: isolate;
	padding: clamp(3rem, 7vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
	text-align: left;
}
.page-hero .hero-bg { z-index: -1; }
.page-hero h1 { color: #fff; margin-bottom: 1rem; }
.page-hero-sub { color: rgba(255,255,255,.78); font-size: 1.1rem; max-width: 56ch; margin: 0; }

.page-content .entry-content { color: var(--c-fg); font-size: 1.05rem; line-height: 1.7; }
.page-content .entry-content h2 { margin-top: 2rem; }
.page-content .entry-content a { color: var(--c-accent-2); }

/* Sub-page layout: content + sticky widget zijbalk */
.page-body-section { padding: clamp(3rem, 5vw, 4rem) 0; }
.page-with-sidebar {
	display: grid;
	gap: clamp(2rem, 4vw, 3rem);
	grid-template-columns: 1fr;
}
@media (min-width: 980px) {
	.page-with-sidebar { grid-template-columns: minmax(0, 1fr) minmax(300px, 360px); }
}
.page-body { min-width: 0; }
.page-body .entry-content { color: var(--c-fg); font-size: 1.05rem; line-height: 1.75; }
.page-body .entry-content h2 {
	margin-top: 2.5rem; margin-bottom: 1rem;
	font-size: clamp(1.4rem, 2.5vw, 1.75rem);
}
.page-body .entry-content h2:first-child { margin-top: 0; }
.page-body .entry-content h3 { margin-top: 2rem; margin-bottom: .75rem; font-size: 1.2rem; }
.page-body .entry-content ul { padding-left: 1.25rem; }
.page-body .entry-content ul li { margin-bottom: .4rem; }
.page-body .entry-content a:not(.btn) { color: var(--c-accent-2); font-weight: 500; }
.page-body .entry-content a.btn-primary { color: #fff; }
.page-body .entry-content a.btn-primary:hover,
.page-body .entry-content a.btn-primary:focus { color: #0B1D26; }
.page-body .entry-content a.btn-outline-dark { color: var(--c-fg); }
.page-body .entry-content a.btn-outline-dark:hover { color: #fff; }
.page-body .entry-content a.btn-outline-light { color: #fff; }
.page-body .entry-content table {
	width: 100%; border-collapse: collapse;
	margin: 1.5rem 0;
	border-radius: var(--r-md);
	overflow: hidden;
	background: var(--c-soft);
}
.page-body .entry-content th,
.page-body .entry-content td {
	padding: .85rem 1rem;
	text-align: left;
	border-bottom: 1px solid var(--c-line);
}
.page-body .entry-content th {
	background: var(--c-fg); color: #fff;
	font-weight: 600; font-size: .85rem;
	letter-spacing: .04em; text-transform: uppercase;
}
.page-body .entry-content tr:last-child td { border-bottom: 0; }
.page-body .entry-content .btn { text-decoration: none; }
.page-body .entry-content blockquote {
	margin: 1.5rem 0;
	padding: 1.25rem 1.5rem;
	background: var(--c-soft);
	border-left: 4px solid var(--c-accent);
	border-radius: var(--r-sm);
	color: var(--c-muted-2);
}

.page-sidebar { min-width: 0; max-width: 100%; overflow: hidden; }
.page-sidebar > * { max-width: 100%; }
@media (min-width: 980px) {
	.page-sidebar-inner {
		position: sticky;
		top: calc(80px + 1rem);
	}
}
.page-sidebar .widget-placeholder { font-size: .85rem; }

/* ---------- Contactformulier sectie ---------- */
.contact-form-section { padding: clamp(3rem, 6vw, 5rem) 0; background: #fff; }
.contact-form-wrap { max-width: 720px; margin: 0 auto; }
.contact-form {
	background: var(--c-soft);
	padding: clamp(1.5rem, 3vw, 2.5rem);
	border-radius: var(--r-lg);
	border: 1px solid var(--c-line);
}

/* ---------- Contact-pagina ---------- */
.contact-section { padding: clamp(3rem, 6vw, 5rem) 0; background: var(--c-soft); }
.contact-grid {
	display: grid; gap: 1.25rem;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.contact-card {
	display: block;
	background: #fff;
	padding: 2rem 1.75rem;
	border-radius: var(--r-lg);
	text-decoration: none;
	color: var(--c-fg);
	border: 1px solid var(--c-line);
	transition: transform .2s, box-shadow .2s, border-color .2s;
	text-align: center;
}
.contact-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: var(--c-accent);
}
.contact-icon {
	width: 56px; height: 56px;
	display: grid; place-items: center;
	background: var(--c-dark); color: var(--c-accent);
	border-radius: 14px;
	margin: 0 auto 1.25rem;
}
.contact-icon svg { width: 28px; height: 28px; }
.contact-card h2 { font-size: 1.1rem; margin-bottom: .25rem; }
.contact-value { font-size: 1.25rem; font-weight: 700; color: var(--c-fg); margin: 0 0 .25rem; }
.contact-meta { font-size: .9rem; color: var(--c-muted); margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--c-dark); color: rgba(255,255,255,.75); }
.footer-grid {
	display: grid; gap: 2rem;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	/* Horizontaal padding komt van .container */
	padding-top: clamp(3rem, 5vw, 4rem);
	padding-bottom: clamp(2rem, 4vw, 3rem);
}
.brand-footer .brand-text strong { color: #fff; }
.footer-tagline { color: rgba(255,255,255,.6); margin: 1rem 0 0; font-size: .95rem; }
.footer-col h3 {
	color: #fff;
	font-size: .9rem; letter-spacing: .1em; text-transform: uppercase;
	margin-bottom: 1rem;
}
.footer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; font-size: .95rem; }
.footer-list a { color: rgba(255,255,255,.75); text-decoration: none; transition: color .15s; }
.footer-list a:hover { color: var(--c-accent); }

.footer-list-icons a {
	display: inline-flex;
	align-items: center;
	gap: .6rem;
}
.footer-list-icons svg {
	flex: 0 0 18px;
	color: var(--c-accent);
}
.footer-list-icons a:hover svg { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.5rem 0; font-size: .85rem; }
.footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.5); }
.footer-credit a { color: var(--c-accent); text-decoration: none; font-weight: 600; }

/* ---------- Mobile ---------- */
@media (max-width: 880px) {
	.site-nav { display: none; }
	.header-cta .btn-phone { display: none; } /* bel-knop weg op mobiel — bellen kan via hamburger-menu en hero CTA */
	.header-cta .btn { padding: .65rem 1rem; }
	.nav-toggle { display: flex; }
	.mobile-nav[aria-hidden="false"], .mobile-nav:not([hidden]) {
		display: block;
		border-top: 1px solid rgba(255,255,255,.08);
	}
}
@media (max-width: 600px) {
	.hero-cta { flex-direction: column; align-items: stretch; }
	.hero-cta .btn { justify-content: center; }
	.hero-badges { flex-direction: column; gap: .65rem; }
	.area-list { grid-template-columns: 1fr; }
	.cta-strip-buttons { width: 100%; }
	.cta-strip-buttons .btn { flex: 1; justify-content: center; }

	/* Knoppen in entry-content stacken netjes full-width op mobiel */
	.entry-content .btn {
		display: flex;
		width: 100%;
		justify-content: center;
	}
	.entry-content .btn + .btn { margin-top: .6rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
