/* ====== Shared Section Spacing ====== */

.report-intro-section,
.report-impact-section,
.report-meaning-section,
.report-table-section,
.report-cta-section,
.faq-section{
  padding:60px 0;
}

.report-filter-section{
  padding:20px 0;
  background:var(--bg);
}

@media (max-width: 991px){
  .report-intro-section,
  .report-filter-section,
  .report-impact-section,
  .report-meaning-section,
  .report-table-section,
  .report-cta-section,
  .faq-section{
    padding:40px 0;
  }
}

/* ====== Intro Section ====== */

.report-intro-section{
  background:var(--bg);
}

.report-intro-section .sec-title-two{
  margin-bottom:24px;
}

.report-intro-section .sec-title-two h2{
  font-size:2rem;
  font-weight:700;
  color:var(--text);
  margin-bottom:12px;
}

.report-intro-section .sec-title-two .text{
  font-size:1rem;
  color:var(--muted);
}

.report-trust-note{
  margin-top:24px;
  padding:20px;
  background:var(--bg);
  border-radius:var(--radius-sm);
  border:1px solid var(--border-soft);
}

.report-trust-note p{
  margin:0;
  color:var(--muted);
  font-size:.9375rem;
  line-height:1.7;
}

.report-trust-note i{
  color:var(--brand-blue);
  margin-left:8px;
}

/* ====== Filter Panel ====== */

.report-panel{
  background:var(--card);
  border:1px solid var(--border-soft);
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}

.report-panel__head{
  padding:20px 24px;
  border-bottom:1px solid var(--border-soft);
  background:var(--card);
}

.report-panel__head h3{
  margin:0;
  font-size:1.4rem;
  font-weight:700;
  color:var(--text);
}

.report-panel__body{
  padding:24px;
}

.report-filter-section .form-group label{
  font-weight:600;
  color:var(--text);
  margin-bottom:8px;
  display:block;
}

.report-filter-section .form-control{
  border-radius:var(--radius-sm);
  border:1px solid var(--border);
  padding:10px 15px;
  height:48px;
  transition:all .3s ease;
  background:var(--card);
  color:var(--text);
}

.report-filter-section .form-control:focus{
  border-color:var(--brand-blue);
  box-shadow:0 0 0 3px rgba(1,146,220,.1);
  outline:none;
}

.report-filter-actions{
  display:flex;
  align-items:flex-end;
  gap:12px;
  height:100%;
}

.report-filter-actions .theme-btn{
  min-width:140px;
  text-align:center;
}

.btn-style-border{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 24px;
  border-radius:var(--radius-pill);
  border:1px solid var(--border);
  background:var(--card);
  color:var(--text);
  font-weight:600;
  transition:all .25s ease;
  text-decoration:none;
}

.btn-style-border:hover{
  border-color:var(--brand-blue);
  color:var(--brand-blue);
  text-decoration:none;
  transform:translateY(-1px);
}

@media (max-width: 991px){
  .report-panel__body{
    padding:20px 16px;
  }

  .report-filter-actions{
    align-items:stretch;
    justify-content:flex-start;
    margin-top:8px;
  }
}

@media (max-width: 575px){
  .report-filter-actions{
    flex-direction:column;
  }

  .report-filter-actions .theme-btn,
  .report-filter-actions .btn-style-border{
    width:100%;
  }
}

/* ====== Report Impact Section ====== */

.report-impact-section{
  background:var(--bg);
}

.report-impact-section .sec-title-two{
  margin-bottom:30px;
}

.report-impact-section .sec-title-two h2{
  font-size:2rem;
  font-weight:700;
  color:var(--text);
  margin-bottom:10px;
}

.report-impact-section .sec-title-two .text{
  color:var(--muted);
  font-size:1rem;
}

.report-impact-grid{
  --bs-gutter-x:24px;
  --bs-gutter-y:24px;
}

.report-impact-card{
  background:var(--card);
  border:1px solid var(--border-soft);
  border-radius:18px;
  padding:26px 20px 22px;
  height:100%;
  transition:all .25s ease;
  box-shadow:var(--shadow-soft);
}

.report-impact-card:hover{
  transform:translateY(-4px);
  border-color:var(--brand-blue);
  box-shadow:var(--shadow-hover);
}

.report-impact-icon{
  display:block;
  font-size:2rem;
  color:var(--brand-blue);
  margin-bottom:14px;
}

.report-impact-icon--danger{
  color:#dc3545;
}

.report-impact-icon--success{
  color:#198754;
}

.report-impact-icon--cyan{
  color:#0dcaf0;
}

.report-impact-number{
  font-size:2rem;
  font-weight:800;
  line-height:1.1;
  color:var(--text);
  margin:0 0 10px;
}

.report-impact-label{
  margin:0;
  color:var(--muted);
  font-size:1rem;
  line-height:1.6;
}

.report-mini-stats-grid{
  --bs-gutter-x:20px;
  --bs-gutter-y:20px;
  margin-top:24px;
}

.report-mini-stat{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  padding:18px 14px;
  transition:all .25s ease;
}

.report-mini-stat:hover{
  border-color:var(--brand-blue);
  box-shadow:var(--shadow-soft);
}

.report-mini-stat__number{
  display:block;
  font-size:1.5rem;
  font-weight:800;
  color:var(--text);
  margin-bottom:6px;
}

.report-mini-stat__label{
  display:block;
  color:var(--muted);
  font-size:.95rem;
  line-height:1.5;
}

@media (max-width: 991px){
  .report-impact-section .sec-title-two{
    margin-bottom:24px;
  }

  .report-impact-section .sec-title-two h2{
    font-size:1.6rem;
  }

  .report-impact-grid{
    --bs-gutter-x:18px;
    --bs-gutter-y:18px;
  }

  .report-impact-card{
    padding:22px 16px 18px;
  }

  .report-impact-icon{
    font-size:1.8rem;
    margin-bottom:12px;
  }

  .report-impact-number{
    font-size:1.75rem;
  }

  .report-impact-label{
    font-size:.95rem;
  }
}

@media (max-width: 767px){
  .report-mini-stats-grid{
    margin-top:18px;
  }

  .report-mini-stat{
    padding:16px 12px;
  }

  .report-mini-stat__number{
    font-size:1.35rem;
  }

  .report-mini-stat__label{
    font-size:.9rem;
  }
}

/* ====== Report Meaning Section ====== */

.report-meaning-section{
  background:var(--card);
}

.report-meaning-section .sec-title-two{
  margin-bottom:32px;
}

.report-meaning-section .sec-title-two h2{
  font-size:2rem;
  font-weight:700;
  color:var(--text);
  margin-bottom:12px;
}

.report-meaning-section .sec-title-two .text{
  font-size:1rem;
  color:var(--muted);
}

.report-meaning-section .row{
  margin-top:16px;
}

@media (min-width: 992px){
  .report-meaning-section .row{
    margin-top:24px;
  }
}

.report-meaning-section .col-lg-4,
.report-meaning-section .col-md-6,
.report-meaning-section .col-sm-12{
  margin-bottom:16px;
}

.report-meaning-section .featured-block.purpose-card{
  height:100%;
  margin-bottom:16px;
  transition:all .3s ease;
  position:relative;
}

.report-meaning-section .featured-block.purpose-card .inner-box{
  position:relative;
  background:linear-gradient(180deg, var(--card) 0%, #fbfdff 100%);
  border-radius:18px;
  padding:20px 24px 16px;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  box-shadow:var(--shadow-soft);
  border:1px solid var(--border);
  transition:all .3s ease;
  overflow:hidden;
}

.report-meaning-section .featured-block.purpose-card:hover{
  transform:translateY(-4px);
}

.report-meaning-section .featured-block.purpose-card .inner-box:hover{
  box-shadow:var(--shadow-hover);
  border-color:var(--brand-blue);
}

.report-meaning-section .featured-block.purpose-card .icon-box{
  position:absolute;
  top:16px;
  right:16px;
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--card);
  border-radius:var(--radius-sm);
  box-shadow:0 4px 12px rgba(1,146,220,.12);
  z-index:2;
}

.report-meaning-section .featured-block.purpose-card .icon-box .icon{
  font-size:1.125rem;
  color:var(--brand-blue);
}

.report-meaning-section .featured-block.purpose-card h3{
  font-size:1.25rem;
  font-weight:700;
  color:var(--text);
  margin:32px 0 8px 0;
  padding-right:48px;
  line-height:1.3;
  text-align:center;
}

.report-meaning-section .featured-block.purpose-card .text{
  color:var(--muted);
  font-size:.875rem;
  line-height:1.6;
  margin-bottom:0;
  flex-grow:1;
  text-align:center;
}

.report-meaning-note{
  margin-top:30px;
  padding:20px;
  border-radius:var(--radius-sm);
}

.report-meaning-note p{
  margin:0;
  color:var(--muted);
  font-size:.9375rem;
  line-height:1.6;
}

.report-meaning-note i{
  color:var(--brand-blue);
  margin-left:8px;
}

@media (max-width: 991px){
  .report-meaning-section .sec-title-two{
    margin-bottom:24px;
  }

  .report-meaning-section .sec-title-two h2{
    font-size:1.5rem;
  }
}

@media (max-width: 767px){
  .report-meaning-section .featured-block.purpose-card .inner-box{
    padding:18px 16px 14px;
  }

  .report-meaning-section .featured-block.purpose-card h3{
    font-size:1.1rem;
    padding-right:40px;
  }

  .report-meaning-section .featured-block.purpose-card .icon-box{
    width:42px;
    height:42px;
    top:14px;
    right:14px;
  }

  .report-meaning-section .featured-block.purpose-card .icon-box .icon{
    font-size:1rem;
  }
}

/* ====== Table Section ====== */

.report-table-card{
  background:var(--card);
  border:1px solid var(--border-soft);
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}

.report-table-wrap{
  width:100%;
  overflow-x:auto;
  overflow-y:hidden;
  -webkit-overflow-scrolling:touch;
  direction:ltr;
}

.report-table{
  width:100%;
  min-width:980px;
  margin-bottom:0;
  background:var(--card);
  border-collapse:separate;
  border-spacing:0;
  direction:rtl;
  display:table !important;
}

.report-table thead{
  display:table-header-group !important;
}

.report-table tbody{
  display:table-row-group !important;
}

.report-table tr{
  display:table-row !important;
}

.report-table th,
.report-table td{
  display:table-cell !important;
}

.report-table thead th{
  font-weight:700;
  color:var(--text);
  background:var(--bg);
  border-bottom:1px solid var(--border);
  padding:16px 14px;
  white-space:nowrap;
  text-align:center;
}

.report-table tbody td{
  vertical-align:middle;
  padding:14px;
  color:var(--text);
  border-bottom:1px solid #eef2f7;
  text-align:center;
  white-space:nowrap;
}

@media (max-width: 991px){
  .report-table{
    min-width:920px;
  }
}

@media (max-width: 767px){
  .report-table{
    min-width:860px;
  }

  .report-table thead th,
  .report-table tbody td{
    padding:12px 10px;
    font-size:.92rem;
  }
}

/* ====== Status Pills ====== */

.status-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 12px;
  border-radius:var(--radius-pill);
  font-size:.8125rem;
  font-weight:700;
  line-height:1;
  white-space:nowrap;
}

.status-pill--success{
  background:#198754;
  color:#fff;
}

.status-pill--info{
  background:#0dcaf0;
  color:#fff;
}

.status-pill--warning{
  background:#ffc107;
  color:#212529;
}

.status-pill--secondary{
  background:#6c757d;
  color:#fff;
}

.status-pill--dark{
  background:#212529;
  color:#fff;
}

.status-pill--danger{
  background:#dc3545;
  color:#fff;
}

.status-pill--muted{
  background:#6c757d;
  color:#fff;
}

/* ====== Table Details Button ====== */

.report-show-btn-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  border-radius:50%;
  background:var(--brand-blue);
  color:#fff;
  text-decoration:none;
  transition:all .25s ease;
  box-shadow:0 4px 12px rgba(1,146,220,.18);
}

.report-show-btn-icon i{
  font-size:.95rem;
}

.report-show-btn-icon:hover{
  background:var(--brand-blue-dark);
  color:#fff;
  text-decoration:none;
  transform:translateY(-1px);
}

.report-table-card__head{
  padding:24px;
  border-bottom:1px solid var(--border-soft);
  background:var(--card);
  text-align:center;
}

.report-table-card__head h2{
  margin:0 0 8px;
  font-size:1.8rem;
  font-weight:700;
  color:var(--text);
}

.report-table-card__head .text{
  color:var(--muted);
  font-size:1rem;
}

@media (max-width: 991px){
  .report-table-card__head{
    padding:18px 16px;
  }

  .report-table-card__head h2{
    font-size:1.5rem;
  }

  .report-table-wrap{
    padding-bottom:8px;
  }

  .report-table{
    min-width:920px;
  }
}

@media (max-width: 767px){
  .report-table{
    min-width:860px;
  }

  .report-table thead th,
  .report-table tbody td{
    padding:12px 10px;
    font-size:.92rem;
  }

  .report-show-btn-icon{
    width:36px;
    height:36px;
  }

  .report-show-btn-icon i{
    font-size:.85rem;
  }
}

/* ====== CTA Section ====== */

.report-cta-section{
  background:var(--card);
}

.cta-box{
  background:linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
  color:#fff;
  border-radius:var(--radius-lg);
  padding:36px 28px;
  text-align:center;
  box-shadow:0 10px 30px rgba(1,146,220,.18);
}

.cta-box__icon{
  width:72px;
  height:72px;
  margin:0 auto 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.14);
  border-radius:50%;
}

.cta-box__icon i{
  font-size:1.8rem;
  color:#fff;
}

.cta-box h2{
  font-size:2rem;
  font-weight:700;
  margin-bottom:12px;
  color:#fff;
}

.cta-box p{
  max-width:760px;
  margin:0 auto 22px;
  color:rgba(255,255,255,.92);
  line-height:1.8;
}

.cta-box__actions{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

.cta-box__actions .theme-btn{
  min-width:170px;
}

@media (max-width: 767px){
  .cta-box{
    padding:28px 20px;
  }

  .cta-box h2{
    font-size:1.5rem;
  }
}
