/**
 * Site Footer
 *
 * @package EGCI_Template
 * @since 1.0.0
 */

/* ============================================
   Site Footer
   ============================================ */
.site-footer {
	color: #ffffff;
	padding: 60px 80px 40px;
}

.footer-container {
	max-width: 1400px;
	margin: 0 auto;
}

.footer-content {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 60px;
	margin-bottom: 60px;
}

.footer-logo {
	display: flex;
	align-items: flex-start;
}

.logo {
	display: flex;
	align-items: center;
    flex-direction: column;
    gap: 1rem;
}
.logo-image-wrapper {
    max-width: 80%;
}

.logo-icon {
	width: 45px;
	height: 45px;
	background-color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	color: #fbbb01;
	font-size: 18px;
	flex-shrink: 0;
}

.logo-text {
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: white;
}

.footer-column h3 {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1.5px;
	margin-bottom: 25px;
	text-transform: uppercase;
	color: white;
}

.footer-column ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-column ul li {
	margin-bottom: 15px;
}

.footer-column ul li a {
	color: white;
	text-decoration: none;
	font-size: 15px;
	transition: opacity 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.footer-column ul li a:hover {
	box-shadow: 0 1px 0 0 currentcolor;
}

.download-icon {
	font-size: 12px;
}

.social-title {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1.5px;
	margin-bottom: 20px;
	margin-top: 0;
	text-transform: uppercase;
	color: white;
}

.social-links {
	display: flex;
	gap: 15px;
	margin-top: 10px;
}

.social-icon {
	width: 34px;
	height: 34px;
	background-color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fbbb01;
	text-decoration: none;
	font-size: 20px;
	transition: transform 0.3s ease;
}

.footer-divider {
	border: none;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
	margin: 40px 0;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.footer-bottom-left {
	display: flex;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
}

.copyright {
	font-size: 14px;
	color: white;
}

.footer-links {
	display: flex;
	gap: 25px;
	flex-wrap: wrap;
}

.footer-links a {
	color: white;
	text-decoration: none;
	font-size: 14px;
	transition: opacity 0.3s ease;
}

.footer-links a:hover {
	opacity: 0.8;
	text-decoration: none;
}

.footer-bottom-right {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.footer-bottom-right-text {
	font-size: 14px;
	color: white;
	line-height: 1.6;
}

.footer-bottom-right-text p {
	margin: 0;
}

.powered-by {
	font-size: 14px;
	color: white;
}

/* Legacy footer styles for backward compatibility */
.footer-widgets {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-menu {
	display: flex;
	list-style: none;
	gap: 1.5rem;
	margin: 0;
	padding: 0;
}

.footer-menu a {
	color: white;
	text-decoration: none;
}

.footer-menu a:hover {
	opacity: 0.8;
	text-decoration: none;
}

.site-footer__copyright {
	color: white;
	font-size: 0.875rem;
}

