/* ===== ADMISSION PAGE STYLES ===== */

/* HERO BANNER */
.adm-hero {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(to right, #c47a2a 0%, #a0341a 35%, #6b0f2b 65%, #4a0a1e 100%);
  display: flex;
  align-items: flex-end;
}

.adm-hero-chevrons {
  position: absolute;
  right: 280px;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 0;
  opacity: 0.35;
}
.adm-chevron {
  width: 0;
  height: 0;
  border-top: 110px solid transparent;
  border-bottom: 110px solid transparent;
  margin-left: -18px;
}
.ac1 { border-left: 60px solid #b8450f; }
.ac2 { border-left: 60px solid #a33010; }
.ac3 { border-left: 60px solid #8c1f08; }

.adm-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 0 28px 50px;
  flex: 1;
}
.adm-breadcrumb {
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  margin-bottom: 8px;
}
.adm-breadcrumb a { color: rgba(255,255,255,0.8); text-decoration: none; }
.adm-breadcrumb a:hover { color: #fff; }
.adm-hero-content h1 {
  color: #fff;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.adm-hero-people {
  position: absolute;
  right: 80px;
  bottom: 0;
  z-index: 2;
  height: 190px;
}
.adm-hero-people img {
  height: 100%;
  width: auto;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* INTRO TEXT */
.adm-intro {
  padding: 50px 50px 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.adm-intro-inner p {
  font-size: 14px;
  color: #444;
  line-height: 1.85;
  margin-bottom: 18px;
}
.adm-intro-inner strong { color: #1a1a1a; }

/* ADMISSION STEPS */
.adm-steps {
  padding: 10px 50px 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.adm-steps-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.adm-step {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  padding: 22px 28px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.adm-step:hover {
  box-shadow: 0 6px 24px rgba(232,93,38,0.12);
  transform: translateX(4px);
}
.adm-step-number {
  min-width: 46px;
  height: 46px;
  background: #e85d26;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.adm-step-content p {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  margin: 0;
}
.adm-step-content strong { color: #1a1a1a; }

/* ELIGIBILITY SECTION */
.adm-eligibility {
  background: #f8f5f0;
  padding: 70px 50px;
}
.adm-elig-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.adm-elig-text { flex: 1; }
.adm-elig-text h2 {
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.adm-divider {
  height: 4px;
  width: 50px;
  background: #e85d26;
  margin-bottom: 18px;
}
.adm-elig-text p {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 20px;
}
.adm-elig-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.adm-elig-list li {
  font-size: 14px;
  color: #444;
  padding: 10px 0;
  border-bottom: 1px solid #e5e0da;
  display: flex;
  align-items: center;
  gap: 10px;
}
.adm-apply-btn {
  display: inline-block;
  background: #e85d26;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 14px 28px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.adm-apply-btn:hover {
  background: #c94d1a;
  transform: translateY(-2px);
}
.adm-elig-image { flex: 1; }
.adm-elig-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

/* WHY BGC SECTION */
.adm-why {
  background: #6b0f2b;
  padding: 70px 50px;
  text-align: center;
}
.adm-why h2 {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.adm-why .adm-divider { background: #e85d26; }
.adm-why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.adm-why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 30px 16px;
  transition: background 0.2s, transform 0.2s;
}
.adm-why-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}
.adm-why-icon { font-size: 28px; margin-bottom: 10px; }
.adm-why-num {
  font-size: 26px;
  font-weight: 900;
  color: #e85d26;
  margin-bottom: 6px;
}
.adm-why-label {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

/* IMPORTANT DATES */
.adm-dates {
  padding: 70px 50px;
  background: #fff;
}
.adm-dates-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.adm-dates-inner h2 {
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.adm-dates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 10px;
}
.adm-date-card {
  border: 2px solid #e85d26;
  padding: 28px 16px;
  text-align: center;
  transition: background 0.2s;
}
.adm-date-card:hover { background: #fdf3ef; }
.adm-date-label {
  font-size: 11px;
  font-weight: 700;
  color: #e85d26;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.adm-date-value {
  font-size: 17px;
  font-weight: 800;
  color: #1a1a1a;
}

/* CTA BANNER */
.adm-cta {
  background: linear-gradient(to right, #4a0a1e, #6b0f2b, #a0341a);
  padding: 80px 50px;
  text-align: center;
}
.adm-cta-inner { max-width: 700px; margin: 0 auto; }
.adm-cta h2 {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.adm-cta p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 32px;
}
.adm-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.adm-cta-primary {
  background: #e85d26;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 15px 32px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.adm-cta-primary:hover { background: #c94d1a; transform: translateY(-2px); }
.adm-cta-secondary {
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 15px 32px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5);
  transition: border-color 0.2s, transform 0.2s;
}
.adm-cta-secondary:hover { border-color: #fff; transform: translateY(-2px); }
