/* ============================= */
.footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #121b47 47.66%, #050a18 100%);
    font-family: "Inter", sans-serif;
    color: #fff;
}
.customContainer {
    width: 95%;
    max-width: 1660px;
    display: flex;
    flex-direction: column;
}
/* Horizontal Lines */
.footer__separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer__grid {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr; /* Exact ratio from your design */
    gap: 60px;
    padding: 80px 0;
}
.footer__address-block {
    max-width: 480px;
}
/* Column 1 Styling */
.footer__brand-flex {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.footer__logo {
    /* width: 140px; */
    height: 70px;
}

.footer__office-title {
    font-size: 16px;
    color: var(--text-off-white);
    margin-bottom: 20px;
}

.footer__company-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

.footer__contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 22px;
    color: var(--text-off-white);
}

.gold-icon {
    color: #dfbd6966;
    font-size: 22px;
    flex-shrink: 0;
}

/* Headings */
.footer__col-heading {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
}

/* Quick Links */
.footer__links-list {
    list-style: none;
    padding: 0;
}

.footer__link {
    display: block;
    color: var(--text-off-white);
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 14px;
    transition: color 0.3s;
}

.footer__link:hover {
    color: var(--gold-accent);
}

/* Column 3: Get in Touch */
.footer__email {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-off-white);
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 25px;
}

.footer__social {
    display: flex;
    gap: 18px;
}

.footer__social-box {
    background: #ffffff0f;
    color: #6475a4;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer__social-box img {
    width: 52px;
    height: 52px;
    transition: all 0.3s;
}
.footer__social-box img:hover {
    transform: scale(1.2);
}
/* Copyright Section */
.footer__separator--bottom {
    margin-top: 20px;
}
.footer__copyright {
    text-align: center;
    font-size: 16px;
    color: #64748b;
    margin-top: 40px;
    padding-bottom: 20px;
}

.btn-floot-mob{
        display: none !important;
    }
/* Responsive */
@media (max-width: 1660px) {
    .footer__grid {
        gap: 30px;
    }
}
@media (max-width: 1440px) {
    .footer__brand-flex {
        gap: 26px;
    }
    .footer__logo {
        height: 70px;
    }
    .footer__company-name {
        font-size: 18px;
    }
    .footer__office-title {
        margin-bottom: 14px;
    }
    .footer__grid {
        gap: 30px;
        padding: 80px 0 40px 0;
    }
}
@media (max-width: 1280px) {
    .footer__grid {
        grid-template-columns: 2fr 1fr;
        gap: 50px;
    }
    .footer__brand-flex {
        flex-direction: column;
    }
}
@media (max-width: 1080px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .footer__brand-flex {
        flex-direction: column;
    }
    body {
        padding-bottom: 0 !important;
    }
}

@media (max-width: 600px) {
    .footer__brand-flex {
        align-items: center;
    }
    .footer__address-block {
        display: flex;
        text-align: center;
        align-items: center;
        flex-direction: column;
    }
    .footer__col--contact,
    .footer__col--links {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
    .footer__col-heading {
        font-size: 20px;
        margin-bottom: 16px;
    }
    .footer__link {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .footer__contact-item {
        font-size: 14px;
        text-align: left;
        width: 100%;
    }
    .footer__logo {
        height: 50px;
    }
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }
    .stickyBtnBox{
        display: none;
    }
    .btn-floot-mob{
        display: flex !important;
        position: fixed;
        bottom: 85px;
        width: 90%;
        left: 5%;
        z-index: 100000;
    }
    .btn-floot-mob:hover{
        background: #dfbd69;
        color: #000;    
    }
}
