/* =========================================================
   GCTS Custom Footer
   ========================================================= */

.gcts-footer {
	background: #0A3F36;
	padding: 44px 40px 24px;
}

.gcts-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 32px;
	margin-bottom: 36px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.gcts-footer-logo-wrap {
	background: #ffffff;
	border-radius: 12px;
	padding: 12px 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.gcts-footer-logo-wrap img {
	height: 68px;
	width: auto;
	display: block;
}

.gcts-footer-desc {
	font-size: 13px;
	color: #B7D4CB;
	line-height: 1.6;
	margin-bottom: 18px;
	max-width: 280px;
}

.gcts-footer-social {
	display: flex;
	gap: 10px;
}

.gcts-footer-social a {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
}

.gcts-footer-social a:hover {
	background: rgba(255, 255, 255, 0.18);
}

.gcts-footer-social a.gcts-whatsapp {
	background: #25D366;
}

.gcts-footer-social a.gcts-whatsapp:hover {
	background: #1EBE59;
}

.gcts-footer-social i {
	color: #ffffff;
	font-size: 16px;
}

.gcts-footer-heading {
	font-size: 13.5px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 16px;
}

.gcts-footer-links {
	display: flex;
	flex-direction: column;
	gap: 11px;
}

.gcts-footer-links a {
	font-size: 13px;
	color: #B7D4CB;
	text-decoration: none;
	transition: color 0.2s ease;
}

.gcts-footer-links a:hover {
	color: #7CF0C7;
}

.gcts-footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin-bottom: 13px;
}

.gcts-footer-contact-item i {
	color: #7CF0C7;
	font-size: 15px;
	margin-top: 2px;
	flex-shrink: 0;
}

.gcts-footer-contact-item span {
	font-size: 13px;
	color: #B7D4CB;
	line-height: 1.5;
}

.gcts-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.gcts-footer-copyright {
	font-size: 12px;
	color: #8FB3A8;
}

.gcts-footer-legal {
	display: flex;
	gap: 20px;
}

.gcts-footer-legal a {
	font-size: 12px;
	color: #8FB3A8;
	text-decoration: none;
}

.gcts-footer-legal a:hover {
	color: #fff;
}

/* Hide Astra's default footer widget/copyright areas so only our custom footer shows */
.site-footer .footer-adv,
.site-footer .site-below-footer-wrap {
	display: none !important;
}

@media (max-width: 900px) {
	.gcts-footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 600px) {
	.gcts-footer-grid {
		grid-template-columns: 1fr;
	}
	.gcts-footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}
