.footer {
  position: relative;
  width: 100%;
  height: auto;
  background: url('../Media/Forniture/Footer.webp') center/cover no-repeat;

  font-family: "Montserrat", sans-serif;
  color: white;
}

.customer-title {
  margin-top: 100px;
}

.footer-overlay {
  background: rgba(0, 0, 0, 0.65);
  width: 100%;
  height: 100%;
}

.footer-top-line {
  width: 100%;
  height: 6px;
  background: #e34a2f;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  padding: 80px 120px;
}

.footer-col h2.logo {
  font-size: 1.8rem;
  font-weight: 600;
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.9;
}

.mt-2 {
  margin-top: 15px;
}

.mt-4 {
  margin-top: 40px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: white;
  opacity: 0.8;
  transition: 0.3s;
}

.footer-links a:hover {
  opacity: 1;
}

.newsletter {
  display: flex;
  margin-top: 20px;
}

.newsletter input {
  flex: 1;
  padding: 12px;
  border: none;
  outline: none;
  background: #e34a2f;
  color: white;
  font-size: 0.85rem;
}

.newsletter input::placeholder {
  color: white;
  opacity: 0.8;
}

.newsletter button {
  padding: 12px 20px;
  border: none;
  background: white;
  color: black;
  font-size: 0.8rem;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter button:hover {
  background: #ddd;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media (max-width: 1200px) {
  .footer-container {
    gap: 40px;
    padding: 70px 60px;
  }
}

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 50px 25px;
  }

  .footer-col h2.logo {
    font-size: 1.6rem;
  }

  .footer-col h3 {
    font-size: 1.05rem;
    margin-bottom: 14px;
  }

  .footer-col p {
    font-size: 0.95rem;
  }

  .newsletter {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter input,
  .newsletter button {
    width: 100%;
  }

  .footer-col h3[style] {
    margin-top: 40px !important;
  }
}

@media (max-width: 768px) {
  .customer-title {
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 40px 18px;
  }

  .footer-col h2.logo {
    font-size: 1.4rem;
  }

  .footer-col p,
  .footer-links a {
    font-size: 0.88rem;
  }

  .newsletter input,
  .newsletter button {
    padding: 11px 12px;
    font-size: 0.8rem;
  }
}