/* ============================================================
   APPLY.CSS — Job Application Page Styles
   Uses contact form classes for consistency
   ============================================================ */

/* ── Apply Hero Section ────────────────────────────────────── */
.apply-hero-section {
  position: relative;
  background: var(--color-primary);
  padding: 140px 0 80px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.apply-hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,51,74,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,51,74,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.apply-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,51,74,0.18) 0%, transparent 70%);
  top: -100px;
  left: -150px;
}

.apply-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,51,74,0.10) 0%, transparent 70%);
  bottom: -80px;
  right: -100px;
}

.apply-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── Left: Hero Content ────────────────────────────────────── */
.apply-hero-left {
  color: var(--color-white);
}

.apply-hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 20px;
}

.apply-heading-accent {
  color: var(--color-accent);
}

.apply-hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

/* ── 3-Step Process ─────────────────────────────────────────── */
.apply-steps {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  position: relative;
}

.apply-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}

.apply-step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(232,51,74,0.15);
}

.apply-step-circle--last {
  background: rgba(232,51,74,0.3);
  border: 2px dashed var(--color-accent);
  color: var(--color-accent);
}

.apply-step-connector {
  position: absolute;
  top: 22px;
  left: 50%;
  width: 100%;
  height: 2px;
  border-top: 2px dashed rgba(232,51,74,0.4);
  z-index: 0;
}

.apply-step-body {
  text-align: center;
  margin-top: 14px;
  padding: 0 8px;
}

.apply-step-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 6px;
}

.apply-step-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin: 0;
}

/* ── Feature Highlight Cards ────────────────────────────────── */
.apply-features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.apply-feature-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  flex: 1;
  min-width: 200px;
}

.apply-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(232,51,74,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 16px;
  flex-shrink: 0;
}

.apply-feature-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-white);
  margin: 0;
}

/* ── Right: Application Form Card ──────────────────────────── */
.apply-form-wrap {
  display: flex;
  justify-content: flex-end;
}

.apply-form-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
  width: 100%;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .apply-hero-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .apply-form-wrap {
    justify-content: center;
  }

  .apply-form-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .apply-hero-section {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .apply-hero-heading {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
  }

  .apply-hero-desc {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .apply-features {
    gap: 8px;
    margin-bottom: 32px;
  }

  .apply-feature-card {
    gap: 8px;
    padding: 10px 12px;
  }

  .apply-feature-icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .apply-feature-label {
    font-size: 12px;
  }

  .apply-form-card {
    padding: 24px;
  }
}

@media (max-width: 576px) {
  .apply-hero-section {
    padding: 80px 0 40px;
  }

  .apply-hero-heading {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    margin-bottom: 16px;
  }

  .apply-hero-desc {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .apply-features {
    gap: 8px;
    margin-bottom: 24px;
  }

  .apply-form-card {
    padding: 20px;
  }
}
