/* ===== Page Hero Sections ===== */

/* Services Hero Section */
.services-hero {
  position: relative;
  min-height: 550px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 100px;
  padding: 100px var(--space-xl);
}

.services-hero .hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.services-hero .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  from { transform: translateY(800px); opacity: 0; }
  50% { opacity: 1; }
  to { transform: translateY(-100px); opacity: 0; }
}

.services-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
}

.services-hero-content {
  position: relative;
  z-index: 3;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.services-hero-content h1 {
  font-size: var(--fs-4xl);
  font-weight: 900;
  margin: var(--space-lg) 0 var(--space-md) 0;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
  animation: slide-up 0.8s ease-out;
  line-height: 1.2;
}

.services-hero-subtitle {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-2xl);
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.7);
  animation: slide-up 0.8s ease-out 0.2s backwards;
  line-height: 1.6;
}

.services-hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  animation: slide-up 0.8s ease-out 0.4s backwards;
  flex-wrap: wrap;
}

/* About Hero Section */
.about-hero {
  position: relative;
  min-height: 550px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 100px;
  padding: 100px var(--space-xl);
}

.about-hero .hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.about-hero .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 138, 0, 0.6);
  border-radius: 50%;
  animation: float-particle linear infinite;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
}

.about-hero-content {
  position: relative;
  z-index: 3;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-hero-content h1 {
  font-size: var(--fs-4xl);
  font-weight: 900;
  margin: var(--space-lg) 0 var(--space-md) 0;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFB800 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
  animation: slide-up 0.8s ease-out;
  line-height: 1.2;
}

.about-hero-subtitle {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-2xl);
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.7);
  animation: slide-up 0.8s ease-out 0.2s backwards;
  line-height: 1.6;
}

/* Contact Hero Section */
.contact-hero {
  position: relative;
  min-height: 550px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 100px;
  padding: 100px var(--space-xl);
}

.contact-hero .hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.contact-hero .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(59, 130, 246, 0.6);
  border-radius: 50%;
  animation: float-particle linear infinite;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
}

.contact-hero-content {
  position: relative;
  z-index: 3;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-hero-content h1 {
  font-size: var(--fs-4xl);
  font-weight: 900;
  margin: var(--space-lg) 0 var(--space-md) 0;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
  animation: slide-up 0.8s ease-out;
  line-height: 1.2;
}

.contact-hero-subtitle {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-2xl);
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.7);
  animation: slide-up 0.8s ease-out 0.2s backwards;
  line-height: 1.6;
}

/* Hero Badge Styling */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 138, 0, 0.15);
  color: var(--accent);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--fs-sm);
  border: 1px solid rgba(255, 138, 0, 0.3);
  margin-bottom: var(--space-lg);
  animation: slide-up 0.8s ease-out 0.1s backwards;
}

.hero-badge i {
  font-size: 14px;
}

/* Animations */
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .services-hero,
  .about-hero,
  .contact-hero {
    min-height: 450px;
    padding: 80px var(--space-xl);
    margin-top: 80px;
  }
}

@media (max-width: 768px) {
  .services-hero,
  .about-hero,
  .contact-hero {
    min-height: 400px;
    padding: 60px var(--space-md);
    margin-top: 80px;
  }

  .services-hero-content,
  .about-hero-content,
  .contact-hero-content {
    max-width: 100% !important;
    padding: 0 var(--space-md);
  }

  .services-hero-content h1,
  .about-hero-content h1,
  .contact-hero-content h1 {
    font-size: var(--fs-2xl);
    margin: var(--space-lg) 0 var(--space-md) 0;
  }

  .services-hero-subtitle,
  .about-hero-subtitle,
  .contact-hero-subtitle {
    font-size: var(--fs-md);
    margin-bottom: var(--space-lg);
  }

  .services-hero-buttons,
  .about-hero-buttons,
  .contact-hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-badge {
    font-size: var(--fs-xs);
    padding: 8px 16px;
    margin-bottom: var(--space-md);
  }
}

@media (max-width: 480px) {
  .services-hero,
  .about-hero,
  .contact-hero {
    min-height: 350px;
    padding: 50px var(--space-md);
    margin-top: 70px;
  }

  .services-hero-content h1,
  .about-hero-content h1,
  .contact-hero-content h1 {
    font-size: var(--fs-xl);
  }

  .services-hero-subtitle,
  .about-hero-subtitle,
  .contact-hero-subtitle {
    font-size: var(--fs-base);
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 12px;
  }
}
