/* start */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}
/* end */

.footer{
    width:100%;
    background:#0a3d62;
    color:#fff;
    padding:60px 20px;
}

/* container */
.container1{
    width:90%;
    margin:auto;
    display:flex;

    justify-content:space-between;
    align-items:flex-start;

    gap:20px;

    flex-wrap:nowrap;   /* 🔥 IMPORTANT: stop wrapping */
}

/* column */
.col{
    flex:1;
    min-width:0;        /* 🔥 IMPORTANT FIX */
    display:flex;
    flex-direction:column;
    gap:10px;
}

/* text reset */
.col h3,
.col p,
.col a{
    margin:0;
}
.col h3{
    color:#f39c12;
}

/* links */
.col a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

.col a:hover{
    color:#f39c12;
    padding-left:6px;
}

/* address */
.address{
    padding:10px;
    background:rgba(255,255,255,0.08);
    border-radius:8px;
}

/* social */
.social{
    display:flex;
    gap:10px;
}

.social a{
    width:35px;
    height:35px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    color:#0a3d62;
    border-radius:50%;
}

/* bottom */
.bottom{
    text-align:center;
    margin-top:40px;
    padding-top:15px;
    border-top:1px solid rgba(255,255,255,0.2);
}

/* 🔥 MOBILE FIX */
@media(max-width:768px){
    .container1{
        flex-wrap:wrap;      /* 🔥 allow stacking */
        flex-direction:column;
        align-items:center;
        text-align:center;
        gap:25px;
    }

    .col{
        width:100%;
        max-width:300px;
        align-items:center;
    }

    .social{
        justify-content:center;
    }
}