/* =========================================================
   Fast Fix — Elementor widgets base stylesheet
   ========================================================= */
:root {
	--ff-navy: #02234E;
	--ff-blue: #0F66BE;
	--ff-black: #111111;
	--ff-ink: #0B1B33;
	--ff-gray: #5B6B82;
	--ff-graybg: #F5F7FA;
	--ff-border: #E4E9F0;
	--ff-radius: 14px;
	--ff-font-head: 'Montserrat', 'Segoe UI', Arial, sans-serif;
	--ff-font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
}

.ff-section * {
	box-sizing: border-box;
}

.ff-section .e-font-icon-svg,
.ff-section svg {
	fill: currentColor;
}

.ff-section img {
	max-width: 100%;
	display: block;
}

.ff-section a {
	text-decoration: none;
	color: inherit;
}

.ff-section ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ff-section input,
.ff-section textarea {
	font-family: var(--ff-font-body);
}

.ff-container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 24px;
}

.ff-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--ff-font-head);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--ff-blue);
	margin-bottom: 16px;
}

.ff-eyebrow::before {
	content: '';
	width: 22px;
	height: 2px;
	background: var(--ff-blue);
	display: inline-block;
}

.ff-center .ff-eyebrow {
	justify-content: center;
	width: 100%;
}

.ff-serving-grid .ff-cities-card {
        display: flex;
    flex-direction: column;
    justify-content: center;
}

.ff-hero .ff-eyebrow {
	border-width: 1px;
	border-style: solid;
	border-color: #c7d3e0;
	padding: 10px 0;
	border-left-width: 0px; 
	border-right-width: 0px;
}

.ff-heading {
	font-family: var(--ff-font-head);
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 20px;
	color: var(--ff-ink);
	text-transform: uppercase;
}

.ff-heading .ff-hl {
	color: var(--ff-blue);
}

.ff-text {
	font-family: var(--ff-font-body);
	color: var(--ff-gray);
	line-height: 1.75;
	font-size: 15px;
}

.ff-text p {
	margin: 0 0 16px;
}

.ff-text p:last-child {
	margin-bottom: 0;
}

.ff-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	font-family: var(--ff-font-head);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: .3px;
	text-transform: uppercase;
	padding: 16px 22px;
	border-radius: 8px;
	border: 2px solid transparent;
	transition: all .3s ease;
	white-space: nowrap;
}

.ff-btn:hover {
	transform: translateY(-2px);
}

.ff-btn-primary {
	background: var(--ff-navy);
	color: #fff;
	padding: 6px 6px 6px 26px;
	justify-content: space-between;
	gap: 20px;
	overflow: hidden;
	position: relative;
	border-color: transparent;
}

.ff-btn-primary:hover {
	background: #0a1c3d;
	color: #fff;
	box-shadow: 0 8px 20px rgba(2, 35, 78, .3);
}

.ff-btn-outline {
	background: #fff;
	color: var(--ff-ink);
	border-color: var(--ff-border);
	box-shadow: 0 2px 6px rgba(0, 0, 0, .05);
}

.ff-btn-outline:hover {
	background: var(--ff-navy);
	color: #fff;
	border-color: var(--ff-navy);
	box-shadow: 0 8px 20px rgba(2, 35, 78, .2);
}

.ff-btn-blue {
	background: var(--ff-blue);
	color: #fff;
}

.ff-btn-blue:hover {
	background: #0c58a5;
	color: #fff;
	box-shadow: 0 8px 20px rgba(15, 102, 190, .3);
}

/* Hello Elementor's reset.css styles bare <button>/[type=submit] with equal
   specificity and loads after us — pin these down explicitly so real <button>
   elements (form submits) always get our button skin, not the theme reset. */
button.ff-btn-primary,
button.ff-btn-blue,
button.ff-btn-outline {
	border-width: 2px;
}

button.ff-btn-primary {
	background: var(--ff-navy);
	color: #fff;
	border-color: transparent;
}

button.ff-btn-blue {
	background: var(--ff-blue);
	color: #fff;
	border-color: transparent;
}

button.ff-btn-outline {
	background: #fff;
	color: var(--ff-ink);
	border-color: var(--ff-border);
}

.ff-btn-arrow {
	width: 28px;
	height: 28px;
	border-radius: 6px;
	background: rgba(255, 255, 255, .25);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background .3s ease;
}

.ff-btn-arrow i {
	display: inline-flex;
	transition: transform .3s ease;
}

.ff-btn-primary .ff-btn-arrow {
	width: 40px;
	height: 40px;
	border-radius: 6px;
	background: var(--ff-blue);
}

.ff-btn-primary:hover .ff-btn-arrow {
	filter: brightness(1.2);
}

.ff-btn-primary:hover .ff-btn-arrow i {
	transform: translateX(3px);
}

.ff-btn-full {
	width: 100%;
	justify-content: center;
}

/* About section sits on a dark navy background — keep its outline button's
   hover visible instead of the site-wide navy-invert (which would vanish on navy bg). */
.ff-about .ff-btn-outline:hover {
	background: rgba(255, 255, 255, .1);
	color: #fff;
	border-color: #fff;
	box-shadow: none;
}

/* ---------- Topbar ---------- */
.ff-topbar {
	background: var(--ff-black);
	color: #cfd4db;
	font-size: 13px;
	border-top: 4px solid var(--ff-navy);
}

.ff-topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 42px;
	padding-block: 6px;
	flex-wrap: wrap;
	gap: 10px;
}

.ff-topbar-follow {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	letter-spacing: .5px;
}

.ff-topbar-social {
	display: flex;
	gap: 8px;
}

.ff-topbar-social a {
	width: 26px;
	height: 26px;
	border: 1px solid #3a3a3a;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #cfd4db;
	font-size: 12px;
	transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.ff-topbar-social a:hover {
	background: var(--ff-blue);
	border-color: var(--ff-blue);
	color: #fff;
}

.ff-topbar-info {
	display: flex;
	align-items: center;
	gap: 26px;
	flex-wrap: wrap;
}

.ff-topbar-info span,
.ff-topbar-info a {
	display: flex;
	align-items: center;
	gap: 8px;
}

.ff-topbar-info a:hover {
	color: var(--ff-blue);
}

.ff-topbar-info .dot {
	width: 6px;
	height: 6px;
	background: var(--ff-blue);
	border-radius: 50%;
	flex-shrink: 0;
}

/* ---------- Header ---------- */
.ff-header {
	background: #fff;
	position: relative;
}

.ff-header--sticky.ff-header--fixed {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	box-shadow: 0 4px 20px rgba(2, 35, 78, .08);
	animation: ff-header-drop .25s ease;
}

.ff-header-spacer {
	height: 0;
}

@keyframes ff-header-drop {
	from {
		transform: translateY(-100%);
	}

	to {
		transform: translateY(0);
	}
}

.ff-header-inner {
	display: flex;
	align-items: stretch;
	min-height: 88px;
}

.ff-header-main {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	/*align-items: center;*/
	justify-content: space-between;
	gap: 24px;
	/*padding-top: 14px;*/
	/*padding-bottom: 14px;*/
}

 .ff-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

/* First 3 cards - normal 3 columns */
.ff-services-grid .ff-s-card:nth-child(1),
.ff-services-grid .ff-s-card:nth-child(2),
.ff-services-grid .ff-s-card:nth-child(3) {
    grid-column: auto;
}

/* Last 2 cards - same width, but centered as a group */
.ff-services-grid .ff-s-card:nth-child(4),
.ff-services-grid .ff-s-card:nth-child(5) {
    position: relative;
    left: calc(50% + 12px);
}

@media screen and (max-width: 1024px) {
    .ff-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ff-services-grid .ff-s-card:nth-child(4),
    .ff-services-grid .ff-s-card:nth-child(5) {
        left: 0;
    }
}


/* Mobile */
@media screen and (max-width: 767px) {
    .ff-services-grid {
        grid-template-columns: 1fr;
    }

    .ff-services-grid .ff-s-card:nth-child(4),
    .ff-services-grid .ff-s-card:nth-child(5) {
        left: 0;
    }
}


.ff-logo {
	display: flex;
	align-items: center;
}

.ff-logo img {
	height: 56px !important;
	width: auto !important;
}

.ff-nav {
	display: flex;
	align-items: center;
}

.ff-nav-list {
	display: flex;
	align-items: center;
	gap: 34px;
}

.ff-nav-item {
	position: relative;
	display: flex;
	align-items: center;
}

.ff-nav-link {
	font-family: var(--ff-font-head);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: .3px;
	color: var(--ff-ink);
	text-transform: uppercase;
	padding-block: 4px;
	border-bottom: 2px solid transparent;
	transition: color .2s ease, border-color .2s ease;
}

.ff-nav-link.active,
.ff-nav-link:hover {
	color: var(--ff-blue);
	border-color: var(--ff-blue);
}

/* -- submenus: hover dropdown on desktop -- */
.ff-submenu-toggle {
	display: none;
}

.ff-nav .ff-submenu {
	display: none;
	flex-direction: column;
	gap: 2px;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 12px 30px rgba(2, 35, 78, .15);
	padding: 8px;
	z-index: 30;
}

.ff-nav-item.has-children:hover > .ff-submenu {
	display: flex;
}

.ff-nav .ff-submenu .ff-nav-item {
	width: 100%;
}

.ff-nav .ff-submenu .ff-nav-link {
	width: 100%;
	padding: 8px 12px;
	border-bottom: none;
	border-radius: 6px;
}

.ff-nav .ff-submenu .ff-nav-link:hover {
	background: var(--ff-graybg);
}

.ff-nav .ff-submenu .ff-submenu {
	top: 0;
	left: 100%;
}

.ff-header-right {
	display: flex;
	align-items: center;
	gap: 16px;
}

.ff-active-pill {
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1px solid #bfe3c8;
	color: #1c9a4b;
	background: #f2fbf5;
	font-family: var(--ff-font-head);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: .5px;
	padding: 8px 16px;
	border-radius: 999px;
}

.ff-active-pill .dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #22c55e;
}

/* -- call block: diagonal notch, bleeds to the true browser edge -- */
.ff-call {
	position: relative;
	display: flex;
	align-items: center;
	gap: 14px;
	flex-shrink: 0;
	padding: 14px 28px 14px 22px;
	/* cancels the container's own side padding, and (on screens wider than
	   the 1300px container) the extra centering gap too, so the block
	   always reaches the true viewport edge, not just the container edge. */
	/*margin-right: calc(-1 * (max(0px, (100vw - 1300px) / 2) + 24px));*/
	color: #fff;
	text-decoration: none;
	isolation: isolate;
}

.ff-call::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--ff-navy);
	/*clip-path: polygon(10px 0, 100% 0, 100% 100%, 48px 100%, 20px 90.8%);*/
	z-index: -1;
}

.ff-call-icon {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--ff-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #fff;
	box-shadow: 0 4px 10px rgba(2, 35, 78, .35);
}

.ff-call-text {
	display: flex;
	flex-direction: column;
	gap: 3px;
	white-space: nowrap;
}

.ff-call-text strong {
	display: block;
	font-family: var(--ff-font-head);
	font-size: 17px;
	font-weight: 800;
	color: #fff !important;
}

.ff-call-text small {
	display: block;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: #b9c7dd !important;
}

.ff-nav-toggle {
	display: none;
	background: none;
	border: none;
	padding: 6px;
	cursor: pointer;
}

.ff-nav-toggle span {
	display: block;
	width: 26px;
	height: 2px;
	background: var(--ff-ink);
	margin: 5px 0;
	transition: transform .25s ease, opacity .25s ease;
}

/* ---------- Mobile off-canvas sidebar ---------- */
.ff-sidebar-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(2, 35, 78, .55);
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s ease, visibility .3s ease;
	z-index: 1000;
}

.ff-sidebar-backdrop.is-open {
	opacity: 1;
	visibility: visible;
}

.ff-mobile-sidebar {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(320px, 85vw);
	background: #fff;
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform .3s ease;
	z-index: 1001;
	box-shadow: -12px 0 30px rgba(0, 0, 0, .15);
}

.ff-mobile-sidebar.is-open {
	transform: translateX(0);
}

.ff-sidebar-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 18px 20px;
	border-bottom: 1px solid var(--ff-border);
	flex-shrink: 0;
}

.ff-sidebar-head .ff-logo img {
	height: 40px !important;
}

.ff-sidebar-close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	border: 1px solid var(--ff-border);
	background: none;
	color: var(--ff-ink);
	cursor: pointer;
	flex-shrink: 0;
}

/* Hello Elementor's reset.css styles [type="button"] with equal specificity
   to a single class and loads after us — this button has an explicit
   type="button" attribute, so pin it down like the .ff-btn-* buttons above. */
button.ff-sidebar-close {
	border-color: var(--ff-border);
	color: var(--ff-ink);
	background: none;
}

button.ff-sidebar-close:hover {
	border-color: var(--ff-blue);
	color: var(--ff-blue);
	background: none;
}

.ff-sidebar-nav {
	flex: 1 1 auto;
	overflow-y: auto;
	padding: 12px;
}

.ff-sidebar-nav .ff-nav-list {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 2px;
	padding-left: 0;
}

.ff-sidebar-nav .ff-nav-item {
	position: relative;
	flex-direction: column;
	align-items: stretch;
}

.ff-sidebar-nav .ff-nav-link {
	display: block;
	width: 100%;
	padding: 12px 34px 12px 10px;
	border-bottom: 1px solid var(--ff-border);
	border-radius: 0;
	box-sizing: border-box;
}

.ff-sidebar-nav .ff-submenu-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 2px;
	right: 2px;
	width: 34px;
	height: 34px;
	background: none;
	border: none;
	color: var(--ff-ink);
	cursor: pointer;
}

.ff-sidebar-nav .ff-submenu-toggle i {
	transition: transform .25s ease;
}

.ff-sidebar-nav .ff-nav-item.is-open > .ff-submenu-toggle i {
	transform: rotate(180deg);
}

.ff-sidebar-nav .ff-submenu {
	display: none;
	flex-direction: column;
	gap: 0;
	padding-left: 14px;
}

.ff-sidebar-nav .ff-nav-item.is-open > .ff-submenu {
	display: flex;
}

.ff-sidebar-nav .ff-submenu .ff-nav-link {
	font-size: 13px;
	padding: 10px;
}

.ff-sidebar-social {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 18px 20px;
	border-top: 1px solid var(--ff-border);
	flex-shrink: 0;
}

.ff-sidebar-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	background: var(--ff-graybg);
	color: var(--ff-navy);
	font-size: 14px;
	transition: background .2s ease, color .2s ease;
}

.ff-sidebar-social a:hover {
	background: var(--ff-blue);
	color: #fff;
}

body.ff-sidebar-locked {
	overflow: hidden;
}

/* ---------- Hero ---------- */
.ff-hero {
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	background-color: #F5F7FA;
}

.ff-hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

.ff-hero-inner {
	position: relative;
	z-index: 2;
	width: 100%;
	padding-top: 50px;
	padding-bottom: 50px;
}

.ff-hero-content-wrap {
	max-width: 620px;
}

.ff-hero-content .ff-heading {
	font-size: 50px;
	text-transform: uppercase;
}

.ff-hero-content .ff-text {
	max-width: 500px;
	margin: 18px 0 30px;
	font-size: 16px;
}

.ff-hero-actions {
	display: flex;
	gap: 16px;
	margin-bottom: 34px;
	flex-wrap: wrap;
}

.ff-hero-trust {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}

.ff-trust-card {
	display: flex;
	align-items: center;
	justify-content: center;
}

/*
.ff-trust-card img {
	height: 28px !important;
	width: auto !important;
}
*/

/*
.ff-trust-card img.ff-trust-icon {
	height: 28px;
	width: 28px;
	object-fit: contain;
}
*/

/*
.ff-trust-card img.ff-trust-badge {
	height: 34px;
	width: auto;
	object-fit: contain;
}
*/

/* ---------- Quote form ---------- */
.ff-quote {
	background: #02234E;
	padding: 60px 0;
}

.ff-quote-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 30px;
}

.ff-quote .ff-heading {
	font-size: 30px;
	text-transform: uppercase;
	margin: 0;
	color: #fff;
}

.ff-quote .ff-heading .ff-hl {
	color: #4FA3F7;
}

.ff-quote-sub {
	color: #9fb1cc;
	font-family: var(--ff-font-head);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: .5px;
	text-transform: uppercase;
}

.ff-form-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 16px;
}

.ff-field {
	position: relative;
	display: flex;
}

.ff-field input,
.ff-field textarea {
	width: 100%;
	background: #fff;
	border: 1px solid #E4E9F0;
	border-radius: 8px;
	color: var(--ff-ink);
	padding: 18px 46px 18px 20px;
	font-size: 14px;
	line-height: 1.3;
	resize: none;
	min-height: 58px;
	box-sizing: border-box;
}

.ff-field textarea {
	min-height: 58px;
}

.ff-field input::placeholder,
.ff-field textarea::placeholder {
	color: #8a94a6;
}

.ff-field-icon {
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	color: #8a94a6;
	pointer-events: none;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ff-field textarea~.ff-field-icon,
textarea~.ff-field-icon {
	top: 26px;
	transform: none;
}

.ff-form-msg {
	margin-top: 14px;
	font-size: 14px;
	color: #9fe3ac;
}

/* Contact section's dark form card keeps the dark translucent field style */
.ff-contact-form-card .ff-field {
	margin-bottom: 14px;
}

.ff-contact-form-card .ff-field input,
.ff-contact-form-card .ff-field textarea {
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .15);
	color: #fff;
}

.ff-contact-form-card .ff-field input::placeholder,
.ff-contact-form-card .ff-field textarea::placeholder {
	color: #b9c7dd;
}

.ff-contact-form-card .ff-field-icon {
	color: #b9c7dd;
}

/* ---------- Badges & Stats ---------- */
.ff-badges {
	background: #ffffff;
	padding: 40px 0;
}

.ff-badges-marquee {
	overflow: hidden;
	width: 100%;
	-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
	mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.ff-badges-track {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 56px;
	width: max-content;
}

.ff-badges-track img {
	height: 44px;
	width: auto;
	object-fit: contain;
	flex-shrink: 0;
}

.ff-marquee-on .ff-badges-track {
	animation-name: ff-marquee;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.ff-marquee-pause-hover:hover .ff-badges-track {
	animation-play-state: paused;
}

@keyframes ff-marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

.ff-stats {
	background: #0F66BE;
	padding: 22px 0;
}

.ff-stats-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}

.ff-stat {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #fff;
	font-family: var(--ff-font-head);
	font-weight: 700;
	font-size: 14px;
}

.ff-stat-icon {
	width: 30px;
	height: 30px;
	border-radius: 6px;
	background: rgba(255, 255, 255, .18);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #fff;
}

/* ---------- About ---------- */
.ff-about {
	position: relative;
	padding: 20px 0;
	background: #02234E;
	overflow: hidden;
}

.ff-about-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

.ff-about-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	gap: 70px;
	align-items: center;
}

.ff-about-photo {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

body .ff-about-photo img {
	display: block;
	width: 100%;
	height: 80%;
	object-fit: contain;
}

.ff-about .ff-eyebrow {
	color: #6EA8EF;
}

.ff-about .ff-eyebrow::before {
	background: #6EA8EF;
}

.ff-about .ff-heading {
	font-size: 36px;
	text-transform: uppercase;
	color: #fff;
}

.ff-about .ff-heading .ff-hl {
	color: #4FA3F7;
}

.ff-about .ff-text {
	color: #b9c7dd;
	font-size: 15px;
}

.ff-about-actions {
	display: flex;
	gap: 14px;
	margin-top: 30px;
	flex-wrap: wrap;
}

.ff-about .ff-btn-outline {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, .25);
}

/* ---------- Testimonials ---------- */
.ff-testimonials {
	text-align: center;
	padding: 100px 0 80px;
}

.ff-testimonials .ff-heading {
	font-size: 34px;
	text-transform: uppercase;
	margin: 0 auto 50px;
	max-width: 720px;
}

.ff-t-track-wrap {
	overflow: hidden;
}

.ff-t-track {
	display: flex;
	gap: 24px;
	transition: transform .4s ease;
}

.ff-t-card {
	flex: 0 0 calc(25% - 18px);
	background: var(--ff-graybg);
	border-radius: var(--ff-radius);
	padding: 28px;
	text-align: left;
	display: flex;
	flex-direction: column;
}

.ff-t-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px;
}

.ff-t-rating {
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: var(--ff-font-head);
	font-weight: 700;
	color: var(--ff-ink);
	font-size: 14px;
}

.ff-t-rating .stars {
	color: #f5b400;
	letter-spacing: 1px;
}

.ff-t-quote {
	color: var(--ff-gray);
	font-size: 14.5px;
	line-height: 1.7;
	flex-grow: 1;
	margin-bottom: 22px;
}

.ff-t-person {
	display: flex;
	align-items: center;
	gap: 12px;
	border-top: 1px solid var(--ff-border);
	padding-top: 16px;
}

.ff-t-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50% !important;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-family: var(--ff-font-head);
	font-weight: 700;
	flex-shrink: 0;
}

.ff-t-person strong {
	display: block;
	font-size: 14px;
	color: var(--ff-ink);
}

.ff-t-person small {
	color: var(--ff-gray);
	font-size: 12px;
}

.ff-t-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	margin-top: 44px;
}

.ff-t-arrow {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--ff-blue);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	flex-shrink: 0;
	cursor: pointer;
}

.ff-t-arrow[disabled] {
	background: #cfe0f5;
	cursor: default;
}

.ff-t-dots {
	display: flex;
	gap: 8px;
}

.ff-t-dots span {
	width: 8px;
	height: 8px;
	border-radius: 2px;
	background: #d7dee8;
	display: block;
}

.ff-t-dots span.active {
	background: var(--ff-navy);
	width: 20px;
}

/* ---------- Gallery ---------- */
.ff-gallery {
	background: #F5F7FA;
	text-align: center;
	padding: 90px 0;
}

.ff-gallery .ff-heading {
	font-size: 34px;
}

.ff-gallery>.ff-container>.ff-text {
	max-width: 640px;
	margin: 0 auto 40px;
}

.ff-gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 217px;
	gap: 14px;
	text-align: left;
}

.ff-gallery-grid>div {
	overflow: hidden;
	border-radius: 10px;
}

.ff-gallery-grid img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	border-radius: 10px !important;
	display: block;
}

.ff-gallery-grid img.ff-lightbox-trigger {
	cursor: zoom-in;
	transition: transform .25s ease, filter .25s ease;
}

.ff-gallery-grid img.ff-lightbox-trigger:hover {
	transform: scale(1.03);
	filter: brightness(1.04);
}

/* ---------- Lightbox ---------- */
.ff-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(2, 10, 25, .92);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
	opacity: 0;
	visibility: hidden;
	transition: opacity .2s ease;
}

.ff-lightbox.ff-lightbox-open {
	opacity: 1;
	visibility: visible;
}

.ff-lightbox-img {
	max-width: min(1100px, 92vw);
	max-height: 88vh;
	width: auto;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.ff-lightbox-close {
	position: absolute;
	top: 24px;
	right: 28px;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .12);
	border: none;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .2s ease;
}

.ff-lightbox-close:hover {
	background: rgba(255, 255, 255, .25);
}

body.ff-lightbox-locked {
	overflow: hidden;
}

.ff-g-tall {
	grid-row: span 2;
}

.ff-g-wide {
	grid-column: span 2;
}

/* ---------- Services ---------- */
.ff-services {
	text-align: center;
	padding: 100px 0 70px;
}

.ff-services .ff-heading {
	font-size: 34px;
}

.ff-services>.ff-container>.ff-text {
	max-width: 640px;
	margin: 0 auto 40px;
}

.ff-services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
	text-align: left;
}

.ff-s-card {
	border: 1px solid var(--ff-border);
	border-radius: var(--ff-radius);
	overflow: hidden;
	background: #fff;
	transition: box-shadow .2s ease, transform .2s ease, background .25s ease, border-color .25s ease;
}

.ff-s-card:hover {
	box-shadow: 0 16px 32px rgba(2, 35, 78, .15);
	transform: translateY(-4px);
	background: var(--ff-blue);
	border-color: var(--ff-blue);
}

.ff-s-card img {
	width: calc(100% - 28px) !important;
	height: 210px !important;
	object-fit: cover;
	border-radius: 10px !important;
	display: block;
	margin: 14px 14px 0;
}

.ff-s-card-body {
	padding: 26px;
}

.ff-s-icon {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	background: var(--ff-graybg);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	color: var(--ff-blue);
	transition: background .25s ease, color .25s ease;
}

.ff-s-card h3 {
	font-family: var(--ff-font-head);
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 10px;
	transition: color .25s ease;
}

.ff-s-card .ff-text {
	font-size: 14px;
	margin-bottom: 16px;
	transition: color .25s ease;
}

.ff-s-link {
	color: var(--ff-blue);
	font-weight: 700;
	font-family: var(--ff-font-head);
	font-size: 13px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: color .25s ease;
}

.ff-s-card:hover h3,
.ff-s-card:hover .ff-text,
.ff-s-card:hover .ff-s-link {
	color: #fff !important;
}

.ff-s-card:hover .ff-s-icon {
	background: rgba(255, 255, 255, .18);
	color: #fff;
}

.ff-services-cta {
	margin-top: 46px;
	text-align: center;
}

/* ---------- Contact ---------- */
.ff-contact {
	background: #F5F7FA;
	padding: 100px 0;
}

.ff-contact-grid {
	display: grid;
	grid-template-columns: 1fr .9fr;
	gap: 60px;
}

.ff-contact-info .ff-heading {
	font-size: 32px;
	text-transform: uppercase;
}

.ff-contact-info>.ff-text {
	margin-bottom: 30px;
	max-width: 560px;
}

.ff-contact-cards {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.ff-c-card {
	display: flex;
	align-items: center;
	gap: 18px;
	background: #fff;
	border-radius: 12px;
	padding: 20px 24px;
	transition: box-shadow .2s ease, transform .2s ease;
}

a.ff-c-card:hover {
	box-shadow: 0 10px 24px rgba(2, 35, 78, .12);
	transform: translateY(-2px);
}

.ff-c-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--ff-navy);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.ff-c-card strong {
	display: block;
	font-size: 15px;
	margin-bottom: 3px;
}

.ff-c-card span {
	color: var(--ff-gray);
	font-size: 14px;
}

.ff-contact-form-card {
	background: var(--ff-navy);
	border-radius: var(--ff-radius);
	overflow: hidden;
	color: #fff;
}

.ff-contact-form-top {
	padding: 34px 34px 8px;
}

.ff-contact-form-card h3 {
	font-family: var(--ff-font-head);
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 22px;
}

.ff-perks {
	background: var(--ff-blue);
	margin-top: 22px;
	padding: 22px 34px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.ff-perks div {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	font-weight: 600;
	color: #fff;
}

.ff-perk-icon {
	width: 26px;
	height: 26px;
	border-radius: 6px;
	background: rgba(255, 255, 255, .2);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #fff;
	font-size: 12px;
}

/* ---------- Serving areas ---------- */
.ff-serving {
	background: #F5F7FA;
	text-align: center;
	padding: 90px 0;
}

.ff-serving .ff-heading {
	font-size: 34px;
}

.ff-serving>.ff-container>.ff-text {
	max-width: 640px;
	margin: 0 auto 40px;
}

.ff-serving-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	text-align: left;
	align-items: stretch;
}

.ff-serving-grid img {
	border-radius: var(--ff-radius) !important;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ff-map-embed {
	border: 0 !important;
	border-radius: var(--ff-radius) !important;
	width: 100% !important;
	height: 452px;
	display: block;
	min-height: 300px;
}

.ff-cities-card {
	background: var(--ff-navy);
	border-radius: var(--ff-radius);
	padding: 40px;
}

.ff-cities-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 40px;
}

.ff-cities-list a {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	font-weight: 700;
	font-family: var(--ff-font-head);
	font-size: 15px;
	padding: 13px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.ff-cities-list .pin {
	color: var(--ff-blue);
	flex-shrink: 0;
}

.ff-cities-note {
	text-align: center;
	color: #9fb1cc;
	margin-top: 24px;
	font-size: 14px;
}

/* ---------- Footer ---------- */
.ff-footer {
	background: #02234E;
	color: #b9c7dd;
	padding: 70px 0 0;
}

.ff-footer-grid {
	display: grid;
	grid-template-columns: 1.3fr .8fr 1fr .8fr;
	gap: 40px;
	padding-bottom: 50px;
}

.ff-footer-logo>a {
	display: inline-block;
}

.ff-footer-logo img {
	height: 48px !important;
	width: auto !important;
	object-fit: contain;
	margin-bottom: 20px;
}

.ff-footer-grid .ff-text {
	font-size: 14px;
	margin-bottom: 20px;
}

.ff-footer-rating {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 999px;
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
}

.ff-footer-rating .stars {
	color: #f5b400;
}

.ff-footer-col h4 {
	color: #fff;
	font-family: var(--ff-font-head);
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 18px;
}

.ff-footer-col ul li {
	margin-bottom: 12px;
	font-size: 14px;
}

.ff-footer-col ul li a {
	color: #b9c7dd;
}

.ff-footer-col ul li a:hover {
	color: #fff;
}

.ff-footer-services {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
}

.ff-footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	margin-bottom: 14px;
}

.ff-footer-contact li a:hover {
	color: #fff;
}

.ff-fc-icon {
	color: var(--ff-blue);
	margin-top: 2px;
	flex-shrink: 0;
}

.ff-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .12);
	padding: 22px 0;
	font-size: 13px;
	color: #8fa1bd;
	text-align: center;
}

/* =========================================================
   Icon sizing — classic <i class="fas fa-..."> webfont icons,
   sized to match the Figma design (icon size = font-size).
   ========================================================= */
.ff-section i[class*="fa-"] {
	line-height: 1;
}

.ff-topbar-social a i {
	font-size: 12px;
}

.ff-call-icon i {
	font-size: 18px;
}

.ff-stat-icon i {
	font-size: 14px;
}

.ff-s-icon i {
	font-size: 18px;
}

.ff-c-icon i {
	font-size: 16px;
}

.ff-perk-icon i {
	font-size: 12px;
}

.ff-fc-icon i {
	font-size: 13px;
}

.ff-cities-list .pin i {
	font-size: 13px;
}

.ff-t-arrow i {
	font-size: 14px;
}

.ff-btn-arrow i {
	font-size: 13px;
}

.ff-btn-primary .ff-btn-arrow i {
	font-size: 14px;
}

.ff-s-link i {
	font-size: 11px;
}

.ff-field-icon i {
	font-size: 14px;
}

.ff-nav-toggle i {
	font-size: 18px;
}

.ff-t-top i[class*="fa-google"] {
	font-size: 20px;
}

.ff-about-actions .btn i,
.ff-about-actions a i {
	font-size: 14px;
}

/* =========================================================
   Responsive — Elementor default breakpoints (1024 / 767)
   ========================================================= */
@media (max-width: 1024px) {
	.ff-hero {
		min-height: auto !important;
		padding: 60px 0;
	}

	.ff-hero-content-wrap {
		max-width: 100%;
	}

	.ff-about-grid,
	.ff-contact-grid,
	.ff-serving-grid {
		grid-template-columns: 1fr;
	}

	.ff-footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.ff-services-grid {
		grid-template-columns: 1fr 1fr;
	}

	.ff-t-card {
		flex: 0 0 calc(50% - 12px);
	}

	.ff-gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ff-header-main > .ff-nav {
		display: none;
	}
    
	.ff-nav-toggle {
		display: block;
	}

	.ff-call {
		padding: 12px 20px 12px 54px;
		gap: 10px;
	}

	.ff-call-icon {
		width: 38px;
		height: 38px;
	}

	.ff-call-text strong {
		font-size: 15px;
	}
}

[type=button]:focus, [type=button]:hover, [type=submit]:focus, [type=submit]:hover, button:focus, button:hover {
    background: #0d2b52 !important;
}
.ff-nav-toggle:hover span {
        background: #fff;
}
button.ff-sidebar-close:hover {
    color: #E4E9F0 !important;
}
@media (max-width: 767px) {
    body .ff-footer-grid {
            padding-bottom: 30px;
    }
    .ff-header-main .ff-call {
        display: none !important;
    }
    .ff-call-icon {
        display: none;
        
    }
	.ff-container {
		padding: 0 10px;
	}

	.ff-topbar-info {
		display: none;
	}

	.ff-call-text small {
		display: none;
	}

	.ff-call {
		padding: 10px 18px 10px 48px;
	}

	.ff-call::before {
		clip-path: polygon(8px 0, 100% 0, 100% 100%, 36px 100%, 14px 90.8%);
	}

	.ff-call-icon {
		width: 34px;
		height: 34px;
	}

	.ff-hero-content .ff-heading {
		font-size: 30px;
	}

	.ff-hero-actions {
		flex-direction: column;
		align-items: stretch;
	}

	/* Reference mockup makes hero buttons full-width at this breakpoint —
	   overridden per explicit request: keep them auto-width on mobile instead. */
	.ff-hero-actions .ff-btn {
		width: auto;
	}

	.ff-hero-trust {
		gap: 12px;
	}

	.ff-form-row {
		grid-template-columns: 1fr;
	}

	.ff-btn-primary {
		justify-content: center;
		padding-right: 56px;
		padding-top: 12px;
		padding-bottom: 12px;
	}

	.ff-btn-primary .ff-btn-arrow {
		position: absolute;
		right: 6px;
		top: 50%;
		transform: translateY(-50%);
	}

	.ff-footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.ff-footer-logo,
	.ff-footer-col:last-child {
		grid-column: 1 / -1;
	}

	.ff-services-grid {
		grid-template-columns: 1fr;
	}

	.ff-t-card {
		flex: 0 0 100%;
	}

	.ff-cities-list {
		grid-template-columns: 1fr 1fr;
		gap: 0 16px;
	}

	.ff-active-pill {
		display: none;
	}

	.ff-call-text {
		display: none;
	}

	.ff-call {
		padding: 0;
		margin-right: 0;
		background: none;
	}

	.ff-call::before {
		display: none;
	}

	.ff-hero-overlay {
		background: linear-gradient(180deg, rgba(255, 255, 255, .88) 0%, rgba(255, 255, 255, .72) 100%) !important;
	}

	.ff-about {
		padding-bottom: 50px;
	}

	.ff-about-photo {
		padding: 24px 0;
	}

	body .ff-about-photo img {
		height: auto;
	}

	.ff-gallery-grid {
		grid-template-columns: 1fr 1fr;
		grid-auto-rows: 140px;
	}

	.ff-g-tall {
		grid-row: span 1;
	}

	.ff-stats-row {
		justify-content: center;
		text-align: center;
	}

	.ff-badges-track {
		gap: 36px;
	}

	.ff-quote-head {
		flex-direction: column;
		align-items: flex-start;
	}
}