/* Hero Section - Fix overlay to show background image */

/* Almost transparent overlay to show production line image clearly */
.hero-overlay {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.15)) !important;
}

/* Make hero text more readable with stronger text shadow */
.hero-content {
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.95), 0 1px 2px rgba(255, 255, 255, 0.8) !important;
}

.hero-title, .hero-title span {
  text-shadow: 0 2px 12px rgba(255, 255, 255, 1), 0 1px 4px rgba(255, 255, 255, 0.9) !important;
}

.hero-subtitle {
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.95) !important;
  font-weight: 600 !important;
}

.hero-description {
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.9) !important;
  font-weight: 500 !important;
}

/* RD Section - Force images to display */
.rd-images {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  width: 240px !important;
  flex-shrink: 0 !important;
}

.rd-image {
  height: 100px !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  background: transparent !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

.rd-image img {
  width: 240px !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* RD Content layout - side by side */
.rd-content {
  display: flex !important;
  flex-direction: row !important;
  gap: 32px !important;
  align-items: stretch !important;
}

.rd-facilities {
  flex: 1 !important;
  background: rgba(255, 255, 255, 0.4) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  border-radius: 16px !important;
  padding: 20px !important;
}

/* Facility list grid */
.facility-list {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 10px !important;
}

/* Responsive */
@media (max-width: 768px) {
  .rd-content {
    flex-direction: column !important;
  }
  
  .rd-images {
    width: 240px !important;
    flex-direction: row !important;
    height: 120px !important;
  }
  
  .rd-image {
    flex: 1 !important;
    height: 100% !important;
  }
}