/* fkm-contact-footer — استایل ویجت (بارگذاری فقط هنگام استفاده) */
.ycf-container {
	--_bg: var(--ycf-bg, #0b1521);
	--_card-bg: var(--ycf-card-bg, rgba(255, 255, 255, 0.15));
	--_card-border: var(--ycf-card-border, rgba(255, 255, 255, 0.3));
	--_text: var(--ycf-text, #ffffff);
	--_text2: var(--ycf-text-2, #d1d5db);
	background-color: var(--_bg);
	background-size: cover;
	background-position: center;
	border-radius: 20px;
	width: 100%;
	color: var(--_text);
	padding: 45px 50px;
	box-sizing: border-box;
	box-shadow: 0 25px 50px rgba(0,0,0,0.5);
	position: relative;
	overflow: hidden;
	direction: rtl;
}
.ycf-container.ycf-glow::before {
	content: '';
	position: absolute;
	top: -20%;
	right: -10%;
	width: 60%;
	height: 120%;
	background: radial-gradient(circle, rgba(20, 60, 100, 0.4) 0%, transparent 60%);
	z-index: 0;
	pointer-events: none;
}
.ycf-content {
	position: relative;
	z-index: 1;
}
.ycf-title {
	text-align: right;
	font-size: 28px;
	font-weight: 700;
	margin: 0 0 35px;
	text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.ycf-columns {
	display: flex;
	gap: 40px;
	justify-content: space-between;
}
.ycf-right {
	flex: 1.15;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.ycf-cards-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.ycf-card-full { grid-column: 1 / -1; }
.ycf-card {
	background: var(--_card-bg);
	border: 1px solid var(--_card-border);
	border-radius: 8px;
	display: flex;
	height: 95px;
	overflow: hidden;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 4px 15px rgba(0,0,0,0.15);
	transition: transform 0.2s ease, background 0.2s ease;
}
.ycf-card:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}
.ycf-card-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 10px;
	text-align: center;
}
.ycf-card-info h4 {
	margin: 0 0 5px;
	font-size: 14px;
	font-weight: 700;
	color: var(--_text);
}
.ycf-subtitle {
	margin: 0 0 8px;
	font-size: 11px;
	color: var(--_text2);
}
.ycf-phone {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.5px;
	direction: ltr;
	color: var(--_text);
	text-decoration: none;
	display: block;
}
.ycf-image-box {
	width: 85px;
	height: 100%;
	background-color: rgba(255,255,255,0.05);
	border-right: 1px solid rgba(255,255,255,0.2);
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	flex-shrink: 0;
}
.ycf-image-full {
	width: 100px;
	height: 100%;
	background-size: cover;
	background-position: center;
	border-right: 1px solid rgba(255,255,255,0.2);
	flex-shrink: 0;
}
.ycf-avatar {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: top center;
}
.ycf-bottom-contacts {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-right: 15px;
	margin-top: 10px;
}
.ycf-contact-row {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}
.ycf-contact-row .ycf-label { font-weight: 500; }
.ycf-contact-row .ycf-value {
	font-weight: 700;
	font-size: 16px;
}
.ycf-ltr {
	direction: ltr;
	display: inline-block;
}
.ycf-left {
	flex: 0.85;
	display: flex;
	flex-direction: column;
	gap: 30px;
	padding-top: 5px;
}
.ycf-address {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.ycf-address h3 {
	margin: 0;
	font-size: 17px;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 8px;
	text-shadow: 0 1px 3px rgba(0,0,0,0.5);
	color: var(--_text);
}
.ycf-pin {
	color: #ef4444;
	font-size: 18px;
}
.ycf-address p {
	margin: 0;
	font-size: 13.5px;
	line-height: 2;
	color: var(--_text2);
	text-align: justify;
	padding-right: 26px;
}
.ycf-email {
	margin-top: auto;
	padding-top: 20px;
}
.ycf-email p {
	margin: 0;
	font-size: 17px;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 8px;
}
.ycf-email-address {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 400;
	color: var(--_text);
	text-decoration: none;
}
.ycf-email-address:hover { text-decoration: underline; }
/* ── ریسپانسیو ── */
@media (max-width: 992px) {
	.ycf-columns {
		flex-direction: column;
		gap: 50px;
	}
	.ycf-right, .ycf-left {
		flex: none;
		width: 100%;
	}
	.ycf-email { margin-top: 0; }
}
@media (max-width: 650px) {
	.ycf-cards-grid { grid-template-columns: 1fr; }
	.ycf-container { padding: 30px 20px; }
}
