/**
 * Seaforce Theme - Full replication of www.seaforcehydraulics.com
 * Extracted from Elementor post-6.css + live design
 */

/* ===== CSS Variables (Exact from Elementor) ===== */
:root {
	--sf-navy: #0B3D5E;
	--sf-navy-light: #0D5180;
	--sf-blue: #219DF3;
	--sf-blue-bright: #2692DF;
	--sf-blue-dark: #0462A2;
	--sf-dark: #1F1F25;
	--sf-dark-bg: #030B10;
	--sf-white: #FFFFFF;
	--sf-gray-50: #F8FAFC;
	--sf-gray-100: #F1F1F5;
	--sf-gray-200: #E2E8F0;
	--sf-gray-300: #CBD5E1;
	--sf-gray-400: #94A3B8;
	--sf-gray-500: #64748B;
	--sf-gray-600: #4D4D4D;
	--sf-body-bg: #ECEFF3;
	--sf-brand: #D8ECFA;
	--sf-radius: 8px;
	--sf-radius-lg: 20px;
	--sf-shadow: 0 4px 12px rgba(0,0,0,.1);
	--sf-shadow-lg: 0 12px 40px rgba(0,0,0,.15);
	--sf-font-heading: "Exo", "Albert Sans", sans-serif;
	--sf-font-body: "Albert Sans", "Roboto", system-ui, sans-serif;
	--sf-font-accent: "Assistant", sans-serif;
	--sf-transition: .2s ease;
	--sf-gradient: linear-gradient(90deg, #0462A2 0%, #2692DF 100%);
	--sf-site-max-width: 1200px;
	/* Header height — room for larger custom logo */
	--sf-header-height: 98px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html {
	background-color: var(--sf-body-bg);
	overflow-x: clip;
}
body.sf-body {
	margin: 0;
	font-family: var(--sf-font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--sf-gray-600);
	background: var(--sf-body-bg);
	overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sf-blue); text-decoration: none; transition: color var(--sf-transition); }
a:hover { color: var(--sf-blue-dark); }

/* ===== Layout ===== */
/* Site shell (#page opened in header.php — same role as former HFE wrapper) */
#page.site.hfeed {
	width: 100%;
	max-width: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	overflow-x: clip;
	box-sizing: border-box;
	background: var(--sf-body-bg);
}
.sf-main {
	flex: 1 0 auto;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	overflow-x: clip;
}
.footer-width-fixer {
	max-width: 100%;
	overflow-x: clip;
}
/* Elementor flex containers must not grow past the page (fixes ultra-wide / stray overflow) */
#page .e-con {
	max-width: 100%;
}
/* Classic boxed sections: same content width as .sf-container */
.elementor-section.elementor-section-boxed > .elementor-container {
	max-width: var(--sf-site-max-width) !important;
	margin-left: auto;
	margin-right: auto;
}
.sf-container {
	width: 100%;
	max-width: var(--sf-site-max-width);
	margin: 0 auto;
	padding: 0 24px;
}
.sf-content {
	padding: 48px 0 80px;
}

/* ===== Header (industrial clean, compact sticky) ===== */
.sf-header {
	position: sticky;
	top: 0;
	z-index: 1200;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(6px);
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
body.admin-bar .sf-header {
	top: 32px;
}
@media screen and (max-width: 782px) {
	body.admin-bar .sf-header {
		top: 46px;
	}
}
.sf-header__frame {
	background: transparent;
	border-radius: 0;
	box-shadow: none;
}
.sf-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 20px;
	min-height: var(--sf-header-height);
	padding: 0;
	box-sizing: border-box;
}
.sf-header__logo {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding-left: 0;
}
.sf-header__logo a,
.sf-header__logo .custom-logo-link {
	display: flex;
	align-items: center;
	color: var(--sf-navy);
	font-family: var(--sf-font-heading);
	font-weight: 700;
	font-size: 1.34rem;
	text-decoration: none;
}
.sf-header__logo a:hover,
.sf-header__logo .custom-logo-link:hover { color: var(--sf-blue); }
.sf-logo-text { font-family: var(--sf-font-heading); }
.sf-header__logo img,
.sf-header__logo .custom-logo-link img { max-height: 76px; width: auto; height: auto; display: block; }
.sf-nav {
	position: relative;
	display: flex;
	justify-content: center;
}
.sf-nav__menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 2px;
	flex-wrap: wrap;
	justify-content: center;
}
.sf-nav__menu a {
	color: var(--sf-dark);
	font-family: "Albert Sans", sans-serif;
	font-weight: 600;
	font-size: 1.04rem;
	padding: 12px 12px;
}
.sf-nav__menu a:hover { color: var(--sf-blue); }
.sf-nav__menu .current-menu-item > a,
.sf-nav__menu .current-menu-ancestor > a {
	color: var(--sf-blue-bright);
}
.sf-nav__toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	margin-left: auto;
}
.sf-nav__toggle-bar {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--sf-dark);
	margin: 5px 0;
}
.sf-header__cta {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding-right: 0;
}
.sf-header__cta-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: "Assistant", sans-serif;
	font-size: 0.98rem;
	font-weight: 600;
	text-transform: capitalize;
	color: #FFFFFF;
	background-image: linear-gradient(90deg, #2490DC 0%, #0665A6 100%);
	border-radius: 999px;
	padding: 9px 18px;
	line-height: 1;
	white-space: nowrap;
}
.sf-header__cta-link:hover {
	color: #FFFFFF;
	filter: brightness(1.06);
}

/* ===== Buttons ===== */
.sf-btn {
	display: inline-block;
	padding: 12px 24px;
	border-radius: var(--sf-radius);
	font-weight: 700;
	font-size: .95rem;
	cursor: pointer;
	border: none;
	transition: background var(--sf-transition), color var(--sf-transition), transform var(--sf-transition);
}
.sf-btn--primary {
	background: var(--sf-gradient);
	color: var(--sf-white);
}
.sf-btn--primary:hover {
	background: linear-gradient(90deg, var(--sf-navy) 0%, var(--sf-blue) 100%);
	color: var(--sf-white);
	transform: translateY(-2px);
}
.sf-btn--light {
	background: var(--sf-white);
	color: var(--sf-navy);
}
.sf-btn--light:hover {
	background: var(--sf-gray-50);
	color: var(--sf-navy);
	transform: translateY(-2px);
}
.sf-link { font-weight: 600; color: var(--sf-blue); }
.sf-link:hover { color: var(--sf-blue-dark); }

/* ===== Hero — vertical Swiper ===== */
.sf-hero {
	padding: 0;
	background: var(--sf-gray-100);
}
/* Break out of #page / .sf-main so the carousel is true edge-to-edge */
.sf-hero--swiper {
	overflow: hidden;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	position: relative;
	box-sizing: border-box;
}
.sf-hero-swiper-wrap {
	width: 100%;
	max-width: none;
	margin: 0;
	/* No padding-top — avoids a gray strip between header and full-bleed swiper */
	padding: 0 0 64px;
	box-sizing: border-box;
}
.sf-hero-swiper {
	width: 100%;
	height: min(702px, 85vh);
	max-height: 900px;
	margin: 0 auto;
	border-radius: 0;
	box-shadow: none;
	--swiper-pagination-bullet-size: 10px;
	--swiper-pagination-bullet-horizontal-gap: 8px;
	--swiper-pagination-color: var(--sf-white);
	--swiper-pagination-bullet-inactive-color: rgba(255, 255, 255, 0.45);
	--swiper-pagination-bullet-inactive-opacity: 1;
}
.sf-hero-swiper .swiper-slide {
	display: flex;
	align-items: stretch;
	justify-content: center;
	height: auto;
	box-sizing: border-box;
}
.sf-hero-slide {
	--sf-hero-slide-bg: linear-gradient(135deg, #0b3d5e 0%, #219df3 100%);
	position: relative;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 100%;
	padding: 48px 40px;
	overflow: hidden;
	border-radius: 0;
	background-color: var(--sf-navy);
	background-image: var(--sf-hero-slide-bg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.sf-hero-slide::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: rgba(3, 11, 16, 0.5);
	z-index: 0;
	pointer-events: none;
}
.sf-hero-slide__inner {
	position: relative;
	z-index: 1;
	max-width: 640px;
	text-align: center;
	margin: 0 auto;
}
.sf-hero-slide__title {
	font-family: var(--sf-font-heading);
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 800;
	color: var(--sf-white);
	margin: 0 0 12px;
	line-height: 1.15;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.sf-hero-slide__title--line {
	color: var(--sf-white);
}
.sf-hero-slide__title .sf-hero-slide__title-accent {
	display: block;
	font-size: 0.92em;
	font-weight: 700;
	color: var(--sf-brand);
	margin-top: 0.15em;
}
.sf-hero-slide__desc {
	font-family: var(--sf-font-body);
	font-size: clamp(0.95rem, 2vw, 1.05rem);
	font-weight: 400;
	color: rgba(255, 255, 255, 0.92);
	margin: 0 0 28px;
	line-height: 1.55;
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.sf-hero-slide .sf-btn {
	margin-top: 4px;
}
.sf-hero-swiper__pagination.swiper-pagination-bullets {
	position: static;
	margin-top: 20px;
	padding: 0 24px;
	text-align: center;
	box-sizing: border-box;
}
.sf-hero-swiper__pagination .swiper-pagination-bullet {
	opacity: 1;
}
/* Legacy grid cards (if reused elsewhere) */
.sf-hero__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.sf-hero__card {
	background: var(--sf-white);
	border-radius: var(--sf-radius);
	padding: 32px;
	box-shadow: var(--sf-shadow);
	transition: transform var(--sf-transition), box-shadow var(--sf-transition);
}
.sf-hero__card:hover {
	transform: translateY(-5px);
	box-shadow: var(--sf-shadow-lg);
}
.sf-hero__card-title {
	font-family: var(--sf-font-heading);
	font-size: 2rem;
	font-weight: 800;
	color: var(--sf-dark);
	margin: 0 0 4px;
}
.sf-hero__card-subtitle {
	font-family: var(--sf-font-heading);
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--sf-blue);
	margin: 0 0 12px;
}
.sf-hero__card-desc {
	font-family: "Roboto", sans-serif;
	font-size: .95rem;
	font-weight: 400;
	color: var(--sf-gray-600);
	margin: 0 0 20px;
	line-height: 1.5;
}
.sf-hero__card .sf-btn { margin-top: 8px; }

/* ===== Impact — stats band ===== */
.sf-impact {
	position: relative;
	padding: 72px 0 88px;
	background: linear-gradient(180deg, var(--sf-gray-50) 0%, var(--sf-gray-100) 42%, #e8eef5 100%);
	overflow: hidden;
}
.sf-impact::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--sf-gradient);
	opacity: 0.9;
}
.sf-section__title {
	font-family: var(--sf-font-heading);
	font-size: 2rem;
	font-weight: 800;
	color: var(--sf-dark);
	text-align: center;
	margin: 0 0 40px;
}
.sf-impact__header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 48px;
}
.sf-impact__eyebrow {
	font-family: var(--sf-font-heading);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--sf-blue);
	margin: 0 0 12px;
}
.sf-impact__title {
	font-family: var(--sf-font-heading);
	font-size: clamp(1.75rem, 3.5vw, 2.35rem);
	font-weight: 800;
	color: var(--sf-dark);
	margin: 0 0 16px;
	line-height: 1.2;
	letter-spacing: -0.02em;
}
.sf-impact__lede {
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--sf-gray-500);
	margin: 0;
}
.sf-impact__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	align-items: stretch;
}
.sf-impact__card {
	text-align: center;
	padding: 32px 24px 36px;
	background: var(--sf-white);
	border-radius: var(--sf-radius-lg);
	box-shadow: 0 4px 24px rgba(11, 61, 94, 0.08);
	border: 1px solid rgba(33, 157, 243, 0.14);
	transition: transform var(--sf-transition), box-shadow 0.28s ease;
}
.sf-impact__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 44px rgba(11, 61, 94, 0.12);
}
.sf-impact__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: linear-gradient(145deg, rgba(33, 157, 243, 0.14) 0%, rgba(4, 98, 162, 0.06) 100%);
	color: var(--sf-blue-dark);
}
.sf-impact__icon svg {
	flex-shrink: 0;
}
.sf-impact__number {
	display: block;
	font-family: var(--sf-font-accent);
	font-size: clamp(2.25rem, 4vw, 2.85rem);
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	line-height: 1.1;
	margin-bottom: 12px;
	background: linear-gradient(135deg, var(--sf-blue-dark) 0%, var(--sf-blue-bright) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
}
.sf-impact__number--text {
	background: linear-gradient(135deg, var(--sf-navy-light) 0%, var(--sf-blue) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
@supports not (background-clip: text) {
	.sf-impact__number,
	.sf-impact__number--text {
		color: var(--sf-blue);
		background: none;
		-webkit-text-fill-color: currentColor;
	}
}
.sf-impact__label {
	font-family: var(--sf-font-heading);
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--sf-dark);
	margin: 0 0 8px;
	line-height: 1.35;
}
.sf-impact__hint {
	font-size: 0.875rem;
	line-height: 1.5;
	color: var(--sf-gray-500);
	margin: 0;
}

/* ===== Reasons - Two columns + icon cards (40px icons, #1F1F25 bg) ===== */
.sf-reasons {
	padding: 3% 5% 10%;
	background: var(--sf-gray-100);
}
.sf-reasons__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: start;
}
.sf-reasons__left {
	padding-right: 10%;
}
.sf-reasons__over {
	font-family: var(--sf-font-heading);
	font-size: 1.2rem;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--sf-blue);
	margin: 0 0 8px;
}
.sf-section__title--large {
	font-family: var(--sf-font-heading);
	font-size: 2rem;
	font-weight: 800;
	color: var(--sf-dark);
	margin: 0 0 16px;
}
.sf-reasons__desc {
	font-family: "Roboto", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	color: var(--sf-gray-600);
	margin: 0 0 16px;
	line-height: 1.6;
}
.sf-reasons__tagline {
	font-family: var(--sf-font-heading);
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--sf-navy-light);
	margin: 0 0 24px;
	line-height: 1.5;
	max-width: 36em;
}
.sf-reasons__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.sf-reasons__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 24px 16px;
	background: var(--sf-white);
	border-radius: var(--sf-radius);
	box-shadow: var(--sf-shadow);
}
.sf-reasons__icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--sf-dark);
	color: var(--sf-white);
	border-radius: 50%;
	margin-bottom: 12px;
}
.sf-reasons__icon svg { width: 20px; height: 20px; }
.sf-reasons__title {
	font-family: var(--sf-font-body);
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--sf-dark);
	margin: 0;
}
.sf-reasons__text {
	font-size: .9rem;
	color: var(--sf-gray-600);
	margin: 8px 0 0;
	line-height: 1.5;
}

/* ===== Services preview ===== */
.sf-services-preview {
	padding: 88px 0 96px;
	background:
		radial-gradient(circle at 8% 8%, rgba(38, 146, 223, 0.08) 0, transparent 46%),
		radial-gradient(circle at 92% 12%, rgba(4, 98, 162, 0.08) 0, transparent 40%),
		linear-gradient(180deg, #f8fbff 0%, #eef3f8 100%);
}
.sf-services-preview .sf-container {
	max-width: 1260px;
}
.sf-section__over {
	font-family: var(--sf-font-heading);
	font-size: 1.2rem;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--sf-blue);
	text-align: center;
	margin: 0 0 8px;
}
.sf-services-preview__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 40px;
}
.sf-services-preview__item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 30px 28px 26px;
	background: #FFFFFF;
	border: 1px solid rgba(11, 61, 94, 0.12);
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(11, 61, 94, 0.08);
	transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.sf-services-preview__item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 4px;
	border-radius: 16px 16px 0 0;
	background: linear-gradient(90deg, #0462A2 0%, #2692DF 100%);
}
.sf-services-preview__item:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 36px rgba(11, 61, 94, 0.14);
	border-color: rgba(38, 146, 223, 0.38);
}
.sf-services-preview__title {
	font-family: var(--sf-font-heading);
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--sf-dark);
	margin: 0 0 14px;
	letter-spacing: .01em;
}
.sf-services-preview__desc {
	font-size: .98rem;
	color: #3f4f61;
	margin: 0 0 18px;
	line-height: 1.68;
	flex: 1 0 auto;
}
.sf-services-preview__item img { border-radius: 10px; }
.sf-services-preview .sf-link {
	font-size: .96rem;
	font-weight: 700;
	color: #0462A2;
	text-transform: uppercase;
	letter-spacing: .03em;
}
.sf-services-preview .sf-link:hover {
	color: #2692DF;
}

/* ===== Page Templates ===== */
.sf-page__header { text-align: center; margin-bottom: 48px; }
.sf-page__title {
	font-family: var(--sf-font-heading);
	font-size: 2rem;
	font-weight: 800;
	color: var(--sf-dark);
	margin: 0 0 8px;
}
.sf-page__subtitle { font-size: 1rem; color: var(--sf-gray-600); margin: 0; }
.sf-entry__title {
	font-family: var(--sf-font-heading);
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--sf-dark);
	margin: 0 0 16px;
}
.sf-entry__content { font-size: 1rem; line-height: 1.7; }
.sf-entry__content p { margin: 0 0 1em; }
.sf-entry__content ul, .sf-entry__content ol { margin: 0 0 1em; padding-left: 1.5em; }

/* About page refresh */
.sf-page--about .sf-entry--about {
	max-width: 960px;
	margin: 0 auto;
	padding: clamp(26px, 4vw, 44px);
	background: var(--sf-white);
	border: 1px solid var(--sf-gray-200);
	border-radius: 16px;
	box-shadow: var(--sf-shadow);
}
.sf-about__header {
	margin: 0 0 24px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--sf-gray-200);
}
.sf-about__eyebrow {
	margin: 0 0 8px;
	font-family: var(--sf-font-accent);
	font-size: .9rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--sf-blue-dark);
}
.sf-about__title {
	margin: 0;
	font-family: var(--sf-font-heading);
	font-size: clamp(1.9rem, 3vw, 2.6rem);
	line-height: 1.15;
	color: var(--sf-navy);
}
.sf-about__content {
	max-width: 78ch;
	font-size: 1.06rem;
	line-height: 1.8;
	color: #334155;
}
.sf-about__content h2,
.sf-about__content h3 {
	font-family: var(--sf-font-heading);
	line-height: 1.25;
	color: var(--sf-navy);
	margin-top: 1.5em;
	margin-bottom: .55em;
}
.sf-about__content h2 { font-size: clamp(1.35rem, 2vw, 1.7rem); }
.sf-about__content h3 { font-size: clamp(1.15rem, 1.7vw, 1.35rem); }
.sf-about__content p { margin-bottom: 1.05em; }
.sf-about__content ul,
.sf-about__content ol {
	padding-left: 1.35em;
	margin-bottom: 1.1em;
}
.sf-about__content li { margin-bottom: .45em; }
.sf-about__content blockquote {
	margin: 1.2em 0;
	padding: .85em 1em;
	border-left: 4px solid var(--sf-blue-bright);
	background: #F8FAFC;
	border-radius: 8px;
	color: #1E293B;
}
@media (max-width: 768px) {
	.sf-page--about .sf-entry--about {
		padding: 22px 18px;
		border-radius: 12px;
	}
}
.sf-service {
	padding: 48px 0;
	border-bottom: 1px solid var(--sf-gray-200);
}
.sf-service:last-of-type {
	border-bottom: none;
}
.sf-service__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
	align-items: center;
}
.sf-service--has-media .sf-service__inner {
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
	gap: 40px 48px;
}
.sf-service--media-end .sf-service__figure {
	order: 2;
}
.sf-service--media-end .sf-service__body {
	order: 1;
}
.sf-service__figure {
	margin: 0;
	border-radius: var(--sf-radius-lg);
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(11, 61, 94, 0.12);
	border: 1px solid var(--sf-gray-200);
	background: var(--sf-gray-100);
}
.sf-service__img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	vertical-align: middle;
}
.sf-service__body {
	min-width: 0;
}
.sf-service__label {
	font-family: var(--sf-font-heading);
	font-size: 1.2rem;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--sf-blue);
	margin: 0 0 8px;
}
.sf-service__title {
	font-family: var(--sf-font-heading);
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--sf-dark);
	margin: 0 0 20px;
}
.sf-service__content p,
.sf-service__content li {
	margin-bottom: 12px;
}
.sf-service__gallery {
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid var(--sf-gray-200);
}
.sf-service__gallery-title {
	font-family: var(--sf-font-heading);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--sf-blue);
	margin: 0 0 14px;
}
.sf-service__gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.sf-service__gallery-item {
	margin: 0;
}
.sf-service__gallery-link {
	display: block;
	border-radius: var(--sf-radius);
	overflow: hidden;
	border: 1px solid var(--sf-gray-200);
	background: var(--sf-gray-100);
	line-height: 0;
	transition: transform var(--sf-transition), box-shadow var(--sf-transition);
}
.sf-service__gallery-link:hover {
	transform: translateY(-2px);
	box-shadow: var(--sf-shadow);
}
.sf-service__gallery-link img {
	width: 100%;
	height: 100px;
	object-fit: cover;
	display: block;
}
/* Full width of .sf-container (1200px + padding); old 720px cap squeezed Elementor */
.sf-contact__inner {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
}
.sf-contact__form-wrap {
	min-width: 0;
	width: 100%;
}
.sf-contact__form-wrap > *:first-child {
	margin-top: 0;
}
.sf-contact__page-head {
	margin: 0 0 28px;
}
.sf-contact__page-title {
	margin: 0;
	font-family: var(--sf-font-heading);
	font-size: clamp(1.75rem, 2.5vw, 2.25rem);
	font-weight: 700;
	color: var(--sf-navy);
	line-height: 1.2;
}
.sf-contact__details {
	margin-bottom: 40px;
}
.sf-contact__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px 40px;
}
.sf-contact__block {
	margin: 0;
	padding: 28px;
	background: var(--sf-white);
	border: 1px solid var(--sf-gray-200);
	border-radius: var(--sf-radius);
	box-shadow: var(--sf-shadow);
}
.sf-contact__block-title {
	margin: 0 0 12px;
	font-family: var(--sf-font-heading);
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--sf-blue-dark);
	text-transform: uppercase;
	letter-spacing: 0.02em;
}
.sf-contact__address,
.sf-contact__phones,
.sf-contact__mail {
	margin: 0 0 12px;
	font-size: 1rem;
	line-height: 1.55;
	color: var(--sf-gray-600);
}
.sf-contact__address:last-child,
.sf-contact__phones:last-child,
.sf-contact__mail:last-child {
	margin-bottom: 0;
}
.sf-contact__mail a {
	font-weight: 600;
}
.sf-contact__editor {
	padding-top: 8px;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}
@media (max-width: 768px) {
	.sf-contact__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}
/* Elementor HTML: .services-hero-min (inline markup; overlay was fixed ~700px) */
.services-hero-min {
	position: relative;
	width: 100% !important;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
	overflow: hidden;
}
.services-hero-min__overlay {
	position: absolute;
	inset: 0;
	left: 0 !important;
	top: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none;
	box-sizing: border-box;
}
.sf-contact__email {
	margin: 0;
	font-size: 1rem;
	word-break: break-word;
}
.sf-contact__email a { font-weight: 600; }
/* Elementor: keep sections inside the centered contact column */
.sf-page--contact .sf-contact__form-wrap .elementor-section.elementor-section-stretched,
.sf-page--contact .sf-contact__form-wrap .elementor-section.elementor-section-full_width {
	width: 100% !important;
	max-width: 100% !important;
	left: 0 !important;
	margin-left: 0 !important;
}
.sf-page--contact .sf-contact__form-wrap .elementor-section,
.sf-page--contact .sf-contact__form-wrap .e-con {
	max-width: 100%;
	box-sizing: border-box;
}
.sf-contact__fallback {
	padding: 24px;
	background: var(--sf-gray-50);
	border-radius: var(--sf-radius);
}
.sf-404 { text-align: center; padding: 80px 24px; }
.sf-404__title {
	font-family: var(--sf-font-heading);
	font-size: 2.5rem;
	color: var(--sf-dark);
	margin: 0 0 16px;
}
.sf-404__text { margin: 0 0 24px; font-size: 1.1rem; }

/* ===== Before Footer (former HFE before-footer template) ===== */
.sf-before-footer {
	background: #0B7CE6;
}
.sf-before-footer__row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
}
.sf-before-footer__item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 18px 24px;
}
.sf-before-footer__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #282828;
	color: #FFFFFF;
	flex: 0 0 56px;
}
.sf-before-footer__icon svg {
	width: 24px;
	height: 24px;
}
.sf-before-footer__icon svg,
.sf-before-footer__icon svg * {
	transform: none !important;
	transform-origin: 50% 50%;
}
.sf-before-footer__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 2px;
}
.sf-before-footer__label {
	margin: 0;
	font-family: "Exo", sans-serif;
	font-size: 1.2rem;
	font-weight: 600;
	color: #FFFFFF;
}
.sf-before-footer__value {
	margin: 0;
	font-family: "Exo", sans-serif;
	font-size: 1.2rem;
	font-weight: 800;
	color: #292929;
	line-height: 1.45;
}
.sf-before-footer__value a {
	color: inherit;
}

/* ===== Footer (former HFE footer template) ===== */
.sf-footer-wrap {
	width: 100%;
	background: #171717;
	color: var(--sf-white);
	margin-top: auto;
	flex-shrink: 0;
}
.sf-footer-main { padding: 5% 0 0; }
.sf-footer-main .sf-container {
	max-width: var(--sf-site-max-width);
	padding-left: 24px;
	padding-right: 24px;
}
.sf-footer__cols {
	display: grid;
	grid-template-columns: repeat(2, minmax(320px, 470px));
	justify-content: center;
	gap: 0 80px;
	margin-bottom: 40px;
	align-items: start;
}
.sf-footer__spacer {
	display: none;
}
.sf-footer__heading {
	font-family: var(--sf-font-heading);
	font-size: 1.6rem;
	font-weight: 800;
	color: var(--sf-white);
	margin: 0 0 12px;
}
.sf-footer__line {
	width: 161px;
	height: 2px;
	background: var(--sf-blue-bright);
	margin-bottom: 16px;
	border-radius: 1px;
}
.sf-footer__logo { margin-bottom: 16px; }
.sf-footer__logo .custom-logo-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	max-width: 100%;
	padding: 8px 14px;
	background: #FFFFFF;
	border-radius: 8px;
}
.sf-footer__logo img { max-height: 57px; width: auto; }
.sf-footer__logo-text {
	font-family: var(--sf-font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--sf-white);
}
.sf-footer__logo-text:hover { color: var(--sf-brand); }
.sf-footer__about {
	margin: 0;
}
.sf-footer__tagline {
	font: 400 1rem/1.6 "Albert Sans", sans-serif;
	color: #FFFFFF;
	margin: 3% 0 16px;
	max-width: 320px;
}
.sf-footer__links {
	margin-left: 0;
}
.sf-footer__social { display: flex; gap: 12px; }
.sf-footer__social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: var(--sf-white);
	background: #252525;
	border-radius: 50%;
	transition: background var(--sf-transition), color var(--sf-transition);
}
.sf-footer__social-icon:hover {
	background: var(--sf-blue-bright);
	color: var(--sf-white);
}
.sf-footer__social-icon svg { width: 20px; height: 20px; }
.sf-footer__linklist { list-style: none; margin: 0; padding: 0; }
.sf-footer__linklist li { margin-bottom: 16px; }
.sf-footer__linklist a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #FFFFFF;
	font-family: "Albert Sans", sans-serif;
	font-size: 1.1rem;
	font-weight: 400;
	text-decoration: none;
	border-bottom: 0;
	transition: border-color var(--sf-transition), color var(--sf-transition);
}
.sf-footer__linklist a:hover {
	color: var(--sf-brand);
}
.sf-footer__arrow { font-weight: 700; color: var(--sf-blue-bright); }
.sf-footer__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	padding-top: 32px;
	border-top: 1px solid rgba(255,255,255,.15);
}
.sf-footer__title {
	font-family: var(--sf-font-heading);
	font-size: 1.2rem;
	font-weight: 600;
	margin: 0 0 8px;
}
.sf-footer__text { margin: 0; font-size: .95rem; }
.sf-footer__text a {
	color: var(--sf-blue-bright);
	text-decoration: none;
	border-bottom: 1px solid rgba(216,236,250,.4);
}
.sf-footer__text a:hover { border-color: rgba(216,236,250,.8); color: var(--sf-white); }
.sf-footer__bar {
	text-align: center;
	padding: 14px;
	font: 500 .95rem/1.6 var(--sf-font-body);
	color: var(--sf-white);
	background: #1F1F1F;
	margin-top: 2%;
}
.sf-footer__bar strong { color: var(--sf-brand); }
#sf-athens-time { font-variant-numeric: tabular-nums; letter-spacing: .02em; }

/*
 * Elementor Theme Builder footer (wrapper: .footer-width-fixer): the theme sets
 * global `a { color: var(--sf-blue) }` and `body.sf-body { color: var(--sf-gray-600) }`.
 * Those rules apply inside Elementor too, so tel/mailto links can stay “body blue” while
 * headings are styled white, or body-gray text can sit on a dark footer. Let plain links in
 * the Elementor footer inherit the color from their widget/container; Elementor’s own
 * selectors still win when they set a color explicitly. Skip .elementor-button links.
 */
.footer-width-fixer .elementor-element :where(a:not(.elementor-button)) {
	color: inherit;
}
.footer-width-fixer .elementor-element :where(a:not(.elementor-button):hover) {
	color: inherit;
	opacity: 0.88;
}

/* ===== Utilities ===== */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}
.screen-reader-text:focus {
	clip: auto !important;
	height: auto;
	width: auto;
	padding: 8px 16px;
	background: var(--sf-white);
	z-index: 100000;
}

/* ===== Responsive (from Elementor breakpoints) ===== */
@media (max-width: 1024px) {
	.sf-hero-swiper {
		height: min(620px, 78vh);
	}
	.sf-hero-slide {
		padding: 36px 28px;
	}
	.sf-impact {
		padding: 56px 0 72px;
	}
	.sf-impact__grid {
		gap: 20px;
	}
	.sf-hero__grid,
	.sf-impact__grid,
	.sf-reasons__cards { grid-template-columns: 1fr; }
	.sf-reasons__inner { grid-template-columns: 1fr; }
	.sf-services-preview {
		padding: 76px 0 84px;
	}
	.sf-services-preview__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.sf-service--has-media .sf-service__inner {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.sf-service--media-end .sf-service__figure {
		order: -1;
	}
	.sf-service--media-end .sf-service__body {
		order: 0;
	}
}

@media (max-width: 768px) {
	.sf-header {
		top: 0;
	}
	.sf-header .sf-container {
		padding-left: 14px;
		padding-right: 14px;
	}
	.sf-header__frame {
		border-radius: 0;
	}
	.sf-header__inner {
		grid-template-columns: auto 1fr auto;
		min-height: 78px;
		padding: 0;
		gap: 8px;
	}
	.sf-header__logo {
		padding-left: 0;
	}
	.sf-header__logo img,
	.sf-header__logo .custom-logo-link img {
		max-height: 58px;
	}
	.sf-header__cta {
		display: none;
	}
	.sf-nav {
		justify-self: end;
	}
	.sf-hero-swiper {
		height: min(480px, 72vh);
	}
	.sf-impact__header {
		margin-bottom: 36px;
	}
	.sf-impact__card {
		padding: 28px 20px 32px;
	}
	.sf-impact__number { font-size: 2rem; }
	.sf-impact__label { font-size: 1rem; }
	.sf-reasons__left { padding-right: 0; }
	.sf-before-footer__row {
		grid-template-columns: 1fr;
	}
	.sf-before-footer__item {
		padding: 16px;
	}
	.sf-before-footer__icon {
		width: 46px;
		height: 46px;
		flex-basis: 46px;
	}
	.sf-before-footer__icon svg {
		width: 20px;
		height: 20px;
	}
	.sf-before-footer__label {
		font-size: 1rem;
	}
	.sf-before-footer__value {
		font-size: 1.15rem;
	}
	.sf-footer-main .sf-container {
		padding-left: 5%;
		padding-right: 5%;
	}
	.sf-footer__cols,
	.sf-footer__grid { grid-template-columns: 1fr; }
	.sf-footer__links {
		margin-left: 0;
	}
	.sf-footer__spacer {
		display: none;
	}
	.sf-nav__toggle { display: block; }
	.sf-nav__menu {
		display: none;
		position: absolute;
		top: calc(100% + 20px);
		left: auto;
		right: 0;
		min-width: 200px;
		background: var(--sf-white);
		flex-direction: column;
		padding: 10px 0;
		box-shadow: var(--sf-shadow);
	}
	.sf-nav__menu a {
		padding: 10px 15px;
	}
	.sf-nav__menu.is-open { display: flex; }
	.sf-services-preview {
		padding: 64px 0 72px;
	}
	.sf-services-preview__grid {
		grid-template-columns: 1fr;
		gap: 18px;
		margin-top: 28px;
	}
	.sf-services-preview__item {
		padding: 24px 20px 22px;
	}
}
