/* ============================================================
   WD Transport — Component styles
   Ported from the approved previews (nav, ticker, footer here;
   page sections added per phase). Uses tokens from style.css.
   ============================================================ */

/* Offset the fixed nav (72px). Admin bar handled below. */
body { padding-top: 72px; }
.admin-bar .wdt-nav { top: 32px; }

/* Hide GeneratePress's now-empty default footer wrapper (we render our own). */
.site-footer { display: none; }

/* ─────────────────────────  NAV  ───────────────────────── */
.wdt-nav {
	position: fixed;
	top: 0; left: 0; right: 0;
	height: 72px;
	background: var(--white);
	border-bottom: 1px solid #f0f0f0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 48px;
	z-index: 1000;
	transition: box-shadow 0.3s, border-color 0.3s;
}
.wdt-nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.08); border-bottom-color: transparent; }

.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo-link { display: inline-flex; align-items: center; line-height: 0; }
.nav-logo { height: 56px; width: auto; }
.nav-badge-fallback {
	background: var(--green); color: #fff;
	font-size: 14px; font-weight: 900; padding: 6px 11px;
	border-radius: 6px; letter-spacing: 0.05em;
}
.nav-name { color: var(--near-black); font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }

.nav-right { display: flex; align-items: center; gap: 32px; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
	color: var(--grey-mid); text-decoration: none;
	font-size: 14px; font-weight: 600; letter-spacing: 0.1em;
	text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover,
.nav-links .current-menu-item > a,
.nav-links a.active { color: var(--green); }

.nav-cta {
	background: var(--green) !important; color: #fff !important;
	padding: 9px 20px; border-radius: 100px;
	font-size: 14px; font-weight: 700; letter-spacing: 0.1em;
	text-transform: uppercase; text-decoration: none !important;
	display: inline-block; cursor: pointer;
	transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: #256325 !important; transform: translateY(-1px); }

.nav-social { display: flex; align-items: center; gap: 14px; }
.nav-social a { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; color: var(--grey-mid); transition: color 0.2s; }
.nav-social a:hover { color: var(--green); }
.nav-social svg { width: 17px; height: 17px; }

/* Hamburger (hidden on desktop) */
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; border: 0; cursor: pointer; padding: 9px; border-radius: 8px; transition: background 0.2s; }
/* Force transparent over GeneratePress's default button styling (which was rendering a black box). */
.wdt-nav .nav-toggle,
.wdt-nav .nav-toggle:focus,
.wdt-nav .nav-toggle:active { background: transparent; box-shadow: none; outline: none; }
.wdt-nav .nav-toggle:hover { background: var(--grey-light); }
.nav-toggle span { display: block; height: 2.5px; width: 100%; background: var(--green); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ────────────────────  RED STRIPE / TICKER  ──────────────────── */
.red-stripe { background: var(--red); height: 52px; overflow: hidden; display: flex; align-items: center; }
.ticker-track { display: flex; white-space: nowrap; animation: ticker 32s linear infinite; }
.ticker-track span { color: #fff; font-size: 14px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; padding: 0 48px; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* ─────────────────────────  FOOTER  ───────────────────────── */
.wdt-footer { background: var(--white); padding: 64px 48px 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 64px; padding-bottom: 48px; max-width: none; margin: 0; }
.footer-logo { height: 52px; width: auto; margin-bottom: 14px; display: block; }
.footer-tagline { color: var(--grey-mid); font-size: 15px; line-height: 1.6; margin-bottom: 6px; }
.footer-since { color: rgba(0,0,0,0.35); font-size: 14px; }
.footer-heading { color: var(--near-black); font-size: 14px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 0; padding: 0; }
.footer-links a { color: var(--grey-mid); text-decoration: none; font-size: 15px; transition: color 0.2s; }
.footer-links a:hover { color: var(--green); }
.footer-contact-item { display: flex; flex-direction: column; gap: 2px; margin-bottom: 14px; }
.footer-contact-location { font-size: 14px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); }
.footer-contact-detail, .footer-contact-detail a { font-size: 15px; color: var(--grey-mid); text-decoration: none; }
.footer-contact-detail a:hover { color: var(--green); }
.footer-social { display: flex; gap: 14px; margin-top: 16px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: var(--grey-light); color: var(--grey-mid); transition: background 0.2s, color 0.2s; }
.footer-social a:hover { background: var(--green); color: #fff; }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom { background: var(--grey-light); margin: 0 -48px; padding: 18px 48px; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom-text { font-size: 14px; color: rgba(0,0,0,0.35); }
.footer-certs { display: flex; gap: 12px; align-items: center; }
.footer-cert-badge { font-size: 14px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey-mid); border: 1px solid #e5e7eb; padding: 4px 8px; border-radius: 4px; }

/* ─────────────────────────  MOBILE  ───────────────────────── */
@media (max-width: 900px) {
	.wdt-nav { padding: 0 20px; }
	.nav-toggle { display: flex; }
	.nav-right {
		position: fixed; top: 72px; left: 0; right: 0;
		background: var(--white); flex-direction: column; align-items: flex-start;
		gap: 20px; padding: 24px 20px 28px; border-bottom: 1px solid #f0f0f0;
		box-shadow: 0 12px 24px rgba(0,0,0,0.08);
		display: none;
	}
	.nav-right.open { display: flex; }
	.nav-links { flex-direction: column; align-items: flex-start; gap: 18px; width: 100%; }
	.nav-cta { width: 100%; text-align: center; }
}

/* WP admin bar is 46px tall at <=782px (32px on desktop), and becomes non-fixed
   (scrolls away) at <=600px. Re-offset the fixed nav + open menu so the admin bar
   doesn't clip the logo or leave a gap above the nav. Logged-in view only —
   real visitors have no admin bar and the nav already sits flush at top:0. */
@media screen and (max-width: 782px) {
	.admin-bar .wdt-nav { top: 46px; }
	.admin-bar .nav-right { top: 118px; }
}
@media screen and (max-width: 600px) {
	.admin-bar .wdt-nav { top: 0; }
	.admin-bar .nav-right { top: 72px; }
}

@media (max-width: 768px) {
	.ticker-track span { font-size: 12px; padding: 0 28px; letter-spacing: 0.1em; }
	.wdt-footer { padding: 48px 20px 0; }
	.footer-grid { grid-template-columns: 1fr; gap: 36px; }
	.footer-bottom { flex-direction: column; gap: 12px; text-align: center; margin: 0 -20px; padding: 18px 20px; }
}

/* ============================================================
   PAGE SECTIONS (ported from the approved previews)
   Full-bleed sections: the front page uses GeneratePress full-width
   content (no container, no content padding — set per page).
   ============================================================ */

/* Full-bleed design pages: every top-level section spans edge-to-edge.
   GeneratePress is a contained theme (~1200px .grid-container) and its own
   alignfull rule only pulls out 40px and out-specifies us, so we force a true
   viewport breakout with !important. Each section carries its own inner
   max-width/padding. Scoped to .wdt-page (design pages only, not Terms/blog). */
body.wdt-page { overflow-x: hidden; }
.wdt-page .entry-content > * {
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	max-width: 100vw !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}
.wdt-page .entry-content { margin-top: 0; }
.wdt-page .site-content .content-area { padding: 0; }
.wdt-page .entry-content { padding: 0; }
/* GeneratePress pads every group inner-container (40px desktop / 30px mobile),
   which double-inset our group-based sections (e.g. .apply-section) vs plain
   HTML-block sections. Our sections own their padding, so neutralise GP's. */
.wdt-page .entry-content .wp-block-group__inner-container { padding: 0; }

/* Legal pages (Terms & Conditions, Privacy) — no sidebar; content sits on the same
   1560px track as every other page (GP container width) so it lines up site-wide. */
.wdt-legal .content-area { max-width: 1560px; margin-left: auto; margin-right: auto; }
.wdt-legal .entry-content h2 { font-size: 22px; line-height: 1.3; margin: 38px 0 10px; }
.wdt-legal .entry-content p,
.wdt-legal .entry-content li { font-size: 15px; line-height: 1.7; color: var(--near-black); }
.wdt-legal .entry-content ol { margin: 0 0 18px; padding-left: 26px; }
.wdt-legal .entry-content ol li { margin-bottom: 6px; }
@media (max-width: 768px) {
	.wdt-legal .content-area { padding: 0 16px; }
}

/* Scroll-reveal + count-up animation primitives */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right { opacity: 0; transform: translateX(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translate(0); }
@media (prefers-reduced-motion: reduce) {
	.reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; transition: none; }
}

/* Section intro (uppercase label + red rule + heading), centred by default */
.section-label { font-size: 14px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(0,0,0,0.3); margin-bottom: 10px; }
/* Glow pulse on the About (home) section label — the text softly lights up in brand red */
.about-content .section-label { animation: labelGlow 3s ease-in-out infinite; }
@keyframes labelGlow {
	0%, 100% { color: rgba(0,0,0,0.3); text-shadow: none; }
	50% { color: rgba(204,34,34,0.9); text-shadow: 0 0 10px rgba(204,34,34,0.5), 0 0 22px rgba(204,34,34,0.3); }
}
.red-rule { width: 40px; height: 3px; background: var(--red); margin-bottom: 20px; }
.section-heading { font-size: clamp(36px, 4vw, 52px); font-weight: 900; color: var(--near-black); letter-spacing: -0.02em; margin-bottom: 8px; }
.section-sub { font-size: 16px; color: var(--grey-mid); }

/* ─── Cover-block base layout (self-hosted) ───
   The hero + contact bands use .wp-block-cover markup inside core/html blocks
   (to avoid Gutenberg validation warnings). WordPress only ships the core cover
   stylesheet when a real cover BLOCK is present, so we re-declare the essential
   positioning here: image sits absolutely behind, inner content layers on top. */
.wp-block-cover {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	overflow: hidden;
	background-position: center center;
	min-height: 430px;
	padding: 1em;
}
.wp-block-cover.alignfull { max-width: none; }
.wp-block-cover .wp-block-cover__image-background,
.wp-block-cover .wp-block-cover__background {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
}
.wp-block-cover .wp-block-cover__image-background { object-fit: cover; z-index: 0; }
.wp-block-cover .wp-block-cover__background { z-index: 1; }
.wp-block-cover .wp-block-cover__inner-container { position: relative; z-index: 2; width: 100%; }

/* ─── HERO (cover markup) ─── */
.wdt-hero.wp-block-cover { min-height: calc(100vh - 72px - 52px); align-items: center; justify-content: flex-start; }
.wdt-hero .wp-block-cover__inner-container { width: 100%; max-width: none; padding: 0 48px; text-align: left; animation: fadeInLeft 0.9s ease 0.3s both; }
.wdt-hero .wp-block-cover__inner-container > *:not(.hero-logo-placeholder) { max-width: 680px; margin-left: 0; margin-right: 0; }
.hero-label { font-size: 14px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; text-shadow: 0 1px 10px rgba(0,0,0,0.4); }
.hero-label::before { content: ''; width: 32px; height: 2px; background: var(--red); flex-shrink: 0; }
.wdt-hero .hero-h1 { font-size: clamp(44px, 5.5vw, 68px); font-weight: 900; color: #fff; line-height: 1.0; letter-spacing: -0.03em; margin: 0 0 16px; text-shadow: 0 2px 20px rgba(0,0,0,0.35); }
.wdt-hero .hero-h1 .green { color: #5db85d; }
.wdt-hero .hero-sub { font-size: 16px; color: rgba(255,255,255,0.9); line-height: 1.65; margin-bottom: 32px; max-width: 440px; text-shadow: 0 1px 12px rgba(0,0,0,0.4); }
/* Core inserts a <mark> for inline text colour, which browsers highlight
   yellow by default — keep our accent colour but drop the highlight. */
.wdt-page .entry-content mark, .hero-h1 mark, .page-hero-h1 mark, .split-heading mark { background-color: transparent; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-trust-item { font-size: 14px; color: rgba(255,255,255,0.9); display: flex; align-items: center; gap: 6px; text-shadow: 0 1px 10px rgba(0,0,0,0.4); }
.hero-trust-item::before { content: '✓'; color: #5db85d; font-weight: 900; font-size: 14px; }
.hero-logo-placeholder { position: absolute; top: 88px; right: 55px; width: 116px; height: 116px; border-radius: 50%; background: rgba(255,255,255,0.92); border: 2px dashed rgba(45,122,45,0.5); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; box-shadow: 0 12px 32px rgba(0,0,0,0.25); animation: fadeInUp 1s ease 1s both; z-index: 3; }
.hero-logo-placeholder-num { font-size: 28px; font-weight: 900; color: var(--green); line-height: 1; }
.hero-logo-placeholder-label { font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-mid); margin-top: 2px; }
.hero-logo-placeholder-note { font-size: 8px; color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-top: 4px; }
/* Real 40-year anniversary logo (client-supplied 14 Jul), background made transparent (edge flood-fill).
   No card — the logo sits directly on the hero with a soft drop-shadow for definition on the photo. */
.hero-logo-placeholder.has-logo { width: 152px; height: auto; border-radius: 0; background: transparent; border: none; box-shadow: none; padding: 0; }
.hero-logo-placeholder.has-logo img { width: 100%; height: auto; object-fit: contain; display: block; filter: drop-shadow(0 3px 10px rgba(0,0,0,0.45)); }

/* Buttons (shared) */
.btn-primary { background: var(--green); color: #fff !important; padding: 14px 28px; font-size: 14px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; border: none; border-radius: 8px; cursor: pointer; transition: background 0.2s, transform 0.2s; display: inline-block; text-align: center; }
.btn-primary:hover { background: #256325; transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff !important; padding: 13px 28px; font-size: 14px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; border: 2px solid rgba(255,255,255,0.4); border-radius: 8px; cursor: pointer; transition: border-color 0.2s, transform 0.2s; display: inline-block; text-align: center; }
.btn-outline:hover { border-color: #fff; transform: translateY(-2px); }
.btn-outline-green { display: inline-flex; align-items: center; gap: 8px; border: 2px solid var(--green); color: var(--green) !important; font-size: 14px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 12px 24px; border-radius: 8px; text-decoration: none; transition: background 0.2s, color 0.2s, transform 0.2s; animation: ctaPulse 2.4s ease-out infinite; }
.btn-outline-green:hover { background: var(--green); color: #fff !important; transform: translateY(-2px); animation-play-state: paused; box-shadow: none; }
.btn-outline-green .cta-arrow { display: inline-flex; transition: transform 0.2s; animation: arrowNudge 1.4s ease-in-out infinite; }
.btn-outline-green:hover .cta-arrow { animation-play-state: paused; transform: translateX(3px); }
@keyframes ctaPulse {
	0% { box-shadow: 0 0 0 0 rgba(45,122,45,0.6), 0 0 0 0 rgba(45,122,45,0.35); }
	50% { box-shadow: 0 0 18px 6px rgba(45,122,45,0.55), 0 0 0 14px rgba(45,122,45,0.12); }
	100% { box-shadow: 0 0 0 0 rgba(45,122,45,0), 0 0 0 0 rgba(45,122,45,0); }
}
@keyframes arrowNudge {
	0%, 100% { transform: translateX(0); }
	50% { transform: translateX(4px); }
}

/* ─── GREEN CTA BAR ─── */
.cta-bar { background: var(--green); padding: 22px max(24px, calc((100% - 1560px) / 2)); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; position: relative; z-index: 5; }
.cta-bar-left { display: flex; flex-direction: column; gap: 2px; }
.cta-bar-heading { font-size: 18px; font-weight: 900; color: #fff; letter-spacing: -0.01em; }
.cta-bar-sub { font-size: 16px; color: rgba(255,255,255,0.75); }
.cta-bar-actions { display: flex; gap: 16px; align-items: center; }
.cta-bar-btn { background: #fff; color: var(--green) !important; font-size: 14px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; padding: 12px 24px; border-radius: 6px; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; }
.cta-bar-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.cta-bar-phone { color: rgba(255,255,255,0.9); font-size: 14px; font-weight: 700; text-decoration: none; transition: color 0.2s; }
.cta-bar-phone:hover { color: #fff; }

/* ─── TRUST STRIP ─── */
.trust-strip { background: #fff; padding: 72px 64px 90px; }
/* Gutenberg wraps group children in .wp-block-group__inner-container, so the grid lives there. */
.trust-strip > .wp-block-group__inner-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; max-width: 1560px; margin: 0 auto; }
.trust-item { display: flex; flex-direction: column; gap: 12px; }
.trust-icon-wrap { width: 52px; height: 52px; background: var(--green-tint); border-radius: 12px; display: flex; align-items: center; justify-content: center; background-repeat: no-repeat; background-position: center; background-size: 22px 22px; }
/* Icons drawn via CSS — inline SVG gets stripped from post content on save. */
.trust-strip .trust-item:nth-child(1) .trust-icon-wrap { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D7A2D' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 14.76V3.5a2.5 2.5 0 0 0-5 0v11.26a4.5 4.5 0 1 0 5 0z'/%3E%3C/svg%3E"); }
.trust-strip .trust-item:nth-child(2) .trust-icon-wrap { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D7A2D' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='1' y='3' width='15' height='13' rx='1'/%3E%3Cpath d='M16 8h4l3 3v5h-7V8z'/%3E%3Ccircle cx='5.5' cy='18.5' r='2.5'/%3E%3Ccircle cx='18.5' cy='18.5' r='2.5'/%3E%3C/svg%3E"); }
.trust-strip .trust-item:nth-child(3) .trust-icon-wrap { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D7A2D' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E"); }
.trust-title { font-size: 17px; font-weight: 800; color: var(--near-black); letter-spacing: -0.01em; }
.trust-desc { font-size: 15px; color: var(--grey-mid); line-height: 1.65; }

/* ─── ABOUT SNAPSHOT (core/group band + core/columns) ─── */
.about { background: var(--green-tint); padding: 80px 64px; }
.about .wp-block-columns { align-items: center; max-width: 1560px; margin: 0 auto; gap: 0; }
.about-content { padding: 0 64px 0 0; position: relative; }
.about-content .wdt-label { margin-bottom: 10px; }
.split-heading { font-size: clamp(34px, 3.5vw, 48px); font-weight: 900; line-height: 1.05; letter-spacing: -0.02em; color: var(--near-black); margin: 0 0 16px; }
.split-heading .green { color: var(--green); }
.about-body { font-size: 15px; color: var(--grey-mid); line-height: 1.7; margin-bottom: 22px; }
.about-image { padding: 0 0 0 24px; position: relative; }
.about-image img { width: 100%; height: 420px; object-fit: cover; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); transition: transform 0.6s ease; }
.about-image img:hover { transform: scale(1.02); }
.about-image .wp-block-image { margin: 0; }
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 8px 0 28px; border-top: 1px solid rgba(0,0,0,0.08); padding-top: 24px; }
.about-stat { text-align: left; padding-right: 16px; }
.about-stat-num-wrap { display: flex; align-items: flex-end; gap: 2px; }
.about-stat-num { font-size: clamp(28px, 2.6vw, 38px); font-weight: 900; color: var(--green); line-height: 1; letter-spacing: -0.02em; }
.about-stat-plus { font-size: clamp(16px, 1.4vw, 20px); font-weight: 900; color: var(--green); line-height: 1.3; }
.about-stat-label { font-size: 13px; font-weight: 700; color: var(--grey-mid); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 6px; display: block; }
/* Two copies of the 40-year badge exist in the markup: one in the text column (.about-content) and
   one on the fleet photo (.about-image). CSS shows the right one per breakpoint. Shared visuals here;
   positioning is scoped per column below. FIXED in place (client request 16 Jul) — no scroll-in
   scale/rotate entrance, no float animation. */
.badge-40yr { position: absolute; z-index: 3; width: 108px; height: 108px; border-radius: 50%; background: #fff; border: 2px dashed rgba(45,122,45,0.4); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.12); }
.badge-40yr.visible { opacity: 1; }
/* Desktop (>1099px): text-column copy sits in the whitespace beside the heading — right edge on the
   body text (right:64px clears .about-content's right padding), top level with "Large Enough". */
.about-content .badge-40yr { top: 44px; right: 64px; }
/* Photo copy is hidden on desktop; it takes over on tablet/mobile (see @media below). */
.about-image .badge-40yr { display: none; }
.badge-40yr-num { font-size: 26px; font-weight: 900; color: var(--green); line-height: 1; }
.badge-40yr-label { font-size: 9px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey-mid); margin-top: 2px; }
/* Real 40-year logo in the About snapshot badge. The white breathing-room is baked INTO the image
   (WDT-40-white-padded.png), shown edge-to-edge with no CSS padding — so the padding and the logo are
   one single downscaled image and there's no pure-CSS-white strip to mismatch against (kills the seam).
   Fixed in place (no animation); enlarged per client request 16 Jul. */
.badge-40yr.has-logo { width: 150px; height: auto; border-radius: 14px; border: none; padding: 0; background: transparent; overflow: hidden; box-shadow: 0 12px 30px rgba(0,0,0,0.16); }
.badge-40yr.has-logo img { width: 100%; height: auto; display: block; }
/* Tablet/mobile (<=1099px): no whitespace beside the heading. Keep the badge on the green background
   (where it reads cleanly) by grouping it with the eyebrow label as a small section emblem — logo
   floated left, "ABOUT WARREN DISTRICT TRANSPORT" beside it, heading cleared below. Photo copy stays
   hidden. */
@media (max-width: 1099px) {
	.about-content .badge-40yr { position: static; top: auto; right: auto; float: left; margin: 0 16px 4px 0; }
	.about-content .badge-40yr.has-logo { width: 58px; }
	.about-content .section-label { margin-top: 6px; }
	.about-content .split-heading { clear: left; }
}
.badge-40yr-note { font-size: 8px; color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-top: 3px; }

/* ─── SERVICES STRIP ─── */
.services { background: var(--grey-light); padding-top: 80px; }
.services-header { padding: 20px 64px 48px; text-align: center; }
.services-header .red-rule { margin: 0 auto 20px; }
.service-row { display: flex; min-height: 390px; overflow: hidden; background: #fff; margin-bottom: 3px; }
.service-photo { width: 50%; overflow: hidden; position: relative; flex-shrink: 0; }
.service-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transition: transform 0.7s ease; }
.service-row:hover .service-photo img { transform: scale(1.05); }
.service-row.img-right .service-photo { order: 2; }
.service-row.img-right .service-text { order: 1; }
.service-text { width: 50%; background: #fff; padding: 48px 56px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
.service-number { position: absolute; bottom: -8px; right: 12px; font-size: 7rem; font-weight: 900; color: rgba(0,0,0,0.04); line-height: 1; user-select: none; pointer-events: none; letter-spacing: -0.05em; }
.service-content { position: relative; z-index: 2; }
.service-tag { font-size: 14px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green); margin-bottom: 10px; }
.service-title { font-size: 26px; font-weight: 900; color: var(--near-black); letter-spacing: -0.02em; margin-bottom: 10px; }
.service-desc { font-size: 16px; color: var(--grey-mid); line-height: 1.7; margin-bottom: 18px; }
.service-link { font-size: 15px; font-weight: 700; color: var(--green); text-decoration: none; letter-spacing: 0.05em; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.service-link:hover { gap: 12px; }

/* ─── GALLERY STRIP (Meow Gallery "tiles" mosaic lives inside) ─── */
.gallery-strip { background: #fff; padding: 72px 64px 80px; }
/* Constrain the gallery to the content track so it aligns with the sections above/below
   (the tiles layout fills its container width, so the container itself must be capped + centred). */
.gallery-strip > .wp-block-group__inner-container { max-width: 1560px; margin-left: auto; margin-right: auto; }
.gallery-strip .mgl-root { max-width: 1560px; margin-left: auto; margin-right: auto; }
/* Round the mosaic tiles to match the site's rounded-image aesthetic. */
.mgl-gallery-container img { border-radius: 10px; }
.gallery-strip-header { margin-bottom: 36px; text-align: center; }
.gallery-strip-header .red-rule { margin: 0 auto 20px; }

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--green-tint); padding: 96px 64px 80px; }
.testimonials-header { margin-bottom: 56px; text-align: center; }
.testimonials-header .red-rule { margin: 0 auto 20px; }
.testimonials-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.t-card { background: #fff; border-top: 4px solid var(--green); border-radius: 0 0 12px 12px; padding: 32px 28px 28px; display: flex; flex-direction: column; box-shadow: 0 4px 24px rgba(0,0,0,0.05); transition: transform 0.25s, box-shadow 0.25s; flex: 1 1 320px; max-width: 372px; }
.t-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.t-quote-mark { font-size: 48px; font-weight: 900; color: var(--green); line-height: 0.8; margin-bottom: 14px; opacity: 0.45; }
/* Author sits directly under the quote (client req 16 Jul) — no flex-grow, so on shorter quotes the
   name stays close to the text. At 1-per-view (mobile) cards are natural-height so this stays snug.
   In multi-column views cards are equal-height, so `.is-multicol` (set by main.js) pushes the author
   to the card bottom instead, aligning names across the row. */
.t-text { font-size: 15px; font-style: italic; color: var(--near-black); line-height: 1.7; margin-bottom: 22px; }
.t-carousel.is-multicol .t-text { flex: 1; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--green); color: #fff; font-size: 14px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.t-avatar.unknown { background: var(--grey-mid); }
.t-name { font-size: 15px; font-weight: 700; color: var(--near-black); line-height: 1.2; }
.t-company { font-size: 14px; color: var(--grey-mid); margin-top: 2px; }

/* Testimonials carousel — progressive enhancement.
   Base (no JS): .t-track is the original centred, wrapping card grid and the
   nav/dots are hidden. JS adds .is-init, which switches the track to a single
   non-wrapping row inside an overflow-hidden viewport and reveals the controls. */
.testimonials-grid > .t-carousel { flex: 1 1 100%; width: 100%; }
.t-carousel { position: relative; }
.t-stage { position: relative; }
.t-track { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.t-viewport { width: 100%; }
.t-nav, .t-dots { display: none; }

.t-carousel.is-init .t-stage { padding: 0 56px; }
.t-carousel.is-init .t-viewport { overflow: hidden; transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1); }
.t-carousel.is-init .t-track { flex-wrap: nowrap; justify-content: flex-start; transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1); will-change: transform; }
.t-carousel.is-init .t-track > .t-card { max-width: none; }

.t-carousel.is-init .t-nav { display: flex; align-items: center; justify-content: center; position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; padding: 0; border-radius: 50%; border: 1px solid #d7ddd7; background: #fff; color: var(--green); cursor: pointer; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); transition: background 0.2s, color 0.2s, box-shadow 0.2s, opacity 0.2s; z-index: 2; }
.t-carousel.is-init .t-nav:hover { background: var(--green); color: #fff; box-shadow: 0 8px 22px rgba(45, 122, 45, 0.3); }
.t-carousel.is-init .t-nav.t-prev { left: 0; }
.t-carousel.is-init .t-nav.t-next { right: 0; }
.t-carousel.is-init .t-nav.is-disabled { opacity: 0.3; cursor: default; pointer-events: none; box-shadow: none; }
.t-carousel.is-init .t-nav svg { display: block; width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.t-carousel.is-init .t-dots { display: flex; justify-content: center; gap: 10px; margin-top: 34px; }
.t-dot { width: 9px; height: 9px; padding: 0; border-radius: 50%; border: none; background: #c3ccc3; cursor: pointer; transition: background 0.2s, transform 0.2s; }
.t-dot:hover { background: var(--green); }
.t-dot.is-active { background: var(--green); transform: scale(1.35); }

@media (max-width: 900px) {
	.t-carousel.is-init .t-stage { padding: 0 48px; }
	.t-carousel.is-init .t-nav { width: 40px; height: 40px; }
	.t-carousel.is-init .t-nav svg { width: 20px; height: 20px; }
}
@media (max-width: 600px) {
	.t-carousel.is-init .t-stage { padding: 0 42px; }
	.t-carousel.is-init .t-nav { width: 36px; height: 36px; }
	.t-carousel.is-init .t-nav svg { width: 18px; height: 18px; }
}

/* ─── GET IN TOUCH + ENQUIRY FORM (core/cover) ─── */
.wdt-contact.wp-block-cover { min-height: 0; }
.wdt-contact .wp-block-cover__background { background: linear-gradient(to right, rgba(6,18,6,0.85) 0%, rgba(6,18,6,0.62) 50%, rgba(6,18,6,0.45) 100%) !important; opacity: 1 !important; }
.wdt-contact .wp-block-cover__inner-container { width: 100%; max-width: 1640px; margin: 0 auto; padding: 96px 40px; }
.wdt-contact .wp-block-columns { align-items: center; gap: 0; max-width: none; }
.contact-info { padding: 0 64px 0 0; display: flex; flex-direction: column; justify-content: center; color: #fff; }
.contact-info .section-label { color: rgba(255,255,255,0.6); }
.contact-info-heading { font-size: clamp(32px, 4vw, 46px); font-weight: 900; color: #fff; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 14px; }
.contact-info-text { font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.65; margin-bottom: 32px; max-width: 420px; }
.enquiry-contact-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 0 0 32px; padding: 0; }
.enquiry-contact-list li { font-size: 15px; color: #fff; display: flex; align-items: center; gap: 10px; }
.enquiry-contact-list li span { font-size: 14px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: #5db85d; min-width: 80px; }
.contact-info-phone { align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; color: #fff !important; font-size: 14px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; border: 2px solid rgba(255,255,255,0.35); padding: 13px 26px; border-radius: 8px; transition: border-color 0.2s, transform 0.2s; }
.contact-info-phone:hover { border-color: #fff; transform: translateY(-2px); }
.contact-form-panel { display: flex; align-items: center; justify-content: center; }
.enquiry-form-wrap { width: 100%; max-width: 560px; margin-left: auto; background: #fff; border: 1px solid #dfe2e6; border-radius: 4px; padding: 36px 40px 40px; box-shadow: 0 24px 60px rgba(0,0,0,0.35); }
.enquiry-form-title { font-size: 20px; font-weight: 700; color: var(--near-black); margin-bottom: 4px; padding-bottom: 14px; border-bottom: 1px solid #e5e7eb; }
.enquiry-form-sub { font-size: 14px; color: var(--grey-mid); margin: 12px 0 22px; }
/* CF7 output styled to match the design */
.enquiry-form-wrap .wpcf7-form p { margin: 0; }
.enquiry-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.enquiry-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.enquiry-field label { font-size: 13px; font-weight: 600; color: var(--near-black); }
.enquiry-field .req { color: var(--red); margin-left: 2px; }
.enquiry-form-wrap .wpcf7-form-control-wrap { display: block; width: 100%; }
.enquiry-form-wrap input:not([type=submit]), .enquiry-form-wrap select, .enquiry-form-wrap textarea { background: #fff; border: 1px solid #b9bec5; border-radius: 3px; padding: 10px 12px; font-size: 14px; color: var(--near-black); width: 100%; outline: none; font-family: inherit; transition: border-color 0.15s, box-shadow 0.15s; }
.enquiry-form-wrap input::placeholder, .enquiry-form-wrap textarea::placeholder { color: #9CA3AF; }
.enquiry-form-wrap input:focus, .enquiry-form-wrap select:focus, .enquiry-form-wrap textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(45,122,45,0.15); }
.enquiry-form-wrap textarea { resize: vertical; min-height: 90px; }
/* Higher specificity than GeneratePress's input[type="submit"] so the brand green wins. */
input[type="submit"].enquiry-form-submit { background: var(--green); color: #fff; border: none; border-radius: 3px; padding: 13px 28px; font-size: 15px; font-weight: 700; cursor: pointer; transition: background 0.15s; margin-top: 6px; }
input[type="submit"].enquiry-form-submit:hover { background: #256325; }
.enquiry-form-note { font-size: 13px; color: var(--grey-mid); margin-top: 10px !important; }

/* ─── CF7 validation / response messages (site-wide) ───
   These were inheriting white text from dark section backgrounds and
   disappearing against the white form card. Give them explicit colours. */
.wpcf7-response-output { margin: 18px 0 0 !important; padding: 12px 16px !important; border-radius: 6px; font-size: 14px; line-height: 1.5; color: #8a5a00; background: #fff8e6; border: 1px solid #f0b429; }
.wpcf7 form.sent .wpcf7-response-output { border-color: var(--green); background: var(--green-tint); color: #1a4d1a; }
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output { border-color: #f0b429; background: #fff8e6; color: #8a5a00; }
.wpcf7 form.failed .wpcf7-response-output { border-color: var(--red); background: #fdecec; color: #a01818; }
.wpcf7-not-valid-tip { color: var(--red); font-size: 12px; font-weight: 600; margin-top: 4px; }
.wpcf7-form-control.wpcf7-not-valid { border-color: var(--red) !important; }

/* ─── Cloudflare Turnstile: place the widget at the BOTTOM of the form ───
   CF7 auto-inserts the Turnstile widget at the top of the form; flex-order it
   down so it sits just above the Send button (both enquiry + careers forms). */
.enquiry-form-wrap .wpcf7-form,
.apply-form-wrap .wpcf7-form { display: flex; flex-direction: column; }
.enquiry-form-wrap .wpcf7-form > .wpcf7-turnstile,
.apply-form-wrap .wpcf7-form > .wpcf7-turnstile { order: 90; margin: -10px 0 6px; }
.enquiry-form-wrap .wpcf7-form > input[type="submit"],
.apply-form-wrap .wpcf7-form > input[type="submit"] { order: 100; }
.apply-form-wrap .wpcf7-form > .apply-form-note { order: 105; }
.enquiry-form-wrap .wpcf7-form > .wpcf7-response-output,
.apply-form-wrap .wpcf7-form > .wpcf7-response-output { order: 110; }

/* ─── PAGE SECTION MOBILE ─── */
@media (max-width: 900px) {
	.wdt-hero .wp-block-cover__inner-container { padding: 0 24px; }
	.hero-logo-placeholder { right: 20px; top: 48px; width: 92px; height: 92px; }
	.hero-logo-placeholder.has-logo { width: 92px; height: auto; padding: 0; top: 40px; right: 16px; }
	.cta-bar, .trust-strip, .services-header, .gallery-strip, .testimonials, .contact-section { padding-left: 24px; padding-right: 24px; }
	.trust-strip { padding: 48px 24px 56px; }
	.trust-strip > .wp-block-group__inner-container { grid-template-columns: 1fr; gap: 32px; }
	.about { flex-direction: column; padding: 56px 0; }
	.about-content, .about-image { width: 100%; padding: 0 24px; }
	.about-content .btn-outline-green { margin-bottom: 44px; }
	.about-image { margin-top: 32px; }
	.service-row { flex-direction: column; min-height: 0; }
	.service-photo, .service-text { width: 100%; order: unset !important; }
	/* WP columns apply flex-basis:0;flex-grow:1 at >=782px; combined with our column stacking that split
	   the row into equal heights and clipped the service headings (overflow:hidden + centering) in the
	   782-900px band. Force the columns to size to their content instead. */
	.service-row .wp-block-column { flex: 0 0 auto; }
	.service-photo { height: 240px; }
	.service-text { padding: 32px 24px; justify-content: flex-start; }
	.contact-section { flex-direction: column; padding: 56px 24px; }
	.contact-info, .contact-form-panel { width: 100%; padding: 0; }
	.contact-info { margin-bottom: 32px; }
	/* Homepage "Get in Touch" band (.wdt-contact) — was never covered on mobile. */
	.wdt-contact .wp-block-cover__inner-container { padding: 56px 24px; }
	.wdt-contact .wp-block-columns { flex-direction: column; }
	.wdt-contact .contact-info, .wdt-contact .contact-form-panel { flex-basis: 100% !important; width: 100%; padding: 0; }
	.wdt-contact .contact-info { margin-bottom: 32px; }
	.wdt-contact .enquiry-contact-list li { flex-direction: column; align-items: flex-start; gap: 2px; }
	.wdt-contact .enquiry-contact-list li span { min-width: 0; }
	.wdt-contact .enquiry-form-wrap { max-width: none; padding: 28px 24px 32px; }
	.cta-bar { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
	.about-stats { grid-template-columns: repeat(2, 1fr); gap: 16px 0; }
	.enquiry-form-row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
	/* Phones: shrink the hero 40-yr logo into the top-right corner so it clears the eyebrow/heading. */
	.hero-logo-placeholder.has-logo { width: 72px; top: 22px; right: 14px; }
}

/* ============================================================
   INNER-PAGE SECTIONS (About / Services / Careers / Contact)
   Shared: .page-hero (short banner hero) + .cta-banner (black CTA).
   ============================================================ */

/* ─── PAGE HERO (short banner) ─── */
.page-hero { position: relative; height: 420px; overflow: hidden; }
.page-hero-image { position: absolute; inset: 0; background-size: cover; background-repeat: no-repeat; transform: scale(1.04); transition: transform 10s ease; }
.page-hero-image.loaded { transform: scale(1); }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(5,20,5,0.82) 55%, rgba(5,20,5,0.3) 100%); }
.page-hero-content { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; justify-content: center; padding: 0 80px; }
.page-hero-text { max-width: 580px; text-align: center; animation: fadeInLeft 0.9s ease 0.3s both; }
.page-hero .hero-label { justify-content: center; color: rgba(255,255,255,0.6); }
.page-hero-h1 { font-size: clamp(44px, 5vw, 68px); font-weight: 900; color: #fff; line-height: 1.0; letter-spacing: -0.03em; margin: 0 0 16px; }
.page-hero-h1 .green { color: #5db85d; }
.page-hero-sub { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.65; max-width: 460px; margin: 0 auto; }

/* ─── BLACK CTA BANNER ─── */
/* Full-bleed dark background, but content padded to a centred 1200px track. */
.cta-banner { background: var(--near-black); padding: 72px max(40px, calc((100% - 1560px) / 2)); display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-banner-text h2 { font-size: clamp(28px, 3vw, 40px); font-weight: 900; color: #fff; letter-spacing: -0.02em; margin: 0 0 10px; }
.cta-banner-text p { font-size: 15px; color: rgba(255,255,255,0.5); margin: 0; }

/* ─── ABOUT: OUR STORY / NEXT GEN (two-column prose + image) ─── */
.our-story, .next-gen { background: #fff; padding: 96px 80px; }
.our-story .wp-block-columns, .next-gen .wp-block-columns { gap: 80px; align-items: center; max-width: none; }
.story-text p, .next-gen-text p { font-size: 16px; color: var(--grey-mid); line-height: 1.8; margin-bottom: 18px; }
.story-text p strong, .next-gen-text p strong { color: var(--near-black); font-weight: 700; }
.story-text .wp-block-heading, .next-gen-text .wp-block-heading { margin-bottom: 24px; }
.story-image img, .next-gen-image img { width: 100%; height: 440px; object-fit: cover; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.12); transition: transform 0.6s ease; }
.story-image img:hover, .next-gen-image img:hover { transform: scale(1.02); }
.story-image .wp-block-image, .next-gen-image .wp-block-image { margin: 0; }

/* ─── ABOUT: FULL TIMELINE (Our Journey) ─── */
.full-timeline { background: var(--grey-light); padding: 96px 64px; position: relative; overflow: hidden; z-index: 2; }
.full-timeline::before { content: '40'; position: absolute; right: -20px; top: 50%; transform: translateY(-50%); font-size: 380px; font-weight: 900; color: rgba(45,122,45,0.05); line-height: 1; pointer-events: none; letter-spacing: -0.05em; }
.timeline-header { text-align: center; margin-bottom: 72px; }
.milestone-timeline { display: grid; grid-template-columns: 1fr 56px 1fr; gap: 0; position: relative; max-width: 960px; margin: 0 auto; }
.milestone-timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, transparent, var(--green) 8%, var(--green) 92%, transparent); transform: translateX(-50%); }
.milestone-left { text-align: right; padding: 0 32px 48px 0; display: flex; flex-direction: column; align-items: flex-end; justify-content: center; }
.milestone-right { padding: 0 0 48px 32px; display: flex; flex-direction: column; justify-content: center; }
.milestone-center { display: flex; flex-direction: column; align-items: center; padding-bottom: 48px; position: relative; z-index: 2; }
.milestone-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--green); border: 3px solid var(--grey-light); outline: 2px solid var(--green); margin-top: 6px; flex-shrink: 0; }
.milestone-year { font-size: 14px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); margin-bottom: 6px; }
.milestone-title { font-size: 18px; font-weight: 800; color: var(--near-black); line-height: 1.25; margin-bottom: 6px; }
.milestone-desc { font-size: 16px; color: var(--grey-mid); line-height: 1.65; max-width: 320px; }
.milestone-left .milestone-desc { text-align: right; }
.milestone-spacer { padding-bottom: 48px; }

/* ─── ABOUT: DEPOTS ─── */
.depots { background: var(--green-tint); padding: 96px 64px; z-index: 1; position: relative; }
.depots-header { text-align: center; margin-bottom: 56px; }
.depot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1560px; margin: 0 auto; }
/* Green top accent as a clipped full-width bar (a bare border-top + border-radius
   tapers at the corners and leaves notches). */
.depot-card { position: relative; overflow: hidden; background: #fff; border-radius: 16px; padding: 36px 32px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.depot-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--green); }
.depot-tag { font-size: 14px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green); margin-bottom: 8px; }
.depot-name { font-size: 22px; font-weight: 900; color: var(--near-black); margin-bottom: 16px; letter-spacing: -0.01em; }
.depot-hq-badge { display: inline-block; background: var(--red); color: #fff; font-size: 14px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; padding: 3px 8px; border-radius: 2px; margin-left: 8px; vertical-align: middle; }
.depot-detail { font-size: 15px; color: var(--grey-mid); line-height: 1.6; margin-bottom: 6px; display: flex; align-items: flex-start; gap: 8px; }
.depot-detail-label { flex: 0 0 20px; display: inline-flex; align-items: center; justify-content: center; color: var(--green); padding-top: 2px; }
.depot-detail-label svg { width: 16px; height: 16px; display: block; }

/* ─── ABOUT: VALUES ─── */
.values { background: #fff; padding: 96px 64px; }
.values-header { text-align: center; margin-bottom: 52px; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1560px; margin: 0 auto; }
.value-card { background: var(--green-tint); border-radius: 16px; padding: 36px 28px; text-align: center; border: 1px solid rgba(45,122,45,0.1); transition: box-shadow 0.3s, transform 0.3s; }
.value-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-4px); }
.value-icon { width: 56px; height: 56px; background: #fff; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 22px; box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.value-title { font-size: 17px; font-weight: 800; color: var(--near-black); margin-bottom: 10px; }
.value-desc { font-size: 15px; color: var(--grey-mid); line-height: 1.6; }

/* ─── ABOUT: MISSION ─── */
.mission { background: var(--green); padding: 80px 64px; text-align: center; }
.mission blockquote { font-size: clamp(20px, 2.5vw, 30px); font-weight: 800; color: #fff; line-height: 1.5; letter-spacing: -0.01em; max-width: 860px; margin: 0 auto 24px; border: 0; padding: 0; }
.mission-attr { font-size: 14px; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; text-transform: uppercase; }

/* ─── INNER-PAGE MOBILE ─── */
@media (max-width: 900px) {
	.page-hero-content { padding: 0 24px; }
	.our-story, .next-gen { padding: 56px 24px; }
	.our-story .wp-block-columns, .next-gen .wp-block-columns { gap: 32px; }
	.full-timeline { padding: 64px 20px; }
	.full-timeline::before { font-size: 220px; right: -10px; }
	.milestone-timeline { grid-template-columns: 28px 1fr; }
	.milestone-timeline::before { left: 14px; }
	.milestone-left, .milestone-right { text-align: left; align-items: flex-start; padding: 0 0 36px 24px; grid-column: 2; }
	.milestone-left .milestone-desc { text-align: left; }
	.milestone-center { grid-column: 1; grid-row: auto; align-items: flex-start; }
	.milestone-spacer { display: none; }
	.depots, .values { padding: 56px 24px; }
	.depot-grid { grid-template-columns: 1fr; }
	.values-grid { grid-template-columns: repeat(2, 1fr); }
	.cta-banner { padding: 48px 24px; flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
	.values-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
@keyframes whyGlow { 0%, 100% { box-shadow: 0 0 0 0 rgba(45,122,45,0.18); } 50% { box-shadow: 0 0 0 10px rgba(45,122,45,0); } }
@keyframes whyChipIn { from { opacity: 0; transform: translateY(14px) scale(0.94); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* ─── WHY SECTION ─── */
.why-section { background: #fff; padding: 92px 64px; position: relative; overflow: hidden; }
.why-section::before { content: ''; position: absolute; top: -120px; right: -120px; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, var(--green-tint) 0%, transparent 70%); pointer-events: none; }
.why-inner { max-width: 1560px; margin: 0 auto; position: relative; z-index: 1; }
.why-top { text-align: center; max-width: 700px; margin: 0 auto 20px; }
.why-motto { font-size: clamp(20px, 2.4vw, 26px); font-weight: 800; color: var(--green-dark); font-style: italic; margin: 18px 0 22px; letter-spacing: -0.01em; }
.why-desc { font-size: 16px; color: var(--grey-mid); line-height: 1.75; max-width: 780px; margin: 0 auto 48px; text-align: center; }
.why-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 56px; }
.why-chip { display: flex; align-items: center; gap: 9px; background: var(--grey-light); border: 1px solid #e5e7eb; border-radius: 100px; padding: 11px 20px; font-size: 14px; font-weight: 700; color: var(--near-black); opacity: 0; transition: background 0.25s, border-color 0.25s, transform 0.25s; }
.why-chip.chip-visible { animation: whyChipIn 0.55s cubic-bezier(0.22,1,0.36,1) forwards; }
.why-chip:hover { background: var(--green-tint); border-color: var(--green); transform: translateY(-3px); }
.why-chip-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.why-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; max-width: 640px; margin: 0 auto; border-top: 1px solid #eceef1; padding-top: 40px; }
.why-stat { text-align: center; position: relative; }
.why-stat:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 4px; bottom: 4px; width: 1px; background: #eceef1; }
.why-stat-num-wrap { display: inline-flex; align-items: baseline; font-size: clamp(38px, 4.5vw, 54px); font-weight: 900; color: var(--green); letter-spacing: -0.02em; }
.why-stat-plus { font-size: 0.55em; margin-left: 2px; }
.why-stat-label { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-mid); margin-top: 6px; }

/* ─── DETAILED SERVICES (reuses shared .service-row/.service-photo/.service-text) ─── */
.services-detailed { background: var(--grey-light); padding-bottom: 3px; }
.services-detailed .service-block { border-bottom: 1px solid #e5e7eb; scroll-margin-top: 96px; }
.services-detailed .service-block:last-child { border-bottom: none; }
.services-detailed .service-block:nth-child(1) .service-photo img { object-position: center 40%; }
.services-detailed .service-block:nth-child(2) .service-photo img { object-position: left 50%; }
.services-detailed .service-block:nth-child(3) .service-photo img { object-position: center 70%; }
.service-title .green { color: var(--green); }
.service-title-rule { width: 36px; height: 3px; background: var(--green); border-radius: 2px; margin: 10px 0 16px; }
.service-text .foogallery,
.service-text .mgl-root { margin-top: 18px; }
.service-testimonial-strip { background: var(--grey-light); padding: 40px 64px; display: flex; justify-content: center; }
.service-quote-card { max-width: 720px; width: 100%; background: #fff; border-left: 4px solid var(--green); border-radius: 4px; padding: 26px 30px 24px; box-shadow: 0 8px 24px rgba(0,0,0,0.06); text-align: center; }
.service-quote-text { font-size: 16px; font-style: italic; color: var(--near-black); line-height: 1.65; margin-bottom: 14px; }
.service-quote-cite { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--green); }
.service-quote-cite span { display: block; font-size: 12px; font-weight: 600; text-transform: none; letter-spacing: 0; color: var(--grey-mid); margin-top: 2px; }

/* ─── FLEET & TECHNOLOGY STRIP (green) ─── */
.fleet-strip { background: var(--green); padding: 72px 64px; }
.fleet-strip .section-label { color: rgba(255,255,255,0.65); }
.fleet-strip-header { text-align: center; margin-bottom: 48px; }
.fleet-strip-header h2 { color: #fff; }
.fleet-strip-header p { color: rgba(255,255,255,0.75); max-width: 640px; margin: 0 auto; }
.fleet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; max-width: 1560px; margin: 0 auto; }
.fleet-item { text-align: center; }
.fleet-item-icon { width: 48px; height: 48px; background: rgba(255,255,255,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; background-repeat: no-repeat; background-position: center; background-size: 22px 22px; }
/* Icons drawn via CSS — inline SVG gets stripped from post content on save, so the boxes render empty otherwise. */
.fleet-grid .fleet-item:nth-child(1) .fleet-item-icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='1' y='3' width='15' height='13' rx='1'/%3E%3Cpath d='M16 8h4l3 3v5h-7V8z'/%3E%3Ccircle cx='5.5' cy='18.5' r='2.5'/%3E%3Ccircle cx='18.5' cy='18.5' r='2.5'/%3E%3C/svg%3E"); }
.fleet-grid .fleet-item:nth-child(2) .fleet-item-icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='12' y1='2' x2='12' y2='4'/%3E%3Cline x1='12' y1='20' x2='12' y2='22'/%3E%3Cline x1='2' y1='12' x2='4' y2='12'/%3E%3Cline x1='20' y1='12' x2='22' y2='12'/%3E%3C/svg%3E"); }
.fleet-grid .fleet-item:nth-child(3) .fleet-item-icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E"); }
.fleet-grid .fleet-item:nth-child(4) .fleet-item-icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E"); }
.fleet-item-title { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.fleet-item-desc { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.5; }

/* ─── SAFETY / SUSTAINABILITY ─── */
.safety-env-section { background: var(--grey-light); padding: 88px 64px; }
.safety-env-header { text-align: center; margin-bottom: 52px; }
.safety-env-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 1560px; margin: 0 auto; }
.safety-env-col { background: #fff; border-radius: 14px; padding: 40px 36px; border: 1px solid #e5e7eb; box-shadow: 0 8px 28px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.safety-env-col:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,0.09); }
.safety-env-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; background-repeat: no-repeat; background-position: center; background-size: 26px 26px; }
/* Icons drawn via CSS — inline SVG gets stripped from post content on save. */
.safety-env-col.safety .safety-env-icon { background-color: var(--green-tint); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D7A2D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2l8 4v6c0 5-3.5 9-8 10-4.5-1-8-5-8-10V6l8-4z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E"); }
.safety-env-col.environment .safety-env-icon { background-color: #eaf4ea; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D7A2D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22c-4.97 0-9-2.5-9-7 0-6 9-13 9-13s9 7 9 13c0 4.5-4.03 7-9 7z'/%3E%3Cpath d='M12 22v-6'/%3E%3C/svg%3E"); }
.safety-env-title { font-size: 20px; font-weight: 900; color: var(--near-black); margin-bottom: 14px; letter-spacing: -0.01em; }
.safety-env-desc { font-size: 15px; color: var(--grey-mid); line-height: 1.7; margin-bottom: 14px; }
.safety-env-desc:last-child { margin-bottom: 0; }

/* ─── CERTIFICATIONS ─── */
.certs-section { background: #fff; padding: 88px 64px; }
.certs-header { text-align: center; margin-bottom: 48px; }
.certs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1560px; margin: 0 auto; }
.cert-card { background: var(--grey-light); border-radius: 12px; padding: 28px 24px; text-align: center; border: 1px solid #e5e7eb; transition: box-shadow 0.25s, transform 0.25s; }
.cert-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.cert-icon-wrap { width: 52px; height: 52px; background: var(--green-tint); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.cert-name { font-size: 16px; font-weight: 800; color: var(--near-black); margin-bottom: 6px; }
.cert-desc { font-size: 13px; color: var(--grey-mid); line-height: 1.5; margin-bottom: 16px; min-height: 40px; }
.cert-download { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--green); text-decoration: none; }
.cert-download:hover { color: #256325; }
.cert-download svg { width: 14px; height: 14px; }
.cert-download-pending { color: var(--grey-mid); font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.7; }
.certs-note { text-align: center; font-size: 13px; color: var(--grey-mid); margin-top: 32px; font-style: italic; }

@media (max-width: 900px) {
	.why-section { padding: 56px 24px; }
	.why-stats { max-width: none; }
	.fleet-strip, .safety-env-section, .certs-section { padding: 56px 24px; }
	.fleet-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
	.safety-env-grid { grid-template-columns: 1fr; gap: 24px; }
	.certs-grid { grid-template-columns: repeat(2, 1fr); }
	.service-testimonial-strip { padding: 32px 24px; }
}
@media (max-width: 600px) {
	.why-stats { grid-template-columns: 1fr; gap: 24px; }
	.why-stat:not(:last-child)::after { display: none; }
	.fleet-grid, .certs-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CAREERS PAGE
   ============================================================ */
/* ─── WHY WORK WITH US ─── */
.why-us { background: #fff; padding: 96px 64px; }
.why-us-header { text-align: center; margin-bottom: 52px; }
.why-us-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1560px; margin: 0 auto; }
.why-card { background: var(--grey-light); border-radius: 16px; padding: 36px 32px; border-top: 4px solid var(--green); transition: transform 0.3s, box-shadow 0.3s; }
.why-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.why-icon-wrap { width: 52px; height: 52px; background: var(--green-tint); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.why-title { font-size: 18px; font-weight: 800; color: var(--near-black); margin-bottom: 10px; letter-spacing: -0.01em; }
.why-desc { font-size: 15px; color: var(--grey-mid); line-height: 1.65; }

/* ─── OPEN ROLES ─── */
.roles { background: var(--green-tint); padding: 80px 64px; }
.roles-header { text-align: center; margin-bottom: 40px; }
.roles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1560px; margin: 0 auto 32px; }
.role-card { background: #fff; border-radius: 16px; padding: 30px 28px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); border-top: 4px solid var(--green); display: flex; flex-direction: column; cursor: pointer; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.role-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,0,0,0.1); }
.role-card-header { margin-bottom: 12px; }
.role-title { font-size: 19px; font-weight: 900; color: var(--near-black); letter-spacing: -0.01em; margin-bottom: 4px; }
.role-location { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); }
.role-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.role-tag { font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--grey-mid); background: var(--grey-light); border-radius: 100px; padding: 4px 10px; }
.role-desc { font-size: 14px; color: var(--grey-mid); line-height: 1.65; margin-bottom: 20px; flex-grow: 1; }
.role-card-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.role-view { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; color: var(--grey-mid); }
.role-apply { font-size: 14px; font-weight: 700; letter-spacing: 0.04em; color: var(--green); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; position: relative; z-index: 2; }
.role-apply:hover { gap: 10px; }
.roles-notice { max-width: 760px; margin: 0 auto; background: #fff; border-radius: 16px; padding: 36px 40px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); border-top: 4px solid var(--green); text-align: center; }
.roles-notice-title { font-size: 20px; font-weight: 900; color: var(--near-black); margin-bottom: 10px; }
.roles-notice-text { font-size: 15px; color: var(--grey-mid); line-height: 1.7; margin-bottom: 4px; }
.roles-notice-text strong { color: var(--near-black); }

/* ─── ROLE DETAIL MODAL ─── */
.role-modal-overlay { position: fixed; inset: 0; background: rgba(5,10,5,0.6); display: flex; align-items: center; justify-content: center; z-index: 9999; opacity: 0; visibility: hidden; transition: opacity 0.25s ease, visibility 0.25s; padding: 24px; }
.role-modal-overlay.active { opacity: 1; visibility: visible; }
.role-modal { background: #fff; border-radius: 12px; max-width: 560px; width: 100%; max-height: 85vh; overflow-y: auto; padding: 40px 40px 36px; position: relative; transform: translateY(16px); transition: transform 0.25s ease; box-shadow: 0 30px 80px rgba(0,0,0,0.3); }
.role-modal-overlay.active .role-modal { transform: translateY(0); }
.role-modal-close { position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 50%; border: none; background: var(--grey-light); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--near-black); transition: background 0.2s; }
.role-modal-close:hover { background: #e5e7eb; }
/* Draw the X via CSS — the inline SVG in the page content gets stripped on save
   (content sanitisation), leaving an empty button. Hide any SVG that survives. */
.role-modal-close svg { display: none; }
.role-modal-close::before, .role-modal-close::after { content: ""; position: absolute; top: 50%; left: 50%; width: 15px; height: 2px; background: currentColor; border-radius: 2px; }
.role-modal-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.role-modal-close::after { transform: translate(-50%, -50%) rotate(-45deg); }
.role-modal-location { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); margin-bottom: 6px; }
.role-modal-title { font-size: 24px; font-weight: 900; color: var(--near-black); margin-bottom: 12px; letter-spacing: -0.01em; }
.role-modal-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.role-modal-body { font-size: 15px; color: var(--grey-mid); line-height: 1.7; }
.role-modal-body h4 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--near-black); margin: 22px 0 10px; }
.role-modal-body ul { list-style: none; display: flex; flex-direction: column; gap: 9px; padding: 0; margin: 0 0 8px; }
.role-modal-body li { font-size: 14px; color: var(--near-black); line-height: 1.5; display: flex; gap: 9px; align-items: flex-start; }
.role-modal-body li::before { content: ''; width: 16px; height: 16px; margin-top: 2px; background: var(--green); border-radius: 50%; flex-shrink: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-size: 10px; background-repeat: no-repeat; background-position: center; }
.role-modal-apply { margin-top: 26px; display: inline-block; background: var(--green); color: #fff; padding: 13px 28px; border-radius: 6px; font-size: 14px; font-weight: 700; text-decoration: none; transition: background 0.2s; }
.role-modal-apply:hover { background: #256325; color: #fff; }

/* ─── APPLICATION FORM (CF7) — split card: image left, form right ─── */
.apply-section { background: var(--grey-light); padding: 88px 64px; }
.apply-section-header { text-align: center; max-width: 700px; margin: 0 auto 44px; }
.apply-section .wp-block-columns { max-width: 1560px; margin: 0 auto; align-items: stretch; gap: 0 !important; background: #fff; border: 1px solid #ececec; border-radius: 18px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,0.10); }
.apply-section .wp-block-column { margin: 0; }
.apply-image { position: relative; }
.apply-image .wp-block-image { margin: 0; height: 100%; }
.apply-image img { width: 100%; height: 100%; min-height: 540px; object-fit: cover; object-position: center; border-radius: 0; box-shadow: none; display: block; }
.apply-form-col { padding: 56px 56px; }
.apply-form-wrap { width: 100%; max-width: none; background: transparent; border: 0; border-radius: 0; padding: 0; }
.apply-form-wrap .apply-form-title { border-bottom: none; padding-bottom: 0; font-size: 22px; }
.apply-form-wrap .apply-form-sub { margin-top: 6px; padding-bottom: 18px; border-bottom: 1px solid #e5e7eb; }
.apply-form-title { font-size: 20px; font-weight: 700; color: var(--near-black); margin-bottom: 4px; padding-bottom: 14px; border-bottom: 1px solid #e5e7eb; }
.apply-form-sub { font-size: 14px; color: var(--grey-mid); margin: 12px 0 22px; }
.apply-form-wrap .wpcf7-form p { margin: 0; }
.apply-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.apply-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.apply-field label { font-size: 13px; font-weight: 600; color: var(--near-black); }
.apply-field .req { color: var(--red); margin-left: 2px; }
.apply-form-wrap .wpcf7-form-control-wrap { display: block; width: 100%; }
.apply-form-wrap input:not([type=submit]):not([type=file]), .apply-form-wrap select, .apply-form-wrap textarea { background: #fff; border: 1px solid #b9bec5; border-radius: 3px; padding: 10px 12px; font-size: 14px; color: var(--near-black); width: 100%; outline: none; font-family: inherit; transition: border-color 0.15s, box-shadow 0.15s; }
.apply-form-wrap input::placeholder, .apply-form-wrap textarea::placeholder { color: #9CA3AF; }
.apply-form-wrap input:focus, .apply-form-wrap select:focus, .apply-form-wrap textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(45,122,45,0.15); }
.apply-form-wrap input[type=file] { font-size: 14px; color: var(--near-black); }
.apply-form-wrap textarea { resize: vertical; min-height: 100px; }
input[type="submit"].apply-form-submit { background: var(--green); color: #fff; border: none; border-radius: 3px; padding: 13px 28px; font-size: 15px; font-weight: 700; cursor: pointer; transition: background 0.15s; margin-top: 6px; }
input[type="submit"].apply-form-submit:hover { background: #256325; }
.apply-form-note { font-size: 13px; color: var(--grey-mid); margin-top: 10px !important; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

@media (max-width: 900px) {
	.why-us, .roles, .apply-section { padding-left: 24px; padding-right: 24px; }
	.why-us-grid, .roles-grid { grid-template-columns: 1fr; }
	.apply-section { padding: 56px 24px; }
	.apply-image img { min-height: 220px; }
	.apply-form-col { padding: 30px 24px 34px; }
	.apply-form-row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-main { display: flex; padding: 88px 64px; gap: 56px; align-items: flex-start; background: #fff; }
.contact-form-col { flex: 1.1; }
.contact-form-col .enquiry-form-wrap { box-shadow: none; max-width: none; }
.contact-depots-col { flex: 1; display: flex; flex-direction: column; gap: 20px; }
/* Contact depot cards (green-tint variant; distinct from the About white cards) */
.contact-depots-col .depot-card { background: var(--green-tint); padding: 28px 30px; box-shadow: none; cursor: pointer; transition: box-shadow 0.2s, transform 0.2s; }
.contact-depots-col .depot-card:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.10); }
.contact-depots-col .depot-card:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }
.contact-depots-col .depot-card.depot-card-active { box-shadow: 0 0 0 2px var(--green) inset, 0 10px 30px rgba(0,0,0,0.10); }
/* "View on map" affordance so visitors know the card is clickable. */
.contact-depots-col .depot-card::after { content: "View on map \2192"; display: block; margin-top: 16px; font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); }
.contact-depots-col .depot-card.depot-card-active::after { content: "Showing on map \2713"; }
.contact-depots-col .depot-name { font-size: 20px; }
.depot-hours { margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(45,122,45,0.15); }
.depot-hours-row { font-size: 13px; color: var(--grey-mid); display: flex; justify-content: space-between; gap: 12px; margin-bottom: 3px; }
.depot-hours-row span:first-child { font-weight: 700; color: var(--near-black); }

/* ─── MAP ─── */
.map-section { background: var(--grey-light); padding: 0; }
.map-header { text-align: center; padding: 72px 64px 40px; }
.map-embed-wrap { width: 100%; height: 460px; }
.map-embed-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ─── CTA BANNER PHONES ─── */
.cta-banner-phones { display: flex; flex-direction: column; gap: 10px; }
.cta-banner-phones a { color: #fff; font-size: 16px; font-weight: 700; text-decoration: none; display: flex; align-items: center; gap: 10px; }
.cta-banner-phones a span { color: rgba(255,255,255,0.45); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; min-width: 92px; }
.cta-banner-phones a:hover { color: #5db85d; }

@media (max-width: 900px) {
	/* Stretch (not flex-start) so stacked columns fill the width instead of
	   shrinking to their content — otherwise the depot cards sit narrow. */
	.contact-main { flex-direction: column; align-items: stretch; padding: 56px 24px; gap: 32px; }
	.map-header { padding: 48px 24px 32px; }
	.map-embed-wrap { height: 340px; }
}
