/**
 * Homepage hero section.
 *
 * Part of the style.css set - enqueued in order.
 * Order matters: later parts override earlier ones.
 */

/* ============================================
   HERO SECTION - Modern Design
   ============================================ */

.hero-section {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  background: #0f172a;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.80) 0%,
    rgba(0, 77, 102, 0.60) 50%,
    rgba(15, 23, 42, 0.80) 100%
  );
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url('assets/svg/pattern-boxes.svg');
  background-size: 300px;
  opacity: 0.03;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--color-white);
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--space-12) 0;
}

.hero-content .section-label {
  display: inline-block;
  padding: var(--space-2) var(--space-6);
  background: rgba(0, 153, 204, 0.15);
  border: 1px solid rgba(0, 153, 204, 0.3);
  color: #38bdf8;
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--border-radius-full);
  margin-bottom: var(--space-6);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 var(--space-6) 0;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.hero-title .text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto var(--space-10);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-16);
}

.hero-actions .btn-primary {
  background: linear-gradient(135deg, #0099cc 0%, #0077aa 100%);
  color: white;
  padding: var(--space-4) var(--space-8);
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0, 153, 204, 0.4);
  border: none;
}

.hero-actions .btn-primary:hover {
  color: white;
  box-shadow: 0 6px 30px rgba(0, 153, 204, 0.6);
  transform: translateY(-2px);
}

.hero-actions .btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: var(--space-4) var(--space-8);
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.hero-actions .btn-outline:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-10);
  max-width: 900px;
  margin: 0 auto;
  padding-top: var(--space-10);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats .stat {
  text-align: center;
}

.hero-stats .stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #38bdf8;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.hero-stats .stat-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

