/* Alumni Registration Sections - v1.2.1
   Uses WordPress theme's default font (inherits from body) */

.arp-section { padding: 0; margin: 0; box-sizing: border-box; }
.arp-section *, .arp-section *::before, .arp-section *::after { box-sizing: border-box; }
.arp-container { width: 100%; max-width: 100%; margin: 0; }

.arp-head { text-align: center; margin-bottom: 56px; }
.arp-eyebrow {
  display: inline-block;
  background: #fff1f2;
  color: #c8102e;
  border: 1px solid #fecdd3;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}
.arp-eyebrow-plain { background: transparent; border: none; padding: 0; margin-bottom: 10px; }
.arp-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 14px;
  color: #0f172a;
}
.arp-subtitle { font-size: 16px; color: #64748b; margin: 0; }

/* ===== Steps ===== */
.arp-timeline {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.arp-step {
  display: grid;
  grid-template-columns: 88px 1fr 1.1fr;
  align-items: stretch;
  gap: 24px;
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(15,23,42,.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.arp-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(15,23,42,.09);
}
.arp-step.arp-alt {
  grid-template-columns: 1.1fr 1fr 88px;
}

.arp-step-badge {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: center;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e11d48, #c8102e);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 22px;
  box-shadow: 0 10px 24px rgba(200,16,46,.35);
}
.arp-step.arp-alt .arp-step-badge { grid-column: 3; }

.arp-step-text {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  text-align: left;
  padding: 8px 4px;
}
.arp-step.arp-alt .arp-step-text { grid-column: 2; text-align: right; }

.arp-step-media {
  grid-column: 3;
  grid-row: 1;
  align-self: center;
}
.arp-step.arp-alt .arp-step-media { grid-column: 1; }

.arp-step-small {
  display: inline-block;
  background: #fff1f2;
  color: #c8102e;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}
.arp-step-title {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  margin: 0 0 10px;
  color: #0f172a;
  line-height: 1.3;
}
.arp-step-desc {
  color: #475569;
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 12px;
}
.arp-step-note {
  display: inline-block;
  color: #c8102e;
  font-size: 13px;
  font-weight: 600;
}
.arp-step-media img {
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15,23,42,.10);
  display: block;
}
.arp-step-media:empty { display: none; }

/* When step has no image, let text span across */
.arp-step.arp-no-media { grid-template-columns: 88px 1fr; }
.arp-step.arp-no-media.arp-alt { grid-template-columns: 1fr 88px; }
.arp-step.arp-no-media .arp-step-media { display: none; }

/* ===== Extras grid ===== */
.arp-extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.arp-extra-card {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(15,23,42,.05);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}
.arp-extra-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(15,23,42,.1);
}
.arp-extra-media { aspect-ratio: 16 / 10; overflow: hidden; background: #f8fafc; }
.arp-extra-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.arp-extra-body { padding: 24px; }
.arp-extra-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff1f2, #ffe4e6);
  color: #c8102e;
  font-size: 22px;
  margin-bottom: 14px;
}
.arp-extra-icon::before { font-size: 24px; }
.arp-extra-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #0f172a;
}
.arp-extra-desc {
  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .arp-extras-grid { grid-template-columns: repeat(2, 1fr); }
  .arp-step,
  .arp-step.arp-alt {
    grid-template-columns: 72px 1fr;
    gap: 16px;
    padding: 20px;
  }
  .arp-step-badge,
  .arp-step.arp-alt .arp-step-badge {
    grid-column: 1;
    grid-row: 1;
    width: 60px; height: 60px;
    font-size: 18px;
    align-self: start;
  }
  .arp-step-text,
  .arp-step.arp-alt .arp-step-text {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    padding: 0;
  }
  .arp-step-media,
  .arp-step.arp-alt .arp-step-media {
    grid-column: 1 / -1;
    grid-row: 2;
  }
  .arp-step-media img { max-height: 220px; }
}
@media (max-width: 560px) {
  .arp-extras-grid { grid-template-columns: 1fr; }
  .arp-section { padding: 0; }
}

/* ===== Event Schedule (Day-wise) ===== */
.arp-days { display: grid; gap: 28px; }
.arp-days-1 { grid-template-columns: minmax(0, 620px); justify-content: center; }
.arp-days-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.arp-days-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.arp-day {
  background: #faf4e6;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(30, 18, 12, .10);
}
.arp-day-head {
  background: #201216;
  border-bottom: 5px solid #e2b44c;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px 18px;
}
.arp-day-label {
  display: block;
  color: #e2b44c;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}
.arp-day-date {
  margin: 0;
  color: #fdf8ef;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 1.25;
}
.arp-day-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e2b44c;
  font-size: 13px;
  white-space: nowrap;
  padding-bottom: 4px;
}
.arp-day-rows { list-style: none; margin: 0; padding: 6px 24px 14px; }
.arp-day-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(90, 62, 30, .28);
}
.arp-day-row:last-child { border-bottom: none; }
.arp-row-time { color: #b4232a; font-weight: 700; font-size: 16px; }
.arp-row-text { color: #2f2118; font-size: 16px; line-height: 1.5; }

@media (max-width: 900px) {
  .arp-days-2, .arp-days-3 { grid-template-columns: minmax(0, 1fr); }
  .arp-day-head { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ===== Editable registration fee table ===== */
.arp-fees-section { font-family: inherit; color: #10253b; }
.arp-fees-title { margin: 0 0 22px; color: #064f43; text-align: center; font-size: clamp(25px, 3vw, 38px); font-weight: 800; }
.arp-fees-wrap { overflow: hidden; border: 1px solid #d9e9df; border-radius: 24px; background: #fbfdfb; box-shadow: 0 12px 34px rgba(4, 76, 63, .12); }
.arp-fees-head, .arp-fee-row { display: grid; grid-template-columns: 1.15fr 1.25fr .85fr 1.6fr; align-items: center; }
.arp-fees-head { min-height: 58px; color: #fff; background: #00594d; font-size: 17px; font-weight: 800; }
.arp-fees-head span { height: 100%; display: flex; align-items: center; padding: 12px 24px; border-right: 1px solid rgba(255,255,255,.12); }
.arp-fees-head span:nth-child(3) { justify-content: center; color: #ffd43b; }
.arp-fees-head span:last-child { border-right: 0; }
.arp-fee-row { min-height: 66px; border-bottom: 1px solid #dce9e0; }
.arp-fee-row:last-child { border-bottom: 0; }
.arp-fee-row > div { padding: 10px 24px; font-size: 16px; line-height: 1.35; }
.arp-fee-category { display: flex; align-items: center; gap: 15px; font-size: 18px !important; }
.arp-fee-category strong { font-weight: 800; }
.arp-fee-icon { flex: 0 0 44px; width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,.28); }
.arp-fee-icon::before { width: auto; height: auto; font-size: 23px; }
.arp-fee-icon-green { background: #2ebd68; }
.arp-fee-icon-blue { background: #159ac4; }
.arp-fee-icon-purple { background: #7043a0; }
.arp-fee-icon-red { background: #f04f38; }
.arp-fee-icon-pink { background: #e93f71; }
.arp-fee-icon-orange { background: #e07a22; }
.arp-fee-icon-yellow { background: #c89a00; }
.arp-fee-icon-teal { background: #0f8b8d; }
.arp-fee-icon-cyan { background: #159fba; }
.arp-fee-icon-indigo { background: #4f46a5; }
.arp-fee-icon-gray { background: #64748b; }
.arp-fee-batch, .arp-fee-benefits { background: #eef7f0; border-radius: 999px; margin: 7px 12px; padding: 9px 24px !important; }
.arp-fee-batch { color: #064f36; font-weight: 700; }
.arp-fee-amount { text-align: center; }
.arp-fee-amount span { display: inline-block; min-width: 150px; padding: 8px 22px; color: #092717; background: #ffc935; border-radius: 52% 43% 48% 45%; font-size: 24px; font-weight: 900; box-shadow: inset 0 -3px 0 rgba(229,147,0,.14); }
.arp-child-policy { display: flex; align-items: center; justify-content: center; gap: 10px; max-width: 760px; margin: 14px auto 0; padding: 11px 22px; color: #f7fff9; background: #006052; border-radius: 999px; box-shadow: 0 8px 22px rgba(0,96,82,.18); }
.arp-child-policy p { margin: 0; font-size: 15px; line-height: 1.5; }
.arp-child-policy strong { color: #ffd43b; }
.arp-policy-icon { color: #ffd43b; font-size: 26px; width: 26px; height: 26px; }

@media (max-width: 800px) {
  .arp-fees-wrap { border-radius: 14px; background: transparent; border: 0; box-shadow: none; overflow: visible; }
  .arp-fees-head { display: none; }
  .arp-fees-body { display: grid; gap: 14px; }
  .arp-fee-row { grid-template-columns: 1fr; background: #fbfdfb; border: 1px solid #d9e9df; border-radius: 14px; padding: 12px; box-shadow: 0 6px 18px rgba(4,76,63,.08); }
  .arp-fee-row > div { padding: 8px 10px; }
  .arp-fee-batch, .arp-fee-benefits { margin: 3px 0; border-radius: 10px; }
  .arp-fee-batch::before, .arp-fee-benefits::before { content: attr(data-label) ': '; font-weight: 800; }
  .arp-fee-amount { text-align: left; }
  .arp-fee-amount span { min-width: 125px; text-align: center; font-size: 21px; }
  .arp-child-policy { align-items: flex-start; border-radius: 14px; }
}
