/* ============================================================
   FCW — Footer  |  fcw-footer
   ============================================================ */

.fcw-footer {
	background-color: #1a2332;
	color: #ffffff;
	padding: 64px 0 32px;
	font-family: 'Inter', sans-serif;
}

.fcw-footer__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.fcw-footer__grid {
	display: flex !important;
	flex-direction: column !important;
	gap: 40px !important;
}

@media (min-width: 768px) {
	.fcw-footer__grid {
		flex-direction: row !important;
		flex-wrap: wrap !important;
	}
	.fcw-footer__col {
		flex: 1 1 calc(50% - 20px) !important;
	}
}

@media (min-width: 1024px) {
	.fcw-footer__grid {
		flex-wrap: nowrap !important;
	}
	.fcw-footer__col {
		flex: 1 1 0% !important;
	}
}

/* ── Column styling ── */
.fcw-footer__col {
	display: flex;
	flex-direction: column;
}

.fcw-footer__logo {
	height: 48px;
	width: auto;
	align-self: flex-start;
	object-contain: contain;
	margin-bottom: 16px;
}

.fcw-footer__desc {
	font-size: 0.875rem;
	line-height: 1.6;
	color: #9ca3af;
	margin: 0 0 24px;
}

/* ── Social links ── */
.fcw-footer__social {
	display: flex;
	gap: 16px;
}

.fcw-footer__social-link {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: #ffffff;
	font-size: 1.125rem;
	transition: background-color 0.25s, color 0.25s;
	text-decoration: none;
}

.fcw-footer__social-link:hover {
	background-color: #862780;
	color: #ffffff;
}

/* ── Title headers ── */
.fcw-footer__title {
	font-size: 1.125rem;
	font-weight: 600;
	color: #ffffff;
	margin: 0 0 24px;
}

/* ── Links lists ── */
.fcw-footer__links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.fcw-footer__links a {
	font-size: 0.875rem;
	color: #9ca3af;
	text-decoration: none;
	transition: color 0.25s;
}

.fcw-footer__links a:hover {
	color: #93C241;
}

/* ── Contact items ── */
.fcw-footer__contact {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.fcw-footer__contact-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.fcw-footer__contact-item i {
	font-size: 1.125rem;
	color: #93C241;
	margin-top: 2px;
	flex-shrink: 0;
}

.fcw-footer__contact-item p,
.fcw-footer__contact-item a {
	font-size: 0.875rem;
	color: #9ca3af;
	margin: 0;
	line-height: 1.5;
	text-decoration: none;
	transition: color 0.25s;
}

.fcw-footer__contact-item a:hover {
	color: #93C241;
}

/* ── Footer Bottom ── */
.fcw-footer__bottom {
	border-top: 1px solid #374151;
	margin-top: 48px;
	padding-top: 32px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

@media (min-width: 768px) {
	.fcw-footer__bottom {
		flex-direction: row;
		justify-content: space-between;
	}
}

.fcw-footer__copyright {
	font-size: 0.875rem;
	color: #9ca3af;
	margin: 0;
	text-align: center;
}

@media (min-width: 768px) {
	.fcw-footer__copyright {
		text-align: left;
	}
}

.fcw-footer__bottom-links {
	display: flex;
	gap: 24px;
}

.fcw-footer__bottom-links a {
	font-size: 0.875rem;
	color: #9ca3af;
	text-decoration: none;
	transition: color 0.25s;
}

.fcw-footer__bottom-links a:hover {
	color: #93C241;
}
