/* ========================================
   FOOTER STYLES
   ======================================== */

/* Footer Main */
.footer {
	background: var(--white);
	border-top: 1px solid var(--border-light);
	padding: 60px 0 30px;
	margin-top: auto;
}

.footer-container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Footer Grid */
.footer-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	margin-bottom: 40px;
}

@media (max-width: 991px) {
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 575px) {
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

/* Footer Column */
.footer-col {
	
}

.footer-col-title {
	font-family: var(--brand-font);
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 20px;
	position: relative;
}

.footer-col-title::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 30px;
	height: 3px;
	background: var(--brand-blue);
	border-radius: 2px;
}

/* Footer About */
.footer-about .logo {
	margin-bottom: 15px;
}

.footer-about p {
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.7;
}

/* Footer Links */
.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	display: inline-block;
	padding: 4px 0;
}

.footer-links a:hover {
	color: var(--brand-blue);
	transform: translateX(5px);
}

.footer-links a:focus {
	outline: 2px solid var(--brand-blue);
	outline-offset: 2px;
}

/* Contact Info */
.footer-contact {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 15px;
	color: var(--text-secondary);
	font-size: 0.95rem;
}

.footer-contact li i {
	color: var(--brand-blue);
	margin-top: 4px;
	font-size: 1rem;
}

.footer-contact a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-contact a:hover {
	color: var(--brand-blue);
}

/* Social Links */
.footer-social {
	display: flex;
	gap: 12px;
	margin-top: 20px;
}

.social-link {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	background: var(--light-gray);
	border-radius: 50%;
	color: var(--text-secondary);
	text-decoration: none;
	transition: all 0.3s ease;
}

.social-link:hover {
	background: var(--brand-blue);
	color: var(--white);
	transform: translateY(-3px);
}

.social-link:focus {
	outline: 2px solid var(--brand-blue);
	outline-offset: 2px;
}

/* Footer Bottom */
.footer-bottom {
	padding-top: 30px;
	border-top: 1px solid var(--border-light);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.footer-bottom-text {
	color: var(--text-muted);
	font-size: 0.9rem;
}

.footer-bottom-links {
	display: flex;
	gap: 20px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-bottom-links a {
	color: var(--text-muted);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
	color: var(--brand-blue);
}

@media (max-width: 575px) {
	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}
	
	.footer-bottom-links {
		justify-content: center;
	}
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
	.footer-links a {
		transition: none;
	}
	
	.social-link {
		transition: none;
	}
}
