/* ==========================
   Footer (match live)
========================== */
.footer-area {
  background: linear-gradient(90deg, #1166a3 0%, #31a8e8 100%);
  color: #fff;
  padding: 50px 0 30px;
}

.footer-logo {
  max-width: 180px;
  height: auto;
  display: block;
}

.footer-tagline {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  opacity: 0.95;
}

.footer-heading {
  color: #fff !important;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 16px;
}

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

.footer-links a {
  color: #fff !important;
  text-decoration: none !important;
  font-size: 14px;
  line-height: 1.45;
  display: inline-block;
}

.footer-links a:hover {
  color: #e8f4fb !important;
  text-decoration: underline !important;
}

.footer-social a {
  color: #fff !important;
  font-size: 18px;
  text-decoration: none;
}

.footer-social a:hover {
  color: #e8f4fb !important;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
}

.footer-contact li i {
  margin-top: 3px;
  width: 16px;
  flex-shrink: 0;
}

.footer-contact a {
  color: #fff !important;
  text-decoration: none !important;
}

.footer-contact a:hover {
  text-decoration: underline !important;
}

/* Hidden by default */
#consultant-bar {
  position: fixed;
  bottom: -120px;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 2px solid #eee;
  padding: 15px 30px;
  box-shadow: 0 -2px 10px rgba(16, 40, 145, 0.938);
  transition: bottom 0.5s ease;
  z-index: 9999;
}

#consultant-bar.active {
  bottom: 0;
}

.consultant-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.whatsapp-icon {
  width: 50px;
  height: 50px;
}

.consultant-text h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #333;
}

.consultant-text h3 span {
  color: #1166a3;
}

.consultant-text p {
  margin: 3px 0 0;
  color: #666;
  font-size: 14px;
}

.consultant-btn {
  margin-left: auto;
  background: linear-gradient(90deg, #1166a3 0%, #31a8e8 100%);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  transition: 0.3s;
}

.consultant-btn:hover {
  background: rgb(18, 67, 135);
  color: white;
}

#consultant-close {
  background: transparent;
  border: none;
  font-size: 22px;
  margin-left: 15px;
  cursor: pointer;
  color: #1f5ee6;
}

@media (max-width: 767px) {
  #consultant-bar {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 8px 12px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14);
  }

  .consultant-content {
    gap: 10px;
    align-items: center;
  }

  .whatsapp-icon {
    display: none !important;
  }

  .consultant-text h3 {
    font-size: 14px;
    margin: 0;
  }

  .consultant-text p {
    display: none;
  }

  .consultant-btn {
    display: none !important;
  }

  #consultant-close {
    margin-left: 8px;
    font-size: 20px;
    color: #0a66c2;
  }

  .footer-area {
    padding: 60px 0 24px;
  }
}