.footer{
    background:#f8fafc;
    padding:80px 20px 30px;
    color:#1e293b;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:40px;
}

.footer h3{
    font-size:20px;
    margin-bottom:20px;
    position:relative;
}

.footer h3::after{
    content:'';
    width:40px;
    height:3px;
    background:#1e293b;
    position:absolute;
    left:0;
    bottom:-8px;
}

.footer p,
.footer a{
    font-size:14px;
    color:#475569;
    line-height:1.8;
    text-decoration:none;
    display:block;
    margin-bottom:8px;
}

.footer a:hover{
    color:#1e293b;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:12px;
}

.contact-item i{
    margin-top:5px;
    color:#1e293b;
}

/* ===== SOCIAL ICONS FIXED ===== */

.social-icons{
    margin-top:15px;
    display:flex;
    gap:12px;
}

.social-icons a{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#1e293b;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    transition:0.3s;
}

.social-icons a:hover{
    background:linear-gradient(135deg,#1e293b,#334155);
    transform:translateY(-5px) scale(1.05);
    box-shadow:0 8px 20px rgba(0,0,0,0.2);
}

/* ===== MAP ===== */

.map iframe{
    width:100%;
    height:250px;
    border-radius:20px;
    border:0;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

/* ===== FOOTER BOTTOM ===== */

.whatsapp-float{
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: 0.3s ease;
}

.whatsapp-float:hover{
  transform: scale(1.1);
}

/* Mobile Adjust */
@media (max-width: 768px){
  .whatsapp-float{
    width: 50px;
    height: 50px;
    font-size: 22px;
    bottom: 15px;
    right: 15px;
  }
}
/* ===== BACK TO TOP ===== */

#backToTop{
    position:fixed;
    bottom:90px;
    right:20px;
    width:45px;
    height:45px;
    background:#1e293b;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    cursor:pointer;
    display:none;
    z-index:999;
}

.design-link{
  color:#1e293b;
  font-weight:600;
  text-decoration:none;
  position:relative;
}

.design-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-3px;
  width:0;
  height:2px;
  background:#1e293b;
  transition:0.3s;
}

.design-link:hover::after{
  width:100%;
}

/* Responsive */
@media(max-width:600px){
    .footer{
        padding:60px 20px 20px;
    }
}