.site-footer {
  background: #f9f9f9;
  padding: 80px 0 30px;
  border-top: 1px solid #e5e7eb;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 60px;
  margin-bottom: 50px;
}

/* ================= BRAND ================= */

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;                 /*lighter */
  font-size: 15px;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 120px;
}

.footer-desc {
  font-size: 16px;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 24px;
}

/* ================= SOCIAL ================= */

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;               /* softer */
  background: #e6e6e6;              /* lighter */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #111827;
  transition: all 0.25s ease;
}

.footer-social a:hover {
  background: #c9a14a;
  color: #ffffff;
}

/* ================= LINKS ================= */

.footer-links h5,
.footer-contact h5 {
  font-size: 16px;
  font-weight: 600;                 /* NOT bold */
  color: #111827;
  margin-bottom: 18px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.9;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: #c9a14a;
}

/* ================= CONTACT ================= */

.footer-contact a {
  color: #4b5563;
}

.footer-contact a:hover {
  color: #c9a14a;
}

.footer-contact .contact-icon {
  color: #c9a14a;
}


/* ================= BOTTOM ================= */

.footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 400;
  color: #6b7280;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact p {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ================= GET IN TOUCH ================= */


.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  margin-bottom: 14px;
}

.footer-contact-list a {
  display: flex;
  align-items: flex-start;
  gap: 8px;               /* reduced */
}

.contact-icon {
  font-size: 15px;
  color: #c9a14a;
  margin-top: 2px;
  min-width: 14px;        /* smaller */
}

/* TEXT */
.contact-text {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.contact-text strong {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
}

.contact-text small {
  font-size: 13px;
  font-weight: 400;
  color: #6b7280;
}

/* Hover */
.footer-contact-list a:hover strong {
  color: #c9a14a;
}

.featured-logos-mobile {
  display: none;
}

.desktop-only {
  display: flex;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }

  .featured-logos-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    overflow: hidden;
    touch-action: pan-y; /* IMPORTANT */
  }

  .featured-logos-mobile img {
    height: 40px;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .featured-logos-mobile img.active-logo {
    opacity: 1;
    transform: translateX(0);
  }
}


/* ================= MOBILE FOOTER ALIGNMENT ================= */
@media (max-width: 576px) {

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-desc {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-contact-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-contact-list li {
    width: 100%;
  }

  .footer-contact-list a {
    justify-content: center;
    text-align: center;
  }

  .contact-text {
    align-items: center;
  }
}

/* ================= FLOATING WHATSAPP BUTTON ================= */

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 26px;
  z-index: 3009;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover (desktop) */
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

/* MOBILE TUNING */
@media (max-width: 576px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    right: 16px;
    bottom: 16px;
  }
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: whatsapp-pulse 2.2s infinite;
  z-index: -1;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* ================= MOBILE STICKY CTA ================= */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 56px;
  background: #00674F;
  display: flex;
  z-index: 9999;
}

/* CTA buttons */
.mobile-cta-bar .cta-item {
  flex: 1;
  display: flex;
  align-items: center;          /* vertical align */
  justify-content: center;      /* horizontal align */
  gap: 8px;                     /* space between icon & text */
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

/* Icons */
.mobile-cta-bar .cta-item span[class^="icon-"] {
  font-size: 18px;
  line-height: 1;
}


/* Hide on desktop */
@media (min-width: 768px) {
  .mobile-cta-bar {
    display: none;
  }
}

/* Hide floating WhatsApp on mobile (use bottom CTA instead) */
@media (max-width: 767px) {
  .whatsapp-float {
    display: none;
  }
}


/* Prevent footer overlap  */
body {
  padding-bottom: 56px;
}


