.footer-social-icon {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 22px;
	text-decoration: none;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInPlace 0.5s ease forwards;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Facebook - Blue */
.footer-social-icon.facebook {
	background: #1877F2;
	animation-delay: 0.1s;
}

/* Instagram - Gradient */
.footer-social-icon.instagram {
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
	animation-delay: 0.25s;
}

/* WhatsApp - Green */
.footer-social-icon.whatsapp {
	background: #25D366;
	animation-delay: 0.4s;
}

/* X - svg icon */
.footer-social-icon.twitter {
    background: #000;
    border: 2px solid rgba(255,255,255,0.8);
    margin-left: 7px;
    box-shadow: 0 0 10px rgba(255,255,255,0.25);
}

.footer-social-icon.twitter svg {
    width: 18px;   /* smaller X */
    height: 18px;
    color: #fff;
}

.footer-social-icon.twitter:hover {
    border-color: #fff;
    box-shadow: 0 0 15px rgba(255,255,255,0.5);
    transform: translateY(-5px) scale(1.1) !important;
}

@keyframes fadeInPlace {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.footer-social-icon:hover {
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.footer-social-icon.facebook:hover,
.footer-social-icon.instagram:hover,
.footer-social-icon.whatsapp:hover {
	transform: translateY(-5px) scale(1.1) !important;
	box-shadow: 0 8px 25px rgba(0,0,0,0.3) !important;
}
p.mb-0.footer-text {
color: #fff;
font-size: 16px;
}