/* Footer Css */

.site-footer {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    color: var(--white-color);
    font-family: var(--primary-font);
}

.footer-overlay {
    padding: 100px 0 60px;
}

.footer-widget-title {
    color: var(--white-color);
    margin-bottom: 25px;
    position: relative;
}

.footer-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-menu-links li {
    position: relative;
}

.footer-menu-links li:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -12px;
    color: var(--white-color);
}

.footer-menu-links li a {
    color: var(--white-color);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-menu-links li a:hover {
    color: var(--yellow-color);
}

.footer-map-container {
    width: 85%;
}

.footer-map-inner {
    background: var(--white-color);
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 10px;
}

.contact-widget .footer-widget-title {
    margin-bottom: 25px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-label {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.yellow-dot {
    color: var(--yellow-color);
    font-size: 8px;
    margin-top: -3px;
}

.contact-value p {
    margin-bottom: 4px;
    color: #e0e0e0;
    font-size: 16px;
    padding-left: 18px;
    line-height: 1.4;
}

.contact-value .phone-number {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    padding-left: 18px;
}

.contact-value a {
    color: #fff;
    text-decoration: none;
}

.contact-value a:hover {
    color: var(--yellow-color);
}

.footer-social-links {
    margin-top: 30px;
    padding-left: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.social-icons li a {
    width: 40px;
    height: 40px;
    background: #fff;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icons li a:hover {
    background: var(--yellow-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom-section {
    padding: 20px 0;
    border-top: 1px solid #4350b5;
}

.copyright-text {
    margin: 0;
    color: var(--white-color);
    font-size: 14px;
}

.footer-bottom-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-bottom-menu li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.footer-bottom-menu li a {
    color: var(--white-color);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-bottom-menu li a:hover {
    color: var(--yellow-color);
    padding-left: 5px;
}

.footer-bottom-menu li::before {
    content: "•";
    color: var(--yellow-color);
    font-size: 26px;
    line-height: 1;
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 2px solid #fff;
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--yellow-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
    border-color: var(--yellow-color);
}

/* =========================================
   FOOTER RESPONSIVE STYLES
   ========================================= */

@media (max-width: 991px) {

    .footer-map-container {
        width: 100%;
        margin-bottom: 40px;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-map-container iframe {
        height: 300px;
    }

    .contact-widget {
        text-align: center;
    }

    .contact-label {
        justify-content: center;
    }

    .contact-value p,
    .contact-value .phone-number {
        padding-left: 0;
    }

    .footer-social-links {
        padding-left: 0;
        display: flex;
        justify-content: center;
    }

    .footer-bottom-menu {
        justify-content: center;
        margin-top: 10px;
    }

    .footer-overlay {
        padding: 60px 0 40px;
    }

    .footer-widget-title {
        font-size: 24px;
        text-align: center;
    }

    .footer-bottom-menu li {
        text-align: center;
        padding-left: 15px;
    }

    .footer-bottom-menu li::before {
        display: none;
    }

    .footer-bottom-menu li a {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .footer-overlay {
        padding: 40px 15px;
    }

    .footer-bottom-menu {
        flex-wrap: wrap;
        display: flex;
    }

    .footer-bottom-menu li {
        text-align: center;
    }

    .footer-bottom-menu li a {
        justify-content: center;
    }

    .footer-bottom-section {
        text-align: center;
    }

    .copyright-text {
        font-size: 13px;
    }

    .footer-widget-title {
        font-size: 22px;
    }

    .contact-label {
        font-size: 18px;
    }

    .contact-value .phone-number {
        font-size: 16px;
    }

    .footer-menu-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .footer-menu-links li:not(:last-child)::after {
        display: none;
    }

    .footer-menu-links li::after {
        content: "|";
        position: relative;
        right: -5px;
        display: none;
    }

    .footer-menu-links li a {
        font-size: 13px;
    }

    .footer-bottom-section .row {
        flex-direction: column-reverse;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom-flex {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .footer-menu-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        width: 100%;
        padding: 0;
    }

    .footer-menu-links li {
        width: auto !important;
        text-align: center;
        padding-right: 15px;
    }

    .footer-menu-links li:not(:last-child)::after {
        display: block;
        position: absolute;
        top: 0;
        right: 0px;
    }
}