/* Admission Pop-Up CTA — Bottom-left corner */
.popup-overlay {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.popup-card {
  position: relative;
  width: 320px;
  background: #fff;
  border-radius: 20px;
  padding: 1.75rem 1.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  color: #333;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}

.popup-close:hover {
  background: rgba(0, 0, 0, 0.12);
}

.popup-close:focus-visible {
  outline: 3px solid var(--brand-gold, #9a7a3a);
  outline-offset: 2px;
}

.popup-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--brand-green, #174836), var(--teal, #1a6b5a));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.popup-title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-green, #174836);
  line-height: 1.2;
}

.popup-desc {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #555;
}

.popup-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0.75rem;
}

.popup-btn {
  width: 100%;
  justify-content: center;
  min-height: 42px;
  font-size: 0.88rem;
  border-radius: 12px;
}

.popup-contact {
  margin: 0;
  font-size: 0.78rem;
  color: #777;
}

.popup-contact a {
  color: var(--brand-green, #174836);
  font-weight: 700;
  text-decoration: none;
}

.popup-contact a:hover {
  text-decoration: underline;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .popup-overlay {
    bottom: 12px;
    left: 12px;
    right: 12px;
  }

  .popup-card {
    width: 100%;
    padding: 1.5rem 1.25rem 1.25rem;
    border-radius: 16px;
  }
}
