/* =========================================================
   BAIG & ASSOCIATES
   PREMIUM FOOTER
========================================================= */


/* =========================================================
   FOOTER MAIN
========================================================= */

.site-footer {
    width: 100%;

    background:
        linear-gradient(
            135deg,
            #c9a66d 0%,
            #d2b27c 48%,
            #c6a36a 100%
        );

    color: #172437;

    border-top: 1px solid rgba(23, 36, 55, 0.18);
}


/* =========================================================
   MAIN FOOTER
========================================================= */

.footer-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;

    padding: 48px 55px 45px;

    display: grid;

    grid-template-columns:
        1.45fr
        1fr
        1fr
        1.2fr;

    column-gap: 75px;
    align-items: start;
}


/* =========================================================
   COMPANY COLUMN
========================================================= */

.footer-company {
    padding-right: 20px;
}


/* =========================================================
   FOOTER BRAND
========================================================= */

.footer-brand {
    display: inline-flex;

    align-items: center;

    text-decoration: none;

    color: #172437;
}


.footer-brand-icon {
    width: 55px;
    height: 55px;

    margin-right: 11px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #172437;

    font-size: 35px;

    line-height: 1;

    flex-shrink: 0;
}


.footer-brand-text {
    display: flex;

    flex-direction: column;

    justify-content: center;
}


.footer-brand-name {
    color: #172437;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 25px;

    font-weight: 700;

    letter-spacing: 1.1px;

    line-height: 1.1;

    white-space: nowrap;
}


.footer-brand-tagline {
    margin-top: 6px;

    color: #172437;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 4px;

    text-align: center;
}


/* =========================================================
   COMPANY DESCRIPTION
========================================================= */

.footer-description {
    max-width: 410px;

    margin: 18px 0 0;

    color: #1c1c1c;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 15.5px;

    line-height: 1.75;
}


/* =========================================================
   FOOTER HEADINGS
========================================================= */

.footer-heading {
    position: relative;

    margin: 0 0 20px;
    padding-bottom: 10px;

    color: #172437;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}


/* Premium heading line */

.footer-heading::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 38px;
    height: 2px;

    background: #172437;
}


/* =========================================================
   FOOTER LINKS
========================================================= */

.footer-links {
    list-style: none;

    margin: 0;
    padding: 0;
}


.footer-links li {
    margin: 0 0 11px;
}


.footer-links a {
    position: relative;

    display: inline-block;

    padding-left: 0;

    color: #202020;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 15px;

    line-height: 1.5;

    text-decoration: none;

    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}


/* Small premium arrow */

.footer-links a::before {
    content: "›";

    position: absolute;

    left: -14px;

    opacity: 0;

    color: #172437;

    transition:
        left 0.25s ease,
        opacity 0.25s ease;
}


.footer-links a:hover {
    color: #172437;

    padding-left: 14px;
}


.footer-links a:hover::before {
    left: 0;

    opacity: 1;
}


/* =========================================================
   SOCIAL MEDIA
========================================================= */

.footer-social {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 2px;
}


.social-link {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(23, 36, 55, 0.65);

    border-radius: 50%;

    background: #172437;

    color: #d4b57a;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 17px;

    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.social-link:hover {
    background: transparent;

    color: #172437;

    border-color: #172437;

    transform: translateY(-3px);
}


/* =========================================================
   OFFICE SECTION
========================================================= */

.footer-office-heading {
    margin-top: 0px;

    margin-bottom: 16px;
}


.footer-address {
    margin: 0;

    color: #202020;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 15px;

    font-style: normal;

    line-height: 1.75;
}


/* =========================================================
   PHONE + WEBSITE
========================================================= */

.footer-contact-info {
    margin-top: 18px;
}


.footer-contact-info p {
    margin: 0 0 10px;

    color: #202020;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 14px;

    line-height: 1.5;
}


.footer-contact-info strong {
    color: #172437;

    font-weight: 700;
}


.footer-contact-info a {
    color: #202020;

    text-decoration: none;

    transition: color 0.2s ease;
}


.footer-contact-info a:hover {
    color: #172437;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    width: 100%;

    border-top: 1px solid rgba(23, 36, 55, 0.28);
}


.footer-bottom-container {
    width: 100%;
    max-width: 1400px;

    min-height: 65px;

    margin: 0 auto;

    padding: 15px 55px;

    display: grid;

    grid-template-columns:
        1fr
        1fr
        1fr;

    align-items: center;

    column-gap: 30px;
}


/* =========================================================
   COPYRIGHT
========================================================= */

.footer-copyright {
    color: #202020;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 13px;

    line-height: 1.5;

    text-align: left;
}


/* =========================================================
   TALK2MARKET CREDIT
========================================================= */

.footer-credit {
    color: #202020;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 13px;

    line-height: 1.5;

    text-align: center;
}


.footer-credit a {
    color: #172437;

    font-weight: 700;

    text-decoration: none;

    transition: color 0.2s ease;
}


.footer-credit a:hover {
    color: #ffffff;
}


/* =========================================================
   LEGAL LINKS
========================================================= */

.footer-legal-links {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 25px;
}


.footer-legal-links a {
    color: #202020;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 13px;

    text-decoration: none;

    white-space: nowrap;

    transition: color 0.2s ease;
}


.footer-legal-links a:hover {
    color: #172437;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .footer-container {
        grid-template-columns:
            1.4fr
            1fr
            1fr;

        column-gap: 45px;

        row-gap: 50px;

        padding: 60px 35px;
    }


    .footer-contact {
        grid-column: 3;
    }


    .footer-bottom-container {
        padding: 20px 35px;

        grid-template-columns:
            1fr
            1fr;

        row-gap: 15px;
    }


    .footer-legal-links {
        grid-column: span 2;

        justify-content: center;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .footer-container {
        grid-template-columns: 1fr;

        gap: 42px;

        padding: 38px 25px;
    }


    .footer-company {
        padding-right: 0;
    }


    .footer-description {
        max-width: 100%;
    }


    .footer-heading {
        font-size: 18px;

        margin-bottom: 24px;
    }


    .footer-links li {
        margin-bottom: 14px;
    }


    .footer-links a {
        font-size: 15px;
    }


    .footer-address {
        font-size: 15px;
    }


    .footer-contact {
        grid-column: auto;
    }


    .footer-bottom-container {
        grid-template-columns: 1fr;

        min-height: auto;

        padding: 25px 20px;

        row-gap: 18px;
    }


    .footer-copyright {
        text-align: center;
    }


    .footer-credit {
        text-align: center;
    }


    .footer-legal-links {
        grid-column: auto;

        justify-content: center;

        flex-wrap: wrap;

        gap: 12px 22px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .footer-container {
        padding: 45px 20px;
    }


   @media (max-width: 480px) {

    .footer-brand-name {
        font-size: 18px;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }
}


    .footer-brand-icon {
        width: 45px;
        height: 45px;

        margin-right: 8px;

        font-size: 30px;
    }


    .footer-brand-tagline {
        font-size: 7px;

        letter-spacing: 3px;
    }


    .footer-description {
        font-size: 14.5px;

        line-height: 1.7;
    }


    .footer-social {
        gap: 10px;
    }


    .social-link {
        width: 43px;
        height: 43px;
    }


    .footer-legal-links {
        gap: 10px 18px;
    }


    .footer-legal-links a {
        font-size: 12.5px;
    }

}
@media (max-width: 480px) {

    .footer-brand {
        flex-wrap: nowrap;
    }

    .footer-brand-icon {
        width: 38px;
        height: 38px;
        margin-right: 7px;
        font-size: 26px;
    }

    .footer-brand-name {
        font-size: 17px;
        letter-spacing: 0.3px;
        white-space: nowrap;
    }

    .footer-brand-tagline {
        font-size: 6px;
        letter-spacing: 2.5px;
        white-space: nowrap;
    }
}
.footer-connect {
    margin-top: 28px;
}

.footer-connect .footer-heading {
    margin-bottom: 18px;
}

.footer-connect .footer-social {
    margin-top: 0;
}

/* =========================================
   JUSTDIAL SOCIAL ICON
========================================= */

.justdial-link {
    font-size: 16px;
    font-weight: 800;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: -1px;
}

.justdial-link .jd-j {
    color: #0877BD;
}

.justdial-link .jd-d {
    color: #F58220;
}