/************************************
   INDUSTX FOOTER – 30 / 40 / 30 LAYOUT
   Fully Styled + Responsive
************************************/

/* Turn the footer row into a modern flex layout */
.footer-top .row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 35px;
  margin: 0; 
  padding: 0;
}

/* Reset Bootstrap column widths so our custom widths work */
.footer-top .row > div[class*="col-"] {
  width: auto !important;
  max-width: none !important;
  flex: unset !important;
}

/* --- Column widths --- */
.footer-top .row > div:nth-child(1) {
  flex: 0 1 30%;
  min-width: 240px;
}

.footer-top .row > div:nth-child(2) {
  flex: 0 1 40%;
  min-width: 280px;
}

.footer-top .row > div:nth-child(3) {
  flex: 0 1 30%;
  min-width: 240px;
}

/************************************
   STYLING — MATCHING INDUSTX THEME
************************************/

.footer-top {
  padding: 70px 0 40px;
  background: #0f1b2d; /* Industx dark-blue/industrial tone */
  color: #d0d7e3;
  font-size: 15px;
  line-height: 1.6;
}

/* Widget titles */
.footer-top .widget-title,
.footer-top h4,
.footer-top h3 {
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-left: 3px solid #ffb703; /* Industx yellow accent */
  padding-left: 10px;
}

/* General widget spacing */
.footer-top .widget {
  margin-bottom: 25px;
}

/* Footer links */
.footer-top a {
  color: #c5cede;
  text-decoration: none;
  transition: 0.25s ease;
}
.footer-top a:hover {
  color: #ffb703; /* Industx yellow accent */
}

/* Lists */
.footer-top ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-top ul li {
  margin-bottom: 10px;
}
.footer-top ul li::before {
  content: "›";
  color: #ffb703;
  margin-right: 6px;
  font-size: 14px;
}

/* Improve spacing for text widgets */
.footer-top p {
  margin-bottom: 12px;
}

/* Optional: add subtle top border divider */
.footer-top {
  border-top: 4px solid #ffb703;
}

/************************************
   RESPONSIVE
************************************/

/* Tablets */
@media (max-width: 992px) {
  .footer-top .row > div {
    flex: 1 1 45%;
    min-width: 260px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .footer-top .row > div {
    flex: 1 1 100%;
    min-width: 100%;
  }
  .footer-top {
    padding: 50px 0 30px;
  }
  .footer-top .widget-title {
    font-size: 16px;
  }
}

/************************************
   END
************************************/