
/* Premium Gold Section with Glassmorphism */
.section--gold {
  /* A warm, orange-leaning gold gradient */
  background: linear-gradient(135deg, #F5B027 0%, #D8810A 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

/* Optional subtle overlay for texture */
.section--gold::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.section--gold .container {
  position: relative;
  z-index: 1;
}

/* Force dark text for contrast on gold */
.section--gold .section-header h2 {
  color: #12161A !important;
  text-shadow: 0 1px 1px rgba(255,255,255,0.3);
}
.section--gold .section-header p {
  color: #1a2026 !important;
  font-weight: 500;
}

/* Glassmorphism for the sector boxes */
.section--gold .logo-placeholder {
  /* Frosted glass effect */
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #12161A;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.section--gold .logo-placeholder:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  color: #000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px) scale(1.02);
}
