/* Bundle 7 - Neon Glow Custom Styles */

html {
  overflow-x: hidden;
}

/* ========================================
   ANIMATIONS
   ======================================== */

/* Card slide-up animation */
@keyframes cardSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-animate {
  animation: cardSlideUp 0.6s ease-out forwards;
  opacity: 0;
}

.card-animate:nth-child(1) { animation-delay: 0.1s; }
.card-animate:nth-child(2) { animation-delay: 0.2s; }
.card-animate:nth-child(3) { animation-delay: 0.3s; }
.card-animate:nth-child(4) { animation-delay: 0.4s; }
.card-animate:nth-child(5) { animation-delay: 0.5s; }
.card-animate:nth-child(6) { animation-delay: 0.6s; }

/* Gradient mesh animation */
@keyframes gradientMesh {
  0%, 100% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 100% 50%;
  }
  50% {
    background-position: 100% 100%;
  }
  75% {
    background-position: 0% 100%;
  }
}

/* Glow pulse effect */
@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.6);
  }
}

.glow-pulse {
  animation: glowPulse 2s ease-in-out infinite;
}

/* Floating orbs for hero */
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* ========================================
   GRADIENT MESH BACKGROUND
   ======================================== */

.gradient-mesh {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: 
    radial-gradient(ellipse at 20% 80%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(247, 147, 30, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 40% 40%, rgba(255, 210, 63, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 60% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  background-size: 400% 400%;
  animation: gradientMesh 15s ease infinite;
  filter: blur(60px);
}

/* ========================================
   GLOW EFFECTS
   ======================================== */

.glow-border {
  border: 1px solid rgba(255, 107, 53, 0.3);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
}

.glow-text {
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

/* ========================================
   RESPONSIVE UTILITIES
   ======================================== */

@media (max-width: 767px) {
  .card-animate {
    animation: cardSlideUp 0.5s ease-out forwards;
  }
  
  .gradient-mesh {
    background-size: 200% 200%;
    animation: gradientMesh 20s ease infinite;
  }
}

/* ========================================
   MOBILE DRAWER
   ======================================== */

#mobileDrawer {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   BUTTONS
   ======================================== */

button,
a[href] {
  cursor: pointer;
  transition: all 0.3s ease;
}

/* ========================================
   INTERSECTION OBSERVER
   ======================================== */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   FORM STYLES
   ======================================== */

input[type="email"],
input[type="text"] {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input[type="email"]:focus,
input[type="text"]:focus {
  border-color: #ff6b35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
  outline: none;
}

/* ========================================
   TESTIMONIAL AVATARS
   ======================================== */

img.rounded-full {
  object-fit: cover;
}