/* --- ROOT VARIABLES --- */
:root {
  --navy: #0f172a;
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.1);
  --white: #ffffff;
  --slate: #64748b;
  --bg-light: #f8fafc;
  --border: #e2e8f0;
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.08);
}

/* --- GLOBAL RESET --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-light);
  font-family: "Inter", sans-serif;
  color: var(--navy);
  line-height: 1.6;
}

/* --- CONTAINER LOGIC --- */
.admission-container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.admission-layout {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr; /* Professional Split */
  background: var(--white);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

/* --- LEFT SIDEBAR (Value Proposition) --- */
.benefit-sidebar {
  background: var(--navy);
  color: var(--white);
  padding: 60px;
  position: relative;
  /* Artistic background glow */
  background-image: radial-gradient(
    circle at top right,
    rgba(212, 175, 55, 0.15),
    transparent
  );
}

.exclusive-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sidebar-title {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  margin: 25px 0 15px;
  line-height: 1.1;
}

.sidebar-desc {
  color: #94a3b8;
  margin-bottom: 40px;
  font-size: 1rem;
}

/* Benefit List Styling */
.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.benefit-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.benefit-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.benefit-text strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--white);
}

.benefit-text span {
  font-size: 0.85rem;
  color: #94a3b8;
}

/* --- RIGHT SIDE (The Form Card) --- */
.admission-card {
  padding: 60px;
  background: var(--white);
}

.form-header {
  margin-bottom: 35px;
}

.form-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-header p {
  color: var(--slate);
  font-size: 1rem;
}

.gold {
  color: var(--gold);
  font-weight: 800;
}

/* Form Grid System */
.input-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.full-width {
  grid-column: span 2;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-group label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--slate);
  letter-spacing: 1px;
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 1rem;
  background: #fcfcfc;
  transition: all 0.3s ease;
  outline: none;
}

.input-group input:focus,
.input-group select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--gold-soft);
}

/* Footer & Buttons */
.form-footer {
  margin-top: 40px;
  text-align: center;
}

.btn-primary {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 20px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-primary:disabled {
  background: #cbd5e1;
  cursor: not-allowed;
  transform: none;
}

.secure-text {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* --- OVERLAYS & STATUS CARDS --- */
.admission-status-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.status-card {
  background: var(--white);
  padding: 50px;
  border-radius: 32px;
  text-align: center;
  width: 90%;
  max-width: 480px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.reg-display {
  background: var(--bg-light);
  padding: 24px;
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  margin: 25px 0;
  border: 2px dashed var(--gold);
  letter-spacing: 3px;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 992px) {
  .admission-layout {
    grid-template-columns: 1fr; /* Stacks sidebar and form */
  }

  .benefit-sidebar {
    padding: 50px 30px;
    text-align: center;
  }

  .benefit-list {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
  }

  .sidebar-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 600px) {
  .admission-container {
    margin: 20px auto;
  }

  .admission-card {
    padding: 40px 24px;
  }

  .input-grid {
    grid-template-columns: 1fr;
  }

  .full-width {
    grid-column: span 1;
  }

  .form-header h2 {
    font-size: 1.8rem;
  }
}
