/* =====================================================
   ADMISSION CTA SECTION (IMAGE CONTAIN + BOTTOM)
===================================================== */
.admission-cta-section {
  position: relative;
  width: 100%;
  min-height: 420px;

  /* Yellow base */
  background-color: #FBB718;

  /* Background image */
  background-image: url('../images/ui/footer.svg');
  background-repeat: no-repeat;
  background-size: contain;          /* ✅ FULL IMAGE, NO CROP */
  background-position: center bottom;/* ✅ IMAGE AT BOTTOM */

  overflow: hidden;
}

/* =====================================================
   CONTENT CONTAINER
===================================================== */
.admission-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;

  display: flex;
  align-items: center;
}

/* =====================================================
   CONTENT
===================================================== */
.admission-cta-content {
  max-width: 520px;
  color: #000000;
  padding-bottom:30px;
}

/* Title */
.admission-cta-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
}

/* Subtitle */
.admission-cta-subtitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* =====================================================
   CTA BUTTON (RED)
===================================================== */
.admission-cta-actions {
  margin-bottom: 16px;
}

.admission-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  background: #d32f2f;
  color: #ffffff;

  padding: 14px 28px;
  font-size: 18px;
  font-weight: 600;

  border-radius: 10px;
  text-decoration: none;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.admission-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Arrow */
.cta-arrow {
  width: 40px;
  height: 40px;
  background: #ffffff;
  color: #000;
  border-radius: 6px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Call text */
.admission-cta-call {
  font-size: 16px;
  margin-top: 10px;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 768px) {

  .admission-cta-container {
    padding: 60px 20px;
  }

  .admission-cta-title {
    font-size: 26px;
  }

  .admission-cta-content {
    max-width: 100%;
  }
}
