/* Footer rebrand tweaks: center the logo + info block, and style the
   Home / WhatsApp / Get Quote row added under the footer text. */

.footer-area .footer-top-inner {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.footer-area .footer-logo {
  margin-left: auto;
  margin-right: auto;
}

.footer-area .info-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.footer-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
      margin-bottom: 37px;
}
.footer-whatsapp{
  text-decoration: none;
}
.footer-home-link {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: var(--black-2);
  cursor: pointer;
}
.dark .footer-home-link {
  color: #555555;
}
.footer-home-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s;
}
.footer-home-link:hover::before {
  width: 0;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.footer-whatsapp:hover .footer-icon-circle{
  /* transform: scale(1.08); */
  border-color: #000;
}
.info-link a{
  border:0
}
.info-link .mailto-text{
    padding:10px 20px;
    border-radius: 40px;
    border: 1px solid #c6c6c6;
}

.footer-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid #c6c6c6;
    border-radius: 50%;
    overflow: hidden;
    transition: border 0.4s ease-in;

}
.footer-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

