            
/* ===== Footer Section ===== */
.footer {
	background: #1e1e2f;
	color: #ddd;
	padding: 60px 20px 20px;
	font-family: 'Segoe UI', sans-serif;
}

.footer-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: auto;
}

.footer-logo {
	font-size: 24px;
	font-weight: 700;
	color: #ff6600;
	margin-bottom: 15px;
}

.footer-col h4 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 15px;
	color: #fff;
}

.footer-col p,
.footer-col ul li {
	font-size: 14px;
	line-height: 1.6;
	color: #ccc;
}

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

.footer-col ul li {
	margin-bottom: 10px;
}

.footer-col ul li i {
	margin-right: 8px;
	color: #ff6600;
}

.footer-col a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-col a:hover {
	color: #ff6600;
}

.social-icons a {
	display: inline-block;
	margin-right: 12px;
	font-size: 16px;
	color: #fff;
	background: #ff6600;
	width: 35px;
	height: 35px;
	line-height: 35px;
	border-radius: 50%;
	text-align: center;
	transition: background 0.3s ease;
}

.social-icons a:hover {
	background: #ff944d;
}

.footer-bottom {
	border-top: 1px solid #333;
	text-align: center;
	margin-top: 30px;
	padding-top: 15px;
}

.footer-bottom p {
	font-size: 13px;
	color: #999;
} 