/* Index Page Specific Styles */
.hero-showcase {
  position: relative;
  overflow: hidden;
  padding: 8rem 0 6rem;
}

.showcase-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.showcase-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.showcase-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 3rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards 0.2s;
}

/* Featured Products Section */
.featured-products {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--background), var(--surface));
  position: relative;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.product-card:nth-child(1) {
  animation: fadeInUp 0.6s ease forwards 0.1s;
}

.product-card:nth-child(2) {
  animation: fadeInUp 0.6s ease forwards 0.3s;
}

.product-card:nth-child(3) {
  animation: fadeInUp 0.6s ease forwards 0.5s;
}

.product-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(110, 49, 255, 0.15);
}

.product-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  background: var(--primary-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.product-icon svg {
  color: var(--primary);
  font-size: 28px;
}

.product-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-weight: 600;
}

.product-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.learn-more:hover {
  gap: 0.8rem;
}

/* Stats Section */
.stats-section {
  padding: 4rem 2rem;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, var(--primary), #9f6eff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 2rem;
  background: var(--background);
  position: relative;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(110, 49, 255, 0.3);
}

.quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: rgba(110, 49, 255, 0.2);
  font-size: 2rem;
}

.testimonial-text {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-details h4 {
  color: var(--text-primary);
  font-weight: 600;
  margin: 0;
}

.author-details p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

/* Call to Action */
.cta-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(110, 49, 255, 0.1), rgba(0, 0, 0, 0));
  position: relative;
  overflow: hidden;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.cta-description {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .showcase-content {
    padding: 0 1rem;
  }
  
  .featured-products,
  .stats-section,
  .testimonials,
  .cta-section {
    padding: 4rem 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    padding: 0 2rem;
  }
  
  .stats-grid {
    gap: 2rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

/* Animation for a floating decoration */
.floating-decoration {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--primary-glow) 0%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 15s ease-in-out infinite;
}

.decoration-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.decoration-2 {
  bottom: 10%;
  right: 5%;
  animation-delay: -5s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-20px, 20px);
  }
} 