/* ======= FOOTER FIBERTIC ======= */
.footer {
  background: rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-family: "Poppins", sans-serif;
  padding: 30px 20px 10px ;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(5px);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: 40px;
}

.footer-column {
  flex: 1 1 280px;
  min-width: 250px;
}

.footer-column h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #00aaff;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.footer-column a {
  color: #00aaff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #66d9ff;
}

.footer-logo {
  width: 260px;
  margin-bottom: 20px;
}

.footer-bottom {
  text-align: center;
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0px;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Responsive ajustes */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-column {
    min-width: unset;
  }
  .footer-logo {
    width: 180px;
  }
}
