/* ===============================================
   LUCEM PUBLISHERS - ENHANCED HERO SECTION
   Professional, modern hero with student success story
   =============================================== */

/* ===== HERO BASE ===== */
.hero {
  min-height: 95vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0;
}


/* ===== HERO CONTENT ===== */
.hero .container {
  position: relative;
  z-index: 10;
}

/* Full-width header section */
.hero-header-full {
  text-align: center;
  max-width: 900px;
  margin: 0 auto var(--spacing-3xl) auto;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-content {
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-xs) var(--spacing-md);
  background: rgba(11, 111, 181, 0.1);
  border: 1px solid rgba(11, 111, 181, 0.2);
  border-radius: var(--border-radius-full);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--lucem-blue);
  margin-bottom: var(--spacing-lg);
}

.hero-badge svg {
  color: var(--lucem-yellow);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: var(--spacing-lg);
}

.hero-title-sub {
  display: block;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: var(--spacing-sm);
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-xl);
}

.hero-description strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ===== INLINE STATS ===== */
.hero-stats-inline {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-2xl);
}

.stat-inline {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  background: rgba(11, 111, 181, 0.05);
  border-left: 3px solid var(--lucem-blue);
  border-radius: var(--border-radius-sm);
}

.stat-inline svg {
  color: var(--color-success);
  flex-shrink: 0;
}

.stat-inline span {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
}

.stat-inline strong {
  color: var(--lucem-blue);
  font-weight: 600;
}

/* ===== CTAs ===== */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.hero-cta-primary {
  background: linear-gradient(135deg, var(--lucem-blue) 0%, var(--lucem-dark-blue) 100%);
  box-shadow: 0 10px 30px rgba(11, 111, 181, 0.3);
  position: relative;
  overflow: hidden;
}

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

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

/* ===== TRUST BADGES ===== */
.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: var(--font-size-sm);
  color: var(--text-tertiary);
}

.trust-badge svg {
  color: var(--lucem-blue);
  flex-shrink: 0;
}

/* ===== SUCCESS STORY CARD ===== */
.hero-visual {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-success-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-xl);
  box-shadow: 0 30px 80px rgba(11, 111, 181, 0.15),
              0 10px 30px rgba(0, 0, 0, 0.08);
  padding: var(--spacing-2xl);
  max-width: 520px;
  position: relative;
  z-index: 2;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hero-success-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 40px 100px rgba(11, 111, 181, 0.2),
              0 15px 40px rgba(0, 0, 0, 0.1);
}

.hero-success-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--lucem-blue), var(--lucem-yellow));
  border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
}

.success-card-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid var(--border-light);
}

.student-avatar {
  flex-shrink: 0;
}

.student-info {
  flex: 1;
}

.student-info strong {
  display: block;
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--spacing-xs);
}

.student-info span {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
}

.result-badge {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-xs) var(--spacing-sm);
  background: rgba(39, 174, 96, 0.1);
  color: var(--color-success);
  border-radius: var(--border-radius-full);
  font-size: var(--font-size-sm);
  font-weight: 600;
  white-space: nowrap;
}

.result-badge.success svg {
  color: var(--color-success);
}

/* Progress Comparison */
.progress-comparison {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.progress-item {
  flex: 1;
}

.progress-label {
  display: block;
  font-size: var(--font-size-xs);
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-xs);
}

.progress-bar {
  width: 100%;
  height: 32px;
  background: var(--bg-secondary);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: white;
  background: var(--text-tertiary);
  border-radius: var(--border-radius-md);
  transition: width 2s ease-out;
}

.progress-fill.success {
  background: linear-gradient(135deg, var(--color-success) 0%, #27ae60 100%);
}

.progress-arrow {
  flex-shrink: 0;
  color: var(--lucem-blue);
}

.progress-arrow svg {
  animation: pulse 2s ease-in-out infinite;
}

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

.success-quote {
  font-size: var(--font-size-base);
  font-style: italic;
  line-height: 1.6;
  color: var(--text-secondary);
  padding: var(--spacing-md);
  background: var(--bg-secondary);
  border-left: 3px solid var(--lucem-yellow);
  border-radius: var(--border-radius-md);
  margin: 0;
}

/* ===== FLOATING ICONS ===== */
.hero-floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-md);
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  animation: floatSlow 6s ease-in-out infinite;
  z-index: 1;
}

.hero-success-card {
  position: relative;
  z-index: 2;
}

.floating-icon svg {
  color: var(--lucem-blue);
}

.floating-icon span {
  font-size: var(--font-size-xs);
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}

.icon-1 {
  top: -10%;
  right: 15%;
  animation-delay: 0s;
}

.icon-2 {
  top: -5%;
  right: 45%;
  animation-delay: 2s;
}

.icon-3 {
  bottom: -8%;
  right: 30%;
  animation-delay: 4s;
}

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

/* ===== LIGHTHOUSE BACKGROUND ===== */
.hero-lighthouse-bg {
  position: absolute;
  bottom: -50px;
  right: -50px;
  z-index: 0;
  opacity: 0.1;
  animation: rotate 60s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--spacing-3xl);
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-badge {
    justify-content: center;
  }

  .hero-stats-inline {
    align-items: center;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-trust-badges {
    justify-content: center;
  }

  .hero-success-card {
    max-width: 100%;
  }

  .floating-icon {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: var(--spacing-2xl) 0;
  }

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

  .hero-title-sub {
    font-size: 1.25rem;
  }

  .hero-stats-inline {
    gap: var(--spacing-sm);
  }

  .stat-inline {
    font-size: var(--font-size-sm);
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .progress-comparison {
    flex-direction: column;
  }

  .progress-arrow {
    transform: rotate(90deg);
  }

  .hero-lighthouse-bg {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-success-card {
    padding: var(--spacing-md);
  }

  .success-card-header {
    flex-wrap: wrap;
  }

  .result-badge {
    flex-basis: 100%;
    justify-content: center;
  }
}

/* Note: Old banner placeholder styles removed - now using hero-background-image */
