footer {
        display: none; /* Hide default footer */
    }
    footer.new-footer {
        display: block;
        background-color: var(--footer-bg);
        color: var(--white);
        border-radius: var(--lg-border-radius) var(--lg-border-radius) 0 0;
        margin-top: -50px; /* Adjust to overlap with content */
        position: relative;
        z-index: 10;
        padding: var(--spacing-xl);
        margin-top: var(--spacing-md);
        .new-footer-container {
            display: flex; /* Show new footer */
            flex-direction: column;
            max-width: 1800px;
            margin: 0 auto;
            gap: var(--spacing);
            .footer-top {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
                margin-bottom: var(--spacing-lg);
                gap: var(--spacing);
                .footer-top__heading {
                    flex-basis: 50%;
                    max-width: 650px;
                    h2 {
                        color: var(--white);
                        margin: 0 0 var(--spacing-sm);
                        font-size: 50px;
                        line-height: 60px;
                        font-weight: 600;
                        letter-spacing: -1px;
                    }
                }
                .footer-top__content {
                    flex-basis: 35%;
                    max-width: 540px;
                    .footer-top__content__logo {
                        img {
                            max-width: 300px;
                        }
                    }
                    .footer-top__content__text {
                        p {
                            margin: var(--spacing-md) 0 var(--spacing-lg);
                            color: var(--white);
                            font-size: 18px;
                        }
                        .bs-button-2 {
                            max-height: 58px;
                        }
                    }
                }
            }
            .footer-center {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
                .footer-center__item {
                    flex-basis: 30%;
                    max-width: 400px;
                    h3 {
                        font-size: 26px;
                        margin: var(--spacing-md) 0;
                        color: var(--white);
                        font-weight: 400;
                    }
                    p {
                        font-size: 15px;
                        margin-bottom: var(--spacing-md);
                        color: var(--white);
                        font-weight: 300;
                        padding-right: var(--spacing-xl);
                    }
                    .bs-button-2 {
                        min-width: 238px;
                    }
                    .footer-center__item__icon {
                        img {
                            width: 50px;
                            height: 50px;
                            margin-right: var(--spacing-sm);
                        }
                    }
                }
            }
            .footer-bottom {
                margin-top: var(--spacing-xl);
                display: flex;
                justify-content: space-between;
                align-items: flex-end;
                .footer-bottom__left {
                    max-width: 600px;
                    .footer-bottom__left__links {
                        display: flex;
                        justify-content: space-between;
                        margin-bottom: var(--spacing-xl);                           
                        a {
                            color: var(--white);
                            text-decoration: none;
                            transition: color 0.3s ease;
                            font-size: 15px;
                            &:hover {
                                color: var(--highlight-blue);
                            }
                        }
                    }
                    .footer-bottom__left__address {
                        p {
                            margin-bottom: 5px;
                            color: var(--text-grey);
                            font-size: 15px;
                        }
                    }
                    .footer-bottom__left__design {
                        p {
                            margin-bottom: 0;
                        }
                        a {
                            color: var(--white);
                            text-decoration: none;
                            transition: color 0.3s ease;
                            font-size: 15px;
                            margin-top: var(--spacing-xl);
                            display: block;
                            &:hover {
                                color: var(--highlight-blue);
                            }
                        }
                    }
                    
                }
                .footer-bottom__right {
                    a {
                        height: 57px;
                        width: 57px;
                        display: inline-block;
                        margin-left: var(--spacing-md);
                    }
                }
            }
        }
    }
    .bs-newpages {
        footer.new-footer {
            margin-top: 0;
        }
    }