/* ---------------------------------- */
/* Site Footer — professional redesign
------------------------------------- */
.site-footer .top-footer {
  background: #16132a;
  color: #cfcbe0;
  padding: 70px 0 40px;
  border-top: none;
}

.footer-grid {
  margin-top: 10px;
}

.footer-col {
  margin-bottom: 30px;
}

.footer-col h3 {
  position: relative;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 24px;
  padding-bottom: 14px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  background: linear-gradient(135deg, #e8483b, #d63031);
  border-radius: 2px;
}

.footer-about .logo {
  display: inline-block;
  background: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  margin-bottom: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.footer-about .logo img {
  width: 140px;
  height: auto;
  display: block;
}

.footer-about p {
  color: #a7a3bf;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 22px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-socials li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: background 0.25s ease, transform 0.25s ease;
}

.footer-socials li a:hover {
  background: linear-gradient(135deg, #e8483b, #d63031);
  transform: translateY(-3px);
  color: #fff;
}

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

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

.footer-links li a {
  color: #a7a3bf;
  font-size: 14.5px;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links li a:hover {
  color: #ff8a7a;
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: #a7a3bf;
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact li i {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(214, 48, 49, 0.15);
  color: #ff8a7a;
  font-size: 14px;
  margin-top: 2px;
}

.footer-contact li a {
  color: #a7a3bf;
}

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

.footer-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  line-height: 0;
}

.footer-map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

.second-footer {
  background: #100e1f;
  padding: 22px 0;
  text-align: center;
}

.second-footer p {
  margin: 0;
  color: #83809a;
  font-size: 13px;
  line-height: 1.7;
}

@media (max-width: 991.98px) {
  .site-footer .top-footer {
    padding: 50px 0 20px;
  }

  .footer-col {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .site-footer .top-footer {
    padding: 40px 0 10px;
  }

  .footer-about .logo img {
    width: 130px;
  }
}

/* ---------------------------------- */
/* Floating action buttons (WhatsApp / Call / Back-to-top)
------------------------------------- */
.float,
.floati {
  position: fixed;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  z-index: 9998;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.float {
  bottom: 24px;
  left: 24px;
  background: #25d366;
}

.floati {
  bottom: 24px;
  right: 24px;
  background: #1e6fd9;
}

.float i,
.floati i {
  font-size: 28px;
  line-height: 1;
}

.float:hover,
.floati:hover {
  transform: scale(1.1);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.38);
}

.float::before,
.floati::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: -1;
  animation: pulse-ring 2.2s cubic-bezier(0.4, 0, 0.35, 1) infinite;
}

.float::before {
  background: #25d366;
}

.floati::before {
  background: #1e6fd9;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

/* Back-to-top: stacked above the call button so nothing overlaps.
   Note: display is intentionally left alone — jQuery's fadeIn/fadeOut
   (js/script.js) toggles visibility inline; forcing display here would
   break that scroll-triggered show/hide. */
.go-up {
  bottom: 96px !important;
  right: 24px !important;
  width: 44px;
  height: 44px;
  padding: 0 !important;
  line-height: 44px !important;
  text-align: center !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #e8483b, #d63031) !important;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  z-index: 9997;
}

.go-up i {
  font-size: 16px;
  line-height: inherit;
}

@media (max-width: 575px) {
  .float,
  .floati {
    width: 52px;
    height: 52px;
    bottom: 16px;
  }

  .float {
    left: 16px;
  }

  .floati {
    right: 16px;
  }

  .float i,
  .floati i {
    font-size: 24px;
  }

  .go-up {
    bottom: 78px !important;
    right: 16px !important;
    width: 38px;
    height: 38px;
  }
}
