/* Font Awesome (make sure this is loaded) */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css");


/* Footer background */
.footer-section {
  width: 100%;
  background-color: #f2f2f2;
}

/* Full‑width wrapper that centers content */
.footer-inner-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Constrain inner content to your max‑width */
.footer-inner-wrap > .footer-contact,
.footer-inner-wrap > hr,
.footer-inner-wrap > .footer-main {
  max-width: 1200px;  /* adjust to your page width */
  width: 100%;
}

/* Top Contact Bar */
.footer-contact {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
}
.footer-contact .contact-item {
  flex: 1;
  display: flex;
  align-items: center;
}
.footer-contact i {
  font-size: 24px;
  color: #f7931e;
  margin-right: 10px;
}
.footer-contact .contact-title {
  display: block;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #0071bb;
  text-decoration: none;
}
.footer-contact .contact-sub {
  display: block;
  text-align: left;
  font-size: 14px;
  color: #757575;
  margin-top: 2px;
}

/* Divider */
.footer-inner-wrap hr {
  border: 0;
  border-top: 1px solid #ccc;
  margin: 20px 0;
}

/* Main 3‑Column Grid */
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-main .logo-col,
.footer-main .links-col,
.footer-main .subscribe-col {
  flex: 1 1 0;
  min-width: 220px;
}

/* Text alignment per column */
.logo-col      { text-align: left;   }
.links-col     { text-align: left; }
.subscribe-col { text-align: left;  }

/* Logo + Tagline + Social */
.logo-col img {
  max-width: 350px;
  display: block;
  margin-bottom: 10px;
}

/* Links Column */
.links-col h4,
.subscribe-col h4 {
  font-size: 18px;
  color: #0071bb;
  margin: 0 0 12px;
  position: relative;
}
.links-col h4::after,
.subscribe-col h4::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #f7931e;
}
.links-col .links-columns {
  display: inline-flex;
  gap: 40px;
}
.links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.links-col li {
  margin-bottom: 8px;
}
.links-col a {
  color: #757575;
  font-size: 14px;
  text-decoration: none;
}
.links-col a:hover {
  text-decoration: underline;
  color: #fff;
}

/* Subscribe Column */
.subscribe-text {
  font-size: 14px;
  color: #757575;
  margin-bottom: 10px;
}
.subscribe-form {
  display: inline-flex;
}
.subscribe-form input[type="email"] {
  width: 100%;
  padding: 14px 28px;
  background: #fff;
  border: 1px solid #2e2e2e;
  color: #2e2e2e
}
.subscribe-form button {
  position: absolute;
  right: 0;
  background: #f7931e;
  padding: 13px 20px;
  border: 1px solid #2e2e2e;
  top: 0;
}
.subscribe-form button i {
  font-size: 22px;
  color: #fff;
}
.subscribe-col .social-links {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.subscribe-col .social-icon {
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #3fa9f5;
  border-radius: 50%;
  text-decoration: none;
}
.subscribe-col .social-icon i {
  color: #fff;
  font-size: 16px;
}
@media (max-width: 768px) {

  /* 1. Stack and center the top contact bar */
  .footer-contact {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .footer-contact .contact-item {
    justify-content: center;
    text-align: center;
  }

  /* 2. Stack main footer columns */
  .footer-main {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .footer-main .footer-col {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  /* 3. Turn your two‑column links list into a single column */
  .links-col .links-columns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .links-col .links-columns ul {
    margin: 0;
    padding: 0;
  }

  /* 4. Make subscribe input, button, and social icons full‑width/centered */
  .subscribe-col input,
  .subscribe-col button {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    margin-top: 10px;
  }
  .subscribe-col .social-links {
    justify-content: center;
  }

  /* 5. Center the copyright line */
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
  }
}

