/* ══════════════════════════════════════════
   Gandhi Immigration – Footer
   ══════════════════════════════════════════ */

.gandhi-footer {
    position: relative;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    color: #ffffff;
    overflow: hidden;
}

/* Blue overlay */
.gandhi-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

.gandhi-footer-inner {
    position: relative;
    z-index: 2;
    max-width: 1340px;
    margin: 0 auto;
    padding: 60px 30px 30px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* ── Left column ── */
.gandhi-footer-left {
    flex: 1;
}

.gandhi-footer-heading {
    font-size: 32px;
    max-width: 547px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 20px;
}

.gandhi-footer-desc {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 16px;
}

.gandhi-footer-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #F57D26;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.gandhi-footer-btn:hover {
    background: #e06a15;
}

/* ── Right column ── */
.gandhi-footer-right {
    flex: 0 0 420px;
}

.gandhi-footer-logo {
    margin-bottom: 20px;
}

.gandhi-footer-logo img {
    max-width: 200px;
    height: auto;
    display: block;
    border-radius: 4px;
}

.gandhi-footer-logo-2 {
    margin-bottom: 16px;
}

.gandhi-footer-logo-2 img {
    max-width: 180px;
    height: auto;
    display: block;
}

.gandhi-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gandhi-footer-contact li {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
}

.gandhi-footer-contact li i {
    width: 20px;
    margin-right: 8px;
    color: #F57D26;
    flex-shrink: 0;
    margin-top: 2px;
}

.gandhi-footer-contact li.gandhi-footer-tollfree {
    padding-left: 28px;
}

.gandhi-footer-contact li a {
    color: #ffffff;
    text-decoration: none;
}

.gandhi-footer-contact li a:hover {
    text-decoration: underline;
}

/* ── Social icons ── */
.gandhi-footer-social {
    display: flex;
    gap: 12px;
}

.gandhi-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #F57D26;
    color: rgba(1, 85, 158, 1);
    border-radius: 8px;
    font-size: 20px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.gandhi-footer-social a:hover {
    background: #e06a15;
    transform: translateY(-2px);
}

/* ── Bottom row (social + copyright) ── */
.gandhi-footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    gap: 30px;
}

.gandhi-footer-copyright {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

/* ══════════════════════════════════════════
   Responsive
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .gandhi-footer-inner {
        gap: 40px;
        padding: 50px 20px 0;
    }

    .gandhi-footer-right {
        flex: 0 0 350px;
    }
}

@media (max-width: 768px) {
    .gandhi-footer-inner {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px 0;
    }

    .gandhi-footer-right {
        flex: none;
        width: 100%;
    }

    .gandhi-footer-contact li {
        width: 87%;
    }

    .gandhi-footer-bottom-row {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        text-align: center;
    }

    .gandhi-footer-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        background: #F57D26;
        color: rgba(1, 85, 158, 1);
        border-radius: 8px;
        font-size: 20px;
        text-decoration: none;
        transition: background 0.3s ease, transform 0.2s ease;
    }
}

@media (max-width: 480px) {
    .gandhi-footer-heading {
        font-size: 20px;
    }

    .gandhi-footer-logo img {
        max-width: 160px;
    }
}

/* ── Back to Top ── */
#gandhi-back-to-top {
    position: fixed;
    bottom: 111px;
    right: 33px;
    width: 42px;
    height: 42px;
    background: #F57D26;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(245, 125, 38, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
    z-index: 9999;
}

#gandhi-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#gandhi-back-to-top:hover {
    background: #e06a15;
}

@media (max-width: 768px) {
    #gandhi-chatbot-wrapper {
        bottom: 38px;
        right: 16px;
    }

    #gandhi-back-to-top {
        right: 24px;
    }
}
