/* Start custom CSS for html, class: .elementor-element-da243a0 */:root {
  --brand: #f5b301;
  --dark: #0b2a4a;
}

/* =========================
   DARK GLASS FOOTER
   ========================= */
.footer-glass-clean {
  background: rgba(8, 20, 35, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #ffffff;
}

/* Layout */
.footer-inner {
  max-width: 1200px;
  margin: auto;
  padding: 56px 20px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand */
.footer-brand img {
  height: 52px;              /* desktop */
  width: auto;
  display: block;
}

.footer-divider {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #25D366, var(--brand));
  margin: 12px 0;
  border-radius: 2px;
}

.footer-brand p {
  font-size: 14px;
  opacity: 0.85;
}

/* Contact */
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
  font-size: 14.5px;
  opacity: 0.9;
}

.footer-contact a:hover {
  opacity: 1;
  color: var(--brand);
}

.footer-wa {
  font-weight: 600;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  padding: 14px 16px;
  font-size: 13px;
  opacity: 0.75;
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 767px) {

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 22px;
  }

  /* 🔥 LOGO BIG ON PHONE */
  .footer-brand img {
    height: 64px;
    margin: 0 auto;
  }

  .footer-divider {
    margin: 14px auto;
  }

  .footer-contact {
    align-items: center;
  }
}

/* =========================
   FLOATING WHATSAPP BUTTON
   ========================= */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 54px;
  height: 54px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

/* Small phone */
@media (max-width: 480px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}
/* =========================
   HIGHLIGHT CONTACT LINKS
   ========================= */

/* WhatsApp highlight */
.footer-wa {
  background: rgba(37, 211, 102, 0.15);   /* soft green glow */
  border: 1px solid #25D366;
  padding: 10px 18px;
  border-radius: 30px;
  color: #25D366 !important;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Email highlight */
.footer-mail {
  background: rgba(245, 179, 1, 0.15);    /* brand glow */
  border: 1px solid var(--brand);
  padding: 10px 18px;
  border-radius: 30px;
  color: #f5b301 !important;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Hover effect (premium feel) */
.footer-wa:hover,
.footer-mail:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  opacity: 1;
}

/* Mobile spacing */
@media (max-width: 767px) {
  .footer-wa,
  .footer-mail {
    margin: 6px 0;
  }
}/* End custom CSS */