/* Enhanced CSS Variables and Base Styles with Luxury Focus */
:root {
  --royal-black: #000814;
  --deep-black: #000000;
  --gold: #D4AF37;
  --gold-shade: #B8831B;
  --gold-bright: #FFD95E;
  --gold-dark: #8B6914;
  --white: #F6F7F8;
  --gold-grad: linear-gradient(135deg, #FFD95E 0%, #D4AF37 50%, #B8831B 100%);
  --solar-gold: linear-gradient(135deg, #FFD95E 0%, #D4AF37 50%, #B8831B 100%);
  --gold-radial: radial-gradient(circle, #FFD95E 0%, #D4AF37 40%, #B8831B 100%);
  --gold-shimmer: linear-gradient(90deg, transparent 0%, rgba(255,217,94,0.8) 50%, transparent 100%);
  --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.4);
  --shadow-gold-intense: 0 0 60px rgba(212, 175, 55, 0.8);
  --glow-gold: 0 0 20px rgba(255, 217, 94, 0.6);
}

* { box-sizing: border-box; }
html, body { 
  margin: 0; 
  background: var(--royal-black); 
  color: var(--white); 
  font-family: Inter, system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  background: radial-gradient(ellipse at center, var(--royal-black) 0%, var(--deep-black) 100%);
  min-height: 100vh;
  position: relative;
}

/* Luxury Background Pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 217, 94, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(184, 131, 27, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

h1, h2, h3 { 
  font-family: Cinzel, serif; 
  letter-spacing: 0.5px;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

a, button { 
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

/* Enhanced Gold Text with Luxury Animation */
.gold-text {
  background: var(--solar-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  text-shadow: none;
  animation: goldShimmer 3s ease-in-out infinite;
}

@keyframes goldShimmer {
  0%, 100% { 
    background: var(--solar-gold);
    filter: brightness(1);
  }
  50% { 
    background: linear-gradient(135deg, #FFE55C 0%, #F4D03F 50%, #D4AF37 100%);
    filter: brightness(1.2);
  }
}

.gold-text::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold-shimmer);
  animation: shimmerMove 2s infinite;
}

@keyframes shimmerMove {
  0% { left: -100%; }
  100% { left: 100%; }
}

.gold-outline {
  outline: 2px solid var(--gold-shade);
  outline-offset: 8px;
  box-shadow: 
    inset 0 0 20px rgba(212, 175, 55, 0.1),
    0 0 30px rgba(212, 175, 55, 0.2);
  animation: goldPulse 2s ease-in-out infinite;
}

@keyframes goldPulse {
  0%, 100% { 
    outline-color: var(--gold-shade);
    box-shadow: 
      inset 0 0 20px rgba(212, 175, 55, 0.1),
      0 0 30px rgba(212, 175, 55, 0.2);
  }
  50% { 
    outline-color: var(--gold);
    box-shadow: 
      inset 0 0 30px rgba(212, 175, 55, 0.2),
      0 0 50px rgba(212, 175, 55, 0.4);
  }
}

/* Luxury Underline Animation */
.underline-gold {
  position: relative;
}

.underline-gold::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  background: var(--solar-gold);
  transition: width 1s cubic-bezier(0.23, 1, 0.320, 1);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

.underline-gold.in-view::after {
  width: 100%;
  animation: goldFlow 2s ease-in-out infinite;
}

@keyframes goldFlow {
  0%, 100% { 
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
    filter: brightness(1);
  }
  50% { 
    box-shadow: 0 0 20px rgba(255, 217, 94, 1);
    filter: brightness(1.5);
  }
}

/* Typography with Luxury Spacing */
h1 { 
  font-size: clamp(3rem, 7vw, 6rem); 
  font-weight: 700; 
  margin-bottom: 2rem; 
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 { 
  font-size: clamp(2.5rem, 5vw, 4rem); 
  font-weight: 600; 
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

h3 { 
  font-size: clamp(1.8rem, 4vw, 2.5rem); 
  font-weight: 500; 
  margin-bottom: 1rem;
}

p { 
  font-size: 1.2rem; 
  margin-bottom: 1.8rem;
  line-height: 1.8;
  font-weight: 300;
}

/* Luxury Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 8, 20, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  z-index: 1000;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(212, 175, 55, 0.05) 50%, 
    transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.navbar:hover::before {
  opacity: 1;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 45px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
  transition: all 0.4s ease;
}

.nav-logo:hover img {
  filter: drop-shadow(0 0 20px rgba(255, 217, 94, 0.8));
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold-shimmer);
  transition: left 0.5s ease;
}

.nav-link:hover::before {
  left: 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
  transform: translateY(-2px);
}

.nav-cta {
  background: var(--solar-gold) !important;
  color: var(--royal-black) !important;
  font-weight: 600;
  box-shadow: var(--shadow-gold);
  border: none;
}

.nav-cta:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-gold-intense);
  color: var(--royal-black) !important;
}

/* Cinematic Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at center, var(--royal-black) 0%, var(--deep-black) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="g" cx="50%" cy="50%"><stop offset="0%" stop-color="%23D4AF37" stop-opacity="0.1"/><stop offset="100%" stop-color="transparent"/></radialGradient></defs><circle cx="50" cy="50" r="50" fill="url(%23g)"/></svg>');
  background-size: 200px 200px;
  opacity: 0.3;
  animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
  0% { background-position: 0 0; }
  100% { background-position: 200px 200px; }
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
  animation: heroContentReveal 2s cubic-bezier(0.23, 1, 0.320, 1) 0.5s backwards;
}

@keyframes heroContentReveal {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 7rem);
  margin-bottom: 2rem;
  line-height: 1;
  letter-spacing: -0.03em;
  animation: titleGlow 4s ease-in-out infinite;
}

@keyframes titleGlow {
  0%, 100% { 
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
  }
  50% { 
    text-shadow: 0 0 60px rgba(255, 217, 94, 0.8);
  }
}

.hero-subtitle {
  font-size: 1.6rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  font-weight: 300;
  letter-spacing: 0.5px;
  animation: subtitleReveal 2s cubic-bezier(0.23, 1, 0.320, 1) 1s backwards;
}

@keyframes subtitleReveal {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 0.9;
    transform: translateY(0);
  }
}

.hero-ctas {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: ctaReveal 2s cubic-bezier(0.23, 1, 0.320, 1) 1.5s backwards;
}

@keyframes ctaReveal {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-underline {
  width: 300px;
  margin: 0 auto;
  height: 4px;
}

/* Luxury CTAs */
.cta-primary, .cta-secondary {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-primary {
  background: var(--solar-gold);
  color: var(--royal-black);
  box-shadow: var(--shadow-gold);
}

.cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s ease;
}

.cta-primary:hover::before {
  left: 100%;
}

.cta-primary:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 
    0 20px 40px rgba(212, 175, 55, 0.5),
    0 0 60px rgba(255, 217, 94, 0.8);
  color: var(--royal-black);
}

.cta-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold-shade);
  box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.1);
}

.cta-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold);
  transform: translateY(-6px) scale(1.05);
  box-shadow: 
    inset 0 0 30px rgba(212, 175, 55, 0.2),
    0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Enhanced Lingam Industries Tile */
.lingam-tile {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 280px;
  height: 340px;
  background: linear-gradient(145deg, 
    rgba(0, 8, 20, 0.9) 0%, 
    rgba(0, 8, 20, 0.7) 100%);
  border: 2px solid var(--gold-shade);
  border-radius: 16px;
  padding: 2rem;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  z-index: 4;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(212, 175, 55, 0.1);
  animation: lingamFloat 6s ease-in-out infinite;
}

@keyframes lingamFloat {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-52%) translateX(10px); }
}

.lingam-tile::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--solar-gold);
  border-radius: 16px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lingam-tile:hover {
  transform: translateY(-50%) scale(1.08) rotateY(5deg);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.8),
    0 0 60px rgba(212, 175, 55, 0.4),
    inset 0 1px 0 rgba(212, 175, 55, 0.3);
  border-color: var(--gold);
}

.lingam-tile:hover::before {
  opacity: 1;
  animation: borderGlow 2s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.lingam-image {
  width: 100%;
  height: 65%;
  object-fit: contain;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
  transition: all 0.4s ease;
}

.lingam-tile:hover .lingam-image {
  filter: drop-shadow(0 0 30px rgba(255, 217, 94, 0.6));
  transform: scale(1.05);
}

.lingam-overlay h3 {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.lingam-overlay p {
  font-size: 1rem;
  opacity: 0.8;
  margin: 0;
}

/* Enhanced Scroll Particles */
.scroll-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: particleFloat 12s infinite linear;
  opacity: 0.7;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

.particle:nth-child(1) { 
  left: 15%; 
  animation-delay: 0s;
  animation-duration: 10s;
}
.particle:nth-child(2) { 
  left: 35%; 
  animation-delay: 3s;
  animation-duration: 12s;
}
.particle:nth-child(3) { 
  left: 55%; 
  animation-delay: 6s;
  animation-duration: 14s;
}
.particle:nth-child(4) { 
  left: 75%; 
  animation-delay: 9s;
  animation-duration: 11s;
}
.particle:nth-child(5) { 
  left: 85%; 
  animation-delay: 12s;
  animation-duration: 13s;
}

@keyframes particleFloat {
  0% { 
    transform: translateY(100vh) rotate(0deg) scale(0.5); 
    opacity: 0; 
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.4);
  }
  10% { 
    opacity: 0.7; 
    box-shadow: 0 0 15px rgba(255, 217, 94, 0.8);
  }
  90% { 
    opacity: 0.7; 
    box-shadow: 0 0 15px rgba(255, 217, 94, 0.8);
  }
  100% { 
    transform: translateY(-100px) rotate(360deg) scale(1); 
    opacity: 0; 
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.4);
  }
}

/* Luxury Trust Bar */
.trust-bar {
  padding: 3rem 0;
  background: linear-gradient(90deg,
    rgba(212, 175, 55, 0.03) 0%,
    rgba(212, 175, 55, 0.08) 50%,
    rgba(212, 175, 55, 0.03) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  overflow: hidden;
}

.marquee {
  overflow: hidden;
}

.marquee-content {
  display: flex;
  animation: luxuryMarquee 40s linear infinite;
  gap: 6rem;
  align-items: center;
}

.partner-logo {
  color: var(--gold-shade);
  font-size: 1.4rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.4s ease;
  padding: 1rem 2rem;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.partner-logo:hover {
  opacity: 1;
  color: var(--gold);
  border-color: var(--gold-shade);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  transform: scale(1.05);
}

@keyframes luxuryMarquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Enhanced Main Content Sections */
.main-content {
  margin-top: 100px;
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  font-size: clamp(3rem, 5vw, 4.5rem);
  position: relative;
}

.section-title::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: var(--solar-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

.section-subtitle {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 4rem;
  opacity: 0.8;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* Luxury Card Components */
.mvv-grid, .tech-grid, .leadership-grid, .positions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.mvv-card, .tech-card, .leader-card, .position-card, .info-card {
  background: linear-gradient(145deg, 
    rgba(212, 175, 55, 0.08) 0%, 
    rgba(212, 175, 55, 0.02) 100%);
  border: 1px solid var(--gold-shade);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.mvv-card::before, .tech-card::before, .leader-card::before, .position-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold-shimmer);
  transition: left 0.8s ease;
}

.mvv-card:hover::before, .tech-card:hover::before, .leader-card:hover::before, .position-card:hover::before {
  left: 100%;
}

.mvv-card:hover, .tech-card:hover, .leader-card:hover, .position-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--gold);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.3),
    0 0 60px rgba(212, 175, 55, 0.2),
    inset 0 1px 0 rgba(212, 175, 55, 0.1);
}

/* Enhanced Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.stat-card {
  background: var(--solar-gold);
  color: var(--royal-black);
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 16px;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    transparent 30%, 
    rgba(255,255,255,0.1) 50%, 
    transparent 70%);
  transform: translateX(-100%) skewX(-20deg);
  transition: transform 0.8s ease;
}

.stat-card:hover::before {
  transform: translateX(200%) skewX(-20deg);
}

.stat-card:hover {
  transform: translateY(-15px) scale(1.05) rotateX(5deg);
  box-shadow: 
    0 30px 60px rgba(212, 175, 55, 0.4),
    0 0 80px rgba(255, 217, 94, 0.6);
}

.stat-number {
  font-family: Cinzel, serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-unit {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  opacity: 0.9;
}

/* Responsive Design Enhancements */
@media (max-width: 1024px) {
  .lingam-tile {
    position: static;
    transform: none;
    width: 100%;
    max-width: 350px;
    margin: 3rem auto 0;
  }
  
  .lingam-tile:hover {
    transform: scale(1.02);
  }
}

@media (max-width: 768px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  
  .nav-menu {
    position: fixed;
    top: 100px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 100px);
    background: rgba(0, 8, 20, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: start;
    padding-top: 3rem;
    transition: left 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    border-right: 1px solid rgba(212, 175, 55, 0.2);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-link {
   width: 80%;
   text-align: center;
   margin: 0.5rem 0;
   border: 1px solid rgba(212, 175, 55, 0.1);
   border-radius: 8px;
 }
 
 .container {
   padding: 0 1rem;
 }
 
 .mvv-grid, .tech-grid, .leadership-grid, .positions-grid, .stats-grid {
   grid-template-columns: 1fr;
 }
}

/* Mobile Navigation Toggle Enhancement */
.nav-toggle {
 display: none;
 flex-direction: column;
 cursor: pointer;
 padding: 0.5rem;
 border-radius: 6px;
 transition: all 0.3s ease;
}

.nav-toggle:hover {
 background: rgba(212, 175, 55, 0.1);
}

.bar {
 width: 28px;
 height: 3px;
 background: var(--gold);
 margin: 3px 0;
 transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
 border-radius: 2px;
 box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.nav-toggle.active .bar:nth-child(1) {
 transform: rotate(-45deg) translate(-6px, 6px);
}

.nav-toggle.active .bar:nth-child(2) {
 opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
 transform: rotate(45deg) translate(-6px, -6px);
}

@media (max-width: 768px) {
 .nav-toggle {
   display: flex;
 }
}

/* SDG Section Enhancements */
.sdg-section {
 padding: 6rem 0;
 background: radial-gradient(ellipse at center,
   rgba(212, 175, 55, 0.03) 0%,
   transparent 70%);
}

.sdg-grid {
 display: grid;
 grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
 gap: 2.5rem;
 margin-top: 4rem;
}

.sdg-item {
 display: flex;
 flex-direction: column;
 align-items: center;
 text-align: center;
 padding: 2rem;
 border-radius: 16px;
 transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
 position: relative;
 overflow: hidden;
 background: rgba(212, 175, 55, 0.02);
 border: 1px solid rgba(212, 175, 55, 0.1);
}

.sdg-item::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: radial-gradient(circle at center,
   rgba(212, 175, 55, 0.1) 0%,
   transparent 70%);
 opacity: 0;
 transition: opacity 0.4s ease;
}

.sdg-item:hover::before {
 opacity: 1;
}

.sdg-item:hover {
 transform: translateY(-10px) scale(1.05);
 background: rgba(212, 175, 55, 0.05);
 border-color: var(--gold-shade);
 box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.sdg-icon {
 width: 90px;
 height: 90px;
 margin-bottom: 1.5rem;
 transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
 filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.sdg-item:hover .sdg-icon {
 transform: scale(1.15) rotateY(10deg);
 filter: drop-shadow(0 0 20px rgba(255, 217, 94, 0.6));
}

/* Partners Section */
.partners-section {
 padding: 6rem 0;
 background: linear-gradient(135deg,
   rgba(212, 175, 55, 0.02) 0%,
   rgba(212, 175, 55, 0.05) 50%,
   rgba(212, 175, 55, 0.02) 100%);
}

.partners-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 2.5rem;
 margin-top: 4rem;
}

.partner-logo-large {
 display: flex;
 align-items: center;
 justify-content: center;
 height: 140px;
 background: linear-gradient(145deg,
   rgba(212, 175, 55, 0.08) 0%,
   rgba(212, 175, 55, 0.03) 100%);
 border: 2px solid var(--gold-shade);
 border-radius: 16px;
 font-size: 1.2rem;
 color: var(--gold);
 font-weight: 600;
 transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
 position: relative;
 overflow: hidden;
 text-transform: uppercase;
 letter-spacing: 1px;
}

.partner-logo-large::before {
 content: '';
 position: absolute;
 top: 0;
 left: -100%;
 width: 100%;
 height: 100%;
 background: var(--gold-shimmer);
 transition: left 0.8s ease;
}

.partner-logo-large:hover::before {
 left: 100%;
}

.partner-logo-large:hover {
 border-color: var(--gold);
 transform: translateY(-8px) scale(1.05);
 box-shadow: 
   0 20px 40px rgba(212, 175, 55, 0.2),
   inset 0 1px 0 rgba(212, 175, 55, 0.1);
 text-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
}

/* Technology Page Enhancements */
.tech-hero {
 position: relative;
 padding: 8rem 0;
 text-align: center;
 overflow: hidden;
 background: radial-gradient(ellipse at center,
   rgba(212, 175, 55, 0.05) 0%,
   var(--royal-black) 50%,
   var(--deep-black) 100%);
}

.tech-subtitle {
 font-size: 1.4rem;
 opacity: 0.8;
 margin-bottom: 4rem;
 font-weight: 300;
}

.tech-diagram {
 position: relative;
 height: 500px;
 margin: 4rem auto;
 max-width: 700px;
 perspective: 1000px;
}

.orbit {
 position: absolute;
 border: 2px solid var(--gold-shade);
 border-radius: 50%;
 opacity: 0.4;
 animation: luxuryRotate 25s linear infinite;
 box-shadow: 
   0 0 20px rgba(212, 175, 55, 0.3),
   inset 0 0 20px rgba(212, 175, 55, 0.1);
}

.orbit-1 { 
 width: 250px; 
 height: 250px; 
 top: 125px; 
 left: 50%; 
 transform: translateX(-50%); 
 border-color: var(--gold-bright);
 animation-duration: 20s;
}

.orbit-2 { 
 width: 350px; 
 height: 350px; 
 top: 75px; 
 left: 50%; 
 transform: translateX(-50%); 
 animation-duration: 35s;
 animation-direction: reverse;
}

.orbit-3 { 
 width: 450px; 
 height: 450px; 
 top: 25px; 
 left: 50%; 
 transform: translateX(-50%); 
 animation-duration: 50s;
}

@keyframes luxuryRotate {
 from { transform: translateX(-50%) rotate(0deg); }
 to { transform: translateX(-50%) rotate(360deg); }
}

.particle {
 position: absolute;
 width: 12px;
 height: 12px;
 background: var(--solar-gold);
 border-radius: 50%;
 box-shadow: 
   0 0 15px rgba(212, 175, 55, 0.8),
   inset 0 0 5px rgba(255, 217, 94, 0.6);
}

.particle-1 { 
 top: 50%; 
 left: 50%; 
 transform: translate(-50%, -50%); 
 animation: particlePulse 3s ease-in-out infinite;
 z-index: 10;
}

.particle-2 { 
 top: 20%; 
 right: 20%; 
 animation: particlePulse 2.5s ease-in-out infinite 0.5s;
}

.particle-3 { 
 bottom: 20%; 
 left: 20%; 
 animation: particlePulse 2.8s ease-in-out infinite 1s;
}

@keyframes particlePulse {
 0%, 100% { 
   opacity: 0.6; 
   transform: scale(1);
   box-shadow: 
     0 0 15px rgba(212, 175, 55, 0.8),
     inset 0 0 5px rgba(255, 217, 94, 0.6);
 }
 50% { 
   opacity: 1; 
   transform: scale(1.8);
   box-shadow: 
     0 0 30px rgba(255, 217, 94, 1),
     inset 0 0 10px rgba(255, 217, 94, 0.9);
 }
}

.wave-bg {
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: radial-gradient(circle at center, 
   rgba(212, 175, 55, 0.15) 0%, 
   rgba(212, 175, 55, 0.05) 40%,
   transparent 70%);
 animation: waveMotion 6s ease-in-out infinite;
 border-radius: 50%;
}

@keyframes waveMotion {
 0%, 100% { 
   transform: scale(1) rotate(0deg);
   opacity: 0.3;
 }
 33% { 
   transform: scale(1.1) rotate(120deg);
   opacity: 0.5;
 }
 66% { 
   transform: scale(0.9) rotate(240deg);
   opacity: 0.4;
 }
}

/* Leadership Enhancements */
.leader-photo {
 width: 140px;
 height: 140px;
 border-radius: 50%;
 background: var(--solar-gold);
 margin: 0 auto 2rem;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 4rem;
 color: var(--royal-black);
 font-weight: 700;
 transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
 box-shadow: 
   0 10px 30px rgba(212, 175, 55, 0.3),
   inset 0 0 20px rgba(255, 217, 94, 0.2);
}

.leader-card:hover .leader-photo {
 transform: scale(1.1) rotateY(10deg);
 box-shadow: 
   0 20px 50px rgba(212, 175, 55, 0.5),
   inset 0 0 30px rgba(255, 217, 94, 0.4);
}

.role {
 color: var(--gold-shade);
 font-weight: 600;
 margin-bottom: 1.5rem;
 text-transform: uppercase;
 letter-spacing: 1px;
 font-size: 0.9rem;
}

/* Contact Form Enhancements */
.contact-wrapper {
 display: grid;
 grid-template-columns: 2fr 1fr;
 gap: 4rem;
 margin-top: 4rem;
}

.contact-form {
 background: linear-gradient(145deg,
   rgba(212, 175, 55, 0.08) 0%,
   rgba(212, 175, 55, 0.03) 100%);
 border: 2px solid var(--gold-shade);
 border-radius: 20px;
 padding: 3rem;
 position: relative;
 overflow: hidden;
}

.contact-form::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: linear-gradient(45deg,
   transparent 30%,
   rgba(212, 175, 55, 0.05) 50%,
   transparent 70%);
 opacity: 0;
 transition: opacity 0.4s ease;
}

.contact-form:hover::before {
 opacity: 1;
 animation: formShimmer 2s ease-in-out infinite;
}

@keyframes formShimmer {
 0% { transform: translateX(-100%) skewX(-20deg); }
 100% { transform: translateX(200%) skewX(-20deg); }
}

.form-group {
 margin-bottom: 2rem;
}

.form-group label {
 display: block;
 margin-bottom: 0.8rem;
 color: var(--gold);
 font-weight: 600;
 font-size: 1.1rem;
 text-transform: uppercase;
 letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
 width: 100%;
 padding: 1.2rem 1.5rem;
 background: rgba(0, 8, 20, 0.8);
 border: 2px solid var(--gold-shade);
 border-radius: 10px;
 color: var(--white);
 font-size: 1.1rem;
 transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
 backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
 outline: none;
 border-color: var(--gold);
 box-shadow: 
   0 0 20px rgba(212, 175, 55, 0.3),
   inset 0 0 10px rgba(212, 175, 55, 0.1);
 transform: scale(1.02);
}

/* Footer Enhancements */
.footer-teaser {
 padding: 4rem 0;
 text-align: center;
 border-top: 1px solid rgba(212, 175, 55, 0.2);
 background: linear-gradient(90deg,
   transparent 0%,
   rgba(212, 175, 55, 0.03) 50%,
   transparent 100%);
}

.teaser-link {
 display: inline-flex;
 align-items: center;
 gap: 1.5rem;
 color: var(--gold);
 text-decoration: none;
 font-size: 1.5rem;
 font-weight: 600;
 transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
 padding: 1.5rem 3rem;
 border: 2px solid var(--gold-shade);
 border-radius: 12px;
 position: relative;
 overflow: hidden;
}

.teaser-link::before {
 content: '';
 position: absolute;
 top: 0;
 left: -100%;
 width: 100%;
 height: 100%;
 background: var(--gold-shimmer);
 transition: left 0.8s ease;
}

.teaser-link:hover::before {
 left: 100%;
}

.teaser-link:hover {
 color: var(--white);
 transform: translateY(-5px) scale(1.05);
 border-color: var(--gold);
 box-shadow: 
   0 15px 30px rgba(212, 175, 55, 0.3),
   inset 0 0 20px rgba(212, 175, 55, 0.1);
 text-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
}

.arrow {
 font-size: 2rem;
 transition: transform 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.teaser-link:hover .arrow {
 transform: translateX(10px) scale(1.2);
}

.footer {
 background: linear-gradient(145deg,
   rgba(0, 8, 20, 0.95) 0%,
   var(--deep-black) 100%);
 border-top: 1px solid rgba(212, 175, 55, 0.3);
 padding: 4rem 0 2rem;
 position: relative;
}

.footer::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 1px;
 background: var(--solar-gold);
 opacity: 0.5;
}

.footer-content {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 3rem;
 margin-bottom: 3rem;
}

.footer-section h4 {
 color: var(--gold);
 margin-bottom: 1.5rem;
 font-size: 1.2rem;
 text-transform: uppercase;
 letter-spacing: 1px;
}

.footer-section a {
 display: block;
 color: var(--white);
 text-decoration: none;
 margin-bottom: 0.8rem;
 opacity: 0.8;
 transition: all 0.4s ease;
 padding: 0.3rem 0;
}

.footer-section a:hover {
 color: var(--gold);
 opacity: 1;
 text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
 transform: translateX(10px);
}

.footer-bottom {
 text-align: center;
 padding-top: 2rem;
 border-top: 1px solid rgba(212, 175, 55, 0.2);
 opacity: 0.6;
 font-size: 1rem;
}

/* Accessibility & Performance */
@media (prefers-reduced-motion: reduce) {
 * {
   animation-duration: 0.01ms !important;
   animation-iteration-count: 1 !important;
   transition-duration: 0.01ms !important;
 }
 
 .hero-canvas {
   background: url('/assets/img/gold-flare-bg.jpg') center/cover no-repeat;
 }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
 width: 12px;
}

::-webkit-scrollbar-track {
 background: var(--royal-black);
}

::-webkit-scrollbar-thumb {
 background: var(--gold-shade);
 border-radius: 6px;
 border: 2px solid var(--royal-black);
}

::-webkit-scrollbar-thumb:hover {
 background: var(--gold);
}

/* Loading States */
.loading {
 opacity: 0.5;
 pointer-events: none;
 position: relative;
}

.loading::after {
 content: '';
 position: absolute;
 top: 50%;
 left: 50%;
 width: 40px;
 height: 40px;
 margin: -20px 0 0 -20px;
 border: 3px solid var(--gold-shade);
 border-top: 3px solid var(--gold);
 border-radius: 50%;
 animation: luxurySpin 1s linear infinite;
}

@keyframes luxurySpin {
 0% { transform: rotate(0deg); }
 100% { transform: rotate(360deg); }
}