/* ============================================
   MBA Landing Page & Thank You Page Styles
   ============================================ */

/* ----- background with fixed image (MBA only) ----- */
.page-wrapper {
  position: relative;
  isolation: isolate;
}

@media (min-width: 900px) {
  .page-wrapper {
    min-height: calc(100vh - 200px);
  }
}

.page-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.brochure .page-wrapper::before {
  background-color: rgba(0, 0, 0, 0.1);
}

/* ----- logo ----- */
.logo {
  margin-bottom: 2.5rem;
}

.logo-img img {
  max-height: 85px;
  width: auto;
  display: block;
}

@media (max-width: 900px) {
  .logo-img img {
    max-height: 65px;
  }
}

/* two column layout */
.grid-2cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 1rem;
}

/* left column: hero content bottom-aligned */
.hero-content {
  display: block;
  height: calc(100% - 2.5rem - 85px);
}

@media (min-width: 900px) {
  .hero-content {
    padding-bottom: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* height: 100%; */
  }
}

.hero-subtitle {
  font-size: clamp(var(--text-xl), 5vw, var(--text-3xl));
  margin-bottom: 2rem;
  font-weight: 300;
  text-transform: uppercase;
}

.button-group {
  display: flex;
  gap: var(--space-md);
  /* justify-content: center; */
  flex-wrap: wrap;
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);

  margin-bottom: 2rem;
  padding-bottom: 1px;
}

/* right column: form card */
.form-card {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.8rem 2rem;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: fit-content;
  align-self: end;
  margin-bottom: 3rem;
}

.brochure .form-card {
  background: rgba(106, 19, 44, 0.7);
}

.form-card__title {
  display: block;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.form-group {
  margin-bottom: 1rem;
}

/* MBA uses visible labels (no special styling, default text) */
.label-input100 {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgb(255, 255, 240);
  margin-bottom: 0.35rem;
}

/* MBA form inputs (slightly different padding) */
.form-card input,
.form-card select,
.form-card textarea {
  padding: 0.7rem 0.9rem;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 3px;
}

.brochure .form-card input,
.brochure .form-card select,
.brochure .form-card textarea {
  background: unset;
}

.form-card input:focus {
  box-shadow: 0 0 0 2px rgba(0, 51, 102, 0.5);
}

.brochure .form-card input:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9);
}

/* MBA submit button (white background, dark text) */
.btn-submit {
  width: 100%;
  background: white;
  color: var(--color-primary-dark);
  border: none;
  padding: 0.85rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-md);
  margin-top: 0.5rem;
  letter-spacing: 0.5px;
}

.btn-submit:hover {
  background: #eef2f7;
  transform: scale(0.98);
}

/* info cards (two cards row) */
.cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 3rem 0 3rem;
}

.info-card {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.8rem;
  backdrop-filter: blur(3px);
  transition: 0.2s;
}

.info-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: -0.3px;
}

.bullet-list {
  list-style: none;
  padding: 0;
}

.bullet-list li {
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
}

.bullet-list li i {
  width: 24px;
  color: white;
  font-size: 1.2rem;
}

/* ----- THANK YOU PAGE STYLES (MBA only) ----- */
.main-program-thank-you-page .page-wrapper::before {
  background: rgba(0, 0, 0, 0.5);
}

.thankyou-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: calc(100vh - 458px);
}

@media (min-width: 900px) {
  .thankyou-wrapper {
    min-height: calc(100vh - 420px);
  }
}

.thankyou-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}

.thankyou-card {
  margin-bottom: 50px;
}

.thankyou-title {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);

  max-width: min(100%, 700px);
  margin: auto;
  margin-bottom: 2rem;

}

.vertical-logo .logo-img img {
  max-height: 180px;
  width: auto;
  display: block;
  margin: auto;
  margin-bottom: 2rem;
}

@media (max-width: 640px) {
  .vertical-logo .logo-img img {
    max-height: 130px;
  }
}

.separator {
  width: 150px;
  height: 2px;
  background: white;
  margin: 2rem auto 2rem auto;
}

.cta__divider p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.cta__contact-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .cta__contact-links {
    flex-direction: row;
    justify-content: center;
  }
}

.cta__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(2px);
}

.cta__contact-link:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.02);
}

/* MBA responsive */
@media (max-width: 900px) {

  .grid-2cols,
  .cards-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .container {
    padding: 1.2rem 1.5rem;
  }

  .button-group {
    flex-direction: column;
    width: 100%;
  }

  .button-group .btn-primary,
  .button-group .btn-outline {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 550px) {
  .info-card h3 {
    font-size: 1.4rem;
  }

  .form-card {
    padding: 1.2rem;
  }
}

/* date picker fix */
input[type="date"] {
  color-scheme: light;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.7;
  cursor: pointer;
}