/* ==========================================================================
   IT Company Mohali — Footer Styles
   ========================================================================== */

.itcm-footer {
	background: var(--itcm-navy);
	color: #cbd5e1;
}
.itcm-footer-logo img {
	max-height: 44px;
}
.itcm-footer-desc {
	font-size: 0.92rem;
	color: #94a3b8;
	max-width: 320px;
}
.itcm-footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	margin-right: 0.5rem;
	transition: var(--itcm-transition);
}
.itcm-footer-social a:hover {
	background: var(--itcm-blue);
	transform: translateY(-3px);
}
.itcm-footer-heading {
	color: #fff;
	font-weight: 700;
	font-size: 1.05rem;
	margin-bottom: 1.25rem;
}
.itcm-footer-links li {
	margin-bottom: 0.7rem;
}
.itcm-footer-links a {
	color: #94a3b8;
	text-decoration: none;
	font-size: 0.92rem;
	transition: var(--itcm-transition);
}
.itcm-footer-links a:hover {
	color: var(--itcm-blue-light);
	padding-left: 4px;
}
.itcm-footer-contact li {
	display: flex;
	gap: 0.65rem;
	margin-bottom: 1rem;
	font-size: 0.9rem;
}
.itcm-footer-contact i {
	color: var(--itcm-blue-light);
	margin-top: 0.2rem;
}
.itcm-footer-contact a {
	color: #94a3b8;
	text-decoration: none;
}
.itcm-footer-contact a:hover {
	color: var(--itcm-blue-light);
}

.itcm-footer-bottom {
	background: #060c20;
	font-size: 0.85rem;
}
.itcm-footer-bottom a {
	color: #94a3b8;
	text-decoration: none;
}
.itcm-footer-bottom a:hover {
	color: var(--itcm-blue-light);
}

.itcm-back-to-top {
	position: fixed;
	bottom: 1.75rem;
	right: 1.75rem;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--itcm-blue);
	color: #fff;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: var(--itcm-transition);
	z-index: 1040;
	box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}
.itcm-back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.itcm-back-to-top:hover {
	background: var(--itcm-blue-light);
}
