/* ===========================
   FOOTER STYLES - VAAL INSPIRED
   =========================== */

.site-footer {
    background: #0e1215 !important;
    color: #ffffff !important;
    padding: 60px 0 30px !important;
    position: relative;
    margin-top: 0 !important;
}

.footer-grid {
    display: grid !important;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr !important;
    gap: 40px !important;
    margin-bottom: 40px !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
}

/* Logo Section */
.footer-logo-section {
    max-width: 300px;
}

.footer-logo img {
    max-width: 150px;
    height: auto !important;
    margin-bottom: 20px;
}

.footer-tagline {
    color: #b3b3b3 !important;
    font-size: 14px !important;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Social Media Icons */
.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: #dba746;
    transform: translateY(-3px);
    color: #ffffff !important;
}

/* Footer Columns */
.footer-column h4 {
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 600;
    margin-bottom: 24px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px !important;
}

.footer-column ul li {
    margin-bottom: 0 !important;
}

.footer-column ul li a {
    color: #b3b3b3 !important;
    font-size: 14px !important;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: block;
}

.footer-column ul li a:hover {
    color: #dba746 !important;
    padding-left: 5px;
}

/* Contact Column */
.footer-contact-column {
    max-width: 280px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0 !important;
}

.contact-item h4 {
    display: none;
}

.contact-item i {
    color: #dba746 !important;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item span,
.contact-item a {
    color: #b3b3b3 !important;
    font-size: 14px !important;
    line-height: 1.6;
    text-decoration: none;
}

.contact-item a:hover {
    color: #dba746 !important;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 30px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    text-align: center !important;
    display: block !important;
}

.footer-bottom p {
    color: #b3b3b3 !important;
    font-size: 14px !important;
    margin: 0;
}

.footer-bottom strong {
    color: #ffffff !important;
}

.footer-bottom-left,
.footer-bottom-right {
    display: none !important;
}

/* Floating Enquire Button */
.enquire-now-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366 !important;
    color: #ffffff !important;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: flex !important;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.enquire-now-btn:hover {
    background: #20ba5a !important;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.enquire-now-btn i {
    font-size: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px !important;
    }

    .footer-logo-section,
    .footer-contact-column {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .site-footer {
        padding: 40px 0 20px !important;
    }

    .enquire-now-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 14px;
    }

    .footer-bottom {
        flex-direction: column !important;
        gap: var(--space-4);
        text-align: center !important;
    }
}