/* B.Tech Admission 2026 — modern layout (engineering-page style) */

.admission-page {
  background: #fff;
}

/* ---- Cinematic hero ---- */
.adm-hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 48px) 0 56px;
  overflow: hidden;
}

.adm-hero.mce-hero {
  min-height: min(100vh, 920px);
}

.adm-hero.mce-hero .mce-hero-shade {
  background:
    linear-gradient(105deg, rgba(15, 39, 68, 0.88) 0%, rgba(30, 58, 95, 0.62) 45%, rgba(45, 90, 138, 0.22) 70%, rgba(15, 39, 68, 0.06) 100%),
    linear-gradient(0deg, rgba(15, 39, 68, 0.5) 0%, transparent 42%);
}

.adm-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 400px);
  gap: 40px;
  align-items: center;
}

.adm-breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75);
}

.adm-breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}

.adm-breadcrumb a:hover {
  color: var(--gold);
}

.adm-breadcrumb i {
  font-size: 0.55rem;
  opacity: 0.5;
}

.adm-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(224, 123, 57, 0.15);
  border: 1px solid rgba(224, 123, 57, 0.35);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.adm-hero-badge i {
  font-size: 0.4rem;
  animation: admPulse 1.8s ease-in-out infinite;
}

@keyframes admPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.adm-hero-copy h1 {
  margin: 0 0 18px;
  font-family: var(--font-sans);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.adm-hero-copy h1 em {
  font-style: normal;
  color: var(--gold);
}

.adm-hero-copy > p {
  max-width: 480px;
  margin: 0 0 28px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.adm-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.adm-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.adm-hero-chips span {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.adm-enquiry {
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.adm-enquiry .mce-form-note a {
  color: var(--teal);
  font-weight: 600;
}

/* ---- Post-hero spotlight ---- */
.adm-spotlight {
  position: relative;
  z-index: 3;
  background: #fff;
}

.adm-spotlight-stats {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 36px 0;
}

.adm-spotlight-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.adm-spot-stat {
  text-align: center;
  padding: 8px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.adm-spot-stat:last-child {
  border-right: none;
}

.adm-spot-stat i {
  display: block;
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: rgba(224, 123, 57, 0.85);
}

.adm-spot-stat strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
}

.adm-spot-stat span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.adm-spotlight-body {
  padding: 64px 0 48px;
}

.adm-spotlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 48px;
  align-items: center;
}

.adm-spot-copy h2 {
  margin: 10px 0 16px;
  font-size: clamp(1.9rem, 3.5vw, 2.55rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--teal);
}

.adm-spot-copy h2 em {
  font-style: normal;
  color: var(--gold);
}

.adm-spot-copy > p {
  margin: 0 0 22px;
  max-width: 520px;
  font-size: 0.98rem;
  line-height: 1.75;
  color: #4a5c5b;
}

.adm-spot-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.adm-spot-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #3d4f4e;
}

.adm-spot-list li i {
  color: var(--gold);
  font-size: 0.95rem;
}

.adm-spot-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.adm-spot-visual {
  position: relative;
}

.adm-spot-photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(15, 39, 68, 0.16);
}

.adm-spot-photo img {
  width: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}

.adm-spot-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 39, 68, 0.14);
  border: 1px solid rgba(30, 58, 95, 0.08);
}

.adm-spot-badge i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-size: 0.95rem;
}

.adm-spot-badge strong {
  display: block;
  font-size: 0.78rem;
  color: var(--teal);
}

.adm-spot-badge span,
.adm-spot-badge a {
  font-size: 0.72rem;
  color: #6b7c7b;
}

.adm-spot-badge a {
  color: var(--teal);
  font-weight: 700;
}

.adm-spot-badge--gold {
  top: 20px;
  left: -18px;
}

.adm-spot-badge--gold i {
  background: rgba(224, 123, 57, 0.18);
  color: var(--gold);
}

.adm-spot-badge--teal {
  right: -12px;
  bottom: 24px;
  background: var(--teal);
  border-color: transparent;
}

.adm-spot-badge--teal i {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold);
}

.adm-spot-badge--teal strong,
.adm-spot-badge--teal span {
  color: rgba(255, 255, 255, 0.85);
}

.adm-spot-badge--teal strong {
  color: #fff;
}

.adm-spot-badge--teal a {
  color: var(--gold);
}

.adm-quick-strip {
  padding: 0 0 56px;
  background: #fff;
}

.adm-quick-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(30, 58, 95, 0.08);
}

.adm-quick-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 14px;
  border-radius: 12px;
  background: #f5f7f7;
  border: 1px solid rgba(30, 58, 95, 0.08);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.adm-quick-item i {
  color: var(--gold);
}

.adm-quick-item:hover {
  background: #fff;
  border-color: rgba(224, 123, 57, 0.45);
  transform: translateY(-2px);
}

.adm-program-grid--three .adm-prog {
  grid-column: span 4;
  min-height: 360px;
}

@media (max-width: 1100px) {
  .adm-program-grid--three .adm-prog {
    grid-column: span 6;
  }
}

@media (max-width: 768px) {
  .adm-program-grid--three .adm-prog {
    grid-column: span 12;
    min-height: 300px;
  }
}

/* ---- Programme grid ---- */
.adm-programs {
  padding: 72px 0 64px;
  background: #f5f6f8;
}

.adm-section-head {
  max-width: 560px;
  margin-bottom: 36px;
}

.adm-section-head h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #1a202c;
  line-height: 1.2;
  margin: 0 0 10px;
}

.adm-section-head h2 em {
  font-style: normal;
  color: var(--gold);
}

.adm-section-head p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #64748b;
}

.adm-program-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.adm-prog {
  position: relative;
  grid-column: span 4;
  min-height: 320px;
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
}

.adm-prog--featured {
  grid-column: span 6;
  min-height: 380px;
}

.adm-prog img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.adm-prog:hover img {
  transform: scale(1.06);
}

.adm-prog-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 39, 68, 0.92) 0%, rgba(30, 58, 95, 0.45) 45%, rgba(30, 58, 95, 0.1) 100%);
  transition: opacity 0.3s ease;
}

.adm-prog:hover .adm-prog-overlay {
  background: linear-gradient(0deg, rgba(15, 39, 68, 0.95) 0%, rgba(30, 58, 95, 0.55) 50%, rgba(30, 58, 95, 0.15) 100%);
}

.adm-prog-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 24px;
}

.adm-prog-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: var(--gold);
  color: var(--teal);
  font-size: 0.9rem;
}

.adm-prog-content h3 {
  margin: 0 0 6px;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.adm-prog-content > p {
  margin: 0 0 12px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

.adm-prog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.adm-prog-meta span {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--gold);
}

.adm-prog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.adm-prog:hover .adm-prog-link {
  opacity: 1;
  transform: translateY(0);
}

.adm-prog-link i {
  color: var(--gold);
}

/* ---- How to apply ---- */
.adm-apply {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, var(--teal-light) 100%);
  color: #fff;
}

.adm-apply-head {
  text-align: center;
  margin-bottom: 40px;
}

.adm-apply-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.adm-apply-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
}

.adm-apply-head h2 em {
  font-style: normal;
  color: var(--gold);
}

.adm-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 36px;
}

.adm-step {
  padding: 24px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.25s ease, transform 0.25s ease;
}

.adm-step:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.adm-step span {
  display: block;
  margin-bottom: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.adm-step h4 {
  margin: 0 0 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
}

.adm-step p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.adm-quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.adm-quick-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.adm-quick-link:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(224, 123, 57, 0.4);
  transform: translateY(-2px);
}

.adm-quick-link--primary {
  background: var(--gold);
  color: var(--teal);
  border-color: var(--gold);
}

.adm-quick-link--primary:hover {
  background: var(--gold-light);
}

.adm-quick-link i {
  font-size: 0.95rem;
}

/* ---- Coordinator ---- */
.adm-coordinator {
  padding: 72px 0;
  background: #fff;
}

.adm-coordinator-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 48px;
  align-items: center;
}

.adm-coordinator-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 480px;
  box-shadow: 0 24px 56px rgba(30, 58, 95, 0.15);
}

.adm-coordinator-visual img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
}

.adm-coordinator-visual-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  background: rgba(30, 58, 95, 0.88);
  backdrop-filter: blur(8px);
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
}

.adm-coordinator-visual-badge i {
  color: var(--gold);
}

.adm-coordinator-info h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  color: #1a202c;
  line-height: 1.2;
  margin: 0 0 24px;
}

.adm-coordinator-info h2 em {
  font-style: normal;
  color: var(--gold);
}

.adm-coordinator-card {
  padding: 28px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: linear-gradient(145deg, #f5f7fb 0%, #edf2f9 100%);
  border: 1px solid rgba(30, 58, 95, 0.08);
}

.adm-coordinator-card h3 {
  margin: 0 0 4px;
  font-size: 1.2rem;
  color: var(--teal);
}

.adm-coordinator-card .role {
  margin: 0 0 18px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gold);
}

.adm-coordinator-card ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.adm-coordinator-card li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #4a5c5b;
}

.adm-coordinator-card li i {
  width: 18px;
  margin-top: 3px;
  color: var(--gold);
  text-align: center;
}

.adm-coordinator-card a {
  color: var(--teal);
  font-weight: 600;
}

.adm-faq {
  border: 1px solid rgba(30, 58, 95, 0.1);
  border-radius: 12px;
  margin-bottom: 10px;
  background: #fff;
  overflow: hidden;
}

.adm-faq summary {
  padding: 14px 16px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--teal);
  cursor: pointer;
  list-style: none;
}

.adm-faq summary::-webkit-details-marker {
  display: none;
}

.adm-faq summary::after {
  content: '+';
  float: right;
  color: var(--gold);
  font-weight: 700;
}

.adm-faq[open] summary::after {
  content: '−';
}

.adm-faq p {
  margin: 0;
  padding: 0 16px 14px;
  font-size: 0.84rem;
  line-height: 1.65;
  color: #4a5c5b;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .adm-hero-layout {
    grid-template-columns: 1fr;
  }

  .adm-spotlight-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .adm-spot-stat:nth-child(2) {
    border-right: none;
  }

  .adm-spot-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 18px;
  }

  .adm-spot-stat:nth-last-child(-n+2) {
    border-bottom: none;
    padding-bottom: 8px;
  }

  .adm-spotlight-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .adm-spot-badge--gold {
    left: 12px;
  }

  .adm-spot-badge--teal {
    right: 12px;
  }

  .adm-quick-strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .adm-prog,
  .adm-prog--featured {
    grid-column: span 6;
    min-height: 300px;
  }

  .adm-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .adm-coordinator-grid {
    grid-template-columns: 1fr;
  }

  .adm-coordinator-visual {
    min-height: 360px;
  }

  .adm-coordinator-visual img {
    min-height: 360px;
  }
}

@media (max-width: 768px) {
  .adm-hero {
    min-height: auto;
    padding-bottom: 40px;
  }

  .adm-spotlight-stats {
    padding: 28px 0;
  }

  .adm-spotlight-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .adm-spotlight-body {
    padding: 48px 0 36px;
  }

  .adm-spot-photo img {
    min-height: 280px;
  }

  .adm-spot-badge {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    margin-top: 12px;
  }

  .adm-spot-visual {
    display: flex;
    flex-direction: column;
  }

  .adm-quick-strip-grid {
    grid-template-columns: 1fr;
  }

  .adm-spot-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .adm-prog,
  .adm-prog--featured {
    grid-column: span 12;
    min-height: 280px;
  }

  .adm-prog-link {
    opacity: 1;
    transform: none;
  }

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

  .adm-quick-links {
    flex-direction: column;
    align-items: stretch;
  }

  .adm-quick-link {
    justify-content: center;
  }
}
