/* 🌐 Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9fafc;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* ✅ Footer Styling */
footer.agent-footer {
  background-color: #ffffff;
  color: #1f2937;
  font-size: 15px;
  width: 100%;
  border-top: 1px solid #e5e7eb;
}

/* ✅ Footer Title */
.footer-title {
  color: #111827;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 2px solid #ff4d4d;
  padding-bottom: 6px;
  margin-bottom: 18px;
  display: inline-block;
  width: fit-content;
}

/* ✅ Paragraphs */
footer p {
  color: #4b5563;
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 0.5rem;
}

/* ✅ Quick Links List */
ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

ul li a {
  color: #4b5563;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 8px;
}

ul li a:hover {
  color: #ff4d4d;
  text-decoration: underline;
}

/* ✅ Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff4d4d;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  transition: 0.3s ease;
  text-decoration: none !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.social-icons a:hover {
  background-color: #d00000;
  color: #fff;
  transform: translateY(-2px);
}

/* ✅ Divider Line */
footer hr.text-secondary {
  border-color: #e5e7eb !important;
  margin-top: 16px;
  margin-bottom: 16px;
}

/* ✅ Bottom Text */
footer .small {
  color: #6b7280;
  font-size: 14px;
}

/* ✅ Responsive Text Centering */
@media (max-width: 767.98px) {
  .text-center-mobile {
    text-align: center !important;
  }

  footer .social-icons {
    justify-content: center;
  }
}

/* ✅ Tighten Spacing on Social Column */
footer .col-md-4.mb-2 {
  margin-bottom: 8px !important;
}
