* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-dm: 'DM Sans', sans-serif;
    --font-inter: 'Inter', sans-serif;
    --font-roboto: 'Roboto', sans-serif;
    --font-sora: 'Sora', sans-serif;
}
/* ================= FOOTER ================= */
.urban-footer {
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
}

/* Top CTA */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 8%;
}

.footer-top h2 {
    font-size: 34px;
    font-weight: 600;
    font-family: var(--font-sora);
}

.contact-btn {
    background: #2f8f46;
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-family: var(--font-inter);
}

/* Main Content */
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding: 0 8% 60px;
}

.footer-logo {
    width: 120px;
    margin-bottom: 10px !important;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-inter);
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    font-family: var(--font-inter);
    color: #1a1919;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #1a1919;
    text-decoration: none;
    font-size: 14px;
    font-family: var(--font-inter);
    font-weight: 500;
}
.footer-contact i {
    color: #2f8f46;
    margin-right: 6px;
}

.footer-contact a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.footer-contact a:hover {
    color: #2f8f46;
    text-decoration: none;
}
.footer-address {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}
/* Social */
/* .footer-social a {
    display: inline-block;
    margin-right: 10px;
    color: #000;
    font-size: 14px;
} */
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #2f8f46;
    color: #fff;
    margin-right: 8px;
    font-size: 14px;
    transition: 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: #287c3c;
}
/* Bottom */
.footer-bottom {
    border-top: 1px solid #e5e5e5;
    padding: 15px 8%;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-family: var(--font-inter);
    color: #141313;
}

.footer-bottom a {
    color: #666;
    text-decoration: none;
    margin-right: 15px;
}

/* Illustration */
.footer-illustration {
    /* background: #f3f7f1; */
    padding: 30px 0 0;
    text-align: center;
}

.footer-illustration img {
    width: 100%;
    /* max-width: 1200px; */
}

/* Red Line */
.footer-red-line {
    height: 8px;
    background: #d71920;
}
.footer-green-line{ 
    height: 8px;
    background: #2f8f46;
}

/* ================= RESPONSIVE ================= */
/* @media (max-width: 991px) {
    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
} */

/* ================= FOOTER TOP CTA RESPONSIVE FIX ================= */

/* Default (Desktop already OK) */
.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* ---------- Tablet & Mobile ---------- */
@media (max-width: 768px) {

    .footer-top {
        flex-direction: row;
        align-items: center;
        padding: 30px 20px;
        gap: 15px;
    }

    .footer-cta-left {
        flex: 1;
    }

    .footer-cta-left h2 {
        font-size: 22px;
        line-height: 1.3;
        margin: 0;
    }

    .footer-cta-right {
        flex-shrink: 0;
    }

    .contact-btn {
        padding: 8px 18px;
        font-size: 13px;
        white-space: nowrap;
        border-radius: 20px;
    }
}

/* ---------- Small Mobile ---------- */
/* @media (max-width: 360px) {

    .footer-cta-left h2 {
        font-size: 20px;
    }

    .contact-btn {
        padding: 7px 16px;
        font-size: 12px;
    }
} */
 /* ================= FOOTER 2x2 MOBILE LAYOUT ================= */

 /* Tablet + Mobile */
 @media (max-width: 768px) {

     .footer-main {
         display: grid;
         grid-template-columns: 1fr 1fr;
         /* 2 columns */
         gap: 30px 20px;
         padding: 0 20px 40px;
         text-align: left;
     }

     /* Force order */
     .brand-col {
         grid-column: 1 / 2;
         /* Left top */
         grid-row: 1;
     }

     .footer-col:nth-of-type(2) {
         grid-column: 2 / 3;
         /* Right top */
         grid-row: 1;
     }

     .footer-col:nth-of-type(3) {
         grid-column: 1 / 2;
         /* Left bottom */
         grid-row: 2;
     }

     .footer-col:nth-of-type(4) {
         grid-column: 2 / 3;
         /* Right bottom */
         grid-row: 2;
     }

     /* Brand alignment */
     .brand-col img {
         margin-bottom: 10px;
     }

     .brand-col p {
         font-size: 12px;
         line-height: 1.6;
         text-align: justify;
     }

     /* Headings */
     .footer-col h4 {
         font-size: 17px;
         margin-bottom: 12px;
     }

     .footer-col ul li {
         margin-bottom: 8px;
     }

     /* Social icons stay left */
     .footer-social {
         margin-top: 10px;
     }
 }

 /* ---------- Small Mobile (<= 360px) ---------- */
 @media (max-width: 360px) {

     .footer-main {
         gap: 25px 15px;
     }

     .footer-col h4 {
         font-size: 16px;
     }

     .footer-col p,
     .footer-col a {
         font-size: 13px;
     }
 }

