/* =========================================
   LISTS SYSTEM (QUWMA)
   Maqsad: ro'yxatlar sahifalar bo'yicha aralashmasin.
   ========================================= */

/* -----------------------------------------
   1) BASE: Default (global) — juda yengil
   (Home/Bootstrap bilan urishmasin)
   ----------------------------------------- */
   .section-list {
    margin: 1rem 0 0;
    padding-left: 1.25rem; /* default disc saqlanadi */
  }
  
  .section-list li {
    margin-bottom: 0.45rem;
    line-height: 1.65;
  }
  
  /* -----------------------------------------
     2) HOME: (index.html) — chiroyli “arrow” list
     Sizdagi eski about-preview uslubiga yaqin.
     ----------------------------------------- */
  .page-home .section-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    gap: 0.75rem;
    margin-top: 1.1rem;
  }
  
  .page-home .section-list li {
    position: relative;
    padding-left: 1.4rem;
    margin: 0;
    color: #374151;
    line-height: 1.7;
  }
  
  .page-home .section-list li::before {
    content: "▶";
    position: absolute;
    left: 0;
    top: 0.25rem;
    font-size: 0.8rem;
    color: var(--color-primary, #1E88E5);
  }
  
  /* -----------------------------------------
     3) ABOUT: (about.html) — modern dot list
     ----------------------------------------- */
  /* ABOUT: (about.html) — modern dot list */
  .page-about .section-list {
    list-style: none;
    padding-left: 0;
    gap: 0.75rem;
    margin-top: 1.1rem;
  }

  /* Oddiy ro‘yxatlar grid bo‘lib qolsin */
  .page-about .section-list{
    display: grid;
  }
  
  /* Bootstrap collapse yopiq bo‘lganda display:none qiladi — biz tegmaymiz */
  .page-about .section-list.collapse{
    display: none;
  }
  
  .page-about .section-list.collapse.show{
    display: grid;
  }
  
  .page-about .section-list li {
    position: relative;
    padding-left: 1.85rem;
    margin: 0;
    line-height: 1.7;
    color: #334155;
  }
  
  /* Default bullet (dot) */
  .page-about .section-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.95em;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--color-primary, #1E88E5);
    box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.12);
    transform: translateY(-50%);
  }
  
  /* ABOUT – Timeline (faqat history bo‘limi) */
  .page-about #about-history .section-list li {
    padding-left: 2.25rem;
  }
  
  .page-about #about-history .section-list li::before {
    width: 12px;
    height: 12px;
    box-shadow: 0 0 0 5px rgba(30, 136, 229, 0.12);
  }
  
  .page-about #about-history .section-list li::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1.25em;
    bottom: -0.75rem;
    width: 2px;
    background: rgba(15, 23, 42, 0.10);
  }
  
  .page-about #about-history .section-list li:last-child::after {
    display: none;
  }
  
  /* ABOUT – Check list (faqat operations bo‘limi: qayerda/qanday) */
  .page-about #about-operations .section-list li {
    padding-left: 2.1rem;
  }
  
  .page-about #about-operations .section-list li::before {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: rgba(30, 136, 229, 0.10);
    box-shadow: none;
    border: 1px solid rgba(30, 136, 229, 0.25);
  }
  
  .page-about #about-operations .section-list li::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 0.95em;
    width: 6px;
    height: 10px;
    border-right: 2px solid var(--color-primary, #1E88E5);
    border-bottom: 2px solid var(--color-primary, #1E88E5);
    transform: translateY(-55%) rotate(45deg);
  }
  
  /* ABOUT – Audience: biroz ixchamroq (o‘qilishi yengil bo‘lsin) */
  .page-about #about-audience .section-list {
    gap: 0.6rem;
  }
  
  .page-about #about-audience .section-list li {
    color: #475569;
  }
  
  /* -----------------------------------------
     4) SERVICES: (services.html) — check list
     ----------------------------------------- */
  .page-services .section-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    gap: 0.7rem;
    margin-top: 1rem;
  }
  
  .page-services .section-list li {
    position: relative;
    padding-left: 2.1rem;
    margin: 0;
    line-height: 1.7;
    color: #334155;
  }
  
  .page-services .section-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.95em;
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: rgba(30, 136, 229, 0.10);
    border: 1px solid rgba(30, 136, 229, 0.25);
    transform: translateY(-50%);
  }
  
  .page-services .section-list li::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 0.95em;
    width: 6px;
    height: 10px;
    border-right: 2px solid var(--color-primary, #1E88E5);
    border-bottom: 2px solid var(--color-primary, #1E88E5);
    transform: translateY(-55%) rotate(45deg);
  }
  
  /* -----------------------------------------
     5) TEAM points (about team card ichidagi ro'yxat)
     (Agar xohlasangiz shu faylga jamlab qo'yamiz)
     ----------------------------------------- */
  .team-points {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
    color: #334155;
  }
  
  .team-points li {
    line-height: 1.55;
  }
  
  /* -----------------------------------------
     6) CONTACT info list (contact.html)
     ----------------------------------------- */
  .page-contact .contact-info-list li {
    margin-bottom: 0.5rem;
    line-height: 1.65;
  }
  