/* ============================================================
   REFUND.CSS — Fee Refund Policy page styles
   Exium Classes · exium.in
   ============================================================ */

/* ── PAGE HEADER ── */
.page-header {
  padding: 9rem 4rem 5rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 45, 90, 0.5) 0%, transparent 70%);
  pointer-events: none;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--white); }

.breadcrumb span { opacity: 0.4; }
.breadcrumb span:last-child { opacity: 1; }

/* ── PAGE LABELS ── */
.page-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f07070;
  margin-bottom: 0.9rem;
  display: block;
  position: relative;
  z-index: 1;
}

.page-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.7s ease both;
}

.page-subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(200, 210, 232, 0.55);
  margin-top: 1rem;
  max-width: 48ch;
  line-height: 1.75;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.7s 0.12s ease both;
}

.page-meta {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  z-index: 1;
  animation: fadeUp 0.7s 0.2s ease both;
}

.page-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.page-meta span::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  display: block;
}

/* ── CONTENT WRAPPER ── */
.refund-content-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 5rem 4rem 8rem;
  position: relative;
  z-index: 1;
}

/* ── POLICY BLOCKS ── */
.policy-block {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.3s;
}

.policy-block:hover { border-color: rgba(200, 210, 232, 0.28); }
.policy-block.visible { opacity: 1; transform: translateY(0); }

.policy-block-head {
  padding: 1.5rem 2rem;
  background: rgba(26, 45, 90, 0.5);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.block-icon {
  width: 36px;
  height: 36px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.icon-green { background: rgba(52, 199, 89, 0.12);  border: 1px solid rgba(52, 199, 89, 0.25); }
.icon-blue  { background: rgba(74, 111, 199, 0.12); border: 1px solid rgba(74, 111, 199, 0.25); }
.icon-red   { background: rgba(204, 31, 31, 0.12);  border: 1px solid rgba(204, 31, 31, 0.25); }

.block-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
}

.block-tag {
  margin-left: auto;
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
}

.tag-green { background: rgba(52, 199, 89, 0.1);  border: 1px solid rgba(52, 199, 89, 0.3);  color: #5de87a; }
.tag-blue  { background: rgba(74, 111, 199, 0.1); border: 1px solid rgba(74, 111, 199, 0.3); color: #7a9ee0; }
.tag-red   { background: rgba(204, 31, 31, 0.1);  border: 1px solid rgba(204, 31, 31, 0.3);  color: #f07070; }

.policy-block-body { padding: 1.75rem 2rem; }

.policy-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  color: rgba(200, 210, 232, 0.75);
  line-height: 1.78;
}

.policy-item:last-child  { border-bottom: none; padding-bottom: 0; }
.policy-item:first-child { padding-top: 0; }
.policy-item strong      { color: var(--white); font-weight: 600; }
.policy-item strong.text-red { color: #f07070; }

.item-dot {
  flex-shrink: 0;
  margin-top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.dot-green { background: #34c759; }
.dot-blue  { background: #4a6fc7; }
.dot-red   { background: var(--red); }

/* ── DIVIDER ── */
.refund-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 210, 232, 0.18), transparent);
  margin-bottom: 2.5rem;
}

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: rgba(204, 31, 31, 0.06);
  border: 1px solid rgba(204, 31, 31, 0.25);
  border-radius: 6px;
  padding: 1.5rem 2rem;
  margin-top: 2.5rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.highlight-box.visible { opacity: 1; transform: translateY(0); }

.hi-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }

.highlight-box p { font-size: 0.87rem; color: rgba(200, 210, 232, 0.7); line-height: 1.75; }
.highlight-box strong { color: #f07070; font-weight: 600; }

/* ── CONTACT NUDGE ── */
.contact-nudge {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 6px;
  margin-top: 3rem;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.contact-nudge.visible { opacity: 1; transform: translateY(0); }

.nudge-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.contact-nudge p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .page-header         { padding: 7.5rem 1.5rem 3.5rem; }
  .refund-content-wrap { padding: 3rem 1.5rem 6rem; }
  .policy-block-head   { flex-wrap: wrap; gap: 0.75rem; }
  .block-tag           { margin-left: 0; }
}