/* ===== FOOTER BASE (LIGHT) ===== */
.rt-footer{
    background:#f5f5f5;   /* 👈 light grey */
    color:#222;
    padding:60px 20px 20px;
}

/* ===== GRID ===== */
.rt-footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/* ===== COLUMN ===== */
.rt-footer-col h4{
    color:#000;
    margin-bottom:15px;
}

.rt-footer-col p{
    font-size:14px;
    line-height:1.6;
    color:#444;
}

/* ===== LOGO ===== */
.rt-footer-logo{
    max-width:200px;
    width:100%;
    height:auto;
    display:block;
    margin-bottom:15px;
}

/* ===== LINKS ===== */
.rt-footer-col ul{
    list-style:none;
    padding:0;
}

.rt-footer-col ul li{
    margin-bottom:8px;
}

.rt-footer-col ul li a{
    color:#333;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

.rt-footer-col ul li a:hover{
    color:#e10600; /* brand red */
}

/* ===== SOCIAL ===== */
.rt-socials{
    display:flex;
    gap:10px;
}

.rt-icon{
    width:35px;
    height:35px;
    background:#ddd;
    color:#000;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:0.3s;
}

.rt-icon:hover{
    background:#e10600;
    color:#fff;
}

/* ===== NEWSLETTER ===== */
.rt-newsletter{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.rt-newsletter input{
    padding:10px;
    border:1px solid #ccc;
    border-radius:5px;
    font-size:14px;
}

.rt-newsletter button{
    padding:10px;
    border:none;
    background:#e10600;
    color:#fff;
    border-radius:5px;
    cursor:pointer;
    transition:0.3s;
}

.rt-newsletter button:hover{
    background:#b80500;
}

/* ===== BOTTOM ===== */
.rt-footer-bottom{
    margin-top:30px;
    border-top:1px solid #ddd;
    padding-top:10px;
    text-align:center;
    font-size:13px;
    color:#555;
}

/* ===== TABLET ===== */
@media(max-width:1024px){
    .rt-footer-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* ===== MOBILE ===== */
@media(max-width:576px){
    .rt-footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .rt-socials{
        justify-content:center;
    }
}
/* ===== TABLET (<=1024px) ===== */
@media (max-width:1024px){
    .rt-footer-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .rt-footer{
        padding:50px 20px;
    }
}

/* ===== MOBILE (<=768px) ===== */
@media (max-width:768px){
    .rt-footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .rt-footer-col{
        align-items:center;
    }

    .rt-footer-logo{
        margin:0 auto 15px;
    }

    .rt-socials{
        justify-content:center;
    }

    .rt-newsletter{
        width:100%;
    }

    .rt-newsletter input,
    .rt-newsletter button{
        width:100%;
    }
}

/* ===== SMALL MOBILE (<=480px) ===== */
@media (max-width:480px){
    .rt-footer{
        padding:40px 15px;
    }

    .rt-footer-col h4{
        font-size:16px;
    }

    .rt-footer-col p{
        font-size:13px;
    }

    .rt-footer-bottom{
        font-size:12px;
    }
}