/* Hidden by default */
#consultant-bar {
  position: fixed;
  bottom: -120px; /* hides below screen */
  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; /* slide up */
}

.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;
}



/* Mobile: make consultant bar compact and hide duplicate WhatsApp elements */
@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-bottom img {
    filter: brightness(0) invert(1);
}
.footer-area a:hover { color: #00A8E8 !important; } /* same hover accent as header */
.footer-big-title a:hover { text-decoration: underline; }
@media(max-width: 767px){
  .footer-area .list-inline-item { display: block; margin: 6px 0; }
}