/* ============================================================
   FOOTER STYLING (FINAL DARK BLUE VERSION)
   ============================================================ */

/* --- 1. Main Footer Area --- */
.site-footer {
    /* THE FIX: Changed background color to dark blue */
    background-color: #0f172a; 
    color: #94a3b8; /* Lighter text color for better contrast */
    font-family: 'Inter', sans-serif;
    border-top: 1px solid #1e293b; /* Border color to match */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-widgets-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr; /* Logo area ko thora aur bara kiya */
    gap: 60px;
    padding: 80px 0;
}

/* --- 2. Widget Styling --- */
.footer-column .widget-title {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #1e293b; /* Underline to match */
}

/* Logo/Brand Title */
.footer-col-1 .widget-title {
    font-size: 28px;
    border-bottom: none; /* Logo ke neeche line nahi chahiye */
    padding-bottom: 0;
    margin-bottom: 15px;
}

/* Text & Contact Info */
.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #94a3b8;
}
.footer-contact-list {
    list-style: none; padding: 0; margin: 0;
}
.footer-contact-list li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #cbd5e1;
}
.footer-contact-list strong {
    color: #fff;
    margin-right: 8px;
}
.footer-contact-list a {
    color: #2563eb; /* Blue link color */
    text-decoration: none;
}

/* Menu Links */
.footer-column ul.menu {
    list-style: none; padding: 0; margin: 0;
}
.footer-column ul.menu li {
    margin-bottom: 12px;
}
.footer-column ul.menu li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}
.footer-column ul.menu li a:hover {
    color: #ffffff;
}

/* --- 3. Copyright Bar --- */
.site-info-bar {
    /* THE FIX: Changed background color to a slightly darker blue */
    background-color: #0c1322; 
    border-top: 1px solid #1e293b;
    padding: 25px 0;
    font-size: 13px;
    color: #64748b;
}
.site-info-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.copyright strong {
    color: #e2e8f0;
}
.footer-credit {
    font-weight: 600;
}

/* --- 4. Responsive --- */
@media (max-width: 991px) {
    .footer-widgets-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 0;
    }
}
@media (max-width: 600px) {
    .site-info-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}