/* Reports Coming Soon Styles */
.reports-coming-soon {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

.reports-container {
  background: linear-gradient(135deg, rgba(255,255,255,0.85) 0%, rgba(240,240,240,0.95) 100%);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
}

.reports-title {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 2.5em;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  position: relative;
}

.reports-title span {
  color: #00d084;
}

.reports-description {
  font-family: "Encode Sans", Helvetica, Arial, sans-serif;
  font-size: 1.2em;
  color: #555;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.report-countdown-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0;
  gap: 15px;
}

.report-countdown-box {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 15px;
  min-width: 110px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.report-countdown-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.report-countdown-number {
  font-size: 2.2em;
  font-weight: 700;
  color: #00d084;
  margin-bottom: 5px;
}

.report-countdown-label {
  font-size: 0.9em;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.report-form {
  max-width: 600px;
  margin: 30px auto;
}

.report-form-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.report-form-input {
  flex: 1;
  min-width: 250px;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-family: "Encode Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.report-form-input:focus {
  outline: none;
  border-color: #00d084;
}

.report-form-button {
  padding: 12px 25px;
  background-color: #00d084;
  color: white;
  border: none;
  border-radius: 5px;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.report-form-button:hover {
  background-color: #00b876;
  transform: translateY(-2px);
}

.report-icons {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 30px 0;
}

.report-icon {
  width: 100px;
  height: 100px;
  margin: 10px;
  animation: pulse 2s ease-in-out infinite;
}

.report-icon:nth-child(2) {
  animation-delay: 0.5s;
}

.report-icon:nth-child(3) {
  animation-delay: 1s;
}

.report-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.report-success-message {
  display: none;
  background-color: rgba(0, 208, 132, 0.2);
  color: #00834d;
  padding: 15px;
  border-radius: 5px;
  margin-top: 20px;
  animation: fadeIn 0.5s ease-in-out;
}

.report-decorative {
  position: absolute;
  opacity: 0.1;
  z-index: 0;
}

.report-decorative-1 {
  top: -20px;
  left: -20px;
  font-size: 120px;
  transform: rotate(-15deg);
}

.report-decorative-2 {
  bottom: -20px;
  right: -20px;
  font-size: 120px;
  transform: rotate(15deg);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive styles */
@media only screen and (max-width: 768px) {
  .reports-title {
    font-size: 2em;
  }
  
  .report-countdown-box {
    min-width: 90px;
  }
  
  .report-countdown-number {
    font-size: 1.8em;
  }
  
  .report-icon {
    width: 80px;
    height: 80px;
  }
}

@media only screen and (max-width: 480px) {
  .reports-title {
    font-size: 1.8em;
  }
  
  .reports-description {
    font-size: 1em;
  }
  
  .report-countdown-box {
    min-width: 70px;
    padding: 12px 8px;
  }
  
  .report-countdown-number {
    font-size: 1.5em;
  }
}
