/* ============================================
   FOOTER.CSS - Single-row legal bar
   ============================================ */

.site-footer-bar {
  background: #3d2c5c;
  color: #fff;
  padding: 14px 0;
  font-family: inherit;
}

.site-footer-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
}

.site-footer-links a {
  font-size: 0.875rem;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}

.site-footer-links a:hover {
  opacity: 0.85;
  text-decoration: underline;
}

.site-footer-copy {
  margin: 0;
  font-size: 0.875rem;
  color: #fff;
}

@media (max-width: 576px) {
  .site-footer-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

/* Legacy multi-column footer (kept minimal if any page still references) */
footer.footer-section {
  padding: 0;
  background: transparent;
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  padding: 10px 16px;
  box-shadow: 0 -3px 14px rgba(0,0,0,0.12);
  gap: 10px;
}
@media (max-width: 767px) {
  .sticky-mobile-cta { display: flex; }
  .sticky-mobile-cta button {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
  }
  .sticky-mobile-cta .btn-apply {
    background: linear-gradient(135deg, #FF6D12, #f74000);
    color: #fff;
  }
  .sticky-mobile-cta .btn-syllabus {
    background: transparent;
    border: 2px solid #FF6D12 !important;
    color: #FF6D12;
  }
}
