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

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

/* Make sure the WhatsApp button has proper transition */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    transition: transform 0.3s ease;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-btn img {
    width: 60px;
    height: 60px;
    display: block;
}

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

/* Footer styling */
.footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 40px 0 0;
    margin-top: 50px;
}

.footer h5 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer p {
    margin-bottom: 10px;
    line-height: 1.6;
}

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

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

.footer-bar {
    background-color: #111;
    border-top: 1px solid #333;
    margin-top: 30px;
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
    color: #aaa;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-gold, #f8b400);
}

.social-links i {
    margin-right: 5px;
}

/* Newsletter form styling */
#newsletter-form .form-control {
    background-color: #333;
    border: 1px solid #555;
    color: #fff;
}

#newsletter-form .form-control:focus {
    background-color: #444;
    border-color: var(--accent-gold, #f8b400);
    color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(248, 180, 0, 0.25);
}

#newsletter-form .btn-primary {
    background-color: var(--accent-gold, #f8b400);
    border-color: var(--accent-gold, #f8b400);
    color: #000;
    font-weight: 600;
}

#newsletter-form .btn-primary:hover {
    background-color: #e6a300;
    border-color: #e6a300;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn img {
        width: 50px;
        height: 50px;
    }
    
    .footer {
        padding: 30px 0 0;
    }
    
    .footer .col-md-3 {
        margin-bottom: 30px;
    }
}

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