.fmft {
	--fm-accent: #e85941;
	--fm-dark: #2e3f50;
	--fm-dark-2: #1a2832;
	--fm-text: rgba(255, 255, 255, 0.94);
	--fm-muted: rgba(255, 255, 255, 0.65);
	--fm-line: rgba(255, 255, 255, 0.1);
	--fm-site: 1340px;
	--fm-ease: 0.28s cubic-bezier(0.22, 1, 0.36, 1);
	position: relative;
	width: 100%;
	max-width: 100%;
	margin-inline: 0;
	height: auto;
	min-height: 0;
	box-sizing: border-box;
	margin-top: 0;
	padding: 0;
	font-family: "Yekan Bakh", Tahoma, sans-serif;
	direction: rtl;
	color: var(--fm-text);
	overflow: hidden;
}

.fmft *,
.fmft *::before,
.fmft *::after {
	box-sizing: border-box;
}

.fmft__bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, var(--fm-dark) 0%, var(--fm-dark-2) 100%);
	z-index: 0;
}

.fmft__bg::before {
	content: "";
	position: absolute;
	top: 0;
	inset-inline: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--fm-accent), #ff8a6f, var(--fm-accent));
}

.fmft__bg::after {
	content: "";
	position: absolute;
	top: -80px;
	inset-inline-start: -60px;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(232, 89, 65, 0.22) 0%, transparent 70%);
	pointer-events: none;
}

.fmft__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: var(--fm-site);
	margin-inline: auto;
	padding: 2.75rem var(--fm-page-gutter) 1.5rem;
}

.fmft__grid {
	display: grid;
	grid-template-columns: 1fr;
	grid-auto-rows: auto;
	gap: 1.5rem;
	align-items: start;
	padding-bottom: 1.75rem;
	border-bottom: 1px solid var(--fm-line);
}

.fmft__grid > * {
	height: auto !important;
	min-height: 0 !important;
	max-height: none;
	align-self: start;
}

.fmft__logo {
	display: inline-flex;
	margin-bottom: 0.75rem;
}

.fmft__logo img,
.fmft__logo-img {
	display: block;
	width: auto !important;
	height: auto !important;
	max-width: 140px !important;
	max-height: 56px !important;
	object-fit: contain;
}

.fmft__about {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.9;
	color: var(--fm-muted);
	text-align: justify;
}

.fmft__cards {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	align-items: stretch;
	align-content: flex-start;
	width: 100%;
	height: auto !important;
}

.fmft__card {
	padding: 0.65rem 0.85rem;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--fm-line);
	height: auto !important;
	min-height: 0 !important;
	width: 100%;
	flex: 0 0 auto;
}

.fmft__card-label {
	display: block;
	margin-bottom: 0.4rem;
	font-size: 0.76rem;
	font-weight: 700;
	color: var(--fm-accent);
}

.fmft__card p {
	margin: 0;
	font-size: 0.88rem;
	line-height: 1.6;
	color: var(--fm-text);
}

.fmft__card a {
	color: #fff;
	text-decoration: none;
	transition: color var(--fm-ease);
}

.fmft__card a:hover {
	color: #ffc4b8;
}

.fmft__sep {
	margin-inline: 0.3rem;
	opacity: 0.4;
}

.fmft__menus {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 0.85rem;
	align-items: start;
	align-content: start;
	height: auto !important;
}

.fmft__menu-col {
	height: auto !important;
	min-height: 0 !important;
	align-self: start;
}

.fmft__menu-title {
	margin: 0 0 0.75rem;
	font-size: 0.92rem;
	font-weight: 700;
	color: #fff;
}

.fmft__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.45rem;
}

.fmft__links a {
	color: var(--fm-muted);
	text-decoration: none;
	font-size: 0.88rem;
	transition: color var(--fm-ease);
}

.fmft__links a:hover {
	color: #fff;
}

.fmft__strip {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
	padding: 1.75rem 0;
	border-bottom: 1px solid var(--fm-line);
}

.fmft__badges {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.65rem;
	width: 100%;
}

.fmft__badge {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	padding: 0.4rem;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--fm-line);
}

.fmft__badge img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.fmft__social {
	display: flex;
	justify-content: center;
	gap: 0.55rem;
	flex-wrap: wrap;
}

.fmft__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--fm-line);
	color: #fff;
	text-decoration: none;
	transition: all var(--fm-ease);
}

.fmft__social a:hover {
	background: var(--fm-accent);
	border-color: var(--fm-accent);
}

.fmft__phone-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.35rem;
	border-radius: 10px;
	background: var(--fm-accent);
	color: #fff !important;
	text-decoration: none !important;
	font-weight: 700;
	font-size: 0.95rem;
	white-space: nowrap;
	transition: background var(--fm-ease), transform 0.2s ease;
}

.fmft__phone-cta:hover {
	background: #d14a34;
	transform: translateY(-1px);
}

.fmft__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 1.25rem;
}

.fmft__bottom p {
	margin: 0;
	font-size: 0.8rem;
	color: var(--fm-muted);
}

.fmft__top {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid var(--fm-line);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.05);
	color: #fff;
	cursor: pointer;
	transition: all var(--fm-ease);
}

.fmft__top:hover {
	background: var(--fm-accent);
	border-color: var(--fm-accent);
}

.fmft__chat {
	position: fixed;
	left: var(--fm-page-gutter);
	bottom: var(--fm-page-gutter);
	z-index: 9995;
	pointer-events: none;
}

.fmft__chat .tkf-chat {
	pointer-events: auto;
}

@media (min-width: 768px) {
	.fmft__strip {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.fmft__badges {
		flex: 1 1 auto;
		justify-content: flex-start;
	}

	.fmft__social {
		flex: 0 0 auto;
	}

	.fmft__phone-cta {
		flex: 0 0 auto;
	}
}

@media (min-width: 1024px) {
	.fmft__grid {
		grid-template-columns: minmax(0, 0.78fr) minmax(0, 0.72fr) minmax(0, 1.2fr);
		align-items: start;
		align-content: start;
		gap: 1.35rem;
	}

	.fmft__about {
		font-size: 0.84rem;
		line-height: 1.8;
	}

	.fmft__card p {
		font-size: 0.82rem;
	}
}

.elementor-location-footer,
.elementor-location-footer .e-con,
.elementor-location-footer .e-con-inner {
	max-width: 100% !important;
	padding-inline: 0 !important;
}

.elementor-widget-shortcode:has(.fmft),
.elementor-widget-shortcode:has(.fmft) .elementor-widget-container {
	width: 100% !important;
	max-width: 100% !important;
	height: auto !important;
	min-height: 0 !important;
	flex-grow: 1 !important;
	align-self: stretch !important;
}

.elementor-element:has(.fmft),
.e-con:has(> .e-con-inner > .elementor-element .fmft),
.e-con:has(.fmft) {
	width: 100% !important;
	max-width: 100% !important;
	height: auto !important;
	min-height: 0 !important;
	align-self: stretch !important;
	flex-grow: 1 !important;
	padding-inline: 0 !important;
}

.e-con:has(.fmft) > .e-con-inner {
	padding-inline: 0 !important;
	max-width: 100% !important;
}

.elementor-widget-shortcode .elementor-widget-container:has(.fmft) {
	width: 100% !important;
	height: auto !important;
	min-height: 0 !important;
}

.elementor-element:has(.fmft) {
	width: 100% !important;
	height: auto !important;
	min-height: 0 !important;
	align-self: stretch;
}

@media (max-width: 575px) {
	.fmft__inner {
		padding: 2rem var(--fm-page-gutter) 1.25rem;
	}

	.fmft__menus {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1rem 0.85rem;
	}

	.fmft__menu-col:last-child:nth-child(odd) {
		grid-column: 1 / -1;
	}

	.fmft__badge {
		width: 64px;
		height: 64px;
	}

	.fmft__phone-cta {
		width: 100%;
		white-space: normal;
		text-align: center;
	}

	.fmft__bottom {
		flex-direction: column;
		text-align: center;
	}

	.fmft__chat {
		left: max(10px, var(--fm-page-gutter));
		bottom: max(10px, var(--fm-page-gutter));
	}
}

@media (min-width: 576px) and (max-width: 767px) {
	.fmft__menus {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.fmft__menus {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.fmft__strip {
		gap: 1rem;
	}

	.fmft__phone-cta {
		white-space: normal;
	}
}
