/* footer */
/* Default footer styles */
footer {
    background-color: #050f17;
    color: #fff;
    border-top: 1px solid #333;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 90%;
    margin: 0 auto;
    padding: 20px 0 10px 0;
}

.footer-logo img {
    width: 250px;
    height: auto;
    margin-bottom: -76px;
    margin-top: -100px;
    margin-left: -5px;
}

.footer-logo p {
    margin-bottom: 30px;
    line-height: 1.5;
    text-align: left;
    max-width: 200px;
    margin-left: 6px;
}

.social-icons a {
    margin-right: 30px;
    color: #b59147;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #a3813d;
}

.footer-contact h3, .footer-links h3, .footer-location h3 {
    font-family: 'Lexend', Sans-serif;
    margin-bottom: 20px;
    font-size: 28px;
}

.footer-contact ul, .footer-links ul {
    list-style: none;
    padding: 0;
    font-family: 'Lexend', Sans-serif;
}

.footer-contact ul li {
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-links ul li {
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #b59147;
}

.footer-location iframe {
    border: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 70px;
    border-top: 1px solid #333;
}

.footer-bottom-left p {
    margin: 0;
}

.footer-bottom-right ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
}

.footer-bottom-right ul li {
    margin: 0 15px;
}

.footer-bottom-right ul li a {
    color: #b59147;
    text-decoration: none;
    transition: 0.3s;
}

.footer-bottom-right ul li a:hover {
    color: #a3813d;
}

/* Responsive styles */

/* Tablet view (600px to 1024px) */
@media screen and (max-width: 1024px) {
    .footer-container {
        flex-wrap: wrap;
    }

    .footer-logo, .footer-contact, .footer-links, .footer-location {
        width: 48%;
        margin-bottom: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-left, .footer-bottom-right {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Mobile view (up to 600px) */
@media screen and (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo, .footer-contact, .footer-links, .footer-location {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom-left, .footer-bottom-right {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .footer-bottom-right ul li {
        display: inline-block;
        margin: 0 10px;
    }

    .footer-logo p {
        margin-bottom: 30px;
        line-height: 1.5;
        text-align: center;
        max-width: 430px;
        margin-left: 6px;
    }

    .footer-bottom-right ul{
        display: contents;
    }
}

/* end footer */