/* ========================================= */
/* GLOBAL */
/* ========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f3f4f6;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

/* ========================================= */
/* SECTION */
/* ========================================= */

.reports-section {
  width: 100%;

  padding: 100px 90px 120px;

  background:
    linear-gradient(
      180deg,
      #f4f5f7 0%,
      #eceef1 100%
    );

  overflow: hidden;
}

.reports-container {
  width: 100%;
  max-width: 1320px;

  margin: 0 auto;
}

/* ========================================= */
/* HEADER */
/* ========================================= */

.reports-header {
  text-align: center;

  animation: fadeUp 0.8s ease;
}

.reports-title {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.05;

  color: #10264a;

  letter-spacing: -1px;

  margin: 70px;

  font-family: Arial, sans-serif;
}

.title-line {
  width: 70px;
  height: 5px;

  background: #ec0016;

  margin: 24px auto 0;

  border-radius: 100px;
}

/* ========================================= */
/* FILTERS */
/* ========================================= */

.filters-wrapper {
  display: flex;
  flex-wrap: wrap;

  justify-content: center;
  align-items: flex-end;

  gap: 30px;

  margin-top: 80px;

  animation: fadeUp 1s ease;
}

/* ========================================= */
/* FILTER GROUP */
/* ========================================= */

.filter-group {
  display: flex;
  flex-direction: column;

  gap: 12px;
}

.filter-group label {
  font-size: 17px;
  font-weight: 600;

  color: #10264a;

  padding-left: 4px;

  font-family: Arial, sans-serif;
}

/* ========================================= */
/* SELECT */
/* ========================================= */

.filter-group select {
  width: 260px;
  height: 62px;

  border: none;
  outline: none;

  background:
    rgba(255,255,255,0.82);

  backdrop-filter: blur(10px);

  padding-left: 20px;
  padding-right: 54px;

  border-radius: 16px;

  font-size: 18px;
  font-weight: 500;

  color: #10264a;

  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.05);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;

  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2310264a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

  background-repeat: no-repeat;

  background-position: right 18px center;

  background-size: 16px;
}

.filter-group select:hover {
  transform: translateY(-2px);

  box-shadow:
    0 14px 34px rgba(0,0,0,0.08);
}

.filter-group select:focus {
  box-shadow:
    0 0 0 4px rgba(16,38,74,0.08);
}

/* ========================================= */
/* DATE */
/* ========================================= */

.date-input {
  width: 250px;
  height: 62px;

  background:
    rgba(255,255,255,0.82);

  backdrop-filter: blur(10px);

  display: flex;
  align-items: center;

  overflow: hidden;

  border-radius: 16px;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.05);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.date-input:hover {
  transform: translateY(-2px);

  box-shadow:
    0 14px 34px rgba(0,0,0,0.08);
}

.calendar-icon {
  width: 62px;
  height: 62px;

  background:
    linear-gradient(
      135deg,
      #404758 0%,
      #2d3445 100%
    );

  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;

  flex-shrink: 0;
}

.date-input input {
  flex: 1;
  height: 100%;

  border: none;
  outline: none;

  background: transparent;

  padding: 0 18px;

  font-size: 17px;
  font-weight: 500;

  color: #10264a;

  font-family: Arial, sans-serif;
}

/* ========================================= */
/* RESET BUTTON */
/* ========================================= */

.reset-btn {
  width: 360px;
  max-width: 100%;

  height: 64px;

  border: none;
  cursor: pointer;

  background:
    linear-gradient(
      135deg,
      #ff0019 0%,
      #d80014 100%
    );

  color: #ffffff;

  font-size: 21px;
  font-weight: 700;

  border-radius: 16px;

  margin: 55px auto 0;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 12px 30px rgba(236,0,22,0.28);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.3s ease;

  animation: fadeUp 1.2s ease;
}

.reset-btn:hover {
  transform:
    translateY(-4px)
    scale(1.01);

  box-shadow:
    0 16px 38px rgba(236,0,22,0.35);
}

/* ========================================= */
/* REPORTS */
/* ========================================= */

.reports-grid {
  margin-top: 90px;

  display: flex;
  flex-direction: column;

  gap: 36px;
}

/* ========================================= */
/* CARD */
/* ========================================= */

.report-card {
  background:
    rgba(255,255,255,0.85);

  backdrop-filter: blur(12px);

  border-radius: 26px;

  padding: 46px;

  box-shadow:
    0 12px 40px rgba(0,0,0,0.05);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;

  animation: fadeUp 0.9s ease;
}

.report-card:hover {
  transform:
    translateY(-6px);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.08);
}

/* ========================================= */
/* META */
/* ========================================= */

.report-meta {
  margin-bottom: 14px;
}

.report-date {
  font-size: 17px;
  font-weight: 500;

  color: #5d6475;

  font-family: Arial, sans-serif;
}

.report-category {
  font-size: 18px;
  font-weight: 700;

  color: #10264a;

  margin-bottom: 22px;

  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========================================= */
/* HEADING */
/* ========================================= */

.report-heading {
  font-size: 42px;
  line-height: 1.18;

  color: #10264a;

  margin-bottom: 28px;

  letter-spacing: -0.5px;

  font-family: Arial, sans-serif;
}

/* ========================================= */
/* DESCRIPTION */
/* ========================================= */

.report-description {
  font-size: 20px;
  line-height: 1.8;

  color: #394458;

  margin-bottom: 40px;

  font-family: Arial, sans-serif;
}

/* ========================================= */
/* BUTTON */
/* ========================================= */

.read-more-btn {
  width: 180px;
  height: 58px;

  border: 1.5px solid #10264a;

  border-radius: 14px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  color: #10264a;

  font-size: 18px;
  font-weight: 600;

  transition:
    all 0.3s ease;
}

.read-more-btn:hover {
  background: #10264a;

  color: #ffffff;

  transform: translateY(-2px);
}

/* ========================================= */
/* EMPTY */
/* ========================================= */

.empty-state {
  display: none;

  margin-top: 70px;

  text-align: center;

  font-size: 24px;
  font-weight: 700;

  color: #10264a;
}

/* ========================================= */
/* ANIMATIONS */
/* ========================================= */

@keyframes fadeUp {

  from {
    opacity: 0;
    transform:
      translateY(40px);
  }

  to {
    opacity: 1;
    transform:
      translateY(0);
  }

}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media (max-width: 1200px) {

  .reports-section {
    padding: 80px 60px 100px;
  }

  .reports-title {
    font-size: 60px;
  }

  .report-heading {
    font-size: 36px;
  }

}

@media (max-width: 992px) {

  .reports-section {
    padding: 70px 40px 90px;
  }

  .filters-wrapper {
    gap: 22px;
  }

  .filter-group {
    width: calc(50% - 11px);
  }

  .filter-group select,
  .date-input {
    width: 100%;
  }

  .report-card {
    padding: 38px;
  }

  .report-heading {
    font-size: 32px;
  }

}

@media (max-width: 768px) {

  .reports-section {
    padding: 60px 24px 80px;
  }

  .reports-title {
    font-size: 44px;
  }

  .filters-wrapper {
    flex-direction: column;

    align-items: stretch;

    gap: 22px;
  }

  .filter-group {
    width: 100%;
  }

  .filter-group select,
  .date-input {
    width: 100%;
  }

  .reset-btn {
    width: 100%;
  }

  .report-card {
    padding: 30px;

    border-radius: 22px;
  }

  .report-heading {
    font-size: 28px;
  }

  .report-description {
    font-size: 17px;
    line-height: 1.7;
  }

  .read-more-btn {
    width: 100%;
  }

}

@media (max-width: 480px) {

  .reports-section {
    padding: 50px 18px 70px;
  }

  .reports-title {
    font-size: 34px;
  }

  .title-line {
    width: 55px;
  }

  .filter-group label {
    font-size: 15px;
  }

  .filter-group select {
    height: 56px;

    border-radius: 12px;

    font-size: 16px;
  }

  .date-input {
    height: 56px;

    border-radius: 12px;
  }

  .calendar-icon {
    width: 56px;
    height: 56px;
  }

  .date-input input {
    font-size: 15px;
  }

  .reset-btn {
    height: 58px;

    border-radius: 12px;

    font-size: 18px;
  }

  .report-card {
    padding: 24px;

    border-radius: 18px;
  }

  .report-heading {
    font-size: 24px;
  }

  .report-description {
    font-size: 15px;
  }

}