.footer-bar {
  background: #000;
  border-top: 1px solid rgba(0, 200, 83, 0.15);
}

.footer-banner {
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.15) 0%, rgba(0, 200, 83, 0.05) 100%);
  border-bottom: 1px solid rgba(0, 200, 83, 0.1);
  padding: 2.5rem 0;
}

.footer-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-banner-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-banner-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin: 0;
}

.footer-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #00C853;
  color: #000;
  font-weight: 700;
  padding: 0.875rem 1.75rem;
  border-radius: 2rem;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.footer-banner-btn:hover {
  background: #00E05F;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 200, 83, 0.3);
}

.footer-main {
  padding: 3rem 0;
}

.footer-main-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo-text h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.25rem 0;
}

.footer-logo-text span {
  color: #00C853;
}

.footer-logo-text p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #00C853;
}

.footer-nav span {
  color: rgba(255, 255, 255, 0.3);
}

.footer-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 2rem;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.footer-btn-outline:hover {
  border-color: #00C853;
  color: #00C853;
  background: rgba(0, 200, 83, 0.1);
}

.footer-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #00C853;
  color: #000;
  font-weight: 700;
  padding: 0.6rem 1.25rem;
  border: none;
  border-radius: 2rem;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.footer-btn-primary:hover {
  background: #00E05F;
  color: #000;
  transform: translateY(-2px);
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-item:hover {
  color: #00C853;
}

.footer-contact-item i {
  color: #00C853;
  font-size: 1rem;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  margin: 0;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #00C853;
}

@media (max-width: 992px) {
  .footer-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-main-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-contact {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
  }

  .footer-brand {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .footer-actions {
    flex-direction: column;
    width: 100%;
  }

  .footer-btn-outline,
  .footer-btn-primary {
    width: 100%;
    justify-content: center;
  }

  .footer-contact {
    flex-direction: column;
    gap: 1rem;
  }
}