/* =======================================================
   RONEEWEB FOOTER — FINAL VERSION 
======================================================= */

/* --- FULL WRAPPER --- */
.rw-footer {
    width: 100%;
    background: #f8f9fa;
    border-top: 3px solid #dff4ef;

    padding: 55px 0 30px;
    font-family: "Poppins", sans-serif;
    color: #333;
}

/* --- INNER CONTAINER --- */
.rw-footer-container {
    width: min(1400px, 100% - 50px);
    margin-inline: auto;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.2rem;
}

/* --- LOGO --- */
.rw-footer-logo {
    width: auto;
    height: 50px;
}

@media (max-width:400px) {
    /* --- LOGO --- */
    .rw-footer-logo {
    width: auto;
    height: 35px;
}
    
}

/* --- TITLES --- */
.rw-footer-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: #009879;
    margin: 12px 0 10px;
}

.rw-footer-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #009879;
}

/* --- TEXT --- */
.rw-footer-text {
    font-size: 1rem;
    font-weight: 400;
    color: #555;
    line-height: 1.6;
    margin-bottom: 18px;
}

/* --- SOCIAL ICONS --- */
.rw-footer-socials a {
    color: #00aaff;
    font-size: 22px;
    margin-right: 13px;
    transition: 0.25s ease;
}
.rw-footer-socials a:hover {
    color: #009879;
}

/* --- LINKS --- */
.rw-footer-col ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.rw-footer-col ul li {
    margin: 8px 0;
}
.rw-footer-col ul li a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    transition: 0.25s ease;
}
.rw-footer-col ul li a:hover {
    color: #00aaff;
}

/* --- CONTACT ITEMS --- */
.rw-footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;

    margin: 8px 0;
    font-size: 1rem;
    font-weight: 500;
}
.rw-footer-contact i {
    color: #00aaff;
    font-size: 18px;
}

/* --- WHATSAPP BUTTON --- */
.rw-footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 12px 22px;
    background: linear-gradient(90deg, #009879, #00aaff);
    border-radius: 26px;

    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;

    margin-top: 12px;
    transition: 0.25s;
}
.rw-footer-whatsapp i {
    color: white !important;
    font-size: 18px;
}
.rw-footer-whatsapp:hover {
    background: transparent;
    border: 2px solid #00aaff;
    color: #00aaff;
}

/* --- COPYRIGHT --- */
.rw-footer-bottom {
    background: #e9f5f2;
    border-top: 1px solid #d3ece6;

    text-align: center;
    padding: 15px 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    margin-top: 40px;
}

/* =======================================================
   MOBILE RESPONSIVE (<600px)
======================================================= */
@media (max-width: 600px) {
    .rw-footer {
        padding: 45px 0 25px;
    }

    .rw-footer-container {
        width: min(100% - 30px, 100%);
        gap: 1.8rem;
    }

    .rw-footer-col {
        text-align: left;
    }

    .rw-footer-socials {
        margin-bottom: 10px;
    }

    .rw-footer-contact li {
        justify-content: flex-start;
    }

    .rw-footer-whatsapp {
        padding: 11px 20px;
        font-size: 0.95rem;
    }
}
