/**
 * OpsMind Footer — Elementor styles (fully themeable via CSS vars)
 */

.opsmind-ft {
	--opsmind-ft-navy: #0a1628;
	--opsmind-ft-navy-2: #122038;
	--opsmind-ft-accent: var(--main-color, #ed8323);
	--opsmind-ft-blue: var(--opsmind-ft-accent);
	--opsmind-ft-blue-soft: color-mix(in srgb, var(--opsmind-ft-accent) 70%, #fff);
	--opsmind-ft-ink: #1a2233;
	--opsmind-ft-muted: #5e6d77;
	--opsmind-ft-heading: #1a2233;
	--opsmind-ft-text: #5e6d77;
	--opsmind-ft-link: #3a4a61;
	--opsmind-ft-link-hover: var(--opsmind-ft-accent);
	--opsmind-ft-line: rgba(255, 255, 255, 0.12);
	--opsmind-ft-line-dark: rgba(26, 34, 51, 0.1);
	--opsmind-ft-divider: var(--opsmind-ft-line-dark);
	--opsmind-ft-accent-h: 0px;
	--opsmind-ft-font: "Tajawal", "Cairo", "Segoe UI", Tahoma, sans-serif;
	font-family: var(--opsmind-ft-font);
	direction: rtl;
	text-align: right;
	box-sizing: border-box;
	width: 100%;
	overflow: hidden;
	position: relative;
	background: var(--opsmind-ft-bg, transparent);
}

.opsmind-ft--accent {
	--opsmind-ft-accent-h: 3px;
}

.opsmind-ft--accent::before {
	content: "";
	display: block;
	height: var(--opsmind-ft-accent-h, 3px);
	width: 100%;
	background: var(--opsmind-ft-accent);
}

.opsmind-ft *,
.opsmind-ft *::before,
.opsmind-ft *::after {
	box-sizing: border-box;
}

.opsmind-ft__inner {
	width: min(1180px, calc(100% - 2.5rem));
	margin-inline: auto;
	padding-block: 3rem 1.5rem;
}

.opsmind-ft__main {
	display: grid;
	grid-template-columns: minmax(200px, 1.15fr) minmax(0, 2fr);
	gap: 2.5rem 3rem;
	align-items: start;
}

.opsmind-ft__main--horizon {
	display: grid;
	grid-template-columns: minmax(180px, 1.35fr) repeat(auto-fit, minmax(130px, 1fr));
	gap: 1.75rem 2rem;
	align-items: start;
}

.opsmind-ft__main--horizon .opsmind-ft__cols {
	display: contents;
}

.opsmind-ft__addrs {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.opsmind-ft__addr {
	display: flex;
	align-items: flex-start;
	gap: 0.45rem;
}

.opsmind-ft__addr-pin {
	flex: 0 0 auto;
	margin-top: 0.2rem;
	color: #e74c3c;
	line-height: 1;
}

.opsmind-ft__addr-pin svg {
	display: block;
}

.opsmind-ft__addr-line {
	font-size: 0.88rem;
	line-height: 1.65;
	color: var(--opsmind-ft-text, var(--opsmind-ft-muted));
}

.opsmind-ft__brand {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.opsmind-ft__logo {
	display: block;
	max-width: 168px;
	height: auto;
	object-fit: contain;
}

.opsmind-ft__brand-text {
	font-size: 1.45rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.opsmind-ft__about {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.75;
	max-width: 28ch;
	opacity: 0.85;
}

.opsmind-ft__cols {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem 2rem;
}

.opsmind-ft__col-title {
	margin: 0 0 1rem;
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.opsmind-ft__col--text .opsmind-ft__text {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.7;
	opacity: 0.92;
	white-space: pre-line;
}

.opsmind-ft__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.opsmind-ft__list a {
	text-decoration: none;
	font-size: 0.92rem;
	line-height: 1.5;
	transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
	display: inline-block;
}

.opsmind-ft__list a:hover {
	transform: translateX(-3px);
}

.opsmind-ft__phones {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.opsmind-ft__phone {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.opsmind-ft__phone-label {
	font-size: 0.78rem;
	font-weight: 600;
	opacity: 0.7;
}

.opsmind-ft__phone-num {
	text-decoration: none;
	font-size: 1.05rem;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	transition: color 0.2s ease, opacity 0.2s ease;
}

.opsmind-ft__social {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	align-items: center;
}

.opsmind-ft__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.35rem;
	height: 2.35rem;
	border-radius: 999px;
	text-decoration: none;
	transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.opsmind-ft__social-link svg {
	width: 1.05rem;
	height: 1.05rem;
	display: block;
}

.opsmind-ft__social-link:hover {
	transform: translateY(-2px);
}

.opsmind-ft__contact-strip {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
	margin-top: 2.25rem;
	padding-top: 1.5rem;
}

.opsmind-ft__contact-strip--center {
	justify-content: center;
}

.opsmind-ft__contact-strip .opsmind-ft__phones {
	flex-direction: row;
	flex-wrap: wrap;
	gap: 1.5rem 2.25rem;
}

.opsmind-ft__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem 1.5rem;
	margin-top: 1.75rem;
	padding-top: 1.25rem;
	font-size: 0.82rem;
}

.opsmind-ft__copy {
	margin: 0;
	opacity: 0.75;
}

.opsmind-ft__legal {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem 1.25rem;
}

.opsmind-ft__legal a {
	text-decoration: none;
	opacity: 0.8;
	transition: opacity 0.2s ease;
}

.opsmind-ft__legal a:hover {
	opacity: 1;
}

.opsmind-ft__aside {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.opsmind-ft__center {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.1rem;
	margin-bottom: 2.25rem;
}

.opsmind-ft__center .opsmind-ft__brand {
	align-items: center;
}

.opsmind-ft__center .opsmind-ft__about {
	max-width: 42ch;
	text-align: center;
}

.opsmind-ft__top-bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 1.5rem;
	margin: -3rem calc(50% - 50vw) 2rem;
	padding: 1rem max(1.25rem, calc(50vw - 590px));
}

.opsmind-ft__phones--inline {
	flex-direction: row;
	flex-wrap: wrap;
	gap: 1rem 1.75rem;
}

.opsmind-ft__phones--inline .opsmind-ft__phone {
	flex-direction: row;
	align-items: baseline;
	gap: 0.5rem;
}

/* ---------- Style 1: Navy Columns ---------- */
.opsmind-ft--s1 {
	background:
		radial-gradient(ellipse 80% 60% at 100% 0%, color-mix(in srgb, var(--opsmind-ft-accent) 28%, transparent), transparent 55%),
		linear-gradient(165deg, var(--opsmind-ft-navy) 0%, #07101c 100%);
	color: #e8eef8;
}

.opsmind-ft--s1 .opsmind-ft__brand-text,
.opsmind-ft--s1 .opsmind-ft__col-title {
	color: #fff;
}

.opsmind-ft--s1 .opsmind-ft__about,
.opsmind-ft--s1 .opsmind-ft__phone-label,
.opsmind-ft--s1 .opsmind-ft__addr-line {
	color: rgba(232, 238, 248, 0.72);
}

.opsmind-ft--s1 .opsmind-ft__list a {
	color: rgba(232, 238, 248, 0.82);
}

.opsmind-ft--s1 .opsmind-ft__list a:hover {
	color: #fff;
}

.opsmind-ft--s1 .opsmind-ft__phone-num {
	color: #fff;
}

.opsmind-ft--s1 .opsmind-ft__phone-num:hover {
	color: var(--opsmind-ft-accent);
}

.opsmind-ft--s1 .opsmind-ft__contact-strip {
	border-top: 1px solid var(--opsmind-ft-line);
}

.opsmind-ft--s1 .opsmind-ft__social-link {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	border: 1px solid transparent;
}

.opsmind-ft--s1 .opsmind-ft__social-link:hover {
	background: var(--opsmind-ft-blue);
	border-color: var(--opsmind-ft-blue);
}

.opsmind-ft--s1 .opsmind-ft__bottom {
	border-top: 1px solid var(--opsmind-ft-line);
	color: rgba(232, 238, 248, 0.7);
}

.opsmind-ft--s1 .opsmind-ft__legal a {
	color: rgba(232, 238, 248, 0.75);
}

/* ---------- Style 2: Light Horizon ---------- */
.opsmind-ft--s2 {
	background: var(--opsmind-ft-bg, linear-gradient(180deg, #fafbfc 0%, #f3f6fb 100%));
	color: var(--opsmind-ft-ink);
}

.opsmind-ft--s2 .opsmind-ft__brand-text,
.opsmind-ft--s2 .opsmind-ft__col-title {
	color: var(--opsmind-ft-heading, var(--opsmind-ft-ink));
}

.opsmind-ft--s2 .opsmind-ft__about,
.opsmind-ft--s2 .opsmind-ft__phone-label {
	color: var(--opsmind-ft-text, var(--opsmind-ft-muted));
}

.opsmind-ft--s2 .opsmind-ft__list a {
	color: var(--opsmind-ft-link, #3a4a61);
}

.opsmind-ft--s2 .opsmind-ft__list a:hover {
	color: var(--opsmind-ft-link-hover, var(--opsmind-ft-accent));
}

.opsmind-ft--s2 .opsmind-ft__phone-num {
	color: var(--opsmind-ft-heading, var(--opsmind-ft-ink));
}

.opsmind-ft--s2 .opsmind-ft__phone-num:hover {
	color: var(--opsmind-ft-link-hover, var(--opsmind-ft-accent));
}

.opsmind-ft--s2 .opsmind-ft__social-link {
	background: #fff;
	color: var(--opsmind-ft-ink);
	border: 1px solid var(--opsmind-ft-line-dark);
	box-shadow: 0 2px 8px rgba(26, 34, 51, 0.04);
}

.opsmind-ft--s2 .opsmind-ft__social-link:hover {
	background: var(--opsmind-ft-accent);
	color: #fff;
	border-color: var(--opsmind-ft-accent);
}

.opsmind-ft--s2 .opsmind-ft__bottom {
	border-top: 1px solid var(--opsmind-ft-divider, var(--opsmind-ft-line-dark));
	background: var(--opsmind-ft-bottom-bg, rgba(26, 34, 51, 0.03));
	margin-inline: calc(50% - 50vw);
	padding-inline: max(1.25rem, calc(50vw - 590px));
	color: var(--opsmind-ft-muted);
}

.opsmind-ft--s2 .opsmind-ft__legal a {
	color: var(--opsmind-ft-muted);
}

/* ---------- Style 3: Centered Brand ---------- */
.opsmind-ft--s3 {
	background: #0d1a2e;
	color: #e8eef8;
	position: relative;
}

.opsmind-ft--s3::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0, 46, 254, 0.7), transparent);
}

.opsmind-ft--s3 .opsmind-ft__cols {
	justify-items: center;
	text-align: center;
}

.opsmind-ft--s3 .opsmind-ft__col {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.opsmind-ft--s3 .opsmind-ft__list {
	align-items: center;
}

.opsmind-ft--s3 .opsmind-ft__list a:hover {
	transform: none;
	opacity: 1;
	color: #9eb0ff;
}

.opsmind-ft--s3 .opsmind-ft__brand-text,
.opsmind-ft--s3 .opsmind-ft__col-title {
	color: #fff;
}

.opsmind-ft--s3 .opsmind-ft__about {
	color: rgba(232, 238, 248, 0.72);
}

.opsmind-ft--s3 .opsmind-ft__list a {
	color: rgba(232, 238, 248, 0.8);
}

.opsmind-ft--s3 .opsmind-ft__phone-num {
	color: #fff;
}

.opsmind-ft--s3 .opsmind-ft__phone-label {
	color: rgba(232, 238, 248, 0.65);
}

.opsmind-ft--s3 .opsmind-ft__social-link {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.22);
}

.opsmind-ft--s3 .opsmind-ft__social-link:hover {
	background: var(--opsmind-ft-blue);
	border-color: var(--opsmind-ft-blue);
}

.opsmind-ft--s3 .opsmind-ft__contact-strip {
	border-top: 1px solid var(--opsmind-ft-line);
}

.opsmind-ft--s3 .opsmind-ft__bottom {
	border-top: 1px solid var(--opsmind-ft-line);
	justify-content: center;
	text-align: center;
	flex-direction: column;
}

.opsmind-ft--s3 .opsmind-ft__legal a {
	color: rgba(232, 238, 248, 0.75);
}

/* ---------- Style 4: Blue Gradient Soft ---------- */
.opsmind-ft--s4 {
	background:
		radial-gradient(ellipse 70% 50% at 0% 100%, rgba(61, 92, 255, 0.35), transparent 50%),
		linear-gradient(135deg, #06101f 0%, #0a1a38 45%, #001a8a 100%);
	color: #e8eef8;
}

.opsmind-ft--s4 .opsmind-ft__main--split {
	grid-template-columns: minmax(180px, 1fr) minmax(0, 1.5fr) minmax(150px, 0.8fr);
}

.opsmind-ft--s4 .opsmind-ft__panel {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.opsmind-ft--s4 .opsmind-ft__brand-text,
.opsmind-ft--s4 .opsmind-ft__col-title {
	color: #fff;
}

.opsmind-ft--s4 .opsmind-ft__about,
.opsmind-ft--s4 .opsmind-ft__phone-label {
	color: rgba(232, 238, 248, 0.75);
}

.opsmind-ft--s4 .opsmind-ft__list a {
	color: rgba(232, 238, 248, 0.85);
}

.opsmind-ft--s4 .opsmind-ft__list a:hover {
	color: #fff;
}

.opsmind-ft--s4 .opsmind-ft__phone-num {
	color: #fff;
}

.opsmind-ft--s4 .opsmind-ft__social-link {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	backdrop-filter: blur(6px);
}

.opsmind-ft--s4 .opsmind-ft__social-link:hover {
	background: #fff;
	color: var(--opsmind-ft-blue);
}

.opsmind-ft--s4 .opsmind-ft__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	color: rgba(232, 238, 248, 0.7);
}

.opsmind-ft--s4 .opsmind-ft__legal a {
	color: rgba(232, 238, 248, 0.75);
}

/* ---------- Style 5: Contact First ---------- */
.opsmind-ft--s5 {
	background: #f4f7fb;
	color: var(--opsmind-ft-ink);
}

.opsmind-ft--s5 .opsmind-ft__top-bar {
	background: linear-gradient(90deg, #001a8a 0%, var(--opsmind-ft-blue) 55%, #3d5cff 100%);
	color: #fff;
}

.opsmind-ft--s5 .opsmind-ft__top-bar .opsmind-ft__phone-label {
	color: rgba(255, 255, 255, 0.75);
}

.opsmind-ft--s5 .opsmind-ft__top-bar .opsmind-ft__phone-num {
	color: #fff;
}

.opsmind-ft--s5 .opsmind-ft__top-bar .opsmind-ft__phone-num:hover {
	opacity: 0.85;
}

.opsmind-ft--s5 .opsmind-ft__top-bar .opsmind-ft__social-link {
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.opsmind-ft--s5 .opsmind-ft__top-bar .opsmind-ft__social-link:hover {
	background: #fff;
	color: var(--opsmind-ft-blue);
}

.opsmind-ft--s5 .opsmind-ft__brand-text,
.opsmind-ft--s5 .opsmind-ft__col-title {
	color: var(--opsmind-ft-ink);
}

.opsmind-ft--s5 .opsmind-ft__about {
	color: var(--opsmind-ft-muted);
}

.opsmind-ft--s5 .opsmind-ft__list a {
	color: #3a4a61;
}

.opsmind-ft--s5 .opsmind-ft__list a:hover {
	color: var(--opsmind-ft-blue);
}

.opsmind-ft--s5 .opsmind-ft__bottom {
	border-top: 1px solid var(--opsmind-ft-line-dark);
	color: var(--opsmind-ft-muted);
}

.opsmind-ft--s5 .opsmind-ft__legal a {
	color: var(--opsmind-ft-muted);
}

.opsmind-ft--s5 .opsmind-ft__phone--wa .opsmind-ft__phone-num::before {
	content: "";
	display: inline-block;
	width: 0.55rem;
	height: 0.55rem;
	margin-inline-end: 0.35rem;
	border-radius: 50%;
	background: #25d366;
	box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.25);
	vertical-align: middle;
}

/* Entrance / presence */
@keyframes opsmind-ft-rise {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.opsmind-ft__brand,
.opsmind-ft__cols,
.opsmind-ft__aside,
.opsmind-ft__center,
.opsmind-ft__top-bar {
	animation: opsmind-ft-rise 0.55s ease both;
}

.opsmind-ft__cols {
	animation-delay: 0.08s;
}

.opsmind-ft__aside,
.opsmind-ft__contact-strip {
	animation: opsmind-ft-rise 0.55s ease 0.14s both;
}

/* Responsive */
@media (max-width: 960px) {
	.opsmind-ft__main,
	.opsmind-ft--s2 .opsmind-ft__main,
	.opsmind-ft--s4 .opsmind-ft__main--split {
		grid-template-columns: 1fr 1fr;
	}

	.opsmind-ft__brand {
		grid-column: 1 / -1;
	}

	.opsmind-ft--s2 .opsmind-ft__aside {
		grid-column: 1 / -1;
	}
}

@media (max-width: 720px) {
	.opsmind-ft__inner {
		width: min(100%, calc(100% - 1.5rem));
		padding-block: 2.25rem 1.25rem;
	}

	.opsmind-ft__main,
	.opsmind-ft--s2 .opsmind-ft__main,
	.opsmind-ft--s4 .opsmind-ft__main--split {
		grid-template-columns: 1fr;
		gap: 1.75rem;
	}

	.opsmind-ft__cols {
		grid-template-columns: 1fr 1fr;
		gap: 1.25rem;
	}

	.opsmind-ft--s3 .opsmind-ft__cols {
		justify-items: stretch;
		text-align: right;
	}

	.opsmind-ft--s3 .opsmind-ft__col,
	.opsmind-ft--s3 .opsmind-ft__list {
		align-items: flex-start;
	}

	.opsmind-ft__contact-strip .opsmind-ft__phones,
	.opsmind-ft__phones--inline {
		flex-direction: column;
		gap: 0.85rem;
	}

	.opsmind-ft__phones--inline .opsmind-ft__phone {
		flex-direction: column;
		gap: 0.15rem;
	}

	.opsmind-ft__top-bar {
		margin-top: -2.25rem;
		flex-direction: column;
		align-items: flex-start;
	}

	.opsmind-ft__bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 420px) {
	.opsmind-ft__cols {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.opsmind-ft__brand,
	.opsmind-ft__cols,
	.opsmind-ft__aside,
	.opsmind-ft__center,
	.opsmind-ft__top-bar,
	.opsmind-ft__contact-strip {
		animation: none;
	}

	.opsmind-ft__list a:hover,
	.opsmind-ft__social-link:hover {
		transform: none;
	}
}

/* ========== Compact shared ========== */
.opsmind-ft--compact .opsmind-ft__inner {
	padding-block: 1.15rem 0.85rem;
}

.opsmind-ft--compact .opsmind-ft__logo {
	max-width: 118px;
}

.opsmind-ft--compact .opsmind-ft__brand-text {
	font-size: 1.1rem;
}

.opsmind-ft--compact .opsmind-ft__about {
	display: none;
}

.opsmind-ft--compact .opsmind-ft__social-link {
	width: 2rem;
	height: 2rem;
}

.opsmind-ft--compact .opsmind-ft__social-link svg {
	width: 0.9rem;
	height: 0.9rem;
}

.opsmind-ft--compact .opsmind-ft__phone-num {
	font-size: 0.92rem;
}

.opsmind-ft--compact .opsmind-ft__phone-label {
	font-size: 0.7rem;
}

.opsmind-ft--compact .opsmind-ft__bottom {
	margin-top: 0.85rem;
	padding-top: 0.7rem;
	font-size: 0.75rem;
}

.opsmind-ft__inline-nav {
	min-width: 0;
}

.opsmind-ft__inline-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 1rem;
}

.opsmind-ft__inline-list a {
	text-decoration: none;
	font-size: 0.86rem;
	font-weight: 500;
	white-space: nowrap;
	transition: color 0.2s ease, opacity 0.2s ease;
}

.opsmind-ft__row,
.opsmind-ft__slim-top,
.opsmind-ft__mini {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.85rem 1.5rem;
}

.opsmind-ft__row-end {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem 1.25rem;
	margin-inline-start: auto;
}

.opsmind-ft__slim-mid {
	margin-top: 0.65rem;
	padding-top: 0.65rem;
}

.opsmind-ft__mini-brand,
.opsmind-ft__mini-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem 1.25rem;
}

.opsmind-ft__mini-links {
	flex: 1;
	justify-content: flex-end;
}

/* ---------- Style 6: Compact Bar ---------- */
.opsmind-ft--s6 {
	background: var(--opsmind-ft-navy);
	color: #e8eef8;
}

.opsmind-ft--s6 .opsmind-ft__brand-text {
	color: #fff;
}

.opsmind-ft--s6 .opsmind-ft__inline-list a {
	color: rgba(232, 238, 248, 0.82);
}

.opsmind-ft--s6 .opsmind-ft__inline-list a:hover {
	color: #fff;
}

.opsmind-ft--s6 .opsmind-ft__phone-label {
	color: rgba(232, 238, 248, 0.65);
}

.opsmind-ft--s6 .opsmind-ft__phone-num {
	color: #fff;
}

.opsmind-ft--s6 .opsmind-ft__social-link {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

.opsmind-ft--s6 .opsmind-ft__social-link:hover {
	background: var(--opsmind-ft-blue);
}

.opsmind-ft--s6 .opsmind-ft__bottom {
	border-top: 1px solid var(--opsmind-ft-line);
	color: rgba(232, 238, 248, 0.65);
}

.opsmind-ft--s6 .opsmind-ft__legal a {
	color: rgba(232, 238, 248, 0.7);
}

/* ---------- Style 7: Slim Strip ---------- */
.opsmind-ft--s7 {
	background: #f5f7fb;
	color: var(--opsmind-ft-ink);
	border-top: 3px solid var(--opsmind-ft-blue);
}

.opsmind-ft--s7 .opsmind-ft__slim-top {
	justify-content: space-between;
}

.opsmind-ft--s7 .opsmind-ft__brand-text {
	color: var(--opsmind-ft-ink);
}

.opsmind-ft--s7 .opsmind-ft__slim-mid {
	border-top: 1px solid var(--opsmind-ft-line-dark);
}

.opsmind-ft--s7 .opsmind-ft__inline-list a {
	color: #3a4a61;
}

.opsmind-ft--s7 .opsmind-ft__inline-list a:hover {
	color: var(--opsmind-ft-blue);
}

.opsmind-ft--s7 .opsmind-ft__phone-num {
	color: var(--opsmind-ft-ink);
}

.opsmind-ft--s7 .opsmind-ft__phone-label {
	color: var(--opsmind-ft-muted);
}

.opsmind-ft--s7 .opsmind-ft__social-link {
	background: #fff;
	color: var(--opsmind-ft-ink);
	border: 1px solid var(--opsmind-ft-line-dark);
}

.opsmind-ft--s7 .opsmind-ft__social-link:hover {
	background: var(--opsmind-ft-blue);
	color: #fff;
	border-color: var(--opsmind-ft-blue);
}

.opsmind-ft--s7 .opsmind-ft__bottom {
	border-top: 1px solid var(--opsmind-ft-line-dark);
	color: var(--opsmind-ft-muted);
}

.opsmind-ft--s7 .opsmind-ft__legal a {
	color: var(--opsmind-ft-muted);
}

/* ---------- Style 8: Mini Split ---------- */
.opsmind-ft--s8 {
	background: linear-gradient(90deg, #07111f 0%, #0c1b33 42%, #f4f7fb 42%, #f4f7fb 100%);
	color: var(--opsmind-ft-ink);
}

.opsmind-ft--s8 .opsmind-ft__mini {
	align-items: stretch;
}

.opsmind-ft--s8 .opsmind-ft__mini-brand {
	flex: 0 1 280px;
	padding-inline-end: 1.5rem;
	color: #e8eef8;
}

.opsmind-ft--s8 .opsmind-ft__mini-brand .opsmind-ft__brand-text {
	color: #fff;
}

.opsmind-ft--s8 .opsmind-ft__mini-brand .opsmind-ft__social-link {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.opsmind-ft--s8 .opsmind-ft__mini-brand .opsmind-ft__social-link:hover {
	background: var(--opsmind-ft-blue);
}

.opsmind-ft--s8 .opsmind-ft__mini-links {
	flex: 1 1 320px;
	padding-inline-start: 0.5rem;
}

.opsmind-ft--s8 .opsmind-ft__inline-list a {
	color: #3a4a61;
}

.opsmind-ft--s8 .opsmind-ft__inline-list a:hover {
	color: var(--opsmind-ft-blue);
}

.opsmind-ft--s8 .opsmind-ft__phone-num {
	color: var(--opsmind-ft-ink);
}

.opsmind-ft--s8 .opsmind-ft__phone-label {
	color: var(--opsmind-ft-muted);
}

.opsmind-ft--s8 .opsmind-ft__bottom {
	border-top: 1px solid rgba(20, 32, 51, 0.08);
	color: var(--opsmind-ft-muted);
	background: transparent;
}

.opsmind-ft--s8 .opsmind-ft__legal a {
	color: var(--opsmind-ft-muted);
}

@media (max-width: 900px) {
	.opsmind-ft--s8 {
		background: linear-gradient(180deg, #07111f 0%, #0c1b33 38%, #f4f7fb 38%, #f4f7fb 100%);
	}

	.opsmind-ft--s8 .opsmind-ft__mini {
		flex-direction: column;
		align-items: flex-start;
	}

	.opsmind-ft--s8 .opsmind-ft__mini-brand {
		flex: 1 1 auto;
		width: 100%;
		padding: 0.35rem 0 0.85rem;
	}

	.opsmind-ft--s8 .opsmind-ft__mini-links {
		justify-content: flex-start;
		padding: 0;
		width: 100%;
	}
}

@media (max-width: 720px) {
	.opsmind-ft--compact .opsmind-ft__row,
	.opsmind-ft--compact .opsmind-ft__slim-top,
	.opsmind-ft--compact .opsmind-ft__row-end {
		flex-direction: column;
		align-items: flex-start;
	}

	.opsmind-ft--compact .opsmind-ft__row-end {
		margin-inline-start: 0;
	}

	.opsmind-ft--compact .opsmind-ft__phones--inline {
		flex-direction: column;
	}
}
