/*
Theme Name: Aquarius
Theme URI: https://themes.muffingroup.com/betheme/
Template: betheme
Author: Muffin group
Author URI: https://muffingroup.com/
Description: The biggest WordPress Theme ever
Version: 28.4.4.1783584579
Updated: 2026-07-09 08:09:39

*/

/* =========================================================
   Aquarius theme — rebuilt to match the Figma design 1:1
   (file VTPAmcQtV2N30Ka5otIP1M, node 1:178, 1440-wide)
   ========================================================= */

:root {
	--navy: #011d3b; /* headings, CTA bg, service dividers/text */
	--navy-btn: #021d3b; /* hero/CTA outline phone button bg */
	--footer-bg: #001123;
	--green: #57812e; /* primary buttons */
	--green-accent: #6f9c44; /* "Life.", why-us underline, leaf */
	--blue: #208ed9; /* "Water.", active nav underline */
	--blue-link: #156dad; /* Learn more, About Us btn, Why-Choose label */
	--blue-phone: #004e86; /* header phone */
	--section-bg: #f2f7fb; /* Why-Us section */
	--border: #e5e7eb; /* header bottom border */
	--nav-text: #0b1221;
	--body-dark: #141b34;
	--muted: #94a3b8; /* footer text */
	--social-bg: #1e293b;

	--font-head:
		"Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-body:
		"Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

	--container: 1280px;
	--pad: 80px;
	--radius: 4px;
}

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

body {
	margin: 0;
	font-family: var(--font-head);
	color: var(--navy);
	font-size: 16px;
	line-height: 1.5;
	background: #fff;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}
a {
	text-decoration: none;
	color: inherit;
}
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
h1,
h2,
h3,
h4 {
	margin: 0;
	font-weight: 600;
	line-height: 1.2;
}
p {
	margin: 0;
}
svg {
	display: block;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}
.skip-link.screen-reader-text:focus {
	position: fixed;
	top: 0.5rem;
	left: 0.5rem;
	width: auto;
	height: auto;
	clip: auto;
	background: #fff;
	color: var(--navy);
	padding: 0.75rem 1.25rem;
	border-radius: var(--radius);
	z-index: 1000;
}

.container {
	width: 100%;
	max-width: calc(var(--container) + var(--pad) * 2);
	margin: 0 auto;
	padding-left: var(--pad);
	padding-right: var(--pad);
}

/* ---------- buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 26px;
	height: 44px;
	padding: 0 26.75px;
	box-sizing: border-box;
	border-radius: var(--radius);
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	border: 1px solid transparent;
	cursor: pointer;
	white-space: nowrap;
	transition:
		filter 0.15s ease,
		background 0.15s ease,
		color 0.15s ease;
}
.btn svg {
	width: 18px;
	height: 18px;
}
.btn--outline svg {
	width: 22px;
	height: 22px;
} /* Figma phone icon is 22px, not 18px */
.btn:hover {
	filter: brightness(1.08);
}
.btn--green {
	background: var(--green);
	color: #fff;
}
.btn--outline {
	background: var(--navy-btn);
	color: #fff;
	border-color: #fff;
	gap: 4px;
}
.btn--outline:hover {
	filter: brightness(1.25);
}

.text-blue {
	color: var(--blue);
}
.text-green {
	color: var(--green-accent);
}

/* =========================================================
   HEADER  (aquarius-navbar: 88px, white, 80px side padding)
   ========================================================= */
.site-header {
	background: #fff;
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	z-index: 100;
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 88px;
}
.site-branding {
	flex: 0 0 auto;
}
.site-logo {
	display: inline-flex;
	align-items: center;
}
/* Figma: logo 210x56. Covers the pods-icon helper output (inline <svg> or
   <img>) as well as the legacy .site-logo__svg / custom-logo wrappers. */
.site-logo svg,
.site-logo img,
.site-logo__svg svg,
.site-logo img.custom-logo {
	height: 56px;
	width: auto;
}

.site-header__right {
	display: flex;
	align-items: center;
	gap: 32px;
}

/* primary nav */
.main-navigation .primary-menu {
	display: flex;
	align-items: center;
	gap: 32px;
}
.main-navigation .primary-menu > .menu-item > a {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 15px;
	line-height: 22.5px;
	color: var(--nav-text);
	padding: 8px 0;
	position: relative;
}
.main-navigation .primary-menu > .menu-item > a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	/* Figma: the 2px indicator sits directly under the 22.5px text line,
	   inside the link's 8px bottom padding (not at the very bottom edge). */
	bottom: 6px;
	height: 2px;
	background: var(--blue);
	border-radius: 1px;
	transform: scaleX(0);
	transition: transform 0.15s ease;
}
.main-navigation .primary-menu > .menu-item.current-menu-item > a::after,
.main-navigation .primary-menu > .menu-item:hover > a::after {
	transform: scaleX(1);
}
.main-navigation .menu-item-has-children > a .menu-item__caret,
.main-navigation .menu-item-has-children > a svg {
	width: 15px;
	height: 15px;
	color: #161616;
	transition: transform 0.15s ease;
}
.main-navigation .menu-item-has-children:hover > a svg {
	transform: rotate(180deg);
}
.main-navigation .sub-menu {
	display: none;
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 20px;
}
.header-cta {
	background: var(--green);
	color: #fff;
	border-radius: var(--radius);
	white-space: nowrap;
	padding: 10px 20px;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 14px;
	line-height: 21px;
	transition: filter 0.15s ease;
}
.header-cta:hover {
	filter: brightness(1.08);
}
.header-phone {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	white-space: nowrap;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 15px;
	line-height: 22.5px;
	color: var(--blue-phone);
}
.header-phone svg {
	width: 22px;
	height: 22px;
}

.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: #fff;
	cursor: pointer;
	padding: 0;
}
.menu-toggle__bar {
	display: block;
	width: 20px;
	height: 2px;
	margin: 0 auto;
	background: var(--navy);
	transition: 0.15s ease;
}
.menu-toggle.is-active .menu-toggle__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.menu-toggle.is-active .menu-toggle__bar:nth-child(2) {
	opacity: 0;
}
.menu-toggle.is-active .menu-toggle__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* desktop dropdown */
@media (min-width: 992px) {
	.main-navigation .menu-item-has-children {
		position: relative;
	}
	.main-navigation .menu-item-has-children:hover > .sub-menu,
	.main-navigation .menu-item-has-children:focus-within > .sub-menu {
		display: block;
	}
	/* After a submenu link is clicked, JS force-closes the dropdown even while the
	   pointer is still over it (restored on mouseleave). */
	.main-navigation .menu-item-has-children.is-force-closed > .sub-menu {
		display: none !important;
	}
	.main-navigation .sub-menu {
		position: absolute;
		top: 100%;
		left: 0;
		min-width: 250px;
		background: #fff;
		border: 1px solid var(--border);
		border-radius: var(--radius);
		box-shadow: 0 12px 28px rgba(1, 29, 59, 0.12);
		padding: 8px;
		/* margin-top: 6px; */
	}
	.main-navigation .sub-menu .menu-item a {
		display: block;
		padding: 8px 12px;
		border-radius: 3px;
		font-size: 14px;
		color: var(--nav-text);
	}
	.main-navigation .sub-menu .menu-item a:hover {
		background: var(--section-bg);
		color: var(--blue-link);
	}
}

/* =========================================================
   HERO  (banner image bg, content left, 370px tall @1440)
   ========================================================= */
/* The banner image itself is Pods-driven (home_settings → banner_bg_image,
   rendered inline on the section); the CSS only sets how it displays. */
.hero {
	background-color: var(--navy);
	background-position: left center;
	background-size: cover;
	background-repeat: no-repeat;
}
.hero__inner {
	min-height: 370px;
	display: flex;
	align-items: center;
}
.hero__content {
	display: flex;
	flex-direction: column;
	gap: 24px;
	max-width: 410px;
	padding: 39px 0;
}
.hero__intro {
	display: flex;
	flex-direction: column;
	gap: 8px;
} /* title→subtext = 8px (Figma) */
.hero__title {
	font-weight: 600;
	font-size: 48px;
	line-height: 57.6px;
	color: #fff;
}
.hero__desc {
	font-weight: 400;
	font-size: 18px;
	line-height: 24px;
	color: #fff;
	max-width: 488px;
}
.hero__actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}
/* Figma: both hero buttons are exactly 193px, content centred */
.hero__actions .btn {
	width: 193px;
	max-width: 100%;
}

/* Equal-width columns so dividers land on even thirds and the row ends
   flush with the buttons above (both 402px). */
.hero__badges {
	display: flex;
	align-items: stretch;
	width: 402px;
	max-width: 100%;
}
.hero__badge {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 8px;
}
.hero__badge + .hero__badge {
	border-left: 1px solid rgba(255, 255, 255, 0.3);
	padding-left: 18px;
}
.hero__badge-icon {
	display: inline-flex;
	flex: 0 0 32px;
}
.hero__badge svg,
.hero__badge img {
	width: 32px;
	height: 32px;
	flex: 0 0 auto;
}
.hero__badge span {
	font-weight: 400;
	font-size: 12px;
	line-height: 14.4px;
	color: #fff;
}

/* =========================================================
   SERVICES  (5 centered columns w/ vertical dividers)
   ========================================================= */
.services {
	background: #fff;
	padding: 56px 0;
}
.services__grid {
	display: flex;
	align-items: stretch;
}
.service-card {
	position: relative;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 15px;
	padding: 24px 27px;
	border-radius: 10px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}
/* Whole card greys on hover (matches the active tab on the services page) */
.service-card:hover {
	background-color: #fafafb !important;
}
/* Stretched link: the "Learn more" anchor covers the whole card, so the entire
   card is clickable — no nested anchors, keeps it accessible. */
.service-card__link::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
}
/* Figma divider: #011d3b @ 10% opacity, inset ~12px top/bottom (not full height) */
.service-card + .service-card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 12px;
	bottom: 12px;
	width: 1px;
	background: rgba(1, 29, 59, 0.1);
}
.service-card__icon {
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.service-card__icon svg,
.service-card__icon img {
	height: 64px;
	width: auto;
}
.service-card__title {
	font-weight: 600;
	font-size: 15px;
	line-height: 18px;
	color: var(--navy);
}
.service-card__rule {
	width: 51px;
	height: 2px;
	border-radius: 100px;
}
.service-card__desc {
	font-weight: 400;
	font-size: 12px;
	line-height: 14.4px;
	color: var(--navy);
}
.service-card__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 500;
	font-size: 11px;
	line-height: 16.5px;
	color: var(--blue-link);
	margin-top: auto;
}
.service-card__link svg {
	width: 14px;
	height: 14px;
}

/* =========================================================
   WHY CHOOSE US  (bg #f2f7fb)
   ========================================================= */
.why-us {
	background: var(--section-bg);
	padding: 40px 0;
}
.why-us__inner {
	display: flex;
	gap: 31px;
	align-items: stretch;
}
.why-us__main {
	flex: 1;
	display: flex;
	gap: 28px;
	align-items: flex-start;
}
.why-us__intro {
	flex: 0 0 226px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.why-us__eyebrow {
	font-weight: 500;
	font-size: 12px;
	line-height: 14.4px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--blue-link);
}
.why-us__title {
	font-weight: 600;
	font-size: 20px;
	line-height: 24px;
	color: var(--navy);
}
.why-us__rule {
	width: 51px;
	height: 3px;
	border-radius: 100px;
	background: var(--green-accent);
}
.why-us__text {
	flex: 0 0 297px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.why-us__desc {
	font-weight: 400;
	font-size: 11px;
	line-height: 14.4px;
	color: var(--body-dark);
	text-align: justify;
}
.btn--aboutus {
	align-self: flex-start;
	background: var(--blue-link);
	color: #fff;
	border-radius: var(--radius);
	height: 32px;
	padding: 0 24px;
	gap: 16px;
	font-weight: 500;
	font-size: 12px;
	line-height: 24px;
}
.btn--aboutus svg {
	width: 14px;
	height: 14px;
}

.why-us__features {
	flex: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	align-content: start;
}
.why-us__feature {
	display: flex;
	gap: 8px;
	align-items: flex-start;
}
.why-us__feature-icon {
	flex: 0 0 46px;
	width: 46px;
	height: 46px;
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #dfebf7;
}
.why-us__feature-icon svg {
	width: 28px;
	height: 28px;
}
.why-us__feature--green .why-us__feature-icon {
	background: #e7eee6;
}
.why-us__feature h3 {
	font-weight: 600;
	font-size: 12px;
	line-height: 14.4px;
	color: var(--navy);
	margin-bottom: 2px;
}
.why-us__feature p {
	font-weight: 400;
	font-size: 10px;
	line-height: 14.4px;
	color: var(--navy);
	text-align: justify;
}
.why-us__media {
	flex: 0 0 273px;
	border-radius: var(--radius);
	overflow: hidden;
	background: #dfe7ef;
}
.why-us__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* CTA band: shared component — see template-parts/cta-banner.php and its own styles. */

/* =========================================================
   FOOTER  (Instrument Sans, bg #001123)
   ========================================================= */
.site-footer {
	background: var(--footer-bg);
	font-family: var(--font-body);
	padding: 80px 0 40px;
}
.footer__columns {
	display: grid;
	grid-template-columns: 300px 180px 180px 280px;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 64px;
}
.footer__brand {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.site-logo--footer .site-logo__svg svg,
.site-logo--footer img.custom-logo {
	height: 42px;
}
/* the logo SVG is multi-colour; force it white for the dark footer */
.site-logo--footer .site-logo__svg svg path,
.site-logo--footer .site-logo__svg svg rect {
	fill: #fff !important;
}
.footer__about {
	font-weight: 400;
	font-size: 15px;
	line-height: 24px;
	color: var(--muted);
}
.social-links {
	display: flex;
	gap: 12px;
}
.social-links a {
	width: 36px;
	height: 36px;
	border-radius: 18px;
	background: var(--social-bg);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transition: background 0.15s ease;
}
.social-links a:hover {
	background: var(--blue-link);
}
.social-links .aq-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}
.social-links svg,
.social-links img.aq-icon {
	width: 18px;
	height: 18px;
}

.footer__heading {
	font-weight: 700;
	font-size: 18px;
	line-height: 1.22;
	color: #fff;
	margin-bottom: 20px;
}
.footer-menu {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.footer-menu a {
	font-weight: 400;
	font-size: 15px;
	line-height: 24px;
	color: var(--muted);
	transition: color 0.15s ease;
}
.footer-menu a:hover {
	color: #fff;
}

.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 15px;
	line-height: 22.5px;
	color: var(--muted);
}
.footer-contact .aq-icon {
	display: flex;
	flex: 0 0 18px;
	margin-top: 2px;
	color: #fff;
}
.footer-contact svg,
.footer-contact img.aq-icon {
	width: 18px;
	height: 18px;
}
.footer-contact a {
	color: var(--muted);
}
.footer-contact a:hover {
	color: #fff;
}

.footer__bottom {
	border-top: 1px solid var(--social-bg);
	padding-top: 32px;
}
.footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}
.footer__copy {
	font-weight: 400;
	font-size: 14px;
	line-height: 1.22;
	color: var(--muted);
}
.footer-legal-menu {
	display: flex;
	gap: 24px;
}
.footer-legal-menu a {
	font-weight: 400;
	font-size: 14px;
	line-height: 1.22;
	color: var(--muted);
}
.footer-legal-menu a:hover {
	color: #fff;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1200px) {
	:root {
		--pad: 40px;
	}
	.hero__title {
		font-size: 40px;
		line-height: 1.15;
	}
}

@media (max-width: 991px) {
	:root {
		--pad: 24px;
	}
	/* header → mobile off-canvas */
	.menu-toggle {
		display: flex;
	}
	.main-navigation {
		position: fixed;
		inset: 88px 0 0;
		background: #fff;
		z-index: 90;
		transform: translateX(100%);
		opacity: 0;
		visibility: hidden;
		transition:
			transform 0.2s ease,
			opacity 0.2s ease,
			visibility 0.2s ease;
		overflow-y: auto;
		padding: 24px var(--pad) 48px;
	}
	.main-navigation.is-active {
		transform: translateX(0);
		opacity: 1;
		visibility: visible;
	}
	.main-navigation .primary-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}
	.main-navigation .primary-menu > .menu-item {
		border-bottom: 1px solid var(--border);
	}
	.main-navigation .primary-menu > .menu-item > a {
		justify-content: space-between;
		padding: 16px 0;
		font-size: 16px;
	}
	.main-navigation .primary-menu > .menu-item > a::after {
		display: none;
	}
	.main-navigation .menu-item-has-children.is-open > .sub-menu {
		display: block;
		padding: 0 0 12px 16px;
	}
	.main-navigation .sub-menu .menu-item a {
		display: block;
		padding: 8px 0;
		color: #5b6673;
		font-size: 14px;
	}
	.site-header__right {
		gap: 12px;
	}
	.header-phone span {
		display: none;
	}

	/* services stack */
	.services__grid {
		flex-wrap: wrap;
		gap: 32px 0;
	}
	.service-card {
		flex: 0 0 50%;
	}
	.service-card + .service-card {
		border-left: 0;
	}

	/* why-us stack */
	.why-us__inner {
		flex-direction: column;
		gap: 28px;
	}
	.why-us__main {
		flex-direction: column;
	}
	.why-us__intro,
	.why-us__text {
		flex-basis: auto;
	}
	.why-us__media {
		flex-basis: 240px;
	}

	/* footer */
	.footer__columns {
		grid-template-columns: 1fr 1fr;
		gap: 40px 24px;
	}
}

/* ---------- PHONE (<=767px): matches the 430px Figma mobile frame ---------- */
@media (max-width: 767px) {
	/* header: logo + bare hamburger only (quote/phone collapse away) */
	.site-header__actions {
		display: none;
	}
	.menu-toggle {
		width: 40px;
		border-color: transparent;
		background: transparent;
	}
	.menu-toggle__bar {
		width: 28px;
	}

	/* hero: full-width stacked content, buttons + badges stacked */
	.hero__inner {
		min-height: 0;
		align-items: stretch;
	}
	.hero__content {
		max-width: 100%;
		width: 100%;
		gap: 28px;
		padding: 40px 0 48px;
	}
	.hero__title {
		font-size: clamp(2.25rem, 9.5vw, 2.75rem);
		line-height: 1.12;
	}
	.hero__desc {
		font-size: 18px;
		line-height: 1.45;
		max-width: 100%;
	}
	.hero__actions {
		flex-direction: column;
		gap: 16px;
	}
	.hero__actions .btn {
		width: 100%;
		height: 52px;
	}
	.hero__badges {
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		gap: 24px;
	}
	.hero__badge {
		gap: 14px;
	}
	.hero__badge + .hero__badge {
		border-left: 0;
		padding-left: 0;
	}
	.hero__badge span {
		font-size: 16px;
		line-height: 1.3;
	}

	/* services: single column with horizontal dividers */
	.services {
		padding: 24px 0;
	}
	.services__grid {
		flex-direction: column;
		gap: 0;
	}
	.service-card {
		flex: 1 1 auto;
		width: 100%;
		padding: 40px 8px;
		gap: 18px;
	}
	.service-card + .service-card {
		border-left: 0;
		border-top: 1px solid rgba(1, 29, 59, 0.1);
	}
	.service-card + .service-card::before {
		display: none;
	}
	.service-card__title {
		font-size: 20px;
		line-height: 1.2;
	}
	.service-card__desc {
		font-size: 16px;
		line-height: 1.5;
	}
	.service-card__link {
		font-size: 15px;
		line-height: 1.5;
	}
	.service-card__link svg {
		width: 16px;
		height: 16px;
	}

	/* why-us: intro → text+button → 2-col features → full-width image */
	.why-us {
		padding: 40px 0;
	}
	.why-us__inner {
		flex-direction: column;
		gap: 32px;
	}
	.why-us__main {
		flex-direction: column;
		gap: 28px;
	}
	.why-us__intro,
	.why-us__text {
		flex-basis: auto;
	}
	.why-us__eyebrow {
		font-size: 14px;
		line-height: 1.4;
	}
	.why-us__title {
		font-size: clamp(1.75rem, 8vw, 2.25rem);
		line-height: 1.15;
	}
	.why-us__desc {
		font-size: 18px;
		line-height: 1.6;
		text-align: left;
	}
	.btn--aboutus {
		height: 44px;
		padding: 0 28px;
		gap: 20px;
		font-size: 15px;
	}
	.btn--aboutus svg {
		width: 16px;
		height: 16px;
	}
	.why-us__features {
		grid-template-columns: 1fr 1fr;
		gap: 28px 20px;
	}
	.why-us__feature {
		flex-direction: column;
		gap: 12px;
	}
	.why-us__feature h3 {
		font-size: 15px;
		line-height: 1.25;
	}
	.why-us__feature p {
		font-size: 13px;
		line-height: 1.45;
		text-align: left;
	}
	.why-us__media {
		flex-basis: auto;
		width: 100%;
	}
	.why-us__media img {
		height: auto;
	}

	/* footer: single column, stacked bottom bar */
	.footer__columns {
		grid-template-columns: 1fr;
		gap: 40px;
		margin-bottom: 40px;
	}
	.footer__bottom {
		padding-top: 24px;
	}
	.footer__bottom-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
}


/* =========================================================
   ============  CONSOLIDATED PAGE STYLES  =================
   The following sections were previously separate per-page
   stylesheets under assets/css/. They are appended here so
   the theme ships a single style.css. Every rule is scoped
   by a page-specific ancestor (.contact-form, .quote-form,
   .about-*, .service-*, .faqs-*, .privacy-*, .aq-cta) so
   loading them globally is safe and cannot bleed.
   ========================================================= */

/* =========================================================
   Custom accessible dropdown (aq-select) — SHARED
   Progressive enhancement for the native <select> fields on
   the Contact (id 2) and Get-a-Quote (id 3) forms. See
   assets/js/aquarius-select.js. The panel is drawn by us (not
   the browser) so it ALWAYS opens BELOW the field and stays
   WHITE in OS/browser dark mode.

   Deduped from page-contact.css + page-quote.css: every rule
   here was byte-identical across both files, so a single copy
   is kept. The ONE rule that differed — `.aq-select__trigger`
   (Contact = 43px tall / 15.5px text; Quote = 50px min-height
   / 15px text, 52px on mobile) — is scoped per form below so
   each page keeps its exact field height. The JS only enhances
   selects inside `.contact-form, .quote-form`, so the .aq-select
   markup always lives under one of those ancestors.
   ========================================================= */

/* Trigger closed state — Contact form (43px field). */
.contact-form .aq-select__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100% !important;
	height: 43px;
	min-height: 43px;
	margin: 0;
	padding: 10px 12px;
	border: 1px solid #d1e0ef;
	border-radius: 8px;
	background: #fff;
	font-family: var(--font-head);
	font-weight: 400;
	font-size: 15.5px;
	line-height: 23.25px;
	color: #011d3b;
	text-align: left;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	box-shadow: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

/* Trigger closed state — Get-a-Quote form (50px min-height field). */
.quote-form .aq-select__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100% !important;
	min-height: 50px;
	margin: 0;
	padding: 13px 16px;
	border: 1px solid #d1e0ef;
	border-radius: 8px;
	background: #fff;
	font-family: var(--font-head);
	font-weight: 400;
	font-size: 15px;
	line-height: 1.4;
	color: #011d3b;
	text-align: left;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	box-shadow: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

/* Native <select> kept in the DOM for form submission, but visually removed
   once enhanced (still focusable programmatically, not by tab). */
.aq-select-native {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	border: 0 !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	white-space: nowrap !important;
	pointer-events: none !important;
}

/* Drop the old CSS chevron / NF arrow once the field is enhanced. */
.aq-enhanced::after {
	content: none !important;
	display: none !important;
}

/* Root wrapper (a <span> displayed as block). */
.aq-select {
	position: relative;
	display: block;
	width: 100%;
	box-sizing: border-box;
	font-family: var(--font-head);
}
.aq-select * {
	box-sizing: border-box;
}

/* Trigger focus/open state (shared — identical on both forms). */
.aq-select__trigger:focus,
.aq-select__trigger:focus-visible {
	outline: none;
	border-color: #156dad;
}
/* Open state echoes the header sub-menu: same soft panel shadow. */
.aq-select.is-open .aq-select__trigger {
	border-color: #156dad;
	box-shadow: 0 12px 28px rgba(1, 29, 59, 0.12);
}

.aq-select__value {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.aq-select__value.is-placeholder {
	color: #94a3b8;
}

.aq-select__chevron {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	color: #011d3b;
	transition: transform 0.15s ease;
}
.aq-select.is-open .aq-select__chevron {
	transform: rotate(180deg);
}

/* Panel = open options list. WHITE at all times (explicit #fff), even in dark
   mode — we never rely on color-scheme. Opens BELOW the field (top:100%). */
.aq-select__panel {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	z-index: 70;
	display: none;
	margin: 0;
	padding: 8px;
	list-style: none;
	background: #fff;
	border: 1px solid #d1e0ef;
	border-radius: 8px;
	box-shadow: 0 12px 28px rgba(1, 29, 59, 0.12);
	max-height: 280px;
	overflow-y: auto;
	color: #011d3b;
}
.aq-select.is-open .aq-select__panel {
	display: block;
}
/* Only flips ABOVE when there is no room below near the viewport bottom. */
.aq-select.is-flip-up .aq-select__panel {
	top: auto;
	bottom: calc(100% + 6px);
}

.aq-select__option {
	margin: 0;
	padding: 8px 12px;
	border-radius: 6px;
	font-family: var(--font-head);
	font-size: 15px;
	line-height: 1.4;
	color: #011d3b;
	cursor: pointer;
}
.aq-select__option.is-selected {
	font-weight: 500;
}
.aq-select__option:hover,
.aq-select__option.is-active {
	background: #f2f7fb;
	color: #156dad;
}


/* =========================================================
   About Us page (was assets/css/page-about.css)
   ========================================================= */
/*
 * About Us page (page-templates/about.php)
 * Figma node 1:2272 — desktop 1440.
 * Reuses theme tokens from style.css :root plus its .container/.btn/
 * .services__grid/.service-card/.cta component styles.
 */

/* ---------- page banner (1440x300, photo w/ navy fade baked in) ---------- */
.about-hero {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.about-hero__content {
	display: flex;
	flex-direction: column;
	gap: 8px;
	max-width: 488px;
	padding: 93px 0;
}
.about-hero__title {
	font-weight: 600;
	font-size: 48px;
	line-height: 1.2;
	color: #fff;
}
.about-hero__desc {
	font-weight: 400;
	font-size: 18px;
	line-height: 24px;
	color: #fff;
}

/* icons rendered by aquarius_pods_icon() arrive wrapped in span.aq-icon */
.about-template .aq-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ---------- shared section pieces ---------- */
.about-eyebrow {
	display: block;
	font-weight: 500;
	font-size: 12px;
	line-height: 14.4px;
	text-transform: uppercase;
	color: var(--blue-link);
}
.about-heading {
	font-weight: 600;
	font-size: 30px;
	line-height: 45px;
	color: var(--navy);
}
.about-rule {
	display: block;
	width: 51px;
	height: 3px;
	border-radius: 100px;
	background: var(--green-accent);
}

/* centered intro used by Our Expertise / Team & Values */
.about-section-head {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 745px;
	margin: 0 auto 32px;
	text-align: center;
}
.about-section-head__intro {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.about-section-head__desc {
	font-weight: 400;
	font-size: 16.5px;
	line-height: 24.75px;
	color: var(--navy);
}

/* ---------- who we are ---------- */
.about-who {
	padding: 80px 0 100px;
}
.about-who__inner {
	display: flex;
	align-items: center;
	gap: 85px;
}
.about-who__content {
	flex: 1 1 600px;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.about-who__intro {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.about-who__intro .about-heading {
	max-width: 508px;
}
.about-who__text {
	font-weight: 400;
	font-size: 16.5px;
	line-height: 24.75px;
	color: var(--navy);
}
.about-who__text p {
	margin: 0;
}
.about-who__text p + p {
	margin-top: 25px;
}
.about-who__media {
	flex: 0 1 595px;
	min-width: 0;
}
.about-who__media img {
	display: block;
	width: 100%;
	height: 415px;
	object-fit: cover;
	border-radius: 12px;
}

/* ---------- our expertise ---------- */
.about-expertise {
	padding: 0 0 100px;
}
.about-expertise .about-section-head {
	max-width: 670px;
}

/* ---------- team & values ---------- */
.about-team {
	background: var(--section-bg);
	padding: 55px 0 56px;
}
.about-team__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: stretch;
}
.about-value {
	position: relative;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 6.5px 24px 0;
}
.about-value:first-child {
	padding-left: 0;
}
.about-value:last-child {
	padding-right: 0;
}
/* Figma divider: #011d3b @ 10%, full 140px row height */
.about-value + .about-value::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 1px;
	background: rgba(1, 29, 59, 0.1);
}
.about-value__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 100px;
}
.about-value__icon svg,
.about-value__icon img {
	width: 28px;
	height: 28px;
}
.about-value__body {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.about-value__body h3 {
	font-weight: 600;
	font-size: 15px;
	line-height: 14.4px;
	color: var(--navy);
}
.about-value__body p {
	font-weight: 400;
	font-size: 13px;
	line-height: 16.6px;
	color: var(--navy);
}

/* ---------- our goal ---------- */
.about-goal {
	padding: 80px 0 100px;
}
.about-goal__box {
	display: flex;
	align-items: center;
	gap: 24px;
	max-width: 1122px;
	margin: 0 auto;
	padding: 24px 60px;
	background: #dfebf7;
	border: 1px solid #bfd6ed;
	border-radius: 12px;
}
.about-goal__media {
	flex: 0 0 95px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.about-goal__media img,
.about-goal__media svg {
	display: block;
	width: 95px;
	height: auto;
}
.about-goal__body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.about-goal__title {
	font-weight: 600;
	font-size: 17px;
	line-height: 21.6px;
	color: var(--navy);
}
.about-goal__text {
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 15.5px;
	line-height: 23.25px;
	color: var(--navy);
}
.about-goal__text p {
	margin: 0;
	font-weight: 400;
}
.about-goal__text p.about-goal__text-strong {
	font-weight: 500;
}

/* ---------- responsive (Figma is desktop-1440 only) ---------- */
@media (max-width: 1200px) {
	.about-who__inner {
		gap: 48px;
	}
}

@media (max-width: 991px) {
	.about-hero__content {
		padding: 72px 0;
	}
	.about-hero__title {
		font-size: 40px;
	}

	.about-who {
		padding: 56px 0 64px;
	}
	.about-who__inner {
		flex-direction: column;
		align-items: stretch;
		gap: 28px;
	}
	.about-who__media {
		flex-basis: auto;
	}
	.about-who__media img {
		height: auto;
		aspect-ratio: 595 / 415;
	}

	.about-expertise {
		padding-bottom: 64px;
	}

	/* values: 2-up, drop dividers */
	.about-team__grid {
		flex-wrap: wrap;
		gap: 32px 0;
	}
	.about-value {
		flex: 0 0 50%;
		padding: 0 24px 0 0;
	}
	.about-value + .about-value::before {
		display: none;
	}

	.about-goal {
		padding: 56px 0 64px;
	}
	.about-goal__box {
		padding: 24px 32px;
	}
}

@media (max-width: 640px) {
	.about-hero__content {
		padding: 56px 0;
	}
	.about-hero__title {
		font-size: 32px;
	}
	.about-heading {
		font-size: 26px;
		line-height: 1.4;
	}

	.about-value {
		flex: 0 0 100%;
		padding-right: 0;
	}

	.about-goal__box {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* ---------------------------------------------------------------------------
 * MOBILE — matches the 430px Figma mobile design (single-column stack).
 * Fluid 320–600; desktop/tablet layouts above 767px are untouched.
 * ------------------------------------------------------------------------- */
@media (max-width: 767px) {
	/* ---------- hero ---------- */
	.about-hero__content {
		max-width: 520px;
		gap: 12px;
		padding: 100px 0 128px;
	}
	.about-hero__title {
		font-size: clamp(30px, 8.4vw, 36px);
		line-height: 1.15;
	}
	.about-hero__desc {
		font-size: 16px;
		line-height: 1.45;
	}

	/* ---------- shared headings ---------- */
	.about-heading {
		font-size: clamp(24px, 6.6vw, 29px);
		line-height: 1.3;
	}
	.about-who .about-heading,
	.about-team .about-heading {
		font-size: clamp(27px, 7.6vw, 33px);
		line-height: 1.2;
	}
	.about-section-head__desc {
		font-size: 16px;
		line-height: 1.5;
	}

	/* ---------- who we are (text, then image) ---------- */
	.about-who {
		padding: 56px 0;
	}
	.about-who__inner {
		gap: 24px;
	}
	.about-who__intro .about-heading {
		max-width: none;
	}

	/* ---------- our expertise (single column, horizontal dividers) ---------- */
	.about-expertise {
		padding: 0 0 56px;
	}
	.about-expertise__grid.services__grid {
		flex-direction: column;
		flex-wrap: nowrap;
		gap: 0;
	}
	.about-expertise__grid .service-card {
		flex: 0 0 auto;
		padding: 32px 0;
	}
	.about-expertise__grid .service-card:first-child {
		padding-top: 0;
	}
	.about-expertise__grid .service-card:last-child {
		padding-bottom: 0;
	}
	.about-expertise__grid .service-card + .service-card::before {
		top: 0;
		bottom: auto;
		left: 0;
		right: 0;
		width: auto;
		height: 1px;
	}
	.about-expertise__grid .service-card__icon,
	.about-expertise__grid .service-card__icon svg,
	.about-expertise__grid .service-card__icon img {
		height: 56px;
	}
	.about-expertise__grid .service-card__title {
		font-size: 18px;
		line-height: 1.35;
	}
	.about-expertise__grid .service-card__rule {
		height: 3px;
	}
	.about-expertise__grid .service-card__desc {
		font-size: 15px;
		line-height: 1.5;
	}
	.about-expertise__grid .service-card__link {
		font-size: 14px;
	}
	.about-expertise__grid .service-card__link svg {
		width: 16px;
		height: 16px;
	}

	/* ---------- team & values (left-aligned head, stacked rows) ---------- */
	.about-team {
		padding: 48px 0;
	}
	.about-team .about-section-head {
		max-width: 100%;
		margin: 0 0 24px;
		text-align: left;
	}
	.about-team__grid {
		flex-direction: column;
		flex-wrap: nowrap;
		gap: 0;
	}
	.about-value {
		flex: 0 0 auto;
		flex-direction: row;
		align-items: flex-start;
		gap: 16px;
		padding: 24px 0;
	}
	.about-value:first-child {
		padding-top: 0;
	}
	.about-value:last-child {
		padding-bottom: 0;
	}
	.about-value + .about-value::before {
		display: block;
		top: 0;
		bottom: auto;
		left: 0;
		right: 0;
		width: auto;
		height: 1px;
		background: rgba(1, 29, 59, 0.1);
	}
	.about-value__icon {
		flex: 0 0 46px;
	}
	.about-value__body {
		flex: 1;
		min-width: 0;
		gap: 6px;
	}
	.about-value__body h3 {
		font-size: 16px;
		line-height: 1.3;
	}
	.about-value__body p {
		font-size: 14px;
		line-height: 1.5;
	}

	/* ---------- our goal (logo on top, big heading) ---------- */
	.about-goal {
		padding: 48px 0;
	}
	.about-goal__box {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		padding: 32px 24px;
	}
	.about-goal__media {
		flex: 0 0 auto;
	}
	.about-goal__media img,
	.about-goal__media svg {
		width: 88px;
	}
	.about-goal__title {
		font-size: clamp(23px, 6.2vw, 27px);
		line-height: 1.25;
	}
	.about-goal__text {
		gap: 16px;
		font-size: 15px;
		line-height: 1.55;
	}
}


/* =========================================================
   Contact page (was assets/css/page-contact.css — aq-select block moved to the shared section above)
   ========================================================= */
/* =========================================================
   Contact page — rebuilt to match the Figma design 1:1
   (file VTPAmcQtV2N30Ka5otIP1M, node 1:3509, 1440-wide)
   Scoped to the Contact template only (contact-* classes).
   The form is a Ninja Form (ID 2) restyled below to the exact
   Figma field design. The two-column field grid is driven off
   Ninja Forms' own stable per-field hooks — the field-type
   container class (`.textbox-container`, `.email-container`,
   …) and the per-field `data-testid="nf-field-<key>"` — so no
   modification of the form itself is required.
   ========================================================= */

/* ---------- page hero (300px navy band w/ photo) ---------- */
.contact-hero {
	background: var(--navy) center / cover no-repeat;
}
.contact-hero__inner {
	min-height: 300px;
	display: flex;
	align-items: center;
}
.contact-hero__content {
	display: flex;
	flex-direction: column;
	gap: 8px;
	max-width: 488px;
	padding: 40px 0;
}
.contact-hero__title {
	font-weight: 600;
	font-size: 48px;
	line-height: 57.6px;
	color: #fff;
}
.contact-hero__desc {
	font-weight: 400;
	font-size: 18px;
	line-height: 24px;
	color: #fff;
}

/* ---------- main: form (834) + get-in-touch card (422) ---------- */
.contact-main {
	background: #fff;
	padding: 80px 0;
}
.contact-main__inner {
	display: flex;
	align-items: flex-start;
	gap: 24px;
}
.contact-form-col {
	flex: 1 1 auto;
	min-width: 0;
}
.contact-aside {
	flex: 0 0 422px;
	max-width: 100%;
}

/* intro */
.contact-form-col__intro {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 32px;
}
.contact-form-col__title {
	font-weight: 600;
	font-size: 30px;
	line-height: 45px;
	color: var(--navy);
}
.contact-form-col__desc {
	font-weight: 400;
	font-size: 16.5px;
	line-height: 24.75px;
	color: var(--navy);
}

/* =========================================================
   NINJA FORMS — restyled to the exact Figma form design
   ========================================================= */

/* kill NF chrome that isn't in the design */
.contact-form .nf-form-fields-required,
.contact-form .nf-form-title,
.contact-form .submit-container .nf-field-label {
	display: none;
}
.contact-form .nf-form-cont,
.contact-form .nf-form-layout {
	margin: 0;
}

/* field grid: NF nests fields as
   .nf-form-content > nf-fields-wrap > nf-field > .nf-field-container
   The flex row is nf-fields-wrap; nf-field is display:contents so the
   .nf-field-container becomes the flex item. Sizing via the aq-nf-* container
   classes set on each field. */
.contact-form .nf-form-content {
	display: block;
	padding: 0;
	max-width: none;
}
.contact-form nf-fields-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 16px;
}
.contact-form nf-field {
	display: contents;
}
.contact-form .nf-field-container {
	flex: 0 0 100%;
	min-width: 0;
	margin: 0 !important; /* NF sets margin-bottom:25px; gap owns spacing */
	clear: none !important; /* NF sets clear:both on every container */
}

/* half-width pairs → Name|Company, Email|Phone, Location|Service */
.contact-form .aq-nf-half {
	flex: 0 0 calc(50% - 8px);
	max-width: calc(50% - 8px);
}

/* submit + secure note share the final row */
.contact-form .aq-nf-submit {
	flex: 0 0 auto;
	margin-top: 8px !important; /* 16px gap + 8 = Figma's 24px above submit */
}
.contact-form .aq-nf-secure {
	flex: 1 1 0;
	align-self: center;
	margin-top: 8px !important;
}

/* the NF wrap is flex (label above element) — keep it clean */
.contact-form .field-wrap {
	display: flex;
	flex-direction: column;
}

/* labels (15.5px Poppins, navy, red asterisk) */
.contact-form .nf-field-label {
	margin: 0 0 6px;
	padding: 0;
}
.contact-form .nf-field-label label,
.contact-form .nf-field-label .nf-label-span {
	font-family: var(--font-head);
	font-weight: 400;
	font-size: 15.5px;
	line-height: 23.25px;
	color: var(--navy);
}
.contact-form .ninja-forms-req-symbol {
	color: #d11b1e;
}

/* inputs (43px, 1px #d1e0ef border, 8px radius) */
.contact-form .nf-field-element {
	position: relative;
}
.contact-form .nf-field-element input[type="text"],
.contact-form .nf-field-element input[type="email"],
.contact-form .nf-field-element input[type="tel"],
.contact-form .nf-field-element select,
.contact-form .nf-field-element textarea {
	width: 100%;
	height: 43px;
	padding: 10px 12px;
	border: 1px solid #d1e0ef;
	border-radius: 8px;
	background: #fff;
	font-family: var(--font-head);
	font-weight: 400;
	font-size: 15.5px;
	line-height: 23.25px;
	color: var(--navy);
	outline: none;
	box-shadow: none;
	transition: border-color 0.15s ease;
}
.contact-form .nf-field-element input::placeholder,
.contact-form .nf-field-element textarea::placeholder {
	color: #94a3b8;
	opacity: 1;
}
.contact-form .nf-field-element input:focus,
.contact-form .nf-field-element select:focus,
.contact-form .nf-field-element textarea:focus {
	border-color: var(--blue-link);
}
.contact-form .nf-field-element textarea {
	height: 120px;
	resize: vertical;
}

/* select styled to echo the header "Services" dropdown: white rounded field,
   navy text, clean down-chevron on the RIGHT, soft panel shadow when open */
.contact-form .listselect-container .nf-field-element select {
	appearance: none;
	-webkit-appearance: none;
	padding-right: 42px;
	cursor: pointer;
	color: var(--navy);
	/* Force the native option popup to render light/white even when the OS or
	   browser is in dark mode (prevents the dark overlay over the field). */
	color-scheme: light;
}
/* open/focus state echoes the header sub-menu's white rounded panel + shadow */
.contact-form .listselect-container .nf-field-element select:focus {
	border-color: var(--blue-link);
	box-shadow: 0 12px 28px rgba(1, 29, 59, 0.12);
}
/* native option list: white panel, navy text at ALL times, incl. dark mode */
.contact-form .listselect-container .nf-field-element select option {
	background: #fff;
	color: #011d3b;
	padding: 8px 12px;
}
.contact-form .listselect-container .nf-field-element::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 12px;
	width: 18px;
	height: 18px;
	transform: translateY(-50%);
	background: url("assets/images/contact/select-chevron.svg") center / contain
		no-repeat;
	pointer-events: none;
}
.contact-form .listselect-container .nf-field-element div {
	display: none; /* NF's own select arrow div */
}

/* consent checkbox (exact Figma green square-check) */
.contact-form .checkbox-container .field-wrap {
	flex-direction: row;
	align-items: center;
	flex-wrap: nowrap;
	gap: 8px;
}
.contact-form .checkbox-container .nf-field-label {
	order: 2;
	margin: 0;
	width: auto;
	height: auto;
	visibility: visible;
}
.contact-form .checkbox-container .nf-field-label label {
	color: rgba(1, 29, 59, 0.8);
	cursor: pointer;
	margin: 0;
	padding: 0;
	float: none;
	display: inline;
	font-weight: 400;
}
.contact-form .checkbox-container .nf-field-element {
	order: 1;
	flex: 0 0 18px;
	width: auto;
	margin: 0;
}
.contact-form .checkbox-container .nf-field-element > div {
	display: block;
	width: 18px;
	height: 18px;
}
.contact-form .checkbox-container input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	display: block;
	width: 18px;
	height: 18px;
	margin: 0;
	border: 1.5px solid #94a3b8;
	border-radius: 4px;
	background: #fff;
	cursor: pointer;
	transition:
		border-color 0.15s ease,
		background 0.15s ease;
}
.contact-form .checkbox-container input[type="checkbox"]:checked {
	border: 0;
	background: url("assets/images/contact/checkbox-check.svg") center / 18px 18px
		no-repeat;
}
.contact-form__consent-link {
	color: #0e7ac8;
	text-decoration: underline;
}

/* submit button (green, arrow icon) */
.contact-form .submit-container .nf-field-element {
	position: relative;
	display: inline-block;
}
.contact-form .submit-container input[type="button"],
.contact-form .submit-container input[type="submit"],
.contact-form .submit-container button {
	height: 50px;
	padding: 0 66px 0 22px;
	border: 0;
	border-radius: var(--radius);
	background: var(--green);
	color: #fff;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	white-space: nowrap;
	cursor: pointer;
	transition: filter 0.15s ease;
}
.contact-form .submit-container input:hover,
.contact-form .submit-container button:hover {
	filter: brightness(1.08);
}
.contact-form .submit-container .nf-field-element::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 22px;
	width: 18px;
	height: 18px;
	transform: translateY(-50%);
	background: url("assets/images/contact/submit-arrow.svg") center / contain
		no-repeat;
	pointer-events: none;
}

/* secure note (lock icon + 15.5px navy @ 80%) — NF html field */
.contact-form__secure {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-head);
	font-weight: 400;
	font-size: 15.5px;
	line-height: 23.25px;
	color: rgba(1, 29, 59, 0.8);
}
.contact-form__secure-icon {
	display: inline-block;
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
	background: url("assets/images/contact/secure-lock.svg") center / contain
		no-repeat;
}

/* validation + response messages (design-language colours) */
.contact-form .nf-error-msg,
.contact-form .ninja-forms-req-symbol {
	color: #d11b1e;
}
.contact-form .nf-error-msg {
	font-family: var(--font-head);
	font-size: 13px;
	line-height: 15.6px;
	margin-top: 4px;
}
.contact-form .nf-error .ninja-forms-field {
	border-color: #d11b1e;
}
.contact-form .nf-error-wrap:empty {
	display: none;
}
.contact-form .nf-response-msg {
	margin: 0 0 24px;
	padding: 14px 16px;
	border-radius: 8px;
	background: #f6f8f3;
	border: 1px solid #e7f3d5;
	color: var(--navy);
	font-family: var(--font-head);
	font-size: 15.5px;
	line-height: 23.25px;
}
.contact-form .nf-response-msg p {
	margin: 0;
}
.contact-form .nf-form-errors .nf-error-msg {
	margin-top: 8px;
}

/* ---------- get in touch card ---------- */
.contact-touch {
	background: #f6f8f3;
	border: 1px solid #e7f3d5;
	border-radius: 12px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.contact-touch__title {
	font-weight: 600;
	font-size: 17px;
	line-height: 21.6px;
	color: var(--navy);
}
.contact-touch__divider {
	margin: 0;
	border: 0;
	border-top: 1px solid #e7f3d5;
}
.contact-touch__row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}
.contact-touch__icon {
	flex: 0 0 51px;
	width: 51px;
	height: 51px;
	border-radius: 100px;
	background: #fff;
	border: 1px solid #e7f3d5;
	display: flex;
	align-items: center;
	justify-content: center;
}
.contact-touch__icon .aq-icon {
	display: flex;
}
.contact-touch__icon svg,
.contact-touch__icon img.aq-icon {
	width: 28px;
	height: 28px;
}
.contact-touch__body {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}
.contact-touch__heading {
	font-weight: 600;
	font-size: 15px;
	line-height: 14.4px;
	color: var(--navy);
}
.contact-touch__value {
	font-weight: 600;
	font-size: 17px;
	line-height: 25.5px;
	color: #528521;
	word-break: break-word;
}
.contact-touch__value:hover {
	text-decoration: underline;
}
.contact-touch__line {
	font-weight: 400;
	font-size: 13px;
	line-height: 15.6px;
	color: var(--navy);
}

/* ---------- reassurance features row ---------- */
.contact-features {
	background: #fff;
	padding-bottom: 80px;
}
.contact-features__grid {
	display: flex;
	align-items: stretch;
}
.contact-feature {
	position: relative;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 0 24px;
}
.contact-feature:first-child {
	padding-left: 0;
}
.contact-feature:last-child {
	padding-right: 0;
}
.contact-feature + .contact-feature::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 1px;
	background: rgba(1, 29, 59, 0.1);
}
.contact-feature__icon {
	width: 46px;
	height: 46px;
	border-radius: 100px;
	background: #dfebf7;
	display: flex;
	align-items: center;
	justify-content: center;
}
.contact-feature--green .contact-feature__icon {
	background: #e7eee6;
}
.contact-feature__icon .aq-icon {
	display: flex;
}
.contact-feature__icon svg,
.contact-feature__icon img.aq-icon {
	width: 28px;
	height: 28px;
}
.contact-feature__body {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.contact-feature__title {
	font-weight: 600;
	font-size: 15px;
	line-height: 14.4px;
	color: var(--navy);
}
.contact-feature__desc {
	font-weight: 400;
	font-size: 13px;
	line-height: 15.6px;
	color: var(--navy);
	max-width: 284px;
}

/* =========================================================
   RESPONSIVE (consistent with the home template breakpoints)
   ========================================================= */
@media (max-width: 1200px) {
	.contact-hero__title {
		font-size: 40px;
		line-height: 1.15;
	}
	.contact-aside {
		flex-basis: 360px;
	}
}

@media (max-width: 991px) {
	.contact-main {
		padding: 56px 0;
	}
	.contact-main__inner {
		flex-direction: column;
	}
	.contact-aside {
		flex-basis: auto;
		width: 100%;
	}
	.contact-features {
		padding-bottom: 56px;
	}
	.contact-features__grid {
		flex-wrap: wrap;
		gap: 32px 0;
	}
	.contact-feature {
		flex: 0 0 50%;
	}
	.contact-feature:nth-child(odd) {
		padding-left: 0;
	}
	.contact-feature:nth-child(2n + 1)::before {
		display: none;
	}
}

/* =========================================================
   MOBILE (≤767px) — matches the 430px Figma design.
   Everything stacks to a single column; fluid across 320–600.
   ========================================================= */
@media (max-width: 767px) {
	/* ---------- hero ---------- */
	.contact-hero__inner {
		min-height: 360px;
	}
	.contact-hero__content {
		max-width: 100%;
		padding: 40px 0;
		gap: 12px;
	}
	.contact-hero__title {
		font-size: clamp(32px, 10.5vw, 46px);
		line-height: 1.12;
	}
	.contact-hero__desc {
		font-size: clamp(15px, 4.2vw, 18px);
		line-height: 1.4;
	}

	/* ---------- main: form then Get-in-Touch, single column ---------- */
	.contact-main {
		padding: 44px 0;
	}
	.contact-main__inner {
		gap: 32px;
	}
	.contact-form-col__intro {
		gap: 8px;
		margin-bottom: 24px;
	}
	.contact-form-col__title {
		font-size: clamp(24px, 7vw, 30px);
		line-height: 1.25;
	}
	.contact-form-col__desc {
		font-size: 16px;
		line-height: 1.5;
	}

	/* Ninja Forms: collapse the two-column field grid to one column.
	   The .aq-nf-half pairs (Name|Company, Email|Phone, Location|Service)
	   go full-width; submit + secure note stack, both full-width. */
	.contact-form nf-fields-wrap {
		gap: 20px;
	}
	.contact-form .aq-nf-half {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.contact-form .aq-nf-submit,
	.contact-form .aq-nf-secure {
		flex: 0 0 100%;
		max-width: 100%;
		margin-top: 4px !important;
	}
	.contact-form .aq-nf-secure {
		align-self: flex-start;
	}
	/* full-width green button with the label + arrow centred as a group */
	.contact-form .submit-container .nf-field-element {
		display: block;
		width: 100%;
	}
	.contact-form .submit-container input[type="button"],
	.contact-form .submit-container input[type="submit"],
	.contact-form .submit-container button {
		width: 100%;
		text-align: center;
		padding: 0 24px;
	}
	.contact-form .submit-container .nf-field-element::after {
		left: 50%;
		right: auto;
		margin-left: 60px;
	}

	/* ---------- Get in Touch: full-bleed light band ---------- */
	.contact-touch {
		margin-left: calc(var(--pad) * -1);
		margin-right: calc(var(--pad) * -1);
		padding: 40px var(--pad);
		border: 0;
		border-radius: 0;
		gap: 20px;
	}

	/* ---------- trust features: single column, icon-left rows ---------- */
	.contact-features {
		padding: 40px 0 56px;
	}
	.contact-features__grid {
		flex-direction: column;
		flex-wrap: nowrap;
		gap: 0;
	}
	.contact-feature {
		flex: 0 0 100%;
		flex-direction: row;
		align-items: flex-start;
		gap: 16px;
		padding: 24px 0;
	}
	.contact-feature:first-child {
		padding-top: 0;
	}
	.contact-feature:last-child {
		padding-bottom: 0;
	}
	.contact-feature + .contact-feature {
		border-top: 1px solid rgba(1, 29, 59, 0.1);
	}
	.contact-feature + .contact-feature::before {
		display: none;
	}
	.contact-feature__icon {
		flex: 0 0 46px;
	}
	.contact-feature__desc {
		max-width: none;
	}
}


/* =========================================================
   Get a Quote page (was assets/css/page-quote.css — aq-select block moved to the shared section above)
   ========================================================= */
/**
 * Get a Quote page — page-templates/quote.php
 *
 * Reuses theme tokens from style.css :root plus its .container. Everything is
 * scoped under .quote-template. The form is a Ninja Form (id 3) embedded via
 * shortcode; the .quote-form rules below restyle Ninja Forms' own markup
 * (.nf-form-cont, .nf-field-container, .nf-element, .ninja-forms-req-symbol,
 * etc.) to match the Figma design.
 */

.quote-template {
	--q-navy: #011d3b;
	--q-green: #57812e;
	--q-green-accent: #6f9c44;
	--q-field-border: #d1e0ef;
	--q-placeholder: #94a3b8;
	--q-required: #d11b1e;
	--q-panel-bg: #f6f8f3;
	--q-panel-border: #e7f3d5;
	font-family: var(--font-head);
}

/* ---------------------------------------------------------------------------
 * Hero
 * ------------------------------------------------------------------------- */
.quote-hero {
	position: relative;
	background-color: var(--q-navy);
	background-image: url("assets/images/quote/hero-bg.png");
	background-repeat: no-repeat;
	background-position: center right;
	background-size: cover;
	padding: 90px 0;
	overflow: hidden;
}

.quote-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		var(--q-navy) 0%,
		rgba(1, 29, 59, 0.92) 32%,
		rgba(1, 29, 59, 0) 60%
	);
	pointer-events: none;
}

.quote-hero .container {
	position: relative;
	z-index: 1;
}

.quote-hero__inner {
	max-width: 620px;
}

.quote-hero__title {
	margin: 0 0 18px;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 48px;
	line-height: 1.1;
	color: #ffffff;
}

.quote-hero__subtitle {
	margin: 0;
	max-width: 560px;
	font-family: var(--font-head);
	font-weight: 400;
	font-size: 18px;
	line-height: 1.6;
	color: #ffffff;
}

/* ---------------------------------------------------------------------------
 * Two-column body
 * ------------------------------------------------------------------------- */
.quote-body {
	padding: 92px 0;
}

.quote-body__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 422px;
	gap: 40px;
	align-items: start;
}

/* ---- Left: request + form ---- */
.quote-request__heading {
	margin: 0 0 14px;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 30px;
	line-height: 1.2;
	color: var(--q-navy);
}

.quote-request__intro {
	margin: 0 0 34px;
	max-width: 600px;
	font-family: var(--font-head);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.65;
	color: var(--q-navy);
}

/* ---------------------------------------------------------------------------
 * Ninja Form restyle (scoped to .quote-form)
 * ------------------------------------------------------------------------- */
.quote-form .nf-form-cont,
.quote-form .nf-form-content {
	max-width: none;
	margin: 0;
	padding: 0;
}

/* Two-column field grid. NF nests fields:
 * .nf-form-content > nf-fields-wrap > nf-field > .nf-field-container
 * The flex container must be nf-fields-wrap; nf-field is display:contents so the
 * .nf-field-container becomes the flex item. */
.quote-form .nf-form-content {
	display: block;
}

.quote-form nf-fields-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 0 28px;
}

.quote-form nf-field {
	display: contents;
}

.quote-form .nf-field-container {
	flex: 0 0 100%;
	max-width: 100%;
	margin-bottom: 22px;
	box-sizing: border-box;
}

.quote-form .quote-col--half {
	flex: 0 0 calc(50% - 14px);
	max-width: calc(50% - 14px);
}

/* NF's "fields marked * are required" helper line — not in the design. */
.quote-form .nf-form-fields-required {
	display: none;
}

/* Labels */
.quote-form .nf-field-label {
	margin-bottom: 8px;
}

.quote-form .nf-field-label label {
	margin: 0;
	padding: 0;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 15px;
	line-height: 1.3;
	color: var(--q-navy);
}

.quote-form .ninja-forms-req-symbol {
	margin-left: 3px;
	color: var(--q-required);
	font-weight: 600;
}

/* Inputs / selects / textareas */
.quote-form .nf-element,
.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"],
.quote-form input[type="number"],
.quote-form input[type="url"],
.quote-form textarea,
.quote-form select {
	width: 100%;
	box-sizing: border-box;
	height: auto;
	min-height: 50px;
	margin: 0;
	padding: 13px 16px;
	border: 1px solid var(--q-field-border);
	border-radius: 8px;
	background-color: #ffffff;
	font-family: var(--font-head);
	font-weight: 400;
	font-size: 15px;
	line-height: 1.4;
	color: var(--q-navy);
	box-shadow: none;
	transition: border-color 0.15s ease;
}

.quote-form .nf-element:focus,
.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
	outline: none;
	border-color: var(--q-green-accent);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
	color: var(--q-placeholder);
	opacity: 1;
}

.quote-form ::-webkit-input-placeholder {
	color: var(--q-placeholder);
}

/* Select chevron.
   The bundled assets/images/quote/select-chevron.svg is un-rotated (its path
   only carries a translate, so it renders as a sideways "<"). We can only edit
   CSS, so the chevron is supplied inline as a clean DOWN-chevron and pinned to
   the RIGHT of the field — matching the Contact page's correct behaviour and
   the header "Services" dropdown caret. */
.quote-form select,
.quote-form .listselect-wrap select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding-right: 44px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23011d3b' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 16px;
	cursor: pointer;
	color: var(--q-navy);
	/* Force the native option popup to render light/white even when the OS or
	   browser is in dark mode (prevents the dark overlay over the field). */
	color-scheme: light;
}

/* open/focus state echoes the header sub-menu's white rounded panel + shadow */
.quote-form select:focus {
	box-shadow: 0 12px 28px rgba(1, 29, 59, 0.12);
}

/* native option list: white panel, navy text at ALL times, incl. dark mode */
.quote-form select option {
	background: #fff;
	color: #011d3b;
	padding: 8px 12px;
}

/* Placeholder-like first option colour */
.quote-form select:invalid,
.quote-form select .nf-option-placeholder {
	color: var(--q-placeholder);
}

/* Textarea */
.quote-form textarea {
	min-height: 132px;
	resize: vertical;
	line-height: 1.55;
}

/* Consent checkbox row: custom checkbox (left) + agreement text (right). */
.quote-form .quote-consent {
	margin-top: 4px;
}

.quote-form .quote-consent .field-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
}

.quote-form .quote-consent .nf-field-element {
	order: 1;
	flex: 0 0 auto;
	display: inline-flex;
}

.quote-form .quote-consent .nf-field-label {
	order: 2;
	margin: 0;
}

.quote-form .quote-consent .nf-field-label label {
	margin: 0;
	font-family: var(--font-head);
	font-weight: 400;
	font-size: 15px;
	line-height: 1.5;
	color: var(--q-navy);
	cursor: pointer;
}

/* Draw a custom box directly on the native checkbox. */
.quote-form .quote-consent input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	margin: 0;
	padding: 0;
	min-height: 0;
	border: 1.5px solid var(--q-field-border);
	border-radius: 5px;
	background: #ffffff;
	cursor: pointer;
}

.quote-form .quote-consent input[type="checkbox"]:checked {
	border-color: var(--q-green-accent);
	background-image: url("assets/images/quote/checkbox-check.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 18px;
}

.quote-form .quote-consent a {
	color: #156dad;
	text-decoration: underline;
}

/* Submit row: green button + secure note side by side */
.quote-form .submit-container {
	flex: 0 0 auto;
	max-width: none;
	margin-bottom: 0;
	margin-right: 22px;
}

.quote-form input[type="submit"],
.quote-form .submit-container .nf-element {
	width: auto;
	min-height: 0;
	display: inline-flex;
	align-items: center;
	padding: 16px 56px 16px 28px;
	border: none;
	border-radius: 8px;
	background-color: var(--q-green);
	background-image: url("assets/images/quote/arrow-submit.svg");
	background-repeat: no-repeat;
	background-position: right 24px center;
	background-size: 17px;
	color: #ffffff;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.15s ease;
}

.quote-form input[type="submit"]:hover,
.quote-form .submit-container .nf-element:hover {
	background-color: #4c7228;
}

/* Secure note (NF html field, container class .quote-secure) */
.quote-form .quote-secure {
	flex: 1 1 auto;
	max-width: none;
	margin-bottom: 0;
	display: flex;
	align-items: center;
}

.quote-form .quote-secure .nf-field-label {
	display: none;
}

.quote-form .quote-secure__inner {
	display: flex;
	align-items: center;
	gap: 9px;
	font-family: var(--font-head);
	font-weight: 400;
	font-size: 15px;
	line-height: 1.4;
	color: rgba(1, 29, 59, 0.8);
}

.quote-form .quote-secure__inner svg {
	flex: 0 0 auto;
}

/* NF spinner / error tweaks */
.quote-form .nf-error-msg {
	margin-top: 6px;
	font-size: 13px;
	color: var(--q-required);
}

.quote-form .nf-error .nf-element {
	border-color: var(--q-required);
}

/* ---------------------------------------------------------------------------
 * Right: "Why get a quote" panel
 * ------------------------------------------------------------------------- */
.quote-why {
	background-color: var(--q-panel-bg);
	border: 1px solid var(--q-panel-border);
	border-radius: 12px;
	padding: 32px 28px;
}

.quote-why__heading {
	margin: 0 0 24px;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 17px;
	line-height: 1.3;
	color: var(--q-navy);
}

.quote-why__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.quote-why__item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px 0;
	border-bottom: 1px solid var(--q-panel-border);
}

.quote-why__item:first-child {
	padding-top: 0;
}

.quote-why__icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 51px;
	height: 51px;
	border-radius: 50%;
	background: #ffffff;
	border: 1px solid var(--q-panel-border);
}

.quote-why__icon svg {
	width: 26px;
	height: 26px;
}

.quote-why__title {
	margin: 0 0 5px;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 15px;
	line-height: 1.3;
	color: var(--q-navy);
}

.quote-why__desc {
	margin: 0;
	font-family: var(--font-head);
	font-weight: 400;
	font-size: 13px;
	line-height: 1.55;
	color: var(--q-navy);
}

/* ---- Callout ---- */
.quote-callout {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding-top: 24px;
	margin-top: 4px;
}

.quote-callout__icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 51px;
	height: 51px;
	border-radius: 50%;
	background: #ffffff;
	border: 1px solid var(--q-panel-border);
}

.quote-callout__icon svg {
	width: 26px;
	height: 26px;
}

.quote-callout__heading {
	margin: 0 0 5px;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 15px;
	line-height: 1.3;
	color: var(--q-navy);
}

.quote-callout__body {
	margin: 0;
	font-family: var(--font-head);
	font-weight: 400;
	font-size: 13px;
	line-height: 1.6;
	color: var(--q-navy);
}

.quote-callout__phone {
	font-weight: 600;
	color: var(--q-green-accent);
}

/* ---------------------------------------------------------------------------
 * Trust badges row
 * ------------------------------------------------------------------------- */
.quote-badges {
	padding: 0 0 100px;
}

.quote-badges__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 0;
}

.quote-badge {
	padding: 0 32px;
	border-left: 1px solid #e5e7eb;
}

.quote-badge:first-child {
	padding-left: 0;
	border-left: none;
}

.quote-badge:last-child {
	padding-right: 0;
}

.quote-badge__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	margin-bottom: 16px;
}

.quote-badge__icon svg {
	width: 24px;
	height: 24px;
}

.quote-badge__title {
	margin: 0 0 6px;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 15px;
	line-height: 1.3;
	color: var(--q-navy);
}

.quote-badge__desc {
	margin: 0;
	font-family: var(--font-head);
	font-weight: 400;
	font-size: 13px;
	line-height: 1.55;
	color: var(--q-navy);
}

/* ---------------------------------------------------------------------------
 * Responsive
 * ------------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.quote-body__grid {
		grid-template-columns: 1fr;
	}

	.quote-why {
		max-width: 640px;
	}

	.quote-badges__list {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px 24px;
	}

	.quote-badge,
	.quote-badge:first-child {
		padding: 0;
		border-left: none;
	}
}

/* ---------------------------------------------------------------------------
 * Mobile (≤767px) — matches the 430px Figma mobile design.
 * Type scales fluidly across ~320–600px; the desktop layout above 767px is
 * untouched. Everything collapses to a single column; the "Why" panel and the
 * trust-badge row become full-bleed / stacked bands.
 * ------------------------------------------------------------------------- */
@media (max-width: 767px) {
	/* ---- Hero: tall navy band, image bleeds behind, larger display type --- */
	.quote-hero {
		padding: 96px 0 104px;
	}

	.quote-hero__inner {
		max-width: 100%;
	}

	.quote-hero__title {
		margin-bottom: 16px;
		font-size: clamp(2.375rem, 10.5vw, 2.85rem);
		line-height: 1.1;
	}

	.quote-hero__subtitle {
		max-width: 100%;
		font-size: clamp(1.0625rem, 4.6vw, 1.25rem);
		line-height: 1.5;
	}

	/* ---- Body: single column, tightened vertical rhythm ---- */
	.quote-body {
		padding: 44px 0 40px;
	}

	.quote-body__grid {
		gap: 40px;
	}

	.quote-request__heading {
		margin-bottom: 12px;
		font-size: clamp(1.875rem, 7.6vw, 2.15rem);
		line-height: 1.15;
	}

	.quote-request__intro {
		margin-bottom: 28px;
		max-width: 100%;
		font-size: clamp(1rem, 4.4vw, 1.125rem);
		line-height: 1.6;
	}

	/* ---- Ninja Form: force single column, slightly larger touch targets --- */
	.quote-form nf-fields-wrap {
		gap: 0;
	}

	.quote-form .nf-field-container {
		margin-bottom: 26px;
	}

	.quote-form .quote-col--half {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.quote-form .nf-field-label label {
		font-size: 16px;
	}

	.quote-form .nf-element,
	.quote-form input[type="text"],
	.quote-form input[type="email"],
	.quote-form input[type="tel"],
	.quote-form input[type="number"],
	.quote-form input[type="url"],
	.quote-form textarea,
	.quote-form select,
	.quote-form .aq-select__trigger {
		min-height: 52px;
		padding: 14px 16px;
		font-size: 16px; /* ≥16px avoids iOS focus zoom */
	}

	.quote-form textarea {
		min-height: 120px;
	}

	/* keep option text clear of the down-chevron on the right */
	.quote-form select,
	.quote-form .listselect-wrap select {
		padding-right: 44px;
	}

	/* Consent: box top-aligns with the wrapping agreement text */
	.quote-form .quote-consent .field-wrap {
		align-items: flex-start;
	}

	.quote-form .quote-consent .nf-field-label label {
		font-size: 16px;
	}

	/* Submit: full-width green button, secure note stacked beneath it */
	.quote-form .submit-container {
		flex: 0 0 100%;
		margin-right: 0;
		margin-bottom: 18px;
	}

	.quote-form input[type="submit"],
	.quote-form .submit-container .nf-element {
		width: 100%;
		justify-content: center;
		padding: 18px 28px;
		background-position: right 40px center;
		font-size: 16px;
	}

	.quote-form .quote-secure {
		flex: 0 0 100%;
	}

	.quote-form .quote-secure__inner {
		align-items: flex-start;
		font-size: 15px;
		line-height: 1.5;
	}

	.quote-form .quote-secure__inner svg {
		margin-top: 2px;
	}

	/* ---- Why panel: full-bleed light band, no card chrome ---- */
	.quote-why {
		max-width: none;
		margin-left: calc(var(--pad, 24px) * -1);
		margin-right: calc(var(--pad, 24px) * -1);
		padding: 40px var(--pad, 24px);
		border: none;
		border-radius: 0;
	}

	.quote-why__heading {
		margin-bottom: 8px;
		font-size: clamp(1.625rem, 6.3vw, 1.85rem);
		line-height: 1.2;
	}

	.quote-why__item {
		gap: 14px;
		padding: 22px 0;
	}

	.quote-why__icon,
	.quote-callout__icon {
		width: 48px;
		height: 48px;
	}

	.quote-why__title,
	.quote-callout__heading {
		font-size: 17px;
	}

	.quote-why__desc,
	.quote-callout__body {
		font-size: 15px;
		line-height: 1.55;
	}

	.quote-callout {
		gap: 14px;
	}

	/* ---- Trust badges: vertical list, icon-left, hairline dividers ---- */
	.quote-badges {
		padding: 0 0 56px;
	}

	.quote-badges__list {
		display: block;
	}

	.quote-badge,
	.quote-badge:first-child {
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
		column-gap: 14px;
		padding: 22px 0;
		border-left: none;
		border-top: 1px solid #e5e7eb;
	}

	.quote-badge:first-child {
		border-top: none;
		padding-top: 0;
	}

	.quote-badge__icon {
		flex: 0 0 46px;
		margin-bottom: 0;
	}

	.quote-badge__title {
		flex: 1 1 0;
		min-width: 0;
		margin: 0;
		align-self: center;
		font-size: 17px;
	}

	.quote-badge__desc {
		flex: 1 1 100%;
		margin: 6px 0 0;
		padding-left: 60px; /* icon width (46) + column-gap (14) */
		font-size: 15px;
		line-height: 1.55;
	}
}


/* =========================================================
   Services page (was assets/css/page-services.css)
   ========================================================= */
/* =========================================================
   Services page — page-templates/services.php
   Tabbed single page built 1:1 from the Figma service frames.
   Colours reuse the theme tokens in style.css (:root).
   ========================================================= */

.services-template {
	--accent-green: #6f9c44; /* active tab label / underline / icon */
	--service-divider: rgba(1, 29, 59, 0.1);
	--band-bg: #f2f7fb;
	--callout-bg: #dfebf7; /* Figma callout box fill (Frame 49) */
	--badge-blue-bg: #dfebf7;
	--badge-green-bg: #e7eee6;
}

/* ---------- tab bar ---------- */
.service-tabs {
	background: #fff;
	border-bottom: 1px solid var(--border);
}
.service-tabs__list {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
}
.service-tab {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 14px;
	padding: 26px 16px 30px;
	background: transparent;
	border: 0;
	cursor: pointer;
	font-family: var(--font-head);
	text-align: center;
	transition: background 0.15s ease;
}
.service-tab + .service-tab::before {
	content: "";
	position: absolute;
	left: 0;
	top: 22px;
	bottom: 22px;
	width: 1px;
	background: var(--service-divider);
}
.service-tab__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 48px;
}
.service-tab__icon svg {
	height: 48px;
	width: auto;
}
.service-tab__label {
	font-weight: 600;
	font-size: 16px;
	line-height: 1.25;
	color: var(--navy);
	transition: color 0.15s ease;
}
.service-tab::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 18px;
	width: 56px;
	height: 3px;
	border-radius: 100px;
	background: var(--accent-green);
	transform: translateX(-50%) scaleX(0);
	transition: transform 0.15s ease;
}
.service-tab.is-active {
	background: #fafafb;
}
.service-tab.is-active::after {
	transform: translateX(-50%) scaleX(1);
}
.service-tab.is-active .service-tab__label {
	color: var(--accent-green);
}
.service-tab.is-active .service-tab__icon {
	color: var(--accent-green) !important; /* beats the inline accent colour */
}
.service-tab:hover:not(.is-active) .service-tab__label {
	color: var(--blue-link);
}

/* ---------- panels ---------- */
.service-panel[hidden] {
	display: none;
}

/* ---------- hero ---------- */
/* Figma: the 1440x300 banner (frames 2094:679, 2094:347, 2094:1026, 2094:1332,
   2070:1722) is a PHOTOGRAPH. The uploaded hero_image already bakes in the
   subtle navy->transparent legibility gradient on the left, so there is NO
   solid navy fill and NO extra heavy overlay here — the banner stays light /
   photo-forward, matching Figma. */
.service-hero {
	position: relative;
	overflow: hidden;
}
.service-hero__media {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: left center;
}
.service-hero .container {
	position: relative;
	z-index: 1;
}
.service-hero__inner {
	min-height: 300px; /* Figma banner height */
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 8px; /* Figma: 8px between heading block and subtitle */
	padding: 40px 0;
	max-width: 600px;
}
.service-hero__title {
	font-family: var(--font-head); /* Poppins */
	font-weight: 600;
	font-size: 48px;
	line-height: 1.2; /* 57.6 / 48 */
	letter-spacing: 0;
	color: #fff;
}
.service-hero__desc {
	font-family: var(--font-head); /* Figma banner subtitle is Poppins too */
	font-weight: 400;
	font-size: 18px;
	line-height: 1.333; /* 24 / 18 */
	letter-spacing: 0;
	color: #fff;
	max-width: 488px; /* Figma subtitle text box */
	margin: 0;
}

/* ---------- shared column blocks ---------- */
.service-intro {
	background: #fff;
	padding: 64px 0;
}
.service-band {
	background: var(--band-bg);
	padding: 56px 0;
}
.service-cols {
	display: grid;
	gap: 0 48px;
}
.service-cols--1 { grid-template-columns: 1fr; }
.service-cols--2 { grid-template-columns: repeat(2, 1fr); }
.service-cols--3 { grid-template-columns: repeat(3, 1fr); }
.service-col {
	position: relative;
	padding-right: 48px;
}
.service-cols--2 .service-col + .service-col,
.service-cols--3 .service-col + .service-col {
	padding-left: 48px;
	padding-right: 0;
}
.service-cols--2 .service-col + .service-col::before,
.service-cols--3 .service-col + .service-col::before {
	content: "";
	position: absolute;
	left: 0;
	top: 4px;
	bottom: 4px;
	width: 1px;
	background: var(--service-divider);
}
.service-col__title {
	font-weight: 600;
	font-size: 22px;
	line-height: 1.25;
	color: var(--navy);
	margin-bottom: 20px;
}
.service-col__body {
	font-weight: 400;
	font-size: 16px;
	line-height: 1.55;
	color: var(--body-dark);
}
.service-col__body p {
	margin-bottom: 16px;
}
.service-col__body p:last-child {
	margin-bottom: 0;
}
.service-col__body strong {
	font-weight: 600;
	color: var(--navy);
}
.service-col__body ul {
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
}
.service-col__body li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 8px;
}
.service-col__body li::before {
	content: "";
	position: absolute;
	left: 4px;
	top: 9px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--navy);
}
.service-col__image {
	margin-top: 20px;
	border-radius: 12px; /* Figma section-image corner radius */
	width: 100%;
	height: auto;
}
/* Inline band-column image (e.g. Pump "Reliable Water Delivery"): Figma places
   a 291x115 rounded photo at the lower-right of the column beside the copy. */
.service-band__col-image {
	display: block;
	width: 300px;
	max-width: 100%;
	height: 120px;
	object-fit: cover;
	margin: 20px 0 0 auto;
	border-radius: 12px;
}
/* Two-field split (e.g. Pump "Reliable Water Delivery"): paragraph 1 renders
   full-width on top, then paragraph 2 sits on the left with the photo on the
   right. `band_col{N}_body` = full-width copy, `band_col{N}_body2` = left copy. */
.service-band__split {
	display: flex;
	gap: 32px;
	align-items: flex-start;
	margin-top: 20px;
}
.service-band__split-text {
	flex: 1 1 55%;
}
.service-band__split-media {
	flex: 0 1 40%;
}
.service-band__split-media img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	margin: 0;
	border-radius: 12px; /* match the existing band image radius */
}

/* ---------- band heading + icon cards (Water Testing) ---------- */
.service-band__title {
	font-weight: 600;
	font-size: 24px;
	line-height: 1.25;
	color: var(--navy);
	margin-bottom: 8px;
}
.service-band__intro {
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: var(--body-dark);
	margin-bottom: 40px;
}
.service-cards {
	display: grid;
	gap: 0 40px;
}
.service-cards--3 { grid-template-columns: repeat(3, 1fr); }
.service-cards--4 { grid-template-columns: repeat(4, 1fr); }
.service-card2 {
	position: relative;
	padding: 0 32px;
}
.service-card2 + .service-card2::before {
	content: "";
	position: absolute;
	left: 0;
	top: 6px;
	bottom: 6px;
	width: 1px;
	background: var(--service-divider);
}
.service-card2__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	margin-bottom: 18px;
	background: var(--badge-blue-bg);
	color: var(--blue-link); /* Figma: blue-card icon glyph is #156dad, not navy */
}
.service-card2:nth-child(even) .service-card2__icon {
	background: var(--badge-green-bg);
	color: var(--green-accent);
}
.service-card2__icon svg {
	width: 26px;
	height: 26px;
}
.service-card2__title {
	font-weight: 600;
	font-size: 18px;
	line-height: 1.25;
	color: var(--navy);
	margin-bottom: 10px;
}
.service-card2__desc {
	font-weight: 400;
	font-size: 15px;
	line-height: 1.5;
	color: var(--body-dark);
}

/* ---------- callout box ---------- */
.service-callout-wrap {
	background: #fff;
	padding: 56px 0;
}
.service-callout {
	background: var(--callout-bg);
	border-radius: 12px; /* Figma Frame 49 corner radius */
	padding: 40px 48px;
	display: flex;
	gap: 32px;
	align-items: flex-start;
}
.service-callout--split {
	gap: 0;
}
.service-callout__cell {
	display: flex;
	gap: 28px;
	align-items: flex-start;
	flex: 1;
}
.service-callout--split .service-callout__cell + .service-callout__cell {
	padding-left: 40px;
	margin-left: 40px;
	border-left: 1px solid rgba(1, 29, 59, 0.12);
}
.service-callout__icon {
	flex: 0 0 88px;
	width: 88px;
	height: 88px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--blue-link); /* Figma: callout icon glyph is #156dad */
}
.service-callout__icon {
	/* width: 64px;
	height: 64px; */
	padding: 15px;
}
.service-callout__icon .service-callout__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.service-callout__title {
	font-weight: 600;
	font-size: 22px;
	line-height: 1.25;
	color: var(--navy);
	margin-bottom: 12px;
}
.service-callout__body {
	font-weight: 400;
	font-size: 16px;
	line-height: 1.55;
	color: var(--body-dark);
}
.service-callout__body p {
	margin-bottom: 12px;
}
.service-callout__body p:last-child {
	margin-bottom: 0;
}

/* ---------- feature card row ---------- */
.service-features {
	background: #fff;
	padding: 59px 0 72px;
}
.service-features__grid {
	display: grid;
	gap: 0 32px;
}
.service-features__grid--4 { grid-template-columns: repeat(4, 1fr); }
.service-features__grid--5 { grid-template-columns: repeat(5, 1fr); }
.service-features__grid--6 { grid-template-columns: repeat(6, 1fr); }
.service-feature {
	position: relative;
	padding: 0 24px;
}
.service-feature + .service-feature::before {
	content: "";
	position: absolute;
	left: 0;
	top: 6px;
	bottom: 6px;
	width: 1px;
	background: var(--service-divider);
}
.service-feature__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	margin-bottom: 16px;
	background: var(--badge-blue-bg);
	color: var(--blue-link); /* Figma: blue-card icon glyph is #156dad, not navy */
}
.service-feature:nth-child(even) .service-feature__icon {
	background: var(--badge-green-bg);
	color: var(--green-accent);
}
.service-feature__icon svg {
	width: 24px;
	height: 24px;
}
.service-feature__title {
	font-weight: 600;
	font-size: 17px;
	line-height: 1.25;
	color: var(--navy);
	margin-bottom: 8px;
}
.service-feature__desc {
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5;
	color: var(--body-dark);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
	.service-hero__title { font-size: 40px; }
	.service-features__grid--5,
	.service-features__grid--6 { grid-template-columns: repeat(3, 1fr); gap: 32px; }
	.service-features__grid--4 { grid-template-columns: repeat(2, 1fr); gap: 32px; }
	.service-feature + .service-feature::before { display: none; }
	.service-cards--4 { grid-template-columns: repeat(2, 1fr); gap: 32px; }
	.service-card2 + .service-card2::before { display: none; }
}

/* ---------- MOBILE (≤767px): matches the 430px Figma frames ---------- */
@media (max-width: 767px) {
	/* Tab bar → horizontal, scrollable icon strip (labels hidden). */
	.service-tabs__list {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		scroll-snap-type: x proximity;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}
	.service-tabs__list::-webkit-scrollbar { display: none; }
	.service-tab {
		flex: 0 0 auto;
		width: 118px;
		gap: 0;
		padding: 14px 12px;
		justify-content: center;
		scroll-snap-align: start;
	}
	.service-tab__label { display: none; } /* icon-only strip on mobile */
	.service-tab__icon,
	.service-tab__icon svg { height: 44px; }
	.service-tab + .service-tab::before { top: 16px; bottom: 16px; }
	.service-tab::after { bottom: 8px; width: 48px; }

	/* Hero → full-bleed image; add a light vertical overlay for legibility since
	   the baked-in gradient is horizontal (text stacks over it on narrow screens). */
	.service-hero__media { background-position: center; }
	.service-hero--has-image .service-hero__media::before {
		content: "";
		position: absolute;
		inset: 0;
		background: linear-gradient(180deg, rgba(1, 29, 59, 0.55) 0%, rgba(1, 29, 59, 0.35) 100%);
	}
	.service-hero__inner {
		max-width: none;
		min-height: 320px;
		padding: 40px 0;
		gap: 14px;
	}
	.service-hero__title { font-size: clamp(32px, 10vw, 46px); }
	.service-hero__desc { font-size: clamp(16px, 4.5vw, 19px); max-width: none; }

	/* Section rhythm. */
	.service-intro { padding: 44px 0; }
	.service-band { padding: 44px 0; }
	.service-callout-wrap { padding: 40px 0; }
	.service-features { padding: 8px 0 48px; }

	/* All column groups → single column. */
	.service-cols--2,
	.service-cols--3 { grid-template-columns: 1fr; gap: 40px 0; }
	.service-col,
	.service-cols--2 .service-col + .service-col,
	.service-cols--3 .service-col + .service-col { padding: 0; }
	.service-cols--2 .service-col + .service-col::before,
	.service-cols--3 .service-col + .service-col::before { display: none; }

	/* Larger mobile headings/body per the design. */
	.service-col__title { font-size: clamp(26px, 7vw, 34px); margin-bottom: 16px; }
	.service-band__title { font-size: clamp(26px, 7vw, 34px); }
	.service-band__intro { font-size: 17px; margin-bottom: 28px; }
	/* Two-field split stacks (para 2 above the image) on mobile. */
	.service-band__split {
		flex-direction: column;
	}
	.service-col__body { font-size: 17px; line-height: 1.6; }
	.service-col__body li { padding-left: 22px; margin-bottom: 12px; }
	.service-col__body li::before { top: 11px; }

	/* Band icon cards + feature cards → icon-left rows with hairline dividers. */
	.service-features__grid { gap: 0; }
	.service-cards { gap: 0; }
	.service-cards--3,
	.service-cards--4,
	.service-features__grid--4,
	.service-features__grid--5,
	.service-features__grid--6 { grid-template-columns: 1fr; }
	.service-card2,
	.service-feature {
		display: grid;
		grid-template-columns: auto 1fr;
		column-gap: 18px;
		align-items: start;
		padding: 22px 0;
	}
	.service-card2 + .service-card2,
	.service-feature + .service-feature { border-top: 1px solid var(--service-divider); }
	.service-card2 + .service-card2::before,
	.service-feature + .service-feature::before { display: none; }
	.service-card2__icon,
	.service-feature__icon {
		grid-column: 1;
		grid-row: 1 / span 2;
		align-self: start;
		margin-bottom: 0;
	}
	.service-card2__title,
	.service-feature__title { grid-column: 2; margin-bottom: 4px; font-size: 19px; }
	.service-card2__desc,
	.service-feature__desc { grid-column: 2; font-size: 16px; }

	/* Callout → stack, icon on top. */
	.service-callout { padding: 32px 24px; }
	.service-callout,
	.service-callout__cell { flex-direction: column; }
	.service-callout--split .service-callout__cell + .service-callout__cell {
		padding: 28px 0 0;
		margin: 28px 0 0;
		border-left: 0;
		border-top: 1px solid rgba(1, 29, 59, 0.12);
	}
	.service-callout__title { font-size: 24px; }
	.service-callout__body { font-size: 17px; }
}


/* =========================================================
   FAQs page (was assets/css/page-faqs.css)
   ========================================================= */
/* =========================================================
   FAQs page  (Figma node 1:2877, 1440-wide)
   Scoped to the FAQs template only — loaded via page-templates/faqs.php.
   ========================================================= */

/* ---------- hero (300px photo banner) ----------
   The photo + background color come from the faqs_settings pod
   (hero_bg_image / hero_bg_color) as inline styles. */
.faqs-hero {
	background-color: var(--navy);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.faqs-hero__inner {
	min-height: 300px;
	display: flex;
	align-items: center;
}
.faqs-hero__content {
	display: flex;
	flex-direction: column;
	gap: 8px;
	max-width: 488px;
	padding: 40px 0;
}
.faqs-hero__title {
	font-weight: 600;
	font-size: 48px;
	line-height: 57.6px;
	color: #fff;
}
.faqs-hero__desc {
	font-weight: 400;
	font-size: 18px;
	line-height: 24px;
	color: #fff;
}

/* ---------- FAQ sections ---------- */
.faqs-list {
	background: #fff;
	padding: 60px 0;
}
.faqs-list__sections {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.faqs-section {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.faqs-section__title {
	font-weight: 600;
	font-size: 18px;
	line-height: 27px;
	color: #528521;
}
.faqs-section__items {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.faq-item {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.faq-item__question {
	font-weight: 600;
	font-size: 16.5px;
	line-height: 21.6px;
	color: var(--navy);
}
.faq-item__answer {
	font-weight: 400;
	font-size: 16.5px;
	line-height: 24.75px;
	color: var(--navy);
}

/* ---------- responsive ---------- */
@media (max-width: 991px) {
	.faqs-list {
		padding: 48px 0;
	}
}

/* ---------- mobile (430px Figma) ----------
   Fluid 320–600; single-column stack with comfortable spacing. */
@media (max-width: 767px) {
	/* hero — taller photo band, larger title */
	.faqs-hero__inner {
		min-height: 360px;
	}
	.faqs-hero__content {
		gap: 12px;
		padding: 40px 0;
	}
	.faqs-hero__title {
		font-size: clamp(34px, 9vw, 44px);
		line-height: 1.1;
	}
	.faqs-hero__desc {
		font-size: clamp(16px, 4.4vw, 18px);
		line-height: 1.4;
	}

	/* FAQ list — roomier vertical rhythm for touch */
	.faqs-list {
		padding: 48px 0;
	}
	.faqs-list__sections {
		gap: 36px;
	}
	.faqs-section {
		gap: 20px;
	}
	.faqs-section__title {
		font-size: clamp(16px, 4.6vw, 18px);
		line-height: 1.35;
		text-transform: uppercase;
	}
	.faqs-section__items {
		gap: 28px;
	}
	.faq-item {
		gap: 8px;
	}
	.faq-item__question {
		font-size: clamp(16.5px, 4.6vw, 18px);
		line-height: 1.3;
	}
	.faq-item__answer {
		font-size: clamp(15.5px, 4.2vw, 16.5px);
		line-height: 1.5;
	}
}


/* =========================================================
   Privacy Policy page (was assets/css/page-privacy.css)
   ========================================================= */
/* =========================================================
   Privacy Policy page  (Figma node 1:2624, 1440-wide)
   Scoped to page-templates/privacy.php — loaded only there.
   ========================================================= */

/* ---------- hero (1440x300, image bg, text left, v-centered) ---------- */
.privacy-hero {
	background-color: var(--navy);
	background-image: url("assets/images/privacy/privacy-hero.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.privacy-hero__inner {
	min-height: 300px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 8px;
	padding: 40px 0;
}
.privacy-hero__title {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 48px;
	line-height: 57.6px;
	color: #fff;
}
.privacy-hero__subtitle {
	font-family: var(--font-head);
	font-weight: 400;
	font-size: 18px;
	line-height: 24px;
	color: #fff;
	max-width: 488px;
}

/* ---------- body content (60px below hero, 12px between blocks) ---------- */
.privacy-content {
	background: #fff;
	padding: 60px 0 62px;
}
.privacy-sections {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.privacy-section {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.privacy-section__title {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 17px;
	line-height: 21.6px;
	color: var(--navy);
}
/* sub-headings (Contact Details / Legitimate Interests / Contract / ...) */
.privacy-section--sub .privacy-section__title {
	font-size: 16.5px;
}
.privacy-section__body {
	font-family: var(--font-head);
	font-weight: 400;
	font-size: 16.5px;
	line-height: 24.75px;
	color: var(--navy);
}
.privacy-section__body p {
	margin: 0;
}
/* a paragraph break in Figma = one blank line (one line-height) */
.privacy-section__body p + p {
	margin-top: 24.75px;
}
.privacy-section__body a {
	color: var(--blue-link);
}
.privacy-section__body a:hover {
	text-decoration: underline;
}
.privacy-section__body ul,
.privacy-section__body ol {
	margin: 0;
	padding-left: 24px;
	list-style: disc;
}
.privacy-section__body ol {
	list-style: decimal;
}

/* ---------- responsive (mirrors home breakpoints) ---------- */
@media (max-width: 1200px) {
	.privacy-hero__title {
		font-size: 40px;
		line-height: 1.15;
	}
}
@media (max-width: 991px) {
	.privacy-hero__inner {
		min-height: 240px;
	}
	.privacy-content {
		padding: 48px 0;
	}
}
@media (max-width: 640px) {
	.privacy-hero__title {
		font-size: 32px;
	}
	.privacy-hero__inner {
		min-height: 200px;
	}
	.privacy-content {
		padding: 40px 0;
	}
}

/* =========================================================
   MOBILE — 430px Figma design (fluid 320–600).
   Container side padding is handled by the theme (--pad: 24px
   at <=991px). This block owns the privacy page's stacking,
   type scale and rhythm at phone widths.
   ========================================================= */
@media (max-width: 767px) {
	/* hero — tall water image, title + subtitle vertically centered */
	.privacy-hero__inner {
		min-height: 360px;
		gap: 10px;
		padding: 32px 0;
	}
	.privacy-hero__title {
		font-size: clamp(28px, 9.3vw, 44px);
		line-height: 1.12;
	}
	.privacy-hero__subtitle {
		font-size: 17px;
		line-height: 1.4;
		max-width: none;
	}

	/* body content */
	.privacy-content {
		padding: 36px 0 44px;
	}
	/* generous space between the numbered sections */
	.privacy-sections {
		gap: 32px;
	}
	/* tight title -> body inside each section */
	.privacy-section {
		gap: 8px;
	}
	.privacy-section__title {
		font-size: 20px;
		line-height: 1.3;
	}
	.privacy-section--sub .privacy-section__title {
		font-size: 18px;
	}
	.privacy-section__body {
		font-size: 16.5px;
		line-height: 1.6;
	}
	.privacy-section__body p + p {
		margin-top: 1.5em;
	}
	/* readable single-column bullet lists with breathing room */
	.privacy-section__body ul,
	.privacy-section__body ol {
		margin: 10px 0 0;
		padding-left: 22px;
	}
	.privacy-section__body li + li {
		margin-top: 10px;
	}
	.privacy-section__body p + ul,
	.privacy-section__body p + ol {
		margin-top: 10px;
	}
}


/* =========================================================
   Shared CTA banner (was assets/css/cta-banner.css)
   ========================================================= */
/* =========================================================
   Shared CTA banner (template-parts/cta-banner.php)
   Navy band above the footer — matches the Figma CTA section
   (file VTPAmcQtV2N30Ka5otIP1M) / home page .cta 1:1.
   Falls back to the theme :root tokens from style.css.
   ========================================================= */
.aq-cta {
	background: var(--navy, #011d3b);
	padding: 40px 0;
}
.aq-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}
.aq-cta__text {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.aq-cta__heading {
	font-family: var(--font-head, "Poppins", sans-serif);
	font-weight: 600;
	font-size: 22px;
	line-height: 24px;
	color: #fff;
	margin: 0;
}
.aq-cta__desc {
	font-family: var(--font-head, "Poppins", sans-serif);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.4;
	color: #fff;
	margin: 0;
}
.aq-cta__actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

/* Buttons reuse the theme's .btn / .btn--green / .btn--outline from
   style.css; the rules below only make the banner self-sufficient if
   the part is ever used outside the Aquarius stylesheet. */
.aq-cta .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 26px;
	height: 44px;
	padding: 0 26.75px;
	box-sizing: border-box;
	border-radius: var(--radius, 4px);
	font-family: var(--font-head, "Poppins", sans-serif);
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	border: 1px solid transparent;
	cursor: pointer;
	white-space: nowrap;
	text-decoration: none;
	transition:
		filter 0.15s ease,
		background 0.15s ease,
		color 0.15s ease;
}
.aq-cta .btn:hover {
	filter: brightness(1.08);
}
.aq-cta .btn--green {
	background: var(--green, #57812e);
	color: #fff;
}
.aq-cta .btn--outline {
	background: var(--navy-btn, #021d3b);
	color: #fff;
	border-color: #fff;
	gap: 4px;
}
.aq-cta .btn--outline:hover {
	filter: brightness(1.25);
}

/* Pods-driven icons (aquarius_pods_icon output) */
.aq-cta .aq-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}
.aq-cta .btn .aq-icon svg,
.aq-cta .btn img.aq-icon {
	width: 18px;
	height: 18px;
	display: block;
}
/* Figma phone icon is 22px, not 18px */
.aq-cta .btn--outline .aq-icon svg,
.aq-cta .btn--outline img.aq-icon {
	width: 22px;
	height: 22px;
}

/* Phone (<=767px): stacked heading/text + full-width stacked buttons */
@media (max-width: 767px) {
	.aq-cta {
		padding: 40px 0;
	}
	.aq-cta__inner {
		flex-direction: column;
		align-items: stretch;
		gap: 28px;
	}
	.aq-cta__heading {
		font-size: clamp(1.5rem, 7vw, 1.875rem);
		line-height: 1.2;
	}
	.aq-cta__desc {
		font-size: 18px;
		line-height: 1.5;
	}
	.aq-cta__actions {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		gap: 16px;
	}
	.aq-cta__actions .btn {
		width: 100%;
		height: 52px;
	}
}

/* =========================================================
   COOKIE CONSENT BANNER (GDPR/PECR)
   Markup: aquarius_render_cookie_banner() in functions.php.
   Card matched 1:1 to Figma (desktop 1440).
   ========================================================= */
.cookie-banner {
	/* Button colours as easily-editable custom properties. */
	--cookie-btn-primary: var(--green); /* #57812e — reused brand green */
	--cookie-btn-secondary: #7c7f9e; /* placeholder muted slate-purple — finalize vs Figma */

	position: fixed;
	left: 50%;
	bottom: 42px;
	transform: translateX(-50%);
	z-index: 1000;

	display: flex;
	align-items: center;
	gap: 24px;

	width: calc(100% - 32px);
	max-width: 835px;
	padding: 20px 30px;

	background: #fff;
	border: 1px solid rgba(1, 29, 59, 0.1);
	border-radius: 7px;
	box-shadow: 5px 15px 20px 0 rgba(0, 0, 0, 0.23);
}
.cookie-banner[hidden] {
	display: none;
}

.cookie-banner__icon {
	flex: 0 0 auto;
	display: block;
	color: var(--navy);
}
.cookie-banner__icon svg {
	width: 43px;
	height: 40px;
}

.cookie-banner__message {
	flex: 1 1 auto;
	margin: 0;
	font-family: var(--font-head);
	font-size: 14px;
	line-height: 1.45;
	color: var(--navy);
}
.cookie-banner__policy-link {
	color: var(--blue-link);
	text-decoration: underline;
}

.cookie-banner__actions {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 16px;
}

.cookie-banner__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 34px;
	padding: 0 18px;
	border: 1px solid transparent;
	border-radius: var(--radius);
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 14px;
	line-height: 1;
	white-space: nowrap;
	cursor: pointer;
	transition: filter 0.15s ease;
}
.cookie-banner__btn:hover {
	filter: brightness(1.08);
}
.cookie-banner__btn--primary {
	background: var(--cookie-btn-primary);
	color: #fff;
}
.cookie-banner__btn--secondary {
	background: var(--cookie-btn-secondary);
	color: #fff;
}

/* Mobile: stack the card below ~600px. */
@media (max-width: 600px) {
	.cookie-banner {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		bottom: 16px;
	}
	.cookie-banner__actions {
		width: 100%;
	}
	.cookie-banner__btn {
		flex: 1 1 0;
	}
}
