/* Explicit footer link hover styles */
.footer-link {
    color: #aaa;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-gold, #f8b400) !important;
    text-decoration: none;
}

/* Make sure the WhatsApp button has proper transition */
.whatsapp-btn {
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Loading placeholder styles */
.loading-placeholder {
    display: inline-block;
    min-width: 50px;
    color: #777;
}