/* =============================================
   NOVA VAKIL – company-registration.css
   /services/registration-services/company-registration
   ============================================= */

/* ── Company Types Grid ─────────────────────── */
.company-types-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }

.ctype-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: all var(--transition); }
.ctype-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }

.ct-header { padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.ct-header.emerald { background: var(--emerald); }
.ct-header.navy    { background: var(--navy); }
.ct-header.gold    { background: linear-gradient(135deg,#8a6c2e,#b8933e); }
.ct-header h3 { font-size: 17px; font-weight: 800; color: var(--white); }
.ct-tag { font-size: 11px; font-weight: 600; background: rgba(255,255,255,0.15); color: var(--white); padding: 3px 10px; border-radius: 20px; white-space: nowrap; }

.ct-body { padding: 22px 24px; display: flex; flex-direction: column; gap: 16px; }
.ct-body > p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.75; }

.ct-specs { display: flex; flex-direction: column; gap: 8px; background: var(--bg-light); border-radius: 10px; padding: 14px 16px; }
.ct-spec { display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.ct-spec span { color: var(--text-muted); }
.ct-spec strong { color: var(--navy); font-weight: 600; }

.ct-pros { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.ct-pros li { font-size: 13px; color: var(--text-secondary); display: flex; align-items: center; gap: 7px; }
.ct-pros li::before { content: '✓'; color: var(--emerald); font-size: 11px; font-weight: 700; flex-shrink: 0; }

/* ── Full Services ───────────────────────────── */
.full-services-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.service-cats { display: flex; flex-direction: column; gap: 20px; }
.scat { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow var(--transition); }
.scat:hover { box-shadow: var(--shadow-md); }
.scat-header { display: flex; align-items: center; gap: 12px; padding: 18px 22px; background: var(--emerald); }
.scat-icon { width: 38px; height: 38px; background: rgba(255,255,255,0.15); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: var(--white); flex-shrink: 0; }
.scat-header h3 { font-size: 16px; font-weight: 700; color: var(--white); }
.scat-items { padding: 18px 22px; display: grid; grid-template-columns: repeat(2,1fr); }
.scat-items span { font-size: 14px; color: var(--text-secondary); padding: 10px 12px 10px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; line-height: 1.5; }
.scat-items span:nth-last-child(-n+2) { border-bottom: none; }
.scat-items span::before { content: '←'; font-size: 12px; color: var(--emerald); flex-shrink: 0; }

/* ── FAQ ────────────────────────────────────── */
.faq-list .faq-item { border-bottom: 1px solid var(--border); }
.faq-list .faq-item:last-child { border-bottom: none; }
.faq-q { width: 100%; background: none; border: none; font-family: 'Vazirmatn',sans-serif; font-size: 15px; font-weight: 600; color: var(--navy); text-align: right; padding: 16px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: color 0.2s; }
.faq-q:hover { color: var(--emerald); }
.faq-icon { font-size: 22px; font-weight: 300; color: var(--text-muted); transition: transform 0.3s; flex-shrink: 0; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); color: var(--emerald); }
.faq-a { font-size: 14px; color: var(--text-secondary); line-height: 1.8; max-height: 0; overflow: hidden; transition: max-height 0.35s ease-out, padding 0.3s; }
.faq-a.open { max-height: 200px; padding-bottom: 16px; }

/* ── Sidebar ────────────────────────────────── */
.howto-card { background: rgba(31,122,99,0.05); border: 1px solid rgba(31,122,99,0.15); border-radius: var(--radius); padding: 24px; }
.howto-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.howto-steps { display: flex; flex-direction: column; gap: 12px; }
.hs { display: flex; align-items: flex-start; gap: 12px; font-size: 13.5px; color: var(--text-secondary); line-height: 1.6; }
.hs-num { width: 26px; height: 26px; background: var(--emerald); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }

@media (max-width: 1024px) {
  .company-types-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .full-services-layout { grid-template-columns: 1fr; }
  .service-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .sidebar-cta-card { grid-column: 1/-1; }
}
@media (max-width: 640px) {
  .scat-items { grid-template-columns: 1fr; }
  .scat-items span:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .scat-items span:last-child { border-bottom: none; }
  .service-sidebar { grid-template-columns: 1fr; }
}
