/* ========================================
   MODERN HERO SECTION
======================================== */

.hero-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(200, 0, 0, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 215, 0, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}

.hero-slider {
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-slide {
  display: none;
  animation: fadeInSlide 0.6s ease-in-out;
}

.hero-slide.active {
  display: block;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero Content */
.hero-content {
  animation: slideInLeft 0.8s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200, 0, 0, 0.2);
  padding: 12px 24px;
  border-radius: 50px;
  color: #c80000;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.hero-badge i {
  font-size: 1.1rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 24px 0;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #c80000 0%, #dc2626 50%, #ef4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  animation: gradientShift 3s ease infinite;
  background-size: 200% auto;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin: 0 0 32px 0;
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.hero-feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.hero-feature-item i {
  font-size: 2rem;
  color: rgba(200, 0, 0, 0.8);
  min-width: 40px;
}

.hero-feature-item h4 {
  margin: 0 0 4px 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.hero-feature-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-btn.primary {
  background: rgba(200, 0, 0, 0.1);
  color: #c80000;
  border: 2px solid rgba(200, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.hero-btn.primary:hover {
  transform: translateY(-4px);
  background: rgba(200, 0, 0, 0.15);
  border-color: rgba(200, 0, 0, 0.4);
  box-shadow: 0 8px 20px rgba(200, 0, 0, 0.15);
}

.hero-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.hero-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-4px);
}

.hero-btn i {
  transition: transform 0.3s ease;
}

.hero-btn:hover i {
  transform: translateX(6px);
}

/* Hero Image */
.hero-image {
  animation: slideInRight 0.8s ease both;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
}

.hero-image-wrapper:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.05);
}

.hero-float-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 15px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  animation: floatCard 3s ease-in-out infinite;
}

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

.hero-float-card i {
  font-size: 1rem;
  color: #c80000;
}

.hero-float-card .hero-float-card-number {
  margin: 0;
  font-size: 1rem;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1;
}

.hero-float-card p {
  margin: 4px 0 0 0;
  font-size: 0.9rem;
  color: #666;
  font-weight: 600;
}

/* Navigation Buttons */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.hero-nav:hover {
  background: rgba(200, 0, 0, 0.9);
  border-color: #c80000;
  transform: translateY(-50%) scale(1.1);
}

.hero-nav.prev {
  left: 30px;
}

.hero-nav.next {
  right: 30px;
}

.hero-nav i {
  font-size: 1.5rem;
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #fff;
  width: 32px;
  border-radius: 6px;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 968px) {
  .hero-section {
    min-height: auto;
    padding: 60px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  .hero-nav {
    width: 50px;
    height: 50px;
  }

  .hero-nav.prev {
    left: 20px;
  }

  .hero-nav.next {
    right: 20px;
  }
}

@media (max-width: 600px) {
  .pass-rate-badge {
    font-size: 0.85rem;
    padding: 6px 10px;
    border-radius: 10px;
    min-width: 90px;
    max-width: 120px;
  }
  .pass-rate-badge i {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

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

  .hero-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .hero-float-card {
    padding: 16px;
    bottom: 20px;
    left: 20px;
  }

  .hero-nav {
    display: none;
  }
}

/* News Card */
.news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.news-card .news-card-footer {
  margin-top: auto;
}
.news-card .news-card-link {
  display: inline-block;
  padding: 6px 12px;
  font-size: 1rem;
  font-weight: 600;
  color: #e60000;
  background: #fff6f6;
  border-radius: 8px;
  box-shadow: 0 2px 8px #ffd6d6;
  text-decoration: none;
  transition: background 0.3s;
}
.news-card .news-card-link:hover {
  background: #ffe5e5;
  color: #b30000;
}
