
/* Reports Filter Section */
.reports-filter {
  background: linear-gradient(135deg, rgba(53, 4, 95, 0.03), rgba(162, 108, 54, 0.03));
  padding: 3rem 0;
  margin: 2rem 0;
}

.filter-controls {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.filter-controls h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.filter-controls h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
  border-radius: 2px;
}

.filter-options {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.filter-select {
  padding: 12px 20px;
  border: 2px solid rgba(162, 108, 54, 0.2);
  border-radius: 25px;
  background: white;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 500;
  outline: none;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 150px;
}

.filter-select:focus,
.filter-select:hover {
  border-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(53, 4, 95, 0.1);
  transform: translateY(-2px);
}

/* Reports Grid */
.reports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.report-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(162, 108, 54, 0.1);
  position: relative;
}

.report-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.report-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.report-card.featured {
  border: 2px solid var(--accent-color);
  position: relative;
}

.report-card.featured::before {
  height: 6px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
}

.report-image {
  position: relative;
  overflow: hidden;
}

.report-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.report-card:hover .report-image img {
  transform: scale(1.05);
}

.report-content {
  padding: 2rem;
}

.report-badge {
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 1rem;
}

.report-category {
  padding: 0.4rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 1rem;
}

.report-category.healthcare {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.report-category.education {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
}

.report-category.economic {
  background: rgba(255, 193, 7, 0.1);
  color: #ffc107;
}

.report-category.environment {
  background: rgba(23, 162, 184, 0.1);
  color: #17a2b8;
}

.report-content h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.report-content p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.report-stats {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.stat {
  background: rgba(162, 108, 54, 0.1);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
}

.report-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--text-color);
  opacity: 0.7;
}

.report-date,
.report-location {
  font-weight: 500;
}

.report-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.report-actions .btn {
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.report-actions .btn-primary {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.report-actions .btn-primary:hover {
  background: transparent;
  color: var(--primary-color);
  transform: translateY(-2px);
}

.report-actions .btn-secondary {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.report-actions .btn-secondary:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-2px);
}

/* Annual Reports Section */
.annual-reports {
  padding: 4rem 0;
  background: white;
}

.annual-reports h2 {
  text-align: center;
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}

.annual-reports h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
  border-radius: 2px;
}

/* Program Reports Section */
.program-reports {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(53, 4, 95, 0.03), rgba(162, 108, 54, 0.03));
}

.program-reports h2 {
  text-align: center;
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}

.program-reports h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
  border-radius: 2px;
}

/* Research Publications Section */
.research-publications {
  padding: 4rem 0;
  background: white;
}

.research-publications h2 {
  text-align: center;
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}

.research-publications h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
  border-radius: 2px;
}

.publications-list {
  max-width: 900px;
  margin: 0 auto;
}

.publication-item {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  border: 1px solid rgba(162, 108, 54, 0.1);
  transition: all 0.3s ease;
  display: flex;
  gap: 2rem;
  align-items: center;
  position: relative;
}

.publication-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.publication-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.publication-content {
  flex: 1;
}

.publication-content h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.3;
}

.publication-authors {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.publication-description {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.publication-meta {
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
  color: var(--text-color);
  opacity: 0.7;
}

.publication-journal {
  font-weight: 600;
  font-style: italic;
}

.publication-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 150px;
}

.publication-actions .btn {
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

/* Newsletter Signup Section */
.newsletter-signup {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  padding: 4rem 0;
  text-align: center;
  color: white;
}

.newsletter-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.newsletter-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 15px 25px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
  border-color: white;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.newsletter-form button {
  padding: 15px 30px;
  background: white;
  color: var(--primary-color);
  border: 2px solid white;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: transparent;
  color: white;
  transform: translateY(-2px);
}
