/*
=========================================================
50-footer.css — Footer styles
=========================================================
*/

/* ===== Modern Footer ===== */
.ml-footer-modern {
	background: #818080;
	color: #ccc;
	padding: 20px 20px 0;
	font-size: 16px;
}

.ml-footer-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 40px;
}

/* Brand */
.ml-footer-title {
	color: #fff;
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 10px;
}

.ml-footer-desc {
	color: #ffffff;
	line-height: 1.6;
	max-width: 420px;
    font-size: 18px;
}

/* CTA */
.ml-footer-cta {
	margin-top: 20px;
	display: inline-block;
	background: #ff7100;
	color: #fff;
	padding: 14px 36px;
	border-radius: 999px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.25s ease;
	box-shadow: 0 10px 30px rgba(255, 113, 0, 0.35);
}

.ml-footer-cta:hover {
	background: #ff5f00;
	transform: translateY(-2px);
	box-shadow: 0 14px 40px rgba(255, 113, 0, 0.45);
}

/* Links */
.ml-footer-links ul {
	list-style: none;
	padding-top: 30px;
	display: flex;
	flex-direction: column;
	gap: 12px;
    font-size: 16px;
}

.ml-footer-links a {
	color: #ffffff;
	text-decoration: none;
	transition: color 0.2s ease;
}

.ml-footer-links a:hover {
	color: #ff7100;
}

/* Bottom bar */
.ml-footer-bottom {
	margin-top: 30px;
	padding: 20px;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	color: #ffffff;
	font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
	.ml-footer-container {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.ml-footer-links ul {
		align-items: center;
	}
}

/* Developed by */
.ml-footer-devby{
	margin-top: 8px;
	font-size: 12px;
	color: rgba(255,255,255,0.85);
}

.ml-footer-devby a{
	color: #ff7100;
	text-decoration: none;
	font-weight: 700;
}

.ml-footer-devby a:hover{
	text-decoration: underline;
}
