/* --- Master Footer Styles --- */
.main-footer {
    background: #0A192F;
    /* Deep Navy Theme */
    color: #ffffff;
    padding: 100px 5% 30px;
    /* Established Spacing */
    font-family: 'Poppins', sans-serif;
    border-top: 5px solid #007BFF;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1.5fr;
    gap: 60px;
}

/* Brand Identity */
.footer-logo {
    height: 55px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.brand-desc {
    color: #94a3b8;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 30px;
    max-width: 350px;
}

/* Social Grid */
.social-links-grid {
    display: flex;
    gap: 15px;
}

.social-box {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-box:hover {
    background: #007BFF;
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

/* Typography */
.footer-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 35px;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links li a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
    font-size: 1rem;
}

.footer-links li a:hover {
    color: #007BFF;
    padding-left: 8px;
}

/* Executive Form */
.desk-sub {
    font-size: 0.95rem;
    color: #94a3b8;
    margin-bottom: 20px;
}

.priority-callback-form {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 123, 255, 0.3);
    padding: 8px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.priority-callback-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 15px;
    color: white;
    outline: none;
}

.call-btn {
    background: #007BFF;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.call-btn:hover {
    background: #fff;
    color: #007BFF;
}

.direct-contact a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 1rem;
}

.direct-contact i {
    color: #007BFF;
    font-size: 1.1rem;
}

/* Bottom Bar */
.footer-bottom-bar {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.9rem;
}

.legal-links a {
    color: #64748b;
    text-decoration: none;
    margin-left: 25px;
}

/* --- Responsive Layout --- */
@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 80px 5% 30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .brand-desc {
        margin: 0 auto 30px;
    }

    .social-links-grid {
        justify-content: center;
    }

    .priority-callback-form {
        max-width: 400px;
        margin: 20px auto;
    }

    .direct-contact a {
        justify-content: center;
    }

    .bottom-wrapper {
        flex-direction: column;
        gap: 20px;
    }
}

.social-box i {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
    line-height: 1 !important;
}