 /* ========================
   Redesigned Footer
======================== */
.footer {
  background: linear-gradient(135deg, #1c5572 0%, #000 100%);
  color: #fff;
  font-size: 15px;
}

.footer-top {
  padding: 60px 0;
}

.footer-col {
  margin-bottom: 30px;
}

.footer-logo img {
  max-width: 180px;
  margin-bottom: 15px;
}

.footer-about {
  color: #ddd;
  font-size: 15px;
  line-height: 24px;
}

/* Titles */
.footer-title {
  font-size: 18px;
  color: #00b3db;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
}

.footer-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #00b3db;
  margin-top: 8px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #fff;
  transition: all 0.3s;
}
.footer-links a:hover {
  color: #00b3db;
}

/* Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}
.footer-contact li {
  margin-bottom: 10px;
  color: #ddd;
}
.footer-contact i {
  color: #00b3db;
  margin-right: 8px;
}

/* Social */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #5a5859;
  color: #fff;
  margin-right: 8px;
  transition: all 0.3s;
}
.footer-social a:hover {
  background: #00b3db;
}

/* Newsletter */
.footer-newsletter {
  display: flex;
  margin-top: 15px;
}
.footer-newsletter input {
  flex: 1;
  padding: 10px 15px;
  border: none;
  border-radius: 25px 0 0 25px;
  outline: none;
}
.footer-newsletter button {
  background: #00b3db;
  border: none;
  padding: 0 18px;
  color: #fff;
  border-radius: 0 25px 25px 0;
  transition: all 0.3s;
}
.footer-newsletter button:hover {
  background: #1c5572;
}

/* Bottom */
.footer-bottom {
  background: #000;
  border-top: 1px solid #333;
  padding: 15px 0;
  font-size: 14px;
  text-align: center;
}
.footer-bottom a {
  color: #00b3db;
}
.footer-bottom a:hover {
  color: #fff;
}

/* ========================
   Fixed WhatsApp & Call Icons
======================== */
.fixed-icons {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 9999;
  pointer-events: none;
}

.fixed-icons .whatsapp-icon,
.fixed-icons .call-icon {
  pointer-events: auto;
  position: absolute;
  bottom: 0;
  height: 55px;
  width: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  color: #fff;
}

.whatsapp-icon {
  left: 20px;
  background: #25d366;
  font-size: 26px;
}
.call-icon {
  right: 20px;
  background: #00b3db;
  font-size: 24px;
}
.fixed-icons a:hover {
  transform: scale(1.1);
}
