.footer{
  background: linear-gradient(135deg, #1b1b2f, #111827);
  color: white;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

/* GRID */
.footer-container{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

/* BRAND */
.footer-brand h2{
  font-size: 22px;
  margin-bottom: 10px;
  color:rgb(255, 10, 92); ;
}

.footer-brand p{
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.6;
}

/* LINKS */
.footer-links h3,
.footer-contact h3{
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-links a{
  display: block;
  color: #cfcfcf;
  text-decoration: none;
  margin-bottom: 6px;
  transition: 0.3s;
}

.footer-links a:hover{
  color: #ff4d8d;
  transform: translateX(5px);
}

/* CONTACT */
.footer-contact p{
  margin-bottom: 8px;
  color: #cfcfcf;
  font-size: 14px;
}

/* MAP */
.footer-map{
  max-width: 1100px;
  margin: 40px auto 0;
  border-radius: 15px;
  overflow: hidden;
}

.footer-map iframe{
  width: 100%;
  height: 220px;
  border: 0;
}

/* BOTTOM */
.footer-bottom{
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
  font-size: 13px;
  color: #a1a1aa;
}

/* RESPONSIVE */
@media (max-width: 900px){
  .footer-container{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links a{
    display: inline-block;
    margin: 5px 10px;
  }
}
h2 img{
  width: 40px;
  border-radius: 20px;
}

.footer{
  background: #111;
  color: white;
  padding: 50px 20px;
}

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

.footer h2{
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer h2 img{
  width: 40px;
  border-radius: 50%;
}

.footer-links a,
.footer-socials a{
  display: block;
  color: #ccc;
  text-decoration: none;
  margin: 6px 0;
  transition: 0.3s;
}
.footer-socials a{
  display: inline;
}
.footer-links a{
  margin-bottom: 20px;
}
.footer-links a:hover,
.footer-socials a:hover{
  color: #ff4da6;
}

.footer-map iframe{
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 10px;
}

.footer-bottom{
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #aaa;
}
.footer-icon{
  width: 37px;
}