/* 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;
  border-radius: 40px;
  padding:10px 20px  
}
.footer-whatsapp:hover{
  color: #000;
}
.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;
  color: var(--primary);
  transition: all 0.3s ease;
}
.info-link a{
  border:0
}
.mailto-text{
    padding:10px 20px;
    border-radius: 40px;
}
.footer-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.footer-whatsapp:hover {
  background-color: #25D366;
  border-color: #25D366;
  color: #fff;
}
