
    body{
    margin:0;
    font-family:Arial;
}

/* CALL BAR */
.call-bar{
    background:#ff3b0a;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 40px;
    font-size:22px;
    font-weight:bold;
}

.call-number{
    border-left:2px solid #fff;
    padding-left:20px;
    display:flex;
    align-items:center;
    gap:10px;
}

/* FOOTER */
.footer{
    background:#000;
    color:#fff;
    padding:50px 30px;
}

.footer-container{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
}

.footer-box{
    width:30%;
    min-width:250px;
}

.logo-box{
    background:#fff;
    display:inline-flex;        /* better fitting */
    justify-content:center;
    align-items:center;

    width:160px;              /* equal width & height = circle */
    height:160px;

    border-radius:50%;        /* makes circle */
    overflow:hidden;          /* cuts extra edges */
}

.logo-box img{
    width:100%;
    height:100%;
    object-fit:contain;       /* keeps logo inside nicely */
margin-bottom:15px;  } /* space below logo */

.footer-box p{
    margin:15px 0;        /* space above & below paragraph */
    line-height:1.5;      /* better readability */
}
/* SOCIAL */
.social a{
    color:#fff;
    margin-right:10px;
    font-size:18px;
    text-decoration:none;
     margin-top:10px;   
}

/* EMAIL */
.email{
    margin-top:10px;
}

/* QUICK LINKS */
.footer-box h3{
    margin-bottom:10px;
}

.footer-box ul{
    list-style:none;
    padding:0;
}

.footer-box ul li{
    margin:8px 0;
    cursor:pointer;
}

.footer-box ul li:hover{
    color:#ff3b0a;
}

/* ACCORDION */
.accordion{
    background:#111;
}

.acc-item{
    border-bottom:1px solid #333;
}

.acc-title{
    padding:15px;
    cursor:pointer;
    background:#222;
}

.acc-content{
    padding:15px;
    display:none;
    background:#000;
}
.acc-content p{
    display:flex;
    align-items:flex-start;
    gap:10px;   /* 👈 controls space between icon & text */
    margin:10px 0;
}

.acc-content i{
    color:#ff3b0a;
    font-size:16px;
    margin-top:3px;
}
.acc-item.active .acc-content{
    display:block;
}

/* WHATSAPP FLOAT */
.whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    background:#25d366;
    color:#fff;
    width:55px;
    height:55px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    font-size:25px;
    text-decoration:none;
}
