/* style/resources-red88-industry-trends.css */
.page-resources-red88-industry-trends {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #36454F; /* Auxiliary color for general text */
  background-color: #f8f8f8;
}

.page-resources-red88-industry-trends__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-red88-industry-trends__hero-section {
  background: linear-gradient(135deg, #DC143C, #36454F); /* Crimson to Charcoal Gray */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-red88-industry-trends__hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 70%);
  animation: page-resources-red88-industry-trends-ripple 15s infinite linear;
}

@keyframes page-resources-red88-industry-trends-ripple {
  0% { transform: scale(0.5) rotate(0deg); opacity: 0.8; }
  50% { transform: scale(1.2) rotate(180deg); opacity: 0.5; }
  100% { transform: scale(0.5) rotate(360deg); opacity: 0.8; }
}

.page-resources-red88-industry-trends__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.page-resources-red88-industry-trends__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.page-resources-red88-industry-trends__cta-button {
  display: inline-block;
  background-color: #DC143C; /* Crimson */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
  position: relative;
  z-index: 1;
}

.page-resources-red88-industry-trends__cta-button:hover {
  background-color: #b01031; /* Darker Crimson */
  transform: translateY(-3px);
}

.page-resources-red88-industry-trends__cta-button--secondary {
  background-color: #36454F;
  box-shadow: 0 4px 15px rgba(54, 69, 79, 0.4);
}

.page-resources-red88-industry-trends__cta-button--secondary:hover {
  background-color: #2a353d;
}

.page-resources-red88-industry-trends__cta-button--outline {
  background-color: transparent;
  border: 2px solid #DC143C;
  color: #DC143C;
  box-shadow: none;
}

.page-resources-red88-industry-trends__cta-button--outline:hover {
  background-color: #DC143C;
  color: #ffffff;
}

.page-resources-red88-industry-trends__section {
  padding: 60px 0;
}

.page-resources-red88-industry-trends__section--dark {
  background-color: #36454F;
  color: #ffffff;
}

.page-resources-red88-industry-trends__section-title {
  font-size: 2.5em;
  color: #DC143C; /* Crimson */
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-resources-red88-industry-trends__section--dark .page-resources-red88-industry-trends__section-title {
  color: #ffffff;
}

.page-resources-red88-industry-trends__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #DC143C;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-resources-red88-industry-trends__section--dark .page-resources-red88-industry-trends__section-title::after {
  background-color: #ffffff;
}

.page-resources-red88-industry-trends__content-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.page-resources-red88-industry-trends__content-block p {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 800px;
}

.page-resources-red88-industry-trends__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-red88-industry-trends__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-red88-industry-trends__grid-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-resources-red88-industry-trends__section--dark .page-resources-red88-industry-trends__grid-item {
  background-color: #2a353d; /* Darker charcoal for cards on dark background */
  color: #ffffff;
}

.page-resources-red88-industry-trends__grid-item:hover {
  transform: translateY(-5px);
}

.page-resources-red88-industry-trends__grid-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-red88-industry-trends__grid-title {
  font-size: 1.6em;
  color: #DC143C; /* Crimson */
  margin-bottom: 15px;
}

.page-resources-red88-industry-trends__section--dark .page-resources-red88-industry-trends__grid-title {
  color: #e75b77; /* Lighter crimson for contrast on dark background */
}

.page-resources-red88-industry-trends__grid-item p {
  font-size: 1em;
  color: #555;
}

.page-resources-red88-industry-trends__section--dark .page-resources-red88-industry-trends__grid-item p {
  color: #cccccc;
}

.page-resources-red88-industry-trends__text-center {
  text-align: center;
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-red88-industry-trends__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-resources-red88-industry-trends__floating-ad-menu {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.page-resources-red88-industry-trends__floating-btn {
  background-color: #DC143C;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 4px 10px rgba(220, 20, 60, 0.4);
  transition: background-color 0.3s ease, transform 0.3s ease;
  min-width: 100px;
}

.page-resources-red88-industry-trends__floating-btn:hover {
  background-color: #b01031;
  transform: translateY(-3px);
}

.page-resources-red88-industry-trends__floating-btn--download {
  background-color: #36454F;
  box-shadow: 0 4px 10px rgba(54, 69, 79, 0.4);
}

.page-resources-red88-industry-trends__floating-btn--download:hover {
  background-color: #2a353d;
}

.page-resources-red88-industry-trends__floating-btn--promo {
  background-color: #f7b32b; /* A contrasting color for promotions */
  box-shadow: 0 4px 10px rgba(247, 179, 43, 0.4);
}

.page-resources-red88-industry-trends__floating-btn--promo:hover {
  background-color: #d19a23;
}

.page-resources-red88-industry-trends .highlight {
  color: #DC143C;
  font-weight: bold;
}

.page-resources-red88-industry-trends__section--dark .highlight {
  color: #e75b77; /* Lighter crimson for contrast on dark background */
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-red88-industry-trends__hero-title {
    font-size: 2.5em;
  }

  .page-resources-red88-industry-trends__hero-subtitle {
    font-size: 1.2em;
  }

  .page-resources-red88-industry-trends__section-title {
    font-size: 2em;
  }

  .page-resources-red88-industry-trends__content-block {
    flex-direction: column;
  }

  .page-resources-red88-industry-trends__image {
    margin-bottom: 20px;
  }

  .page-resources-red88-industry-trends__grid {
    grid-template-columns: 1fr;
  }

  .page-resources-red88-industry-trends__button-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-red88-industry-trends__floating-ad-menu {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    right: 10px;
    bottom: 10px;
    left: 10px;
    gap: 8px;
  }

  .page-resources-red88-industry-trends__floating-btn {
    flex-grow: 1;
    min-width: unset;
    padding: 10px 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-red88-industry-trends__hero-title {
    font-size: 2em;
  }

  .page-resources-red88-industry-trends__hero-subtitle {
    font-size: 1em;
  }

  .page-resources-red88-industry-trends__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-red88-industry-trends__section-title {
    font-size: 1.8em;
  }

  .page-resources-red88-industry-trends__content-block p,
  .page-resources-red88-industry-trends__text-center {
    font-size: 1em;
  }
}