.Footer {
   background-image: url(/assets/images/footer/bg.png);
  padding: 60px 0 30px 0;
  border-top: 1px solid #e5e5e5;
  color: #333;
}

.Footer .logo_holder {
  max-width: 180px;
  margin-bottom: 20px;
}

.Footer .logo_img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.Footer .footer_section_title {
  color: #111;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

/* Modernized Nav Layout */
.Footer .nav_column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.Footer .footer_link {
    padding: 0 !important;
    font-size: 14px;
    color: #000 !important;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.Footer .footer_link:hover,
.Footer .footer_link.active {
  color: #B22C35 !important; /* Accent color matching your old background gradient */
}

/* Info/Contact list */
.Footer .contact_info_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.Footer .info_text {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
}

.Footer .bold_text {
  font-weight: 600;
  color: #333;
}

/* Social Icons Restyle */
.Footer .icons_holder {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.Footer .icon_div {
  width: 36px;
  height: 36px;
  background: #eee;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}

.Footer .icon_div:hover {
  background: #B22C35;
}

.Footer .icon_class {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 0.2s ease-in-out;
}



/* Bottom Copyright section */
.Footer .bottom_bar {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
  text-align: center;
}

.Footer .footer_text {
  font-size: 13px;
  color: #888;
  margin-bottom: 0;
}

.Footer .footer_text a {
  color: #B22C35;
  text-decoration: none;
  font-weight: 500;
}

.Footer .footer_text a:hover {
  text-decoration: underline;
}

/* Responsive adjustment */
@media (max-width: 767px) {
  .Footer {
    padding: 40px 0 20px 0;
    text-align: center;
  }
  .Footer .logo_holder {
    margin: 0 auto 25px;
  }
  .Footer .icons_holder {
    justify-content: center;
    margin-bottom: 30px;
  }
  .Footer .nav_column, .Footer .contact_info_list {
    margin-bottom: 25px;
  }
}