.rentFooter {
    /*background: var(--brand-primary-light-color);*/
     background: var(--brand-secondary-color);
    font-family: "Inter", sans-serif;
    border-top: 1px solid var(--footer-border-color);
    position: relative;
    margin-top: 25px;
}
.rentFooter .container {
    max-width: 1200px;
    margin: auto;
    padding: 2rem 1rem;
    padding-top: 4rem;
}

/* Footer Top Layout */
.rentLogo img {
    width: 200px;
    /*height: 135px;*/
    margin-right: 8px;
}
.footer-top {
    display: flex;
    gap: 20px;
}
.footer-top > div {
    flex: 1;
}
/* Logo & About */
.footer-logo {
    height: 32px;
    margin-bottom: 1rem;
}

/* Footer Links */
.footer-links h4,
.footer-contact h4,
.footer-support h4 {
    font-size: 18px;
    margin-bottom: 0.8rem;
    color: var(--brand-primary-color);
}

.footer-about ul,
.footer-links ul,
.footer-contact ul,
.footer-support ul {
    list-style: none;
    padding: 0;
}

.footer-about li,
.footer-links li,
.footer-contact li,
.footer-support li {
    margin-bottom: 0.5rem;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.footer-contact li .material-symbols-outlined {
    color: var(--brand-primary-color);
}

.footer-about span,
.footer-links span,
.footer-contact span,
.footer-support span {
    transition: color 0.3s ease;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: var(--brand-primary-color);
}

.footer-about a,
.footer-links a,
.footer-contact a,
.footer-support a {
    text-decoration: none;
    color: var(--brand-primary-color);
}

.footer-about a:hover,
.footer-links a:hover,
.footer-contact a:hover,
.footer-support a:hover {
    color: var(--brand-primary-color);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a:hover img {
    transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    font-size: 14px;
    color: var(--brand-primary-color);
    border-top: 1px solid var(--brand-primary-color);
}

.footer-about p {
    font-weight: 400;
    font-size: 14px;
    color: var(--brand-primary-color);
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 24px;
}
/*.footer-contact span{*/
/*    color: var(--brand-primary-color);*/
/*    line-height: 24px;*/
/*    font-size: 16px;*/
/*}*/

.optimiseContainer {
    margin: 0 auto;
    width: 968px;
    height: 178px;
    border-radius: 50px;
    box-shadow: 1px 1px 19.5px 0px var(--box-shadow-color);
    background: var(--white);
    /*margin-top: 90px;*/
    /*margin-bottom: 80px;*/
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    top: -18%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    transform-origin: center center;
}
.optimiseContainer.active {
    animation: zoom-inOut 1s forwards;
}
@keyframes zoom-inOut {
    0% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}
.optimiseContainer .explorePricing {
    width: 158px;
    height: 48px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 7px;
    justify-content: center;
    background: var(--brand-primary-color);
    border: none;
    color: var(--white);
    font-size: 16px;
    box-shadow: 0px 4px 6px 0px var(--box-shadow-color);
    transition: transform 0.3s ease;
    cursor: pointer;
}
.optimiseContainer h1 {
    color: var(--brand-primary-color);
    font-weight: 700;
    font-size: 30px;
}
.explorePricing:hover {
    transform: scale(1.1);
    /*box-shadow: 0 15px 25px rgba(0,0,0,0.2);*/
}

/* Responsive */
@media only screen and (min-width: 0) and (max-width: 500px) {
    .social-icons {
        display: flex;
        justify-content: center;
    }
    .social-icons a img {
        margin-right: 0.8rem;
    }
    .footer-top {
        display: flex;
        gap: 10px;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .rentFooter .container ul {
        /* display: none;*/
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.6s ease;
    }
    .rentFooter .container .footer-top ul.open {
        max-height: 500px; /* big enough to fit your tallest ul */
    }
    .rentFooter .container .footer-top ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .rentFooter .container .footer-top div {
        border-bottom: 1px solid var(--white);
        cursor: pointer;
        width: 100%;
    }
    .footer-top .arrowIcon {
        display: block;
    }
    .optimiseContainer {
        margin: 0 auto;
        width: 90%;
        height: 145px;
        border-radius: 40px;
        box-shadow: 1px 1px 19.5px 0px var(--box-shadow-color);
        background: var(--white);
        /*margin-top: 10px;*/
        /*margin-bottom: 80px;*/
        flex-direction: column;
        display: flex;
        align-items: center;
        gap: 20px;
        justify-content: center;
        top: -24px;
    }
    .optimiseContainer h1 {
        font-weight: 700 !important;
        font-size: 20px !important;
    }
    .optimiseContainer .explorePricing {
        width: 150px;
        height: 40px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        gap: 7px;
        justify-content: center;
        background: var(--brand-primary-color);
        border: none;
        color: var(--white);
        font-size: 14px;
    }
}
@media only screen and (min-width: 501px) and (max-width: 800px) {
    .footer-top .arrowIcon {
        display: block;
    }
    .social-icons {
        display: flex;
        justify-content: center;
    }
    .social-icons a img {
        margin-right: 0.8rem;
    }
    .footer-top {
        display: flex;
        gap: 10px;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .rentFooter .container ul {
        /* display: none;*/
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.6s ease;
    }
    .rentFooter .container .footer-top ul.open {
        max-height: 500px; /* big enough to fit your tallest ul */
    }
    .rentFooter .container .footer-top ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .rentFooter .container .footer-top div {
        border-bottom: 1px solid var(--white);
        cursor: pointer;
        width: 100%;
    }
    .optimiseContainer {
        width: 95%;
        height: 145px;
        top: -10%;
    }
    .optimiseContainer h1 {
        font-weight: 700 !important;
        font-size: 20px !important;
    }
    .optimiseContainer .explorePricing {
        width: 140px;
        height: 40px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        gap: 7px;
        justify-content: center;
        background: var(--brand-primary-color);
        border: none;
        color: var(--white);
        font-size: 14px;
    }
}
@media only screen and (min-width: 801px) and (max-width: 1024px) {
    .footer-top .arrowIcon {
        display: none;
    }
    .nav ul {
        display: flex;
        list-style: none;
        gap: 1rem;
    }
    .optimiseContainer {
        margin: 0 auto;
        width: 730px;
        height: 145px;
        border-radius: 50px;
        box-shadow: 1px 1px 19.5px 0px var(--box-shadow-color);
        background: var(--white);
        /*margin-top: 115px;*/
        /*margin-bottom: 80px;*/
        display: flex;
        align-items: center;
        justify-content: space-around;
    }
}
@media only screen and (min-width: 1025px) and (max-width: 1280px) {
    .footer-top .arrowIcon {
        display: none;
    }

}
@media only screen and (min-width: 1281px) and (max-width: 1419px) {
    .footer-top .arrowIcon {
        display: none;
    }
}
@media only screen and (min-width: 1420px) and (max-width: 1579px) {
    .footer-top .arrowIcon {
        display: none;
    }
   
}
@media only screen and (min-width: 1580px) {
    .footer-top .arrowIcon {
        display: none;
    }
 
}
