/* Footer Container */
.footer {
  width: 100%;
  background-color: #ffffff;
  padding-top: 55px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.footer__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 55px;
  box-sizing: border-box;

  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1.3fr 1.15fr;
  gap: 45px;
}

.footer__col {
  min-width: 0;
}

/* Headings */
.footer__heading {
  color: #a7090e;
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 20px;
}

/* Column 1: Logo & About */
.footer__logo {
    display: block;
    width: 230px;
    max-width: 100%;
    height: auto;
  margin-bottom: 15px;
}

.footer__desc {
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer__desc strong {
  color: #111111;
  font-weight: 700;
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__socials a {
  width: 36px;
  height: 36px;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1877f2; /* Social icon color */
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer__socials a:hover {
  background-color: #a7090e;
  color: #ffffff;
  border-color: #a7090e;
}

/* Column 2: Useful Links */
.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a {
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
  padding: 0;
}

.footer__links a:hover {
  color: #a7090e;
}

/* Column 3: Address List */
.footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #333333;
  line-height: 1.55;
}

.footer__contact span {
  font-family: Arial, sans-serif;
  font-weight: 400;
}

.footer__contact i {
  color: #a7090e;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Column 4: Map Container */
.footer__map iframe {
  display: block;
  width: 100%;
  height: 300px;
  border-radius: 4px;
}

.footer__whatsapp {
  position: fixed;
  right: 28px;
  bottom: 78px;
  z-index: 20;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #ffffff;
  text-decoration: none;
  font-size: 31px;
  box-shadow: none;
  transition: width .28s ease;
  overflow: visible;
}

.footer__whatsapp-label {
  display: block;
  position: absolute;
  right: 58px;
  opacity: 0;
  white-space: nowrap;
  transform: translateX(8px);
  transition: opacity .2s ease, transform .28s ease;
  padding: 4px 14px;
  border-radius: 14px;
  background: #25d366;
  color: #ffffff;
  font: 600 13px Arial, sans-serif;
}

.footer__whatsapp-icon {
  position: absolute;
  right: 0;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #ffffff;
  font-size: 31px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.footer__whatsapp:hover,
.footer__whatsapp:focus-visible {
  width: 154px;
}

.footer__whatsapp:hover .footer__whatsapp-label,
.footer__whatsapp:focus-visible .footer__whatsapp-label {
  opacity: 1;
  transform: translateX(0);
}

/* Bottom Bar */
.footer__bottom {
  width: 100%;
  background-color: #a7090e;
  color: #ffffff;
  text-align: center;
  padding: 12px 0;
}

.footer__bottom p {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 15px;
}

/* Mobile Responsive Layout */
@media (max-width: 900px) {
  .footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    padding: 0 20px 55px;
  }
}

@media (max-width: 600px) {
  .footer {
    padding-top: 35px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    padding: 0 20px 35px;
  }

  .footer__logo {
    width: 250px;
  }

  .footer__map iframe {
    height: 260px;
  }

  .footer__whatsapp {
    right: 18px;
    bottom: 70px;
  }
}
