/* =============================================
   NOVA VAKIL – registration-index.css
   /services/registration-services (سرشاخه)
   ============================================= */

/* ── Strip ──────────────────────────────────── */
.reg-strip { background: var(--navy); padding: 22px 0; }
.rs-inner { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.rs-item { display: flex; align-items: center; gap: 10px; padding: 0 32px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.75); }
.rs-item svg { color: var(--gold); flex-shrink: 0; }
.rs-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.12); flex-shrink: 0; }

/* ── Reg Cards ──────────────────────────────── */
.reg-cards { display: flex; flex-direction: column; gap: 20px; }
.reg-card {
  display: flex; background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden; text-decoration: none;
  transition: all var(--transition);
}
.reg-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: transparent; }
.reg-card-aside {
  width: 100px; flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 28px 0;
}
.reg-card-aside.emerald  { background: var(--emerald); }
.reg-card-aside.navy     { background: var(--navy); }
.reg-card-aside.gold     { background: linear-gradient(160deg,#8a6c2e,#b8933e); }
.reg-card-aside.navy-alt { background: linear-gradient(160deg,#0d3060,#1a4a8a); }
.rc-num { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.3); }
.rc-icon { width: 52px; height: 52px; background: rgba(255,255,255,0.12); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--white); }
.reg-card-body { flex: 1; padding: 28px 32px; display: flex; flex-direction: column; gap: 14px; }
.rc-top h3 { font-size: 21px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.rc-top p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.75; }
.rc-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.rc-tags span { background: var(--bg-light); color: var(--text-secondary); font-size: 12.5px; padding: 4px 12px; border-radius: 6px; transition: all 0.2s; }
.reg-card:hover .rc-tags span { background: rgba(31,122,99,0.07); color: var(--navy); }
.rc-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 8px; border-top: 1px solid var(--border); }
.rc-cta { font-size: 14px; font-weight: 700; color: var(--emerald); transition: transform 0.25s; }
.reg-card:hover .rc-cta { transform: translateX(-4px); }
.rc-badge { font-size: 11px; font-weight: 700; background: rgba(31,122,99,0.1); color: var(--emerald); padding: 3px 10px; border-radius: 20px; }

/* ── How Steps ──────────────────────────────── */
.how-steps { display: flex; align-items: flex-start; }
.hw-step-card { flex: 1; background: var(--white); border-radius: var(--radius); padding: 28px 22px; text-align: center; box-shadow: var(--shadow-sm); position: relative; }
.hwsc-num { position: absolute; top: -14px; right: 50%; transform: translateX(50%); width: 28px; height: 28px; background: var(--navy); color: var(--gold); font-size: 13px; font-weight: 800; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.hwsc-icon { width: 52px; height: 52px; background: rgba(11,31,58,0.06); color: var(--navy); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 16px auto 14px; }
.hw-step-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.hw-step-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.7; }
.hw-connector { flex-shrink: 0; width: 36px; height: 2px; background: linear-gradient(to left, var(--emerald), var(--navy)); opacity: 0.2; margin-top: 60px; }

@media (max-width: 1024px) {
  .reg-card { flex-direction: column; }
  .reg-card-aside { width: 100%; flex-direction: row; justify-content: flex-start; padding: 18px 24px; gap: 14px; }
  .how-steps { flex-direction: column; align-items: stretch; gap: 24px; }
  .hw-connector { display: none; }
}
@media (max-width: 640px) {
  .rs-inner { gap: 16px; }
  .rs-item { padding: 0 16px; }
  .rs-divider { display: none; }
}
