.clean-footer {
  background: #ffffff;
  padding: 20px ;
  border-top: 5px solid rgba(30,136,229,0.25);
  color: #222;
}

.clean-footer .footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
}

/* BRAND */
.brand-row {
  display: flex;
  align-items: center;
  gap: 0px;             
}

.footer-logo {
  width: 62px;           
  height: auto;
  margin-left: -10px;
}

.brand-name {
  font-size: 28px;
  font-weight: 700;
  color:rgb(39, 156, 255); ;
  line-height: 1;
  margin-top: 2px;  
  margin-left: -8px;
}

.brand-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 14px;
}

/* SOCIAL ICONS */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}


.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.footer-socials a:hover {
  transform: translateY(-4px);
}

.footer-socials img {
  width: 30px;
  height: 30px;  
}

/* COLUMNS */
.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col h4 {
  font-size: 18px;
  margin-top:10px;
  color:rgb(39, 156, 255); ;
  margin-bottom: 23px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #333;
  transition: 0.25s;
}

.footer-col ul li a:hover {
  color: rgb(130, 198, 32);
  padding-left: 5px;
}

/* MAP */
.footer-col.map iframe {
  width: 100%;
  height: 150px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* BOTTOM */
.footer-bottom {
  margin-top: 22px;
  padding-top: 10px;
  border-top: 2px solid #d1d5db;
  text-align: center;
  font-size: 13px;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .clean-footer .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand-row {
    justify-content: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-col.map iframe {
    height: 180px;
  }
}