
/* footer CSS Start  */

.main-footer {
  background-color: #1c1917;
  color: #ffffff;
  padding: 0;
}

/* Accent Line */

.footer-top-accent {
  height: 4px;
  background: #16a34a;
}

/* Grid Layout */

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 80px;
  padding: 100px 0 80px;
}

/* Logo */

.footer-logo {
  height: 42px;
  margin-bottom: 24px;
  /* filter: brightness(0) invert(1); */
}

/* Brand Typography */

.footer-tagline {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 14px;
}

.footer-description {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.8;
  max-width: 340px;
}

/* Column Headings */

.footer-column-links h4,
.footer-column-newsletter h4 {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 22px;
}

/* Links */

.footer-link-list {
  list-style: none;
}

.footer-link-list li {
  margin-bottom: 12px;
}

.footer-link-list a {
  text-decoration: none;
  color: #9ca3af;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-link-list a:hover {
  color: #16a34a;
  padding-left: 4px;
}

/* .cta-green-link {
  color: #16a34a !important;
  font-weight: 600;
} */

/* Newsletter */

/* Newsletter */

.footer-form{
  display:flex;
  flex-direction:column;
  align-items:center;
  /* gap:16px; */
  margin-top:20px;
  width:100%;
}

/* Input */

.footer-form input{
  width:100%;
  max-width:340px;
  height:52px;
  padding:0 18px;
  border-radius:14px;
  border:2px solid rgba(255,255,255,0.25);
  background:transparent;
  color:#fff;
  font-size:14px;
  outline:none;
  text-align:center;
  transition:all .3s ease;
}

.footer-form input::placeholder{
  color:#9ca3af;
}

.footer-form input:focus{
  border-color:#16a34a;
}

/* Button */

.footer-submit-btn{
  width:100%;
  max-width:340px;
  height:52px;
  border-radius:14px;
  border:2px solid #16a34a;
  background:#16a34a;
  color:#fff;
  font-weight:600;
  cursor:pointer;
  transition:all .3s ease;
}

.footer-submit-btn:hover{
  background:#15803d;
  border-color:#15803d;
  transform:translateY(-2px);
}
@media (max-width:600px){

  .footer-form{
    grid-template-columns:1fr;
    justify-items:center;
  }

  .footer-form input,
  .footer-submit-btn{
    max-width:320px;
  }

}
/* Bottom Bar */

.footer-copyright-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 0;
}

.bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.captions {
  font-size: 12px;
  color: #9ca3af;
}

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

/* Responsive */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bottom-flex {
    flex-direction: column;
    gap: 15px;
  }

  .footer-description {
    margin: 0 auto;
  }
}

/* footer css end  */
