/* ============================================ */
/* Certificate Application Page Styles          */
/* ============================================ */

/* ---- Apply Section ---- */
.apply-section {
  min-height: 100vh;
  padding: 120px 0 80px;
  background: linear-gradient(160deg, var(--navy) 0%, #081428 50%, var(--navy-light) 100%);
}

.apply-header {
  text-align: center;
  margin-bottom: 3rem;
}

.apply-header h1 {
  color: var(--ivory);
  font-size: 2.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.apply-subtitle {
  color: rgba(244, 239, 228, 0.6);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

/* ---- Login Required Card ---- */
.apply-card {
  max-width: 500px;
  margin: 0 auto 4rem;
  background: rgba(11, 31, 58, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200, 169, 107, 0.2);
  border-radius: 8px;
  padding: 3rem 2.5rem;
  text-align: center;
}

.login-icon {
  margin-bottom: 1.5rem;
}

.login-icon svg {
  opacity: 0.6;
}

.apply-card h2 {
  color: var(--gold);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.apply-card p {
  color: rgba(244, 239, 228, 0.7);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.login-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 0.9rem 2rem;
  font-size: 0.85rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  color: var(--navy);
  background: var(--gold);
  border: none;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-secondary {
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(200, 169, 107, 0.4);
}

.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(200, 169, 107, 0.08);
}

/* ---- Process Section ---- */
.process-section {
  max-width: 900px;
  margin: 0 auto;
}

.process-section h2 {
  color: var(--ivory);
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 3rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(244, 239, 228, 0.03);
  border: 1px solid rgba(200, 169, 107, 0.15);
  border-radius: 6px;
  transition: all var(--transition);
}

.step:hover {
  border-color: rgba(200, 169, 107, 0.3);
  background: rgba(244, 239, 228, 0.05);
}

.step-number {
  width: 50px;
  height: 50px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.step h3 {
  color: var(--ivory);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.step p {
  color: rgba(244, 239, 228, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .apply-section {
    padding: 100px 0 60px;
  }

  .apply-header h1 {
    font-size: 2rem;
  }

  .apply-card {
    padding: 2rem 1.5rem;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .step {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 480px) {
  .apply-header h1 {
    font-size: 1.6rem;
  }

  .apply-subtitle {
    font-size: 0.95rem;
  }

  .apply-card {
    padding: 1.5rem 1rem;
  }

  .login-buttons {
    flex-direction: column;
  }

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

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