/* === Poetic Pilot Academy | conversion.css === */

/* ---------- Root Variables ---------- */
:root {
  --primary: #111;
  --accent: #f2c94c;
  --muted: #555;
  --bg: #fffef8;
  --card-bg: #fffbea;
}

/* ---------- Global Reset ---------- */
#ppa-conversion, .section, .section-inner {
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, sans-serif;
  background: linear-gradient(180deg, #fffef8 0%, #fffdfa 100%);
  color: var(--primary);
  line-height: 1.6;
}

/* ---------- HERO SECTION ---------- */
.conv-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 80px 6%;
  background: #fffaf2;
  flex-wrap: wrap;
}

.conv-hero-inner {
  flex: 1;
  max-width: 600px;
}

.conv-hero-inner h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.conv-hero-inner .lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.conv-hero-illustration {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}

.map-wrapper {
  position: relative;
  width: 90%;
  max-width: 400px;
}

.india-map {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-right: 8px;
}

.btn.primary {
  background: var(--accent);
  color: #000;
}

.btn.primary:hover {
  background: #000;
  color: #fff;
}

.btn.ghost {
  border: 2px solid #000;
  color: #000;
  background: transparent;
}

.btn.ghost:hover {
  background: #000;
  color: #fff;
}

/* ---------- HEADINGS WITH GOLD LINE ---------- */
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 25px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: var(--accent);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ---------- SECTION LAYOUT ---------- */
.section {
  padding: 80px 6%;
  max-width: 1200px;
  margin: 0 auto;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.elig-left {
  flex: 2;
  min-width: 300px;
}

.quick-facts {
  flex: 1;
  background: var(--card-bg);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.05);
}

/* ---------- CHECKLIST ---------- */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  padding: 10px 0;
  border-bottom: 1px dashed #eee;
}

/* ---------- STEPS WITH ✈ ICON ---------- */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.steps li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-size: 1rem;
  color: #222;
}

.steps li::before {
  content: "✈";
  color: var(--accent);
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 0.15em;
  background: none !important;
  border: none !important;
}

/* ---------- CTA SECTION ---------- */
.section-cta {
  background: linear-gradient(135deg, #fffdfa, #fffbea);
  text-align: center;
  padding: 80px 0;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .conv-hero {
    flex-direction: column;
    text-align: center;
  }

  .conv-hero-illustration {
    order: -1;
  }

  .map-wrapper {
    max-width: 300px;
  }
}
