/* Footer Styles */
.footer-section {
    background-color: #1a1a1a;
    color: #ffffff;
    padding-top: 80px;
    padding-bottom: 30px;
    font-family: 'DM Sans', sans-serif;
    /* Assuming DM Sans based on look */
}

/* Available In Section */
.footer-availability {
    margin-bottom: 60px;
}

.footer-availability h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-cities {
    color: #a0a0a0;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 300;
}

/* Main Columns */
.footer-brand h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-brand p {
    color: #a0a0a0;
    font-size: 16px;
    line-height: 1.6;
    max-width: 250px;
}

.footer-col-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
}

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

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Quick Contact */
.footer-contact-text,
.footer-address,
.footer-phone,
.footer-email {
    color: #a0a0a0;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: block;
    text-decoration: none;
}

.footer-phone,
.footer-email {
    color: #a0a0a0;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal-links {
    display: flex;
    gap: 30px;
}

.footer-legal-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 14px;
}

.footer-copyright {
    color: #666;
    font-size: 14px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.2s;
}

.social-icon:hover {
    transform: translateY(-2px);
    color: #1a1a1a;
}

@media (max-width: 991px) {
    .footer-section {
        padding-top: 60px;
        text-align: center;
        /* Center align footer on mobile */
    }

    .footer-cities {
        font-size: 18px;
    }

    .footer-brand p {
        margin: 0 auto 20px;
        /* Center paragraph */
    }

    .footer-col-title {
        margin-top: 20px;
    }

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

    .footer-legal-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-socials {
        justify-content: center;
    }
}




@media (max-width: 576px) {

    .footer-section {
 text-align: left;
    }

    .footer-brand p {
        margin: 0 ;
       
    }
   
}