/* FOOTER */
.footer {
    background: linear-gradient(135deg, #F2F6FF, #EAF1FF);
    padding: 40px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(11, 44, 107, 0.15);
}

/* TOP */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(11, 44, 107, 0.1);
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    width: 50px;
    height: 50px;
    background: rgba(11, 44, 107, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #0B2C6B;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(11, 44, 107, 0.15);
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #0B2C6B;
    margin-bottom: 4px;
}

.footer-desc {
    font-size: 13px;
    color: #4B5563;
    line-height: 1.5;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background: rgba(11, 44, 107, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0B2C6B;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #1E5FD8;
    color: #fff;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col strong {
    display: block;
    color: #0B2C6B;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-col p,
.footer-col a {
    display: block;
    font-size: 13px;
    color: #4B5563;
    line-height: 1.8;
    text-decoration: none;
}

.footer-col a:hover {
    color: #1E5FD8;
}

.footer-col .label {
    font-weight: 600;
    color: #0B2C6B;
}

/* BUSINESS BOX */
.business-box {
    background: rgba(11, 44, 107, 0.05);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid rgba(11, 44, 107, 0.1);
}

.business-title {
    display: block;
    font-size: 18px;
    color: #0B2C6B;
    margin-bottom: 8px;
}

.business-intro {
    font-size: 13px;
    color: #4B5563;
    margin-bottom: 20px;
}

.divisions-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.division-item {
    background: rgba(255, 255, 255, 0.7);
    padding: 15px;
    border-radius: 10px;
    border-left: 3px solid #1E5FD8;
    transition: 0.3s;
}

/* HIGHLIGHT VAIBHAV SHREE GLOBAL */
/* .division-item:first-child {
    background: linear-gradient(135deg, #0B2C6B, #1E5FD8);
    border-left: 3px solid #FFD700;
    box-shadow: 0 8px 25px rgba(11, 44, 107, 0.3);
    transform: scale(1.02);
}

.division-item:first-child strong {
    color: #fff;
    font-size: 15px;
}

.division-item:first-child p {
    color: rgba(255, 255, 255, 0.9);
} */

.division-item strong {
    display: block;
    color: #0B2C6B;
    font-size: 14px;
    margin-bottom: 5px;
}

.division-item p {
    font-size: 13px;
    color: #4B5563;
    line-height: 1.6;
}

.compliance-text {
    font-size: 12px;
    color: #6B7280;
    margin-top: 15px;
    font-style: italic;
}

/* MAP BUTTON */
.map-btn {
    display: block;
    margin: 0 auto 25px;
    padding: 12px 24px;
    background: rgba(11, 44, 107, 0.12);
    border: 1px solid rgba(11, 44, 107, 0.2);
    color: #0B2C6B;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.map-btn:hover {
    background: rgba(11, 44, 107, 0.2);
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(11, 44, 107, 0.1);
    font-size: 12px;
    color: #4B5563;
}

/* MODAL */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    width: 90%;
    max-width: 700px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    padding: 12px 18px;
    background: #F2F6FF;
}

.modal-header strong {
    color: #0B2C6B;
}

.modal-close {
    cursor: pointer;
    font-size: 18px;
    color: #0B2C6B;
}

.modal-body {
    height: 400px;
}

.modal-body iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* RESPONSIVE */
@media (max-width:768px) {
    .footer-container {
        padding: 25px 20px;
    }

    /* TOP - CENTER */
    .footer-top {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-brand {
        flex-direction: column;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    /* GRID - CENTER */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* BUSINESS - CENTER */
    .business-box {
        text-align: center;
    }

    .divisions-list {
        grid-template-columns: 1fr;
    }

    .division-item {
        text-align: center;
    }

    .division-item:first-child {
        transform: scale(1);
    }
}

@media (max-width:480px) {
    .footer {
        padding: 30px 15px;
    }

    .footer-container {
        padding: 20px 15px;
    }

    .footer-title {
        font-size: 16px;
    }

    .footer-desc {
        font-size: 12px;
    }
}