:root {
	--fabco-navy: #05154c;
	--fabco-navy-mid: #1e3a8a;
	--fabco-gold: #C9A84C;
	--fabco-gold-light: #E2C47A;
	--fabco-red: #B22234;
	--fabco-blue-fr: #002395;
	--fabco-white: #ffffff;
	--fabco-text: #1a1a1a;
	--fabco-text-light: #555555;
	--fabco-bg: #ffffff;
	--fabco-bg-alt: #f5f5f5;
	--fabco-border: #e0e0e0;
	--fabco-radius: 4px;
	--fabco-shadow: 0 4px 24px rgba(10, 22, 40, 0.18);
}

[class*="fabco-"] {
	font-family: Arial, Helvetica, sans-serif;
}

.elementor-widget:has([class*="fabco-"]) {
	margin-bottom: 0 !important;
}

.fabco-visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}


/* =============================================
   HERO SECTION
   ============================================= */

.fabco-hero-section {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 620px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.fabco-hero-overlay {
	position: absolute;
	inset: 0;
	background-color: var(--fabco-navy);
	opacity: 0.70;
	z-index: 1;
}

.fabco-hero-inner {
	position: relative;
	z-index: 2;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 64px 24px 40px;
	max-width: 860px;
	width: 100%;
	margin: 0 auto;
}

.fabco-hero-badge-250 {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	background: rgba(10, 22, 40, 0.82);
	border: 1px solid rgba(201, 168, 76, 0.35);
	border-top: none;
	border-bottom: none;
	padding: 10px 36px 12px;
	margin-bottom: 32px;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.fabco-hero-badge-250__stripe {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(
		90deg,
		#002395 33.33%,
		#ffffff 33.33% 66.66%,
		#ED2939 66.66%
	);
}

.fabco-hero-badge-250__stripe--bottom {
	top: auto;
	bottom: 0;
	background: linear-gradient(
		90deg,
		#B22234 33.33%,
		#ffffff 33.33% 66.66%,
		#002868 66.66%
	);
}

.fabco-hero-badge-250__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 6px 0;
}

.fabco-hero-badge-250__title {
	font-size: 1.05rem;
	font-weight: 800;
	letter-spacing: 0.28em;
	color: var(--fabco-gold);
	text-transform: uppercase;
	line-height: 1.2;
}

.fabco-hero-badge-250__divider {
	display: block;
	width: 32px;
	height: 1px;
	background: rgba(201, 168, 76, 0.4);
}

.fabco-hero-badge-250__sub {
	font-size: 0.65rem;
	font-weight: 400;
	letter-spacing: 0.18em;
	color: rgba(255, 255, 255, 0.80);
	text-transform: uppercase;
}

.fabco-hero-headline {
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	font-weight: 700;
	line-height: 1.15;
	color: #ffffff;
	margin: 0 0 20px;
	max-width: 780px;
	letter-spacing: -0.02em;
}

.fabco-hero-subheadline {
	font-size: clamp(1rem, 2vw, 1.2rem);
	font-weight: 400;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 36px;
	max-width: 640px;
}

.fabco-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	align-items: center;
	margin-bottom: 28px;
}

.fabco-hero-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 36px;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-decoration: none;
	border-radius: var(--fabco-radius);
	transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
	cursor: pointer;
}

.fabco-hero-cta--primary {
	background-color: var(--fabco-gold);
	color: var(--fabco-navy);
	border: 2px solid transparent;
	box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}

.fabco-hero-cta--primary:hover,
.fabco-hero-cta--primary:focus-visible {
	background-color: var(--fabco-gold-light);
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(201, 168, 76, 0.45);
}

.fabco-hero-cta--secondary {
	background-color: transparent;
	color: #ffffff;
	border: 2px solid #ffffff;
}

.fabco-hero-cta--secondary:hover,
.fabco-hero-cta--secondary:focus-visible {
	background-color: rgba(255, 255, 255, 0.10);
	transform: translateY(-2px);
}

.fabco-hero-contact-line {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.9rem;
	text-decoration: none;
	letter-spacing: 0.02em;
	margin-bottom: 10px;
	transition: color 0.15s ease;
}

.fabco-hero-contact-line:hover,
.fabco-hero-contact-line:focus-visible {
	color: var(--fabco-gold-light);
}

.fabco-hero-stats {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0;
	background-color: rgba(10, 22, 40, 0.65);
	border: 1px solid rgba(201, 168, 76, 0.20);
	border-radius: var(--fabco-radius);
	overflow: hidden;
	margin-top: 20px;
	width: 100%;
	max-width: 640px;
}

.fabco-hero-stat {
	flex: 1;
	min-width: 120px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 18px 12px;
	border-right: 1px solid rgba(201, 168, 76, 0.15);
}

.fabco-hero-stat:last-child {
	border-right: none;
}

.fabco-hero-stat__value {
	font-size: 1.7rem;
	font-weight: 800;
	color: var(--fabco-gold);
	line-height: 1.1;
	letter-spacing: -0.01em;
}

.fabco-hero-stat__label {
	font-size: 0.7rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.70);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-top: 4px;
}

.fabco-hero-trust {
	position: relative;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0;
	background-color: rgba(10, 22, 40, 0.80);
	border-top: 1px solid rgba(201, 168, 76, 0.20);
	padding: 14px 24px;
}

.fabco-hero-trust__item {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 6px 20px;
	border-right: 1px solid rgba(201, 168, 76, 0.15);
}

.fabco-hero-trust__item:last-child {
	border-right: none;
}

.fabco-hero-trust__icon {
	color: var(--fabco-gold);
	font-size: 0.9rem;
	line-height: 1;
	flex-shrink: 0;
}

.fabco-hero-trust__icon i,
.fabco-hero-trust__icon svg {
	width: 14px;
	height: 14px;
	fill: currentColor;
}

.fabco-hero-trust__text {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.80);
	font-weight: 500;
	letter-spacing: 0.03em;
	white-space: nowrap;
}

@media (max-width: 767px) {
	.fabco-hero-section {
		min-height: 520px;
	}

	.fabco-hero-inner {
		padding: 48px 20px 32px;
	}

	.fabco-hero-badge-250 {
		padding: 8px 20px 10px;
		margin-bottom: 24px;
	}

	.fabco-hero-cta {
		padding: 14px 28px;
		width: 100%;
		max-width: 320px;
	}

	.fabco-hero-stats {
		max-width: 100%;
	}

	.fabco-hero-stat {
		min-width: 80px;
		padding: 14px 8px;
	}

	.fabco-hero-stat__value {
		font-size: 1.35rem;
	}

	.fabco-hero-trust__item {
		padding: 6px 12px;
	}

	.fabco-hero-trust__text {
		white-space: normal;
	}
}

@media (max-width: 479px) {
	.fabco-hero-stat {
		flex-basis: 50%;
		border-right: none;
		border-bottom: 1px solid rgba(201, 168, 76, 0.15);
	}

	.fabco-hero-stat:nth-child(odd) {
		border-right: 1px solid rgba(201, 168, 76, 0.15);
	}

	.fabco-hero-stat:nth-last-child(-n+2) {
		border-bottom: none;
	}

	.fabco-hero-trust__item {
		border-right: none;
		border-bottom: 1px solid rgba(201, 168, 76, 0.10);
		width: 100%;
		justify-content: center;
	}

	.fabco-hero-trust__item:last-child {
		border-bottom: none;
	}
}


/* =============================================
   TESTIMONIALS SECTION
   ============================================= */

.fabco-testimonials {
	background-color: var(--fabco-navy);
	padding: 80px 24px;
}

.fabco-testimonials__header {
	max-width: 680px;
	margin: 0 auto 56px;
	text-align: center;
}

.fabco-testimonials__eyebrow {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--fabco-gold);
	margin: 0 0 14px;
}

.fabco-testimonials__title {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 800;
	color: #ffffff;
	line-height: 1.2;
	margin: 0 0 16px;
	letter-spacing: -0.02em;
}

.fabco-testimonials__subtitle {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.6;
	margin: 0;
}

.fabco-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 1120px;
	margin: 0 auto;
}

.fabco-testimonial-card {
	background-color: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: 8px;
	padding: 32px 28px 28px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.fabco-testimonial-card:hover {
	border-color: rgba(201, 168, 76, 0.35);
	transform: translateY(-3px);
}

.fabco-testimonial-card__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.fabco-testimonial-card__stars {
	font-size: 0.95rem;
	color: var(--fabco-gold);
	letter-spacing: 0.05em;
}

.fabco-testimonial-card__mark {
	font-size: 3.5rem;
	line-height: 0.6;
	color: var(--fabco-gold);
	opacity: 0.4;
	font-family: Georgia, serif;
	font-weight: 700;
}

.fabco-testimonial-card__quote {
	margin: 0;
	flex: 1;
}

.fabco-testimonial-card__quote p {
	font-size: 0.95rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.88);
	margin: 0;
	font-style: italic;
}

.fabco-testimonial-card__footer {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.fabco-testimonial-card__avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	border: 2px solid rgba(201, 168, 76, 0.40);
}

.fabco-testimonial-card__avatar--initials {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: rgba(201, 168, 76, 0.18);
	border: 2px solid rgba(201, 168, 76, 0.40);
	color: var(--fabco-gold);
	font-size: 0.85rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	letter-spacing: 0.03em;
	flex-shrink: 0;
}

.fabco-testimonial-card__meta {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.fabco-testimonial-card__name {
	font-size: 0.9rem;
	font-weight: 700;
	color: #ffffff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.fabco-testimonial-card__role {
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.55);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.fabco-testimonial-card__since {
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.40);
	border-left: 2px solid var(--fabco-gold);
	padding-left: 7px;
	margin-top: 3px;
	white-space: nowrap;
}

@media (max-width: 900px) {
	.fabco-testimonials__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.fabco-testimonials {
		padding: 56px 16px;
	}

	.fabco-testimonials__grid {
		grid-template-columns: 1fr;
	}

	.fabco-testimonial-card {
		padding: 24px 20px 20px;
	}
}

/* ============================================================
   FABCO Testimonial Slider (.fabco-tsl-*)
   ============================================================ */

.fabco-tsl-section {
	padding: 72px 24px 80px;
	background-color: #f4f5f9;
	overflow: hidden;
}

.fabco-tsl-header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 48px;
}

.fabco-tsl-title {
	font-size: clamp(1.6rem, 3.5vw, 2.2rem);
	font-weight: 700;
	line-height: 1.2;
	color: #05154c;
	margin: 0 0 12px;
}

.fabco-tsl-subtitle {
	font-size: 1rem;
	line-height: 1.6;
	color: #555;
	margin: 0;
}

.fabco-tsl-outer {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 48px;
}

.fabco-tsl-swiper {
	overflow: hidden;
}

.fabco-tsl-swiper .swiper-wrapper {
	align-items: stretch;
}

.fabco-tsl-swiper .swiper-slide {
	height: auto;
}

.fabco-tsl-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 10px;
	border-top: 4px solid #C9A84C;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
	padding: 28px 24px 24px;
	height: 100%;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.fabco-tsl-card:hover {
	box-shadow: 0 6px 28px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
}

.fabco-tsl-quote-mark {
	display: block;
	font-size: 3.5rem;
	line-height: 1;
	color: #C9A84C;
	font-family: Georgia, serif;
	margin-bottom: -4px;
	opacity: 0.9;
}

.fabco-tsl-card-top {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
	flex-wrap: wrap;
}

.fabco-tsl-stars {
	display: flex;
	gap: 2px;
}

.fabco-tsl-star--filled {
	color: #C9A84C;
}

.fabco-tsl-star--empty {
	color: #ccc;
}

.fabco-tsl-platform {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 3px 8px;
	border-radius: 20px;
	white-space: nowrap;
}

.fabco-tsl-platform--google {
	background: #e8f0fe;
	color: #1a73e8;
}

.fabco-tsl-platform--linkedin {
	background: #e7f0f9;
	color: #0a66c2;
}

.fabco-tsl-platform--fabco {
	background: #eef0f8;
	color: #05154c;
}

.fabco-tsl-platform--other {
	background: #f0f0f0;
	color: #555;
}

.fabco-tsl-blockquote {
	flex: 1;
	margin: 0 0 20px;
	padding: 0;
	border: none;
}

.fabco-tsl-blockquote p {
	font-size: 0.95rem;
	line-height: 1.7;
	color: #333;
	margin: 0;
	font-style: italic;
}

.fabco-tsl-footer {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: auto;
	border-top: 1px solid #f0f0f0;
	padding-top: 16px;
	flex-wrap: wrap;
}

.fabco-tsl-avatar {
	width: 48px;
	height: 48px;
	min-width: 48px;
	border-radius: 50%;
	background-color: #C9A84C;
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	letter-spacing: 0.02em;
}

.fabco-tsl-avatar--photo {
	object-fit: cover;
	background: transparent;
}

.fabco-tsl-member-info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.fabco-tsl-name {
	font-size: 0.9rem;
	font-weight: 700;
	color: #05154c;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.fabco-tsl-role {
	font-size: 0.78rem;
	color: #777;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.fabco-tsl-member-since {
	font-size: 0.72rem;
	font-weight: 600;
	color: #C9A84C;
	white-space: nowrap;
	margin-left: auto;
}

.fabco-tsl-hint {
	display: none;
	text-align: center;
	font-size: 0.8rem;
	color: #999;
	margin-top: 16px;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.fabco-tsl-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid #C9A84C;
	color: #C9A84C;
	background: #fff;
	cursor: pointer;
	transition: background 0.18s, color 0.18s;
	padding: 0;
	line-height: 1;
}

.fabco-tsl-btn:hover {
	background: #C9A84C;
	color: #fff;
}

.fabco-tsl-btn--prev {
	left: 0;
}

.fabco-tsl-btn--next {
	right: 0;
}

.fabco-tsl-swiper .swiper-pagination {
	position: static;
	margin-top: 24px;
	display: flex;
	justify-content: center;
	gap: 6px;
}

.fabco-tsl-swiper .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ccc;
	opacity: 1;
	transition: background 0.2s, transform 0.2s;
}

.fabco-tsl-swiper .swiper-pagination-bullet-active {
	background: #C9A84C;
	transform: scale(1.25);
}

@media (max-width: 767px) {
	.fabco-tsl-outer {
		padding: 0 8px;
	}

	.fabco-tsl-btn {
		display: none;
	}

	.fabco-tsl-hint {
		display: flex;
	}

	.fabco-tsl-section {
		padding: 48px 12px 56px;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.fabco-tsl-outer {
		padding: 0 52px;
	}
}

/* ==========================================================================
   FABCO PARTNERS / MEMBER BUSINESSES SLIDER  (.fabco-pts-*)
   ========================================================================== */

.fabco-pts-section {
	padding: 56px 24px 64px;
	background: #fff;
	border-top: 1px solid #e8e9ef;
	border-bottom: 1px solid #e8e9ef;
}

.fabco-pts-header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 40px;
}

.fabco-pts-title {
	font-size: clamp(1.4rem, 3vw, 1.9rem);
	font-weight: 700;
	line-height: 1.25;
	color: #05154c;
	margin: 0 0 10px;
}

.fabco-pts-subtitle {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #666;
	margin: 0;
}

.fabco-pts-outer {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 44px;
}

.fabco-pts-swiper {
	overflow: hidden;
}

.fabco-pts-swiper .swiper-wrapper {
	align-items: center;
}

.fabco-pts-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 12px;
	text-decoration: none;
	border-radius: 8px;
	transition: background 0.2s ease;
	min-height: 100px;
}

a.fabco-pts-item:hover,
a.fabco-pts-item:focus-visible {
	background: #f4f5f9;
	outline: 2px solid #C9A84C;
	outline-offset: 2px;
}

.fabco-pts-logo {
	display: block;
	width: auto;
	max-width: 100%;
	height: 60px;
	object-fit: contain;
	object-position: center;
}

.fabco-pts-logo-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 60px;
	background: #eef0f8;
	color: #05154c;
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	border-radius: 6px;
}

.fabco-pts-name {
	font-size: 0.78rem;
	font-weight: 600;
	color: #05154c;
	text-align: center;
	line-height: 1.3;
	max-width: 120px;
	word-break: break-word;
}

/* --- Logo style variants --- */

.fabco-pts-logo-style--grayscale-hover .fabco-pts-logo {
	filter: grayscale(100%) opacity(0.55);
	transition: filter 0.25s ease;
}

.fabco-pts-logo-style--grayscale-hover .fabco-pts-item:hover .fabco-pts-logo,
.fabco-pts-logo-style--grayscale-hover .fabco-pts-item:focus-visible .fabco-pts-logo {
	filter: grayscale(0%) opacity(1);
}

.fabco-pts-logo-style--grayscale .fabco-pts-logo {
	filter: grayscale(100%) opacity(0.55);
}

.fabco-pts-logo-style--color .fabco-pts-logo {
	filter: none;
}

/* --- Prev / Next buttons --- */

.fabco-pts-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1.5px solid #C9A84C;
	color: #C9A84C;
	background: #fff;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
	padding: 0;
}

.fabco-pts-btn:hover {
	background: #C9A84C;
	color: #fff;
}

.fabco-pts-btn--prev {
	left: 0;
}

.fabco-pts-btn--next {
	right: 0;
}

/* --- Responsive --- */

@media (max-width: 767px) {
	.fabco-pts-section {
		padding: 40px 12px 48px;
	}

	.fabco-pts-outer {
		padding: 0 8px;
	}

	.fabco-pts-btn {
		display: none;
	}

	.fabco-pts-logo {
		height: 48px;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.fabco-pts-outer {
		padding: 0 48px;
	}
}

