/* Hero Section Styles */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at center, rgba(30, 41, 59, 0.8) 0%, var(--bg-color) 100%);
  overflow: hidden;
  padding: 100px 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCI+CjxwYXRoIGQ9Ik0wIDBoNDB2NDBIMHoiIGZpbGw9Im5vbmUiLz4KPHBhdGggZD0iTTIwIDIwTDAgMEwyMCAwIDQwIDIwIDQwIDQwIDIwIDQwIDAgMjB6IiBmaWxsPSJyZ2JhKDI1NSwyNTUsMjU1LDAuMDMpIi8+Cjwvc3ZnPg==') repeat;
  opacity: 0.5;
  z-index: 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-content {
  color: var(--text-main);
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #ffffff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 0.8s ease-out;
  letter-spacing: -1.5px;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
  max-width: 90%;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-image {
  position: relative;
  height: 500px;
  perspective: 1000px;
}

.floating-shapes {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.shape {
  position: absolute;
  border-radius: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.shape-1 {
  width: 280px;
  height: 380px;
  top: 10%;
  left: 10%;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.1));
  animation: float 6s ease-in-out infinite;
  z-index: 3;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: 0%;
  right: 10%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(139, 92, 246, 0.2));
  animation: float 8s ease-in-out infinite reverse;
  z-index: 2;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 0%;
  right: 0%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.1));
  animation: floatShape 10s ease-in-out infinite;
  z-index: 1;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

@keyframes floatShape {

  0%,
  100% {
    transform: translateY(0) rotate(0) scale(1);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }

  50% {
    transform: translateY(-20px) rotate(10deg) scale(1.05);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .hero .container {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 80px 0 60px;
    text-align: center;
  }

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

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

  .hero-subtitle {
    margin: 0 auto 2rem;
  }

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

  .hero-image {
    display: none;
  }
}