/* Premium Awards Page - Grand & Unique */

.awards-hero {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 6rem 0;
  overflow: hidden;
}

.awards-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: 
    radial-gradient(circle at 20% 50%, #e6b800 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, #ff5d73 0%, transparent 50%);
  pointer-events: none;
}

.awards-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1rem;
}

.awards-hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: white;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.awards-hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Awards Timeline Section */
.awards-section {
  padding: 5rem 0;
}

.awards-timeline {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.award-item {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  align-items: stretch;
}

.award-year-marker {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accentColor);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}

/* Premium Award Card */
.award-card-premium {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  border: 1px solid rgba(230, 184, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.award-card-premium:hover {
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
  transform: translateY(-10px);
}

.award-card-top {
  padding: 2rem;
  border-bottom: 2px solid rgba(230, 184, 0, 0.15);
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
}

.award-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(90deg, #e6b800 0%, #f3d04d 100%);
  color: #222;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  box-shadow: 0 6px 20px rgba(230, 184, 0, 0.2);
  letter-spacing: 0.04em;
}

.award-badge svg {
  width: 18px;
  height: 18px;
}

.award-card-title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--accentColor);
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.01em;
}

.award-card-subtitle {
  font-size: 1.05rem;
  color: #666;
  margin: 0;
  font-weight: 500;
}

.award-card-body {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.award-card-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.award-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

.award-description strong {
  color: var(--accentColor);
  font-weight: 700;
}

.award-testimonial {
  margin: 0;
  padding: 1.25rem;
  background: linear-gradient(135deg, #fff9f0 0%, #fff5e6 100%);
  border-left: 4px solid var(--accentColor);
  border-radius: 12px;
  font-style: italic;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.7;
  box-shadow: inset 0 0 20px rgba(230, 184, 0, 0.05);
}

.award-card-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  height: 280px;
}

.award-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.award-card-premium:hover .award-card-image img {
  transform: scale(1.05);
}

.award-card-actions {
  margin-top: 1rem;
}

.award-card-actions .btn {
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 768px) {
  .award-item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .award-year-marker {
    writing-mode: initial;
    transform: none;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    order: -1;
  }

  .award-card-body {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .award-card-image {
    height: 240px;
  }

  .award-card-top {
    padding: 1.5rem;
  }

  .award-card-body {
    padding: 1.5rem;
  }

  .award-card-title {
    font-size: 1.25rem;
  }

  .award-description {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .awards-hero {
    padding: 4rem 0;
  }

  .awards-hero-title {
    font-size: 1.75rem;
  }

  .awards-hero-subtitle {
    font-size: 1rem;
  }

  .awards-section {
    padding: 2rem 0;
  }

  .awards-timeline {
    gap: 2rem;
  }

  .award-card-image {
    height: 200px;
  }
}

/* Particle Animation */
.particles-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  background-color: rgba(255, 215, 0, 0.5);
  border-radius: 50%;
  animation: float 25s infinite ease-in-out;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-100vh) translateX(10vw);
    opacity: 0;
  }
}