 /* FOOTER MAIN SECTION */
    .footer-section {
        position: relative;
        background: url('../images/footer.png') center/cover no-repeat fixed;
        padding: 10pc 5% 60px;
        color: #fff;
    }

    /* OVERLAY */
    .footer-overlay {
        position: absolute;
        inset: 0;
        background: rgb(0 0 0 / 91%);
        z-index: 1;
    }

    /* CONTENT CONTAINER */
    .footer-container {
        position: relative;
        z-index: 2;
        display: flex;
        gap: 50px;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }

    /* LEFT */
    .footer-left {
        max-width: 350px;
    }

    .footer-logo {
        width: 220px;
        margin-bottom: 20px;
    }

    .footer-left h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .footer-left p {
       font-family: "Playfair",serif;
        font-size: 17px;
        color: #ddd;
    }

    /* SOCIALS */
    .footer-socials {
        margin-top: 20px;
        display: flex;
        gap: 20px;
    }

    .footer-socials a {
        color: #fff;
        font-size: 22px;
        transition: 0.3s;
    }

    .footer-socials a:hover {
        color: #d6b26e;
    }

    /* MIDDLE */
    .footer-middle h3,
    .footer-right h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .footer-middle ul {
        list-style: none;
    }

    .footer-middle ul li {
        margin-bottom: 10px;
    }

    .footer-middle ul li a {
        color: #ddd;
        text-decoration: none;
        transition: 0.3s;
    }

    .footer-middle ul li a:hover {
        color: #d6b26e;
    }

    /* RIGHT SIDE */
    .footer-right p {
        margin-bottom: 10px;
        font-size: 15px;
        color: #ddd;
    }

    .footer-right i {
        margin-right: 10px;
        color: #d6b26e;
    }

    /* BOTTOM COPYRIGHT */
    .footer-bottom {
        position: relative;
        z-index: 2;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        text-align: center;
    }

    .footer-bottom p {
        color: #ccc;
        font-size: 14px;
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
        .footer-container {
            text-align: center;
            justify-content: center;
        }

        .footer-left,
        .footer-middle,
        .footer-right {
            text-align: center;
        }
    }