/* Biocare – Draft Custom Footer */
.bc-footer-clear {
  clear: both;
}
.bc-footer {
  background: #000;
  color: #fff;
  padding: 60px 0 30px;
}

.bc-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

.bc-footer__cols {
    display: flex;
    gap: 60px;
    justify-content: space-between;
}

.bc-footer h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 14px;
}

.bc-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bc-footer li {
  margin-bottom: 10px;
}

.bc-footer a {
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
}

.bc-footer a:hover {
  opacity: 1;
}

.bc-footer__col a {
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
    font-weight: 400;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}
.bc-footer__col ul li a::after{content: ''; background: #FFF; position: absolute; height: 1px; width: 0; bottom: -1px; left: 0; transition: all 0.2s ease;}
.bc-footer__col ul li a:hover::after{width: 100%;}

.bc-footer a:hover {
  opacity: 1;
    color: #A1A1A1;
}

.bc-footer__legal {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 40px;
    padding-top: 18px;
    font-size: 12px;
    opacity: 0.7;
    text-align: center;
    text-transform: uppercase;
    color: #FFF;
    font-weight: 600;
    display: flex;
    gap: 6px;
    justify-content: center;
    align-items: flex-start;
}
.bc-footer__legal a {
  color: inherit;
  margin: 0 6px;
    position: relative;
}
.bc-footer__legal a::after {
  content: '';
        position: absolute;
    display: block;
    height: 1px;
    width: 100%;
    bottom: 2px;
    left: 0;
    background: #FFF;
    transition: width 0.2s ease;
}
.bc-footer__legal a:hover::after {
    width: 10%;
}

.bc-footer h4 {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 17px;
  letter-spacing: 0.04em;
  text-transform: none; /* or uppercase if design wants it */
}

/* Footer icon column (top-left) */
.bc-footer__col--icons {
  display: flex;
  align-items: flex-start;
  margin-right: auto;
}

.bc-footer__icons {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* individual icon links */
.bc-footer__icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* base SVG behavior */
.bc-footer__icon img {
  max-width: 100%;
  max-height: 100%;
  filter: invert(1);
}

/* phone icon is visually heavier */
.bc-footer__icon--phone img {
  transform: scale(0.72);
}

/* mail is usually fine, tiny tweak if needed */
.bc-footer__icon--mail img {
  transform: scale(1);
}

/* LinkedIn icon tends to be boxy */
.bc-footer__icon--linkedin img {
  transform: scale(0.85);
        bottom: 2px;
    position: relative;
}
.bc-footer__icon:hover img {
  filter: invert(1) brightness(0.8);
}

/* hover behavior */
.bc-footer__icon:hover {
  opacity: 1;
  transform: translateY(-1px);
}


@media (max-width: 980px){
    .bc-footer {padding: 30px 0 30px;}
    .bc-footer__cols {flex-wrap: wrap; gap: 14px;}
    .bc-footer__col.bc-footer__col--icons, .bc-footer__col{ width: 100%; }
    .bc-footer__col.bc-footer__col--icons{ margin-bottom: 20px; }
    .bc-footer__sep {display: none;}
    .bc-footer__legal {flex-wrap: wrap; flex-direction: column; align-items: center;}
}

