/* ===== ADMISSIONS PAGE SPECIFIC STYLES ===== */

/* PAGE HEADER */
.page-header {
  background: linear-gradient(135deg, #801612 0%, #b82c25 100%);
  color: var(--white);
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
  font-family: 'Merriweather', serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
}

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

.breadcrumb span {
  margin: 0 8px;
}

/* INTRO SECTION */
.admissions-intro {
  padding: 40px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.admissions-intro .intro-text {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* SECTION TITLES */
.section-title {
  font-family: 'Merriweather', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.title-underline {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 24px;
}

.sub-title {
  font-family: 'Merriweather', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin: 32px 0 16px;
}

/* ELIGIBILITY SECTION */
.eligibility-section {
  padding: 64px 0;
  background: var(--white);
}

.eligibility-section p {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 16px;
}

.info-box {
  background: #e3f2fd;
  border-left: 4px solid var(--primary);
  padding: 20px;
  margin: 24px 0;
  border-radius: 4px;
}

.info-box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--primary-dark);
}

.info-box strong {
  font-weight: 700;
}

.info-box em {
  display: block;
  font-style: italic;
  margin-top: 4px;
}

/* DOCUMENTS SECTION */
.documents-section {
  padding: 64px 0;
  background: var(--light-bg);
}

.doc-category {
  font-family: 'Merriweather', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin: 32px 0 16px;
}

.doc-list {
  list-style: decimal;
  margin: 0 0 24px 24px;
  padding: 0;
}

.doc-list li {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 12px;
  padding-left: 8px;
}

.doc-list em {
  color: var(--muted);
  font-style: italic;
}

/* ADMISSION PROCESS */
.process-section {
  padding: 64px 0;
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.process-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.step-number {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.process-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.process-card p {
  font-size: 13px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* STREAMS OFFERED */
.streams-offered {
  padding: 64px 0;
  background: var(--light-bg);
}

.streams-offered p {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
}

.streams-list {
  list-style: none;
  margin: 24px 0;
}

.streams-list li {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}

.streams-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 18px;
}

.streams-list strong {
  color: var(--primary);
  font-weight: 700;
}

.link-orange {
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
  margin-top: 16px;
  transition: color 0.2s;
}

.link-orange:hover {
  color: var(--accent-hover);
}

/* IMPORTANT DATES */
.dates-section {
  padding: 64px 0;
  background: var(--white);
}

.dates-section p {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
}

.dates-list {
  list-style: none;
  margin: 24px 0;
}

.dates-list li {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.dates-list i {
  color: var(--accent);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.note-text {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin-top: 24px;
}

/* FEE SECTION */
.fee-section {
  padding: 64px 0;
  background: var(--light-bg);
}

.fee-section p {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
}

/* RESERVATIONS SECTION */
.reservations-section {
  padding: 64px 0;
  background: var(--white);
}

.reservations-section p {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
}

/* SCHOLARSHIPS SECTION */
.scholarships-section {
  padding: 64px 0;
  background: var(--light-bg);
}

.scholarship-list {
  list-style: none;
  margin: 24px 0;
}

.scholarship-list li {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.scholarship-list i {
  color: var(--green);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.scholarship-list strong {
  color: var(--primary);
  font-weight: 700;
}

/* CONTACT ADMISSION CELL */
.contact-admission {
  padding: 64px 0;
  background: var(--white);
}

.contact-box {
  background: #f8f9fc;
  border: 2px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 32px;
  margin: 32px 0;
}

.contact-box h3 {
  font-family: 'Merriweather', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.contact-box p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 12px;
}

.contact-box a {
  color: var(--accent);
  font-weight: 600;
  transition: color 0.2s;
}

.contact-box a:hover {
  color: var(--accent-hover);
}

/* CTA BUTTONS */
.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all .25s;
  display: inline-block;
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .page-header h1 {
    font-size: 32px;
  }
  
  .section-title {
    font-size: 26px;
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .page-header h1 {
    font-size: 26px;
  }
  
  .section-title {
    font-size: 22px;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}