/* 
   ==========================================================================
   VIP THEME FOOTER STYLES
   ==========================================================================
*/

.site-footer {
    background-color: var(--theme-green);
    color: var(--theme-smoke);
    font-family: var(--font-body);
    padding: 48px 5% 24px;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    max-width: 1300px;
    margin: 0 auto 32px;
}

/* Columns */
.footer-column h2 {
    color: var(--theme-white);
    font-family: var(--font-heading);
    font-size: 16px;
    text-transform: uppercase;
    text-align: left;
    margin-top: 0;
    margin-bottom: 24px;
    font-weight: bold;
}

.footer-column p {
    color: rgba(245, 245, 245, 0.9);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    text-align: left;
}

.footer-column nav {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-column nav a {
    color: rgba(245, 245, 245, 0.9);
    text-decoration: none;
    font-family: var(--font-ui);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color var(--header-transition);
}

.footer-column nav a .icon {
    color: var(--theme-orange-light);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
}

.footer-column nav a:hover {
    color: var(--theme-white);
}

/* Contact Info */
.footer-contact-intro {
    color: rgba(245, 245, 245, 0.9);
    margin-bottom: 19px !important;
}

.footer-column address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-column address p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 14px;
}

.country-flag {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.footer-column address .icon {
    color: var(--theme-orange-light);
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.footer-column address a {
    color: rgba(245, 245, 245, 0.9);
    text-decoration: none;
    transition: color var(--header-transition);
}

.footer-column address a:hover {
    color: var(--theme-white);
}

/* Bottom Bar */
.footer-bottom-container {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 24px;
    font-family: var(--font-ui);
    font-size: 13px;
    color: rgba(245, 245, 245, 0.9);
}

.footer-copyright {
    flex: 1;
}

.footer-partner-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-partner-center .partner-text {
    font-weight: bold;
    color: var(--theme-white);
    font-family: var(--font-body);
    font-size: 14px;
}

.footer-partner-center img {
    height: 35px;
    opacity: 1; /* Increased opacity since it has a background now */
    background-color: whitesmoke;
    padding: 5px 10px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Subtle shadow to make it pop against the dark footer */
}

.footer-legal-social {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(0,0,0,0.2);
    border-radius: 50%;
    color: var(--theme-white);
    text-decoration: none;
    transition: background var(--header-transition);
}

.social-icons a:hover {
    background: var(--theme-orange);
}

.social-icons svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.footer-legal-nav {
    display: flex;
    gap: 24px;
}

.footer-legal-nav a {
    color: rgba(245, 245, 245, 0.9);
    text-decoration: none;
    transition: color var(--header-transition);
}

.footer-legal-nav a:hover {
    color: var(--theme-white);
}

/* Floating Actions Overrides (WhatsApp & Scroll Top) */
.floating-actions {
    position: fixed;
    bottom: 32px;
    right: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 9999;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform var(--header-transition);
    border: none;
    cursor: pointer;
}

.floating-btn:hover {
    transform: translateY(-5px);
}

.whatsapp-btn {
    background-color: #25D366; /* Standard WhatsApp Green */
    text-decoration: none;
}

.scroll-top-btn {
    background-color: var(--theme-orange);
    display: none;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-bottom-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px;
    }
    
    .footer-legal-social {
        align-items: center;
    }
}

