/* =========================
   APPLY NOW PAGE
========================= */
.apply-hero {
  background: radial-gradient(1200px 600px at 10% 10%, rgba(255,255,255,0.12), transparent 60%),
              linear-gradient(135deg, #8e1b1b, #c62828);
  color: #fff;
  text-align: center;
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.apply-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 0.6rem;
}

.apply-hero p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1rem;
  opacity: 0.95;
}

.apply-section {
  padding: 4rem 2rem;
  background: #fff;
}

.apply-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
}

.apply-info {
  background: linear-gradient(180deg, #ffffff, #f9f7fb);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 12px 28px rgba(198,40,40,0.12);
  border: 1px solid rgba(198,40,40,0.08);
  position: relative;
  overflow: hidden;
}

.apply-info::before {
  content: "";
  position: absolute;
  top: 10px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: rgba(198,40,40,0.06);
  border-radius: 50%;
}

.apply-info h2 {
  color: #C62828;
  margin-bottom: 0.8rem;
}

.apply-info p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.apply-info ul {
  list-style: none;
  padding-left: 0;
}

.apply-info li {
  margin-bottom: 0.7rem;
  padding-left: 1.5rem;
  position: relative;
  color: #333;
}

.apply-info li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #C62828;
  font-weight: 700;
}

.apply-card {
  background: #fff;
  border-radius: 22px;
  padding: 2.4rem;
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
  border: 1px solid rgba(198,40,40,0.08);
}

.apply-card h2 {
  color: #C62828;
  margin-bottom: 0.4rem;
}

.apply-card .form-note {
  color: #666;
  margin-bottom: 1.5rem;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

.form-group.full {
  flex: 100%;
}

.form-group label {
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-family: 'Poppins', sans-serif;
  transition: border 0.3s, box-shadow 0.3s;
  font-size: 0.95rem;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c62828;
  box-shadow: 0 0 0 3px rgba(198,40,40,0.15);
}

.form-section-title {
  font-size: 1rem;
  color: #C62828;
  margin: 1.2rem 0 0.6rem;
  font-weight: 700;
}

.terms-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 1rem 0 1.5rem;
  font-size: 0.9rem;
  color: #555;
}

.terms-row a {
  color: #C62828;
  text-decoration: underline;
}

.btn-submit {
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #c62828, #ff4d4d);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(198,40,40,0.5);
}

@media (max-width: 992px) {
  .apply-container {
    grid-template-columns: 1fr;
  }
}
