/* footer-custom.css */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;600;700&display=swap');

.custom-footer {
  background-image: url('https://ariasignstg.wpenginepowered.com/wp-content/uploads/2025/06/footer-background-e1749644673606.png');
  background-size: cover;
  background-repeat: no-repeat;
  padding: 120px 30px;
  color: #333;
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: nowrap;
  max-width: 1200px;
  margin: auto;
  align-items: stretch;
}

.footer-left,
.footer-right {
  flex: 1;
  min-width: 300px;
  padding: 0px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-left {
  border-right: 3px solid #828282; /* Center border */
}

.footer-logo {
  max-width: 100%;
  margin-bottom: 0px;
}

.footer-tagline {
    font-size: 20px;
    margin: 10px 0 30px;
    color: #000000;
}

.footer-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-button {
  position: relative;
  display: flex;
  gap: 5px;
  color: #000;
  text-decoration: none;
  padding-bottom: 5px;
  font-weight: 400;
  font-size: 24px;
}

.footer-button::after {
  content: "";
  position: absolute;
  left: 30px; /* Start 30px from left */
  bottom: 0;
  height: 2px;
  width: calc(100% - 30px); /* Rest of the width */
  background-color: #a3cc00;
}

.footer-button img {
  width: 24px;
  height: 24px;
}

.footer-badges {
  max-width: 100%;
  margin-top: 30px;
}

.footer-heading {
  margin-bottom: 30px;
  font-size: 32px;
  color: #000000;
  line-height: 36px
}

.footer-right p {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 15px;
    color: #777777;
}

.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.footer-social a {
  color: #94c11f;
  font-size: 20px;
  text-decoration: none;
}

.custom-footer img {
  position: relative;
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-left {
    border-right: none;
    border-bottom: 3px solid #828282;
  }

  .footer-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .footer-left, .footer-right {
    padding: 30px;
  }

  .custom-footer {
    padding: 40px 10px;
    margin-top: 80px;    
  }

}
