/* =====================================
   Barshi VFX Common Footer
===================================== */

.bv-footer,
.bv-footer * {
  box-sizing: border-box;
}

.bv-footer {
  width: 100%;
  margin-top: 60px;
  background: #101b31;
  color: #ffffff;
  font-family: inherit;
}

.bv-footer-container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 55px 0 42px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 45px;
}

/* Footer headings */

.bv-footer-column h2 {
  position: relative;
  margin: 0 0 24px;
  padding-bottom: 11px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.bv-footer-column h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 2px;
  background: #ff7676;
}

/* Brand */

.bv-footer-logo {
  display: inline-block;
  margin-bottom: 17px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}

.bv-footer-brand p {
  max-width: 330px;
  margin: 0 0 22px;
  color: #cbd5e5;
  font-size: 14px;
  line-height: 1.75;
}

/* Footer links */

.bv-footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bv-footer-column li {
  margin-bottom: 12px;
}

.bv-footer-column a {
  color: #dce5f2;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.bv-footer-column ul a {
  display: inline-block;
}

.bv-footer-column ul a:hover,
.bv-footer-column ul a:focus-visible,
.bv-footer-contact a:hover,
.bv-footer-contact a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Contact */

.bv-footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  font-style: normal;
}

/* WhatsApp button */

.bv-footer-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  padding: 10px 17px;
  border-radius: 7px;
  background: #0a9655;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 600;
  text-decoration: none !important;
  transition: background 0.2s ease, transform 0.2s ease;
}

.bv-footer-whatsapp i {
  font-size: 19px;
}

.bv-footer-whatsapp:hover,
.bv-footer-whatsapp:focus-visible {
  background: #087c47;
  transform: translateY(-1px);
}

/* Copyright */

.bv-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 20px;
  text-align: center;
}

.bv-footer-bottom p {
  margin: 0;
  color: #b9c5d6;
  font-size: 13px;
  line-height: 1.5;
}

/* Tablet */

@media (max-width: 900px) {
  .bv-footer-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }
}

/* Mobile */

@media (max-width: 600px) {
  .bv-footer {
    margin-top: 40px;
  }

  .bv-footer-container {
    width: min(100% - 32px, 1200px);
    padding: 42px 0 32px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .bv-footer-column h2 {
    margin-bottom: 18px;
    font-size: 17px;
  }

  .bv-footer-logo {
    font-size: 22px;
  }

  .bv-footer-whatsapp {
    width: 100%;
    max-width: 260px;
  }
}

/* Footer brand logo size fix */
.bv-footer .bv-footer-logo {
  font-size: 22px !important;
  line-height: 1.2;
  font-weight: 700;
}