/* Hero Section Styles */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 1rem;
  background: linear-gradient(135deg, #F8F4FF 0%, #FCE4EC 60%, #FFF8E1 100%);
}

@media (min-width: 640px) {
  .hero-section {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 0 2rem;
  }
}

.hero-container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 6rem 0;
}

.hero-content {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
}

/* Hero Left Content */
.hero-left {
  animation: fadeIn 0.8s ease-out;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  background-color: rgba(139, 47, 201, 0.1);
  border: 1px solid rgba(139, 47, 201, 0.2);
}

.badge-icon {
  font-size: 1.125rem;
  color: #8B2FC9;
}

.badge-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #8B2FC9;
}

/* Title */
.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #1A1A2E;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

/* Subtitle */
.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  color: #4A1060;
  opacity: 0.7;
}

/* Buttons */
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.btn-primary {
  background: linear-gradient(135deg, #8B2FC9 0%, #E91E8C 50%, #F5A623 100%);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.2s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  opacity: 0.92;
  transform: scale(1.02);
}

.btn-secondary {
  border: 2px solid #8B2FC9;
  color: #8B2FC9;
  background: transparent;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: rgba(139, 47, 201, 0.08);
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* Hero Right Content */
.hero-right {
  display: flex;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
}

@media (min-width: 768px) {
  .hero-right {
    justify-content: flex-end;
  }
}

.certificate-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-width: 28rem;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.1));
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .hero-section {
    min-height: auto;
    padding: 4rem 1rem;
  }
  
  .hero-container {
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
}
