/* =============================================
   NOVA VAKIL – immigration-index.css
   /services/immigration-services (سرشاخه)
   ============================================= */

/* ── Intro Strip ────────────────────────────── */
.intro-strip { background: var(--emerald); padding: 28px 0; }
.intro-strip-inner { display: flex; align-items: center; justify-content: center; }
.is-stat { text-align: center; padding: 0 40px; }
.is-num { display: block; font-size: 30px; font-weight: 800; color: var(--white); line-height: 1.1; }
.is-lbl { display: block; font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 3px; }
.is-divider { width: 1px; height: 44px; background: rgba(255,255,255,0.2); flex-shrink: 0; }

/* ── Advocacy Cards ─────────────────────────── */
.advocacy-cards { display: flex; flex-direction: column; gap: 20px; }
.adv-card {
  display: flex; background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden; text-decoration: none;
  transition: all var(--transition);
}
.adv-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: transparent; }
.adv-card-aside {
  width: 100px; flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 28px 0;
}
.adv-card-aside.emerald  { background: var(--emerald); }
.adv-card-aside.navy     { background: var(--navy); }
.adv-card-aside.gold     { background: linear-gradient(160deg,#8a6c2e,#b8933e); }
.adv-card-aside.navy-alt { background: linear-gradient(160deg,#0d3060,#1a4a8a); }
.adv-num { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.3); }
.adv-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); }
.adv-card-body { flex: 1; padding: 28px 32px; display: flex; flex-direction: column; gap: 16px; }
.adv-top h3 { font-size: 21px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.adv-desc { font-size: 14.5px; color: var(--text-secondary); line-height: 1.75; }
.adv-services { display: flex; flex-wrap: wrap; gap: 7px; }
.adv-services span { background: var(--bg-light); color: var(--text-secondary); font-size: 12.5px; padding: 4px 12px; border-radius: 6px; transition: all 0.2s; }
.adv-card:hover .adv-services span { background: rgba(31,122,99,0.07); color: var(--navy); }
.adv-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 8px; border-top: 1px solid var(--border); }
.adv-cta { font-size: 14px; font-weight: 700; color: var(--emerald); transition: transform 0.25s; }
.adv-card:hover .adv-cta { transform: translateX(-4px); }
.adv-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(--emerald); color: var(--white); 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(31,122,99,0.08); color: var(--emerald); 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) {
  .adv-card { flex-direction: column; }
  .adv-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) {
  .intro-strip-inner { flex-wrap: wrap; gap: 20px; }
  .is-stat { min-width: 120px; }
  .is-divider { display: none; }
}
