	.site-footer { 
    background: #003366; 
    color: #ddd; 
    padding: 60px 0 30px; 
    margin-top: 100px; 
		}
		.footer-inner { position: relative; }
		.footer-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 40px; 
    margin-bottom: 50px; 
		}
		.footer-col h4 { 
    color: #fff; 
    font-size: 1.3rem; 
    margin-bottom: 20px; 
    position: relative; 
    padding-bottom: 10px; 
		}
		.footer-col h4::after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 50px; 
    height: 3px; 
    background: #ff6600; 
		}
	.footer-col ul { list-style: none; }
	.footer-col a { 
			color: #bbb; 
			display: block; 
			margin-bottom: 12px; 
			transition: color 0.3s; 
		}
	.footer-col a:hover { color: #ff6600; }

	.footer-main .footer-logo img { height: 60px; margin-bottom: 20px; }
	.footer-contact p { margin-bottom: 20px; font-size: 1rem; }
	.contact-info { font-size: 1.1rem; margin: 20px 0; }
	.contact-info strong { color: #fff; }

	.social-icons { display: flex; gap: 15px; margin: 20px 0; }
	.social-icons a img { width: 40px; height: 40px; border-radius: 50%; transition: transform 0.3s; }
	.social-icons a:hover img { transform: scale(1.2); }

	.payment-title { margin: 30px 0 15px; color: #fff; font-size: 1.1rem; }
	.payment-icons img { height: 40px; margin-right: 10px; }

	.other-services { margin: 30px 0 10px; color: #fff; font-size: 1.1rem; }
	.whatsapp-icon img { width: 40px; margin-top: 10px; }

	.footer-bottom { 
			text-align: center; 
			padding-top: 30px; 
			border-top: 1px solid rgba(255,255,255,0.1); 
			color: #aaa; 
			font-size: 0.9rem; 
		}

	/* Responsive Footer */
	@media (max-width: 768px) {
			.footer-grid { grid-template-columns: 1fr; text-align: center; }
			.social-icons { justify-content: center; }
			.footer-main { order: -1; }
		}	