.footer {
    background: #111;
    color: #ccc;
    padding: 40px 50px 25px;
    width: 100%;
    overflow-x: hidden;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-section h3,
.footer-section h4 {
    color: #ff7b00;
    margin-bottom: 10px;
}

.footer-section p,
.footer-section ul {
    font-size: 14px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin: 4px 0;
}

.footer-section a {
    text-decoration: none;
    color: #bbb;
    transition: 0.3s;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 25px;
    text-align: center;
    font-size: 13px;
    border-top: 1px solid #333;
    padding-top: 10px;
}

@media (max-width: 900px) {
    .footer {
        padding: 30px 20px;
    }

    .footer-container {
        flex-direction: column;
    }
}
/* =========================================================
   TERMS MODAL
========================================================= */

.terms-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 99999;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.terms-content {
  background: #fff;
  width: 95%;
  max-width: 700px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 30px;
  border-radius: 14px;
  position: relative;
  box-shadow: 0 10px 60px rgba(0,0,0,0.25);
  animation: fadeUp .35s ease;
}

/* Fade animation */
@keyframes fadeUp {
  0% {opacity:0; transform:translateY(20px);}
  100% {opacity:1; transform:translateY(0);}
}

/* CLOSE BUTTON */
.terms-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 26px;
  cursor: pointer;
  color: #222;
  font-weight: bold;
  transition: .25s;
}

.terms-close:hover {
  color: #ff6600;
}

/* TITLE */
.terms-content h2 {
  font-size: 26px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #111;
}

/* TEXT */
.terms-content p {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
}

/* Footer Button */
.terms-btn {
  margin-left: 15px;
  border: none;
  background: transparent;
  color: white;
  font-size: 14px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: underline;
}

.terms-btn:hover {
  opacity: 0.8;
}
.terms-text {
  font-size: 14px;
  line-height: 1.75;
  color: #444;
  background: rgba(255,255,255,0.75);
  padding: 18px 20px;
  border-radius: 10px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.07);
  backdrop-filter: blur(6px);
}

.terms-text strong {
  color: #ff7b00;
  font-weight: 700;
}

.terms-list {
  margin-top: 6px;
  margin-left: 20px;
  list-style: disc;
}

.terms-list li {
  margin-bottom: 4px;
}
.footer-email {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.25s ease;
}

.footer-email:hover {
  color: #ff9b2f;
  text-decoration: underline;
}

