/* InstinctSun footer v2 */
.footer-v2 {
  background: #163E40;
  color: #fff;
  padding: 56px 0 0;
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 14px;
}
.footer-v2 .footer-v2__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-v2__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 40px;
}
.footer-v2__col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-v2__col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: #226468;
  border-radius: 2px;
}
.footer-v2__col--purple h4::after { background: #6B237A; }

.footer-v2__brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
.footer-v2__brand img {
  height: 56px;
  width: auto;
  display: block;
}
.footer-v2__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.footer-v2__brand-name {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -.2px;
  color: #fff;
}
.footer-v2__brand-sub {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  font-weight: 500;
}
.footer-v2__desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,.7);
  margin: 0 0 18px;
}
.footer-v2__desc--lead {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}
.footer-v2__socials { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-v2__social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 19px;
  transition: background .2s, transform .15s, color .2s;
}
.footer-v2__social:hover { background: #226468; transform: translateY(-2px); color: #fff; }
.footer-v2__social--fb:hover { background: #1877F2; }
.footer-v2__social--ig:hover { background: #E1306C; }
.footer-v2__social--tt:hover { background: #111; }
.footer-v2__social--yt:hover { background: #FF0000; }
.footer-v2__social--tg:hover { background: #229ED9; }
.footer-v2__social--vb:hover { background: #7360F2; }

.footer-v2__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-v2__links a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.45;
  transition: color .2s, padding-left .15s;
  display: inline-block;
}
.footer-v2__links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-v2__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-v2__contact-row {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}
.footer-v2__contact-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(34,100,104,.18);
  color: #226468;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-top: 2px;
}
.footer-v2__contact-label {
  font-size: 11.5px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin: 0 0 2px;
  font-weight: 600;
}
.footer-v2__contact-value {
  font-size: 13.5px;
  color: #fff;
  margin: 0;
  line-height: 1.45;
  font-weight: 500;
}
.footer-v2__contact-value a {
  color: #fff;
  text-decoration: none;
  display: block;
}
.footer-v2__contact-value a:hover { color: #226468; }

.footer-v2__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: rgba(255,255,255,.5);
}
.footer-v2__bottom a { color: rgba(255,255,255,.7); text-decoration: none; }
.footer-v2__bottom a:hover { color: #fff; }
.footer-v2__bottom-links { display: flex; gap: 18px; }

@media (max-width: 991px) {
  .footer-v2__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 575px) {
  .footer-v2 { padding: 40px 0 0; }
  .footer-v2__grid { grid-template-columns: 1fr; gap: 26px; padding-bottom: 30px; }
  .footer-v2__bottom { flex-direction: column; text-align: center; padding: 16px 0; }
  .footer-v2__bottom-links { gap: 14px; }
}
