/**
 * Footer Styles - Extracted from footer.php inline CSS for caching
 * @package Astra Child (isakib Pro)
 */

/* Footer CSS */
.site-footer-custom {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #94a3b8;
    font-family: 'Hind Siliguri', 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    border-top: 1px solid #334155;
}

/* Footer widgets layout */
.footer-widgets-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 15px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-widget-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-widget-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    position: relative;
    padding-bottom: 10px;
}
.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: #EA7236;
}

/* Column 1 branding styling */
.footer-brand img {
    max-height: 50px;
    width: auto;
    margin-bottom: 10px;
}
.footer-brand-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px 0;
}
.footer-description {
    margin: 0;
    font-size: 14px;
    color: #94a3b8;
}

/* Social Icons styling */
.footer-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}
.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #334155;
    color: #ffffff !important;
    border-radius: 50%;
    transition: all 0.2s ease;
    text-decoration: none !important;
}
.footer-social-link:hover {
    background-color: #EA7236;
    transform: translateY(-2px);
}
.footer-social-link i {
    font-size: 16px;
}

/* Quick Links list styling */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links-list li a {
    color: #94a3b8 !important;
    text-decoration: none !important;
    transition: all 0.2s ease;
    font-size: 14px;
}
.footer-links-list li a:hover {
    color: #EA7236 !important;
    padding-left: 5px;
}
.footer-links-list li i {
    font-size: 12px;
    color: #EA7236;
}

/* Copyright Notice Bar */
.footer-copyright-bar {
    background-color: #0f172a;
    border-top: 1px solid #1e293b;
    padding: 20px 15px;
    text-align: center;
    font-size: 14px;
    color: #64748b;
}
.footer-copyright-bar a {
    color: #facc15;
    text-decoration: none;
    font-weight: 600;
}
.footer-copyright-bar a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-widgets-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 15px;
    }
}
/* Hide Astra Scroll To Top Blue Arrow Button */
#ast-scroll-top,
.ast-scroll-top-icon,
a#ast-scroll-top {
    display: none !important;
}

/* Footer Social Icon SVG Styling */
.footer-social-link svg {
    display: block;
    width: 16px;
    height: 16px;
    fill: #ffffff;
    transition: transform 0.2s ease;
}
.footer-social-link:hover svg {
    transform: scale(1.15);
}
