/* Footer Styles */
footer {
    background-color: white;
    padding: 40px 0px;
    padding-bottom: 0px;
    width: 100vw;
    bottom: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 40px;
}

.footer-container .button {
  background-color: #05361a !important;
  color: #B6DB8C !important;
  text-align: center;
}
.footer-container .button:hover {
  background-color: #aad13f !important;
  color: #05361a !important;
}
.footer-container .button-sec {
  background: none !important;
  color: #05361a !important;
  border: 1.5px solid #05361a;
  text-align: center;
}
.footer-container .button-sec:hover {
  background-color: #aad13f !important;
  color: #05361a !important;
  border: 1.5px solid #aad13f;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-brand img {
    width: 150px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #707070;
    font-size: 16px;
    font-weight: 400;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 150px;
}

.footer-column h4 {
    color: #05361a;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-column a {
    color: #05361a;
    font-size: 14px;
    transition: 0.3s ease;
    font-weight: 400;
}

.footer-column a:hover {
    opacity: 0.6;
}

.btn a:hover {
    opacity: 0.95 !important;
}

.footer-demo,
.footer-signup {
    width: 100%;
    max-width: 200px;
}

.footer-signup {
    color: #aad13f !important;
}

.footer-bottom {
    width: 100%;
    margin: 0 auto;
    background-color: #aad13f;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom-inner {
    width: 100%;
    max-width: 950px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px 15px 0px;
}

.footer-bottom p {
    color: #05361a;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #05361a;
    font-size: 14px;
    transition: 0.4s ease;
}

.footer-legal a:hover {
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 1200px) {
  .footer-container {
    justify-content: center;
    text-align: center;
    padding: 30px 24px;
  }

  .footer-brand {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand p {
    text-align: center;
  }

  /* Hide all links and buttons on tablets/mobile - keep it clean */
  .footer-links {
    display: none;
  }

  .footer-bottom {
    padding: 20px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

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

  .footer-brand p {
    font-size: 14px;
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-legal a {
    font-size: 13px;
  }
}
