
/* Footer Styles */
footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 0;
  margin: 0;
}

.footer-main {
  padding: 60px 0 40px;
  background-color: #1a1a1a;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-column h4 {
  color: #6BB601;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: 'Fredoka One', cursive;
}

.footer-about p {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 14px;
  text-align: justify;
}

.footer-about strong {
  color: #fff;
  font-weight: 600;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
}

.footer-contact-item i {
  color: #6BB601;
  font-size: 20px;
  margin-top: 3px;
  min-width: 20px;
}

.footer-contact-item div {
  flex: 1;
}

.footer-contact-item p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.footer-contact-item a {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  text-decoration: none;
  display: block;
}

.footer-contact-item a:hover {
  color: #6BB601;
}

.footer-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #25D366;
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 15px;
  transition: all 0.3s ease;
  font-family: Arial, sans-serif;
}

.footer-whatsapp-btn:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
}

.footer-whatsapp-btn i {
  font-size: 20px;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  color: #999;
  font-size: 14px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background-color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  font-size: 18px;
  text-decoration: none;
}

.footer-social a:hover {
  background-color: #6BB601;
  transform: translateY(-3px);
  text-decoration: none;
}

@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column h4 {
    text-align: center;
  }

  .footer-contact-item {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-social {
    justify-content: center;
  }
}