.footer-extra {
  background: #1f1f1f;
  color: #fff;
  padding: 50px 20px;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 18px;
  border-left: 4px solid #c40000;
  padding-left: 10px;
}

.footer-links {
  columns: 3;
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: .2s;
}

.footer-links a:hover {
  color: #8bfffd;
}

.footer-form {
  min-height: 300px;
}

.footer-form input,
.footer-form select,
.footer-form textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border-radius: 6px;
  border: none;
  font-size: 14px;
}

.footer-form textarea {
  height: 80px;
  resize: none;
}

.footer-form button {
  width: 100%;
  padding: 10px;
  background: #c40000;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: .2s;
}

.footer-form button:hover {
  background: #a00000;
}

.footer-col iframe {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  border: none;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.5;
  color: #ccc;
}

.footer-col a {
  color: #ccc;
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
}

footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 15px;
  font-size: 13px;
}


.footer-contact-line {
  margin-top: 5px;
}

.footer-whatsapp {
  display: inline-block;
  margin-top: 10px;
  padding: 10px;
  background: #25D366;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: .2s;
}

.footer-whatsapp:hover {
  background: #1ebe5d;
}

.form-status {
  margin-top: 8px;
  font-size: 13px;
  color: #ccc;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-box {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-box h2 {
  margin-bottom: 10px;
}

.modal-box button {
  margin-top: 15px;
  padding: 10px 20px;
  border: none;
  background: #2e7d32;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

@media(max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}