/* =============================================
   NOVA VAKIL – family-law.css
   ============================================= */

/* ── Sensitive Note ─────────────────────────── */
.sensitive-note {
    background: rgba(198,167,92,0.08);
    border-bottom: 1px solid rgba(198,167,92,0.2);
    padding: 14px 0;
  }
  .sn-inner {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .sn-icon {
    width: 34px; height: 34px;
    background: rgba(198,167,92,0.12);
    color: #8a6c2e;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .sn-inner p {
    font-size: 13.5px;
    color: #6b5320;
    line-height: 1.5;
  }
  
  /* ── Scenarios ──────────────────────────────── */
  .scenarios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .scenario-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all var(--transition);
    position: relative;
  }
  .scenario-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
  }
  .sc-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 11px;
    font-weight: 700;
    background: var(--bg-light);
    color: var(--text-muted);
    padding: 3px 10px;
    border-radius: 20px;
  }
  .sc-icon-wrap {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
  }
  .sc-icon-wrap.navy    { background: var(--navy); }
  .sc-icon-wrap.emerald { background: var(--emerald); }
  .sc-icon-wrap.gold    { background: linear-gradient(135deg, #8a6c2e, #b8933e); }
  
  .scenario-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); line-height: 1.35; }
  .scenario-card > p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.75; flex: 1; }
  
  .sc-what-we-do {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 14px 16px;
  }
  .sc-we-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--emerald);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
  }
  .sc-what-we-do ul { list-style: none; display: flex; flex-direction: column; gap: 5px; }
  .sc-what-we-do li {
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 7px;
    line-height: 1.5;
  }
  .sc-what-we-do li::before {
    content: '✓';
    color: var(--emerald);
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
  }
  
  /* ── 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: linear-gradient(135deg, #8a6c2e, #b8933e);
  }
  .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: #8a6c2e; flex-shrink: 0; }
  
  /* ── Sidebar ────────────────────────────────── */
  .howto-card {
    background: rgba(198,167,92,0.06);
    border: 1px solid rgba(198,167,92,0.2);
    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: linear-gradient(135deg, #8a6c2e, #b8933e);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
  }
  
  /* ── FAQ ────────────────────────────────────── */
  .faq-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 56px;
    align-items: start;
  }
  .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: 18px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: color 0.2s;
  }
  .faq-q:hover { color: #8a6c2e; }
  .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: #8a6c2e; }
  .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: 300px; padding-bottom: 18px; }
  
  /* ── Responsive ─────────────────────────────── */
  @media (max-width: 1024px) {
    .scenarios-grid { grid-template-columns: repeat(2, 1fr); }
    .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; }
    .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  }
  @media (max-width: 640px) {
    .scenarios-grid { grid-template-columns: 1fr; }
    .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; }
    .sn-inner p { font-size: 13px; }
  }
  