/*
 * ========================================================================
 * FOOTER WIDGETS STYLING
 * ========================================================================
 */

/* Yeh footer ke poore widget area ko target karta hai */
#footer-widget-area .footer-widgets {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    text-align: left;
}

/* Har column ke liye base style */
#footer-widget-area .footer-column {
    flex-grow: 1;
    flex-basis: 100%;
}

/* --- Desktop Column Layouts --- */
@media (min-width: 768px) {
    #footer-widget-area .footer-widgets-2 .footer-column {
        flex-basis: calc(50% - 15px);
    }
    #footer-widget-area .footer-widgets-3 .footer-column {
        flex-basis: calc(33.333% - 20px);
    }
}

/* --- Widget Content Styling --- */
#footer-widget-area .widget-title {
    color: #ffffff !important;
    font-size: 1.1em;
    font-weight: 700;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

#footer-widget-area .widget {
    color: #ccc;
    font-size: 0.95em;
}

#footer-widget-area .footer-links,
#footer-widget-area .footer-social-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer-widget-area .footer-links li,
#footer-widget-area .footer-social-links li {
    margin-bottom: 12px;
}

#footer-widget-area .footer-links a,
#footer-widget-area .footer-social-links a {
    color: #dbe4f9 !important;
    text-decoration: none !important;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

#footer-widget-area .footer-links a:hover,
#footer-widget-area .footer-social-links a:hover {
    color: #ffffff !important;
    padding-left: 5px;
}