/**
 * Premium Footer Styling
 * Designed for Pokalde Adventure - Light Theme
 */

.pokalde-premium-footer {
    background-color: #f5f7fa !important;
    color: #334155 !important;
    padding: 4.5rem 0 2rem 0 !important;
    font-family: var(--wp--preset--font-family--body, "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif) !important;
    position: relative !important;
    overflow: hidden !important;
    border-top: 3px solid #d4af37 !important; /* Premium Gold Border Accent */
}

.pokalde-premium-footer .footer-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 1.5rem !important;
    box-sizing: border-box !important;
}

.pokalde-premium-footer .footer-grid {
    display: grid !important;
    grid-template-columns: 1.4fr 0.9fr 0.9fr 1.1fr !important;
    gap: 2.5rem !important;
    margin-bottom: 3.5rem !important;
}

/* Columns styling */
.pokalde-premium-footer .footer-col {
    display: flex !important;
    flex-direction: column !important;
}

.pokalde-premium-footer .brand-col {
    padding-right: 1.5rem !important;
}

.pokalde-premium-footer .brand-logo-img {
    max-width: 260px !important;
    height: auto !important;
    margin-bottom: 1.25rem !important;
    /* Native original logo color (no filter) */
}

.pokalde-premium-footer .brand-desc {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    color: #475569 !important;
    margin: 0 0 1.5rem 0 !important;
}

/* Social icons */
.pokalde-premium-footer .footer-socials {
    display: flex !important;
    gap: 0.75rem !important;
}

.pokalde-premium-footer .footer-socials a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background-color: rgba(13, 43, 69, 0.05) !important;
    color: #0d2b45 !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
    font-size: 0.95rem !important;
    border: 1px solid rgba(13, 43, 69, 0.05) !important;
}

.pokalde-premium-footer .footer-socials a:hover {
    background-color: #d4af37 !important;
    color: #03182b !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2) !important;
    border-color: #d4af37 !important;
}

/* Headings */
.pokalde-premium-footer .footer-title {
    font-family: var(--wp--preset--font-family--heading, "Jost", sans-serif) !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: #0d2b45 !important;
    margin: 0 0 1.5rem 0 !important;
    position: relative !important;
    letter-spacing: 0.5px !important;
}

.pokalde-premium-footer .footer-title::after {
    content: '' !important;
    display: block !important;
    width: 30px !important;
    height: 2px !important;
    background-color: #d4af37 !important;
    margin-top: 0.5rem !important;
}

/* Links */
.pokalde-premium-footer .footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
}

.pokalde-premium-footer .footer-links a {
    color: #475569 !important;
    text-decoration: none !important;
    font-size: 0.9rem !important;
    transition: all 0.2s ease !important;
    display: inline-block !important;
}

.pokalde-premium-footer .footer-links a:hover {
    color: #d4af37 !important;
    transform: translateX(4px) !important;
}

/* Contact Info list */
.pokalde-premium-footer .footer-contact-info {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.85rem !important;
}

.pokalde-premium-footer .footer-contact-info li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.75rem !important;
    font-size: 0.9rem !important;
    color: #475569 !important;
    line-height: 1.4 !important;
}

.pokalde-premium-footer .footer-contact-info li i {
    color: #d4af37 !important;
    font-size: 1rem !important;
    margin-top: 2px !important;
    width: 16px !important;
    text-align: center !important;
}

.pokalde-premium-footer .footer-contact-info a {
    color: inherit !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.pokalde-premium-footer .footer-contact-info a:hover {
    color: #d4af37 !important;
}

/* Divider & Footer Bottom */
.pokalde-premium-footer .footer-divider {
    border: 0 !important;
    border-top: 1px solid rgba(13, 43, 69, 0.08) !important;
    margin: 0 0 2rem 0 !important;
}

.pokalde-premium-footer .footer-bottom {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
}

.pokalde-premium-footer .copyright {
    font-size: 0.85rem !important;
    color: #475569 !important;
    margin: 0 !important;
}

.pokalde-premium-footer .footer-bottom-links {
    font-size: 0.85rem !important;
    color: #475569 !important;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .pokalde-premium-footer .footer-grid {
        grid-template-columns: 1.2fr 1fr !important;
        gap: 2rem !important;
    }
    
    .pokalde-premium-footer .brand-col {
        grid-column: span 2 !important;
        padding-right: 0 !important;
        margin-bottom: 1rem !important;
    }
}

@media (max-width: 576px) {
    .pokalde-premium-footer {
        padding: 3.5rem 0 2rem 0 !important;
    }
    
    .pokalde-premium-footer .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .pokalde-premium-footer .brand-col {
        grid-column: span 1 !important;
    }
    
    .pokalde-premium-footer .footer-bottom {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
}
