/* Footer Bottom Bar */
.footer-bottom-bar {
  border-top: 1px solid #444;
  background: #000000;
  padding: 16px 0 0 0;
  width: 100%;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  flex-wrap: wrap;
}

.footer-bottom-left,
.footer-bottom-right {
  color: #fff;
  font-size: 1rem;
  margin: 8px 0;
}

.footer-bottom-right {
  text-align: center;
}

.footer-bottom-signed {
  color: #fff;
  font-size: 0.9rem;
  margin: 8px 0;
}

.footer-bottom-signed a:hover {
  color: rgb(241, 176, 54);
}

.footer-link {
  color: #fff;
  text-decoration: none;
  margin: 0 8px;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #e53e3e;
  text-decoration: underline;
}

/* Modal Styles */
.footer-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.footer-modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-modal-title::before {
  content: "\f023";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.3rem;
  color: #e53e3e;
  margin-right: 8px;
}

.footer-modal-content {
  background: #232b32;
  color: #fff;
  margin: 40px auto;
  padding: 40px 32px 32px 32px;
  border-radius: 16px;
  max-width: 540px;
  width: 95vw;
  position: relative;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  font-family: 'Outfit', 'Segoe UI', Arial, sans-serif;
  border: 1.5px solid #e53e3e;
  animation: modalPopIn 0.25s cubic-bezier(.68, -0.55, .27, 1.55);
}

@keyframes modalPopIn {
  0% {
    transform: scale(0.85);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.footer-modal-body {
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: left;
  max-height: 55vh;
  overflow-y: auto;
  padding-right: 4px;
}

.footer-modal-body h2,
.footer-modal-body h3 {
  color: #e53e3e;
  margin-top: 18px;
  margin-bottom: 10px;
  font-weight: 700;
}

.footer-modal-body ul {
  margin-left: 18px;
  margin-bottom: 16px;
}

.footer-modal-body li {
  margin-bottom: 6px;
}

.footer-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 2.1rem;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  transition: color 0.2s;
}

.footer-modal-close:hover {
  color: #e53e3e;
}

@media (max-width: 600px) {
  .footer-bottom-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 10px;
  }

  .footer-bottom-right {
    text-align: left;
    margin-top: 8px;
  }

  .footer-modal-content {
    padding: 18px 4px 12px 4px;
    max-width: 99vw;
  }

  .footer-modal-title {
    font-size: 1.1rem;
  }

  .footer-modal-body {
    font-size: 0.98rem;
  }
}