/* ================= HERO ================= */
.page-hero {
  min-height: 90vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  bottom: 60px;
  left: 70px;
  color: white;
  z-index: 2;
}

.hero-overlay h1 {
  font-size: 50px;
  font-weight: 400;
}

/* ================= MAIN SECTION ================= */
.admissions-page {
  background: #f4f4f4;
  padding: 110px 60px;
}

.page-layout {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 70px;
  align-items: start;
}

/* ================= LEFT CONTENT ================= */
.page-content {
  background: white;
  padding: 60px;
}

.process-intro {
  font-size: 20px;
  color: #0d2d5c;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* ================= STEP BOXES ================= */
.process-steps {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.step-box {
  background: #f7f7f7;
  padding: 20px;
  flex: 1 1 150px;
  cursor: pointer;
  border-left: 4px solid transparent;
  transition: 0.3s;
}

.step-box:hover {
  background: #eaeaea;
}

.step-box.active {
  border-left: 4px solid #0d2d5c;
  background: #eef3fb;
}

.step-box h3 {
  margin-bottom: 8px;
  color: #0d2d5c;
}

/* ================= STEP CONTENT ================= */
.step-content {
  display: none;
}

.step-content.active {
  display: block;
}

.step-content h2 {
  font-size: 30px;
  color: #0d2d5c;
  margin-bottom: 15px;
}

.step-content p {
  color: #444;
  line-height: 1.7;
}

/* ================= BUTTONS ================= */
.process-buttons {
  margin-top: 25px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 25px;
  font-size: 14px;
}

.btn-primary {
  background: #0d2d5c;
  color: white;
  border: 1px solid #0d2d5c;
}

.btn-secondary {
  border: 1px solid #0d2d5c;
  color: #0d2d5c;
  background: white;
}

.btn-primary:hover {
  background: #081f40;
}

.btn-secondary:hover {
  background: #0d2d5c;
  color: white;
}

/* ================= SIDEBAR / IN THIS SECTION ================= */
.enquire-sidebar {
  background: #0d2d5c;
  color: white;
  padding: 40px 35px;
  position: sticky;
  top: 120px;
  width: 100%;
  min-width: 320px;
}

.sidebar-logo {
  text-align: center;
  margin-bottom: 20px;
}

.sidebar-logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.enquire-sidebar h3 {
  text-align: center;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 28px;
}

.enquire-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.enquire-sidebar li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.enquire-sidebar li a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 15px 0;
  font-size: 16px;
  line-height: 1.4;
  transition: 0.3s;
}

.enquire-sidebar li a:hover,
.enquire-sidebar li a.active {
  color: #ffd700;
  padding-left: 6px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1000px) {
  .admissions-page {
    padding: 75px 28px;
  }

  .page-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .enquire-sidebar {
    position: relative;
    top: 0;
    min-width: 0;
    width: 100%;
  }

  .page-content {
    padding: 40px 22px;
  }

  .process-steps {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-overlay {
    left: 50%;
    transform: translateX(-50%);
    width: 88%;
    text-align: center;
  }

  .hero-overlay h1 {
    font-size: 36px;
    line-height: 1.15;
  }
}

@media (max-width: 600px) {
  .page-hero {
    min-height: 60vh;
  }

  .admissions-page {
    padding: 55px 18px;
  }

  .page-content {
    padding: 32px 18px;
  }

  .process-intro {
    font-size: 16px;
  }

  .step-content h2 {
    font-size: 24px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}