/* Footer Styles */
* {
  font-family: "Poppins", sans-serif;
}

footer {
  background:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
    url("../assets/Footer.png") center/cover no-repeat;
  background-color: #1a1a1a;
  color: white;
  padding: 2rem 0 0;
}

.footer-content {
  margin: 0 auto;
  padding: 0 10rem;
}

/* Footer Columns */
.footer-section {
  padding-bottom: 2rem;
  position: relative;
  padding-top: 2rem;
}

.footer-section-menu{
 display: flex;
 flex-direction: row;
 border-left: 1px solid rgba(255, 255, 255, 0.15);
 border-right: 1px solid rgba(255, 255, 255, 0.15);
 padding-left: 85px;
 padding-top: 2rem;
 padding-right: -20px;
}

.footer-section h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
}

/* Logo Section */
.footer-logo {
  width: 370px;
  height: 169px;
  aspect-ratio: 370/169;
  opacity: 0.8;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  display: block;
  margin-bottom: 0.3rem;
}

.footer-brand-light {
  font-weight: 300;
}

.footer-tagline {
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
      position: relative;
    top: -15px;
}

/* Contact Button */
.btn-contact {
  background-color: #5cb85c;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 2rem;
  border-radius: 5px;
  border: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
      position: relative;
    top: -15px;
}

.btn-contact:hover {
  background-color: #449d44;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(92, 184, 92, 0.4);
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #5cb85c;
  padding-left: 5px;
}

/* Contact Info */
.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.contact-info a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #5cb85c;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-section-menu{
 display: flex;
 justify-content: space-evenly;
 flex-direction: row;
 border: none;
 padding-left: 0px;
 padding-top: 0rem;
 padding-right: 0px;
}

.footer-section {
    padding-top: 0rem;
  } 

.footer-logo {
    width: 250px;
    height: auto;
  }

  .footer-content {
    padding: 0 2rem;
  }

  .footer-section {
    text-align: center;
    padding-bottom: 1.5rem;
  }

  .footer-section h4 {
    font-size: 1.2rem;
  }

  .btn-contact {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .contact-info {
        display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .text-align-right-mobile {
    text-align: right;
  }
  
  .text-align-left-mobile {
    text-align: left;
  }

  .contact-info li {
    justify-content: center;
  }

  .footer-links a:hover {
    padding-left: 0;
  }

  .footer-logo{
    height: 120px;
  }
}
