/* Professional Report Detail Styles */

.professional-report-detail {
  padding: 70px 0 90px;
  background-color: #f8f9fa;
  margin-bottom: 100px;
}

.report-header {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eaeaea;
}

.report-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 15px;
}

.report-meta span {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #7f8c8d;
}

.report-meta i {
  margin-right: 12px;
  color: #024f9a;
}

.report-detail_heading {
  font-size: 32px;
  font-weight: 800;
  color: #024f9a;
  margin-bottom: 15px;
  line-height: 1.3;
}

.report-category {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #2c3e50;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 10px;
  background-color: #f1f5f9;
  border-radius: 4px;
}

.professional-report-image {
  max-width: 850px;
  margin: 0 auto 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.professional-report-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.professional-report-image:hover img {
  transform: scale(1.03);
}

/* Mobile styles for report image */
@media (max-width: 767px) {
  .professional-report-image img {
    height: 300px;
  }
}

/* RTL styles for report image */
[dir='rtl'] .professional-report-image img {
  transform-origin: center;
}

[dir='rtl'] .professional-report-image:hover img {
  transform: scale(1.03);
}

[dir='rtl'] .professional-report-image {
  direction: ltr;
}

/* Report Info Cards */
.report-info-cards {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.report-info-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 12px 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  width: auto;
  min-width: 0;
  flex-grow: 0;
}

.report-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #e6f0fa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
}

.card-icon i {
  font-size: 20px;
  color: #024f9a;
}

.author-card-icon {
  background-color: #fff;
  border: 2px solid #e6f0fa;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.report-author img {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

[dir='rtl'] .report-author img {
  margin-left: 8px;
  margin-right: 0;
}

[dir='ltr'] .report-author img {
  margin-right: 8px;
  margin-left: 0;
}

.card-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2c3e50;
}

.card-content p {
  font-size: 14px;
  color: #7f8c8d;
  margin: 0;
}

/* Section Titles */
.section-title {
  font-size: 24px;
  font-weight: 700;
  color: #024f9a;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.section-title i {
  margin-right: 15px;
  font-size: 20px;
}

/* Key Findings */
.key-findings-container {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.finding-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}

.finding-item:last-child {
  border-bottom: none;
}

.finding-number {
  font-size: 24px;
  font-weight: 700;
  color: #024f9a;
  margin-right: 20px;
  min-width: 40px;
  text-align: center;
}

.finding-text {
  font-size: 15px;
  color: #555;
  flex: 1;
}

/* Methodology & Results */
.methodology-container,
.results-container {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.methodology-content,
.results-content {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.methodology-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.highlight-item {
  display: flex;
  align-items: center;
  background-color: #f1f5f9;
  border-radius: 8px;
  padding: 10px 15px;
}

.highlight-item i {
  font-size: 18px;
  color: #024f9a;
  margin-right: 12px;
}

.highlight-item span {
  font-size: 14px;
  font-weight: 600;
  color: #2c3e50;
}

.impact-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.indicator {
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.indicator-value {
  font-size: 32px;
  font-weight: 800;
  color: #024f9a;
  margin-bottom: 5px;
}

.indicator-label {
  font-size: 14px;
  color: #7f8c8d;
}

/* Report Navigation */
.report-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  margin-bottom: 80px;
  gap: 30px;
}

.nav-link {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  max-width: 48%;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
}

.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #024f9a 0%, #0575e6 100%);
  color: #ffffff;
  font-size: 18px;
  box-shadow: 0 5px 15px rgba(2, 79, 154, 0.3);
  transition: all 0.3s ease;
}

.nav-link.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.nav-link.disabled .nav-icon {
  background: linear-gradient(135deg, #cccccc 0%, #999999 100%);
  box-shadow: none;
}

.nav-link.disabled .nav-label {
  color: #999999;
}

.nav-link:hover .nav-icon {
  transform: rotate(360deg);
  box-shadow: 0 8px 20px rgba(2, 79, 154, 0.4);
}

.prev-report .nav-icon {
  margin-right: 20px;
}

.next-report .nav-icon {
  margin-left: 20px;
}

.nav-content {
  display: flex;
  flex-direction: column;
}

.nav-label {
  font-size: 13px;
  color: #7f8c8d;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 5px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover .nav-label {
  color: #024f9a;
}

.nav-title {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.nav-link:hover .nav-title {
  color: #024f9a;
}

@media (max-width: 992px) {
  .report-detail_heading {
    font-size: 28px;
  }

  .report-navigation {
    flex-direction: row;
    gap: 10px;
  }

  .nav-link {
    max-width: 50%;
    flex: 1;
    padding: 15px 10px;
  }

  .nav-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .prev-report .nav-icon {
    margin-right: 10px;
  }

  .next-report .nav-icon {
    margin-left: 10px;
  }

  .nav-label {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .professional-report-detail {
    padding: 50px 0 70px;
  }

  .report-meta {
    flex-direction: column;
    gap: 10px;
  }

  .report-info-cards {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .methodology-results-section {
    flex-direction: column;
  }
}

.report-content-wrapper {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #333;
  margin-top: 20px;
}

.report-para {
  margin-bottom: 25px;
  text-align: justify;
}

.report-subheading {
  font-size: 1.5rem;
  color: #024f9a;
  font-weight: 700;
  margin: 45px 0 20px;
  padding-bottom: 15px;
  position: relative;
  display: block;
  border-bottom: 1px solid #eee;
}

.report-subheading::after {
  content: '';
  position: absolute;
  bottom: -1px;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #024f9a, #f39c12);
  border-radius: 2px;
}

[dir='rtl'] .report-subheading::after {
  right: 0;
}

[dir='ltr'] .report-subheading::after {
  left: 0;
}

.report-list {
  list-style: none;
  margin: 30px 0;
  padding: 0;
  background: #fdfdfd;
  padding: 25px;
  border-radius: 12px;
  border-right: 5px solid #024f9a;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

[dir='ltr'] .report-list {
  border-right: none;
  border-left: 5px solid #024f9a;
}

.report-list li {
  position: relative;
  margin-bottom: 18px;
  padding-right: 35px;
  font-weight: 500;
  color: #444;
  transition: all 0.2s ease;
}

[dir='ltr'] .report-list li {
  padding-right: 0;
  padding-left: 35px;
}

.report-list li::before {
  content: '\f0da';
  font-family: 'Font Awesome 6 Free', 'FontAwesome';
  font-weight: 900;
  position: absolute;
  top: 2px;
  font-size: 14px;
  color: #024f9a;
}

[dir='rtl'] .report-list li::before {
  content: '\f0d9';
  right: 10px;
}

[dir='ltr'] .report-list li::before {
  left: 10px;
}

.report-list li:last-child {
  margin-bottom: 0;
}

.report-list li:hover {
  color: #024f9a;
  transform: translateX(-8px);
}

[dir='ltr'] .report-list li:hover {
  transform: translateX(8px);
}
