/* Improved footer styling for tenant frontend */
.footer-area {
  position: relative;
  overflow: hidden;
  background: #111827;
  color: rgba(255, 255, 255, .78);
}
.footer-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(var(--main-color-one-rgb, 255, 106, 0), .12), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, .06), transparent 24%);
  pointer-events: none;
}
.footer-area .container,
.footer-area .row,
.footer-top,
.footer-bottom,
.copyright-area {
  position: relative;
  z-index: 1;
}
.footer-top {
  padding-top: 55px !important;
  padding-bottom: 55px !important;
}
.footer-area .widget,
.footer-area .footer-widget,
.footer-area [class*="widget_"] {
  margin-bottom: 24px;
}
.footer-area .widget-title,
.footer-area .footer-widget-title,
.footer-area .widget .title,
.footer-area h1,
.footer-area h2,
.footer-area h3,
.footer-area h4,
.footer-area h5,
.footer-area h6 {
  color: #fff;
  font-weight: 700;
  letter-spacing: -.015em;
}
.footer-area .widget-title,
.footer-area .footer-widget-title {
  font-size: 18px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  position: relative;
}
.footer-area .widget-title::after,
.footer-area .footer-widget-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  border-radius: 20px;
  background: var(--main-color-one, #ff6a00);
}
[dir="rtl"] .footer-area .widget-title::after,
[dir="rtl"] .footer-area .footer-widget-title::after {
  left: auto;
  right: 0;
}
.footer-area a {
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
  transition: color .2s ease, transform .2s ease, opacity .2s ease;
}
.footer-area a:hover {
  color: var(--main-color-one, #ff6a00);
}
.footer-area ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-area li {
  margin-bottom: 10px;
}
.footer-area li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-area li a:hover {
  transform: translateX(3px);
}
[dir="rtl"] .footer-area li a:hover {
  transform: translateX(-3px);
}
.footer-area p {
  line-height: 1.75;
  color: rgba(255, 255, 255, .72);
}
.footer-area input,
.footer-area .form-control,
.footer-area .form--control {
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border-radius: 10px;
  min-height: 46px;
}
.footer-area input::placeholder,
.footer-area .form-control::placeholder,
.footer-area .form--control::placeholder {
  color: rgba(255, 255, 255, .55);
}
.footer-area button,
.footer-area .btn,
.footer-area .cmn-btn,
.footer-area .boxed-btn {
  border-radius: 10px;
}
.footer-social,
.social-links,
.footer-area .social-area,
.footer-area .social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-social a,
.social-links a,
.footer-area .social-area a,
.footer-area .social-link a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .09);
  color: #fff;
}
.footer-social a:hover,
.social-links a:hover,
.footer-area .social-area a:hover,
.footer-area .social-link a:hover {
  background: var(--main-color-one, #ff6a00);
  color: #fff;
  transform: translateY(-2px);
}
.copyright-area,
.footer-bottom {
  background: rgba(0, 0, 0, .18);
  border-top: 1px solid rgba(255, 255, 255, .10);
}
.copyright-area {
  padding: 18px 0;
}
.copyright-contents,
.copyright-contents span,
.copyright-contents p {
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  margin-bottom: 0;
}
.mobile-footer-menu,
.mobile-footer-wrapper {
  box-shadow: 0 -8px 24px rgba(15, 23, 42, .10);
}
.back-to-top,
.scroll-top,
.back-top {
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
}
@media (max-width: 767px) {
  .footer-top {
    padding-top: 40px !important;
    padding-bottom: 36px !important;
  }
  .footer-area .widget-title,
  .footer-area .footer-widget-title {
    margin-bottom: 14px;
  }
  .copyright-area {
    text-align: center;
    padding-bottom: 76px;
  }
}
