/* ===================================
   MODERN AWARDS SECTION STYLES
   =================================== */

.modern-awards {
  padding: 6rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.modern-awards::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
}

.modern-awards::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 25s infinite ease-in-out reverse;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(50px, 50px);
  }
}

.modern-awards__inner {
  position: relative;
  z-index: 1;
}

/* Awards Header */
.awards-header {
  text-align: center;
  margin-bottom: 4rem;
}

.awards-header .section-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.awards-header .section-title {
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.awards-header .section-subtitle {
  color: rgba(255, 255, 255, 0.95);
}

/* Awards Grid */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.award-card {
  position: relative;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.award-card:nth-child(1) { animation-delay: 0.1s; }
.award-card:nth-child(2) { animation-delay: 0.2s; }
.award-card:nth-child(3) { animation-delay: 0.3s; }
.award-card:nth-child(4) { animation-delay: 0.4s; }
.award-card:nth-child(5) { animation-delay: 0.5s; }
.award-card:nth-child(6) { animation-delay: 0.6s; }

.award-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.8);
}

/* Shine Effect */
.award-card__shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  transform: rotate(45deg);
  transition: all 0.6s;
  z-index: 1;
  opacity: 0;
}

.award-card:hover .award-card__shine {
  opacity: 1;
  left: 100%;
}

.award-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
}

.award-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  filter: brightness(1.1) contrast(1.1);
}

.award-card:hover .award-card__image img {
  transform: scale(1.15) rotate(3deg);
}

.award-card__icon {
  position: absolute;
  bottom: -30px;
  right: 20px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #000;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
  border: 3px solid #fff;
  z-index: 2;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.award-card:hover .award-card__icon {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.7);
}

.award-card__content {
  padding: 2.5rem 2rem 2rem;
  position: relative;
  z-index: 2;
}

.award-card__badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 50px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.award-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  min-height: 3.5rem;
}

.award-card__category {
  font-size: 0.95rem;
  color: #718096;
  font-weight: 500;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.award-card__category::before {
  content: '';
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #667eea 0%, transparent 100%);
}

/* Achievements Banner */
.achievements-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.achievement-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.achievement-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.achievement-icon {
  width: 65px;
  height: 65px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #667eea;
  flex-shrink: 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.achievement-content h4 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
  line-height: 1;
}

.achievement-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 500;
}

/* Dark Mode */
.dark-mode .award-card {
  background: rgba(45, 55, 72, 0.95);
}

.dark-mode .award-card__title {
  color: #fff;
}

.dark-mode .award-card__category {
  color: #cbd5e0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .achievements-banner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .modern-awards {
    padding: 4rem 0;
  }
  
  .awards-header {
    margin-bottom: 3rem;
  }
  
  .awards-grid {
    gap: 2rem;
  }
  
  .award-card__image {
    height: 200px;
  }
  
  .achievement-item {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .modern-awards {
    padding: 3rem 0;
  }
  
  .awards-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .award-card__image {
    height: 220px;
  }
  
  .award-card__content {
    padding: 2rem 1.5rem;
  }
  
  .award-card__title {
    font-size: 1.15rem;
    min-height: auto;
  }
  
  .achievements-banner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem;
  }
  
  .achievement-item {
    padding: 1.25rem;
  }
  
  .achievement-icon {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }
  
  .achievement-content h4 {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .award-card__image {
    height: 180px;
  }
  
  .award-card__icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    bottom: -25px;
    right: 15px;
  }
  
  .award-card__title {
    font-size: 1.05rem;
  }
  
  .award-card__category {
    font-size: 0.875rem;
  }
  
  .achievement-content h4 {
    font-size: 1.5rem;
  }
  
  .achievement-content p {
    font-size: 0.85rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
