/* ================= PROFESSIONAL LIGHT FOOTER STYLES ================= */

/* Counsellor Section */
.footer-counsellor-section {
  background: #f1f5f9;
  position: relative;
}

.counsellor-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.counsellor-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  background: linear-gradient(90deg, #1d4ed8 0%, #f47b20 50%, #1d4ed8 100%);
}

.counsellor-title {
  font-size: 26px;
  letter-spacing: -0.3px;
  color: #0f172a;
}

.text-gradient-orange {
  background: linear-gradient(135deg, #1d4ed8 0%, #f47b20 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.counsellor-subtitle {
  color: #64748b;
  font-size: 15px;
}

/* Main Footer Container */
.footer {
  background: #f8fafc;
  color: #334155;
  padding-top: 48px;
  padding-bottom: 0;
  border-top: 3px solid #f47b20;
  position: relative;
}

.single_footer {
  margin-bottom: 28px;
}

.single_footer h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
  padding-bottom: 6px;
  position: relative;
  display: inline-block;
}

.single_footer h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2.5px;
  background: #1d4ed8;
  border-radius: 2px;
}

.single_footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.single_footer ul li {
  margin-bottom: 3px;
}

.single_footer ul li a {
  font-size: 13px;
  color: #475569;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px 0;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.single_footer ul li a:hover {
  color: #1d4ed8;
  transform: translateX(4px);
  font-weight: 500;
}

/* Footer Main Bottom Bar */
.footer-main {
  background: #ffffff;
  padding: 24px 0;
  border-top: 1px solid #e2e8f0;
  margin-top: 30px;
}

/* Footer Links */
.footer-links-new {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.footer-links-new li {
  display: inline-block;
}

.footer-links-new a {
  color: #475569;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links-new a:hover {
  color: #1d4ed8;
}

/* Social Icons */
.footer-social {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #475569;
  font-size: 15px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.footer-social a:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.35);
}

/* Copyright */
.copyright {
  font-size: 12.5px;
  color: #64748b;
  margin-top: 12px;
}

.copyright a {
  color: #1d4ed8;
  text-decoration: none;
  font-weight: 600;
}

.copyright a:hover {
  text-decoration: underline;
}

/* Fixed Contact Buttons Wrapper */
.fx-contact-wrap {
  position: fixed;
  right: 24px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.fx-contact-wrap a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
  text-decoration: none;
}

.fx-contact-wrap a:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.fx-whatsapp-btn {
  background-color: #25D366;
}

.fx-call-btn {
  background-color: #0a66c2;
}

.fx-contact-wrap svg {
  width: 24px;
  height: 24px;
}

.whatsapp-icon {
  fill: #ffffff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .counsellor-title {
    font-size: 20px;
  }

  .footer-links-new {
    flex-direction: column;
    gap: 8px;
  }
}
