/* Color Variables for Wooflii Dog Walking App */
:root {
    --wooflii-beige: #f5f5dc;
    --wooflii-light-beige: #faf9f7;
    --wooflii-orange: #fb923c;
    --wooflii-amber: #f59e0b;
    --wooflii-turquoise: #06b6d4;
    --wooflii-cyan: #0891b2;
    --wooflii-teal: #0d9488;
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.3);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.3);
    }
    70% {
        transform: scale(1);
    }
}

@keyframes wiggle {
    0%, 7% {
        transform: rotateZ(0);
    }
    15% {
        transform: rotateZ(-15deg);
    }
    20% {
        transform: rotateZ(10deg);
    }
    25% {
        transform: rotateZ(-10deg);
    }
    30% {
        transform: rotateZ(6deg);
    }
    35% {
        transform: rotateZ(-4deg);
    }
    40%, 100% {
        transform: rotateZ(0);
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Animation classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
    opacity: 0;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
    opacity: 0;
}

.animate-bounce-in {
    animation: bounceIn 0.8s ease-out forwards;
    opacity: 0;
}

.animate-pulse-slow {
    animation: pulse 3s ease-in-out infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
}

.animate-heartbeat {
    animation: heartbeat 2s ease-in-out infinite;
}

.animate-wiggle {
    animation: wiggle 2s ease-in-out infinite;
}

/* Hover effects */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(45deg, var(--wooflii-orange), var(--wooflii-amber), var(--wooflii-turquoise));
    background-size: 300% 300%;
    animation: gradientMove 3s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Ripple effect */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple:hover::before {
    width: 300px;
    height: 300px;
}

/* Phone mockup */
.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #2c3e50, #34495e);
    border-radius: 35px;
    padding: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #f8fafc, #e2e8f0);
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background: #1a202c;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.app-content {
    padding: 40px 20px 20px;
    height: 100%;
    background: linear-gradient(145deg, #fff, #f7fafc);
}

/* Scroll Reveal Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
  will-change: transform, opacity;
}

.scroll-reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
  will-change: transform, opacity;
}

.scroll-reveal-left.reveal-visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
  will-change: transform, opacity;
}

.scroll-reveal-right.reveal-visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s ease;
  will-change: transform, opacity;
}

.scroll-reveal-scale.reveal-visible {
  opacity: 1;
  transform: scale(1);
}

.scroll-reveal-fade {
  opacity: 0;
  transition: opacity 0.8s ease;
  will-change: opacity;
}

.scroll-reveal-fade.reveal-visible {
  opacity: 1;
}

/* Staggered animations for groups */
.scroll-reveal-stagger {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
  will-change: transform, opacity;
}

.scroll-reveal-stagger.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal-stagger:nth-child(1) { transition-delay: 0.1s; }
.scroll-reveal-stagger:nth-child(2) { transition-delay: 0.2s; }
.scroll-reveal-stagger:nth-child(3) { transition-delay: 0.3s; }
.scroll-reveal-stagger:nth-child(4) { transition-delay: 0.4s; }
.scroll-reveal-stagger:nth-child(5) { transition-delay: 0.5s; }

/* Enhanced scroll reveal with bounce */
.scroll-reveal-bounce {
  opacity: 0;
  transform: translateY(40px) scale(0.9);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: transform, opacity;
}

.scroll-reveal-bounce.reveal-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Smooth entrance for cards */
.scroll-reveal-card {
  opacity: 0;
  transform: translateY(30px) rotateX(10deg);
  transition: all 0.8s ease;
  will-change: transform, opacity;
}

.scroll-reveal-card.reveal-visible {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
}

/* Modern Decorative Elements */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(251, 146, 60, 0.1), rgba(249, 115, 22, 0.1));
  animation: float-random 20s infinite ease-in-out;
}

.floating-shape:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.floating-shape:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 20%;
  right: 15%;
  animation-delay: -5s;
}

.floating-shape:nth-child(3) {
  width: 100px;
  height: 100px;
  bottom: 30%;
  left: 20%;
  animation-delay: -10s;
}

.floating-shape:nth-child(4) {
  width: 40px;
  height: 40px;
  top: 50%;
  right: 25%;
  animation-delay: -15s;
}

@keyframes float-random {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(90deg); }
  50% { transform: translateY(10px) rotate(180deg); }
  75% { transform: translateY(-15px) rotate(270deg); }
}

/* Gradient Blobs */
.gradient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.3;
  animation: blob-bounce 8s infinite ease-in-out;
}

.gradient-blob-1 {
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, #f97316, #fb923c);
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.gradient-blob-2 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #fb923c, #fed7aa);
  bottom: 20%;
  left: 5%;
  animation-delay: -4s;
}

.gradient-blob-3 {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #fed7aa, #f97316);
  top: 60%;
  right: 30%;
  animation-delay: -2s;
}

@keyframes blob-bounce {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.1); }
}

/* Decorative Lines */
.decorative-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f97316, transparent);
  opacity: 0.3;
  animation: line-slide 6s infinite ease-in-out;
}

.decorative-line-1 {
  width: 200px;
  top: 25%;
  left: 0;
  animation-delay: 0s;
}

.decorative-line-2 {
  width: 150px;
  top: 75%;
  right: 0;
  animation-delay: -3s;
}

@keyframes line-slide {
  0%, 100% { transform: translateX(-100px); opacity: 0; }
  50% { transform: translateX(0px); opacity: 0.3; }
}

/* Geometric Patterns */
.geometric-pattern {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(251, 146, 60, 0.2);
  transform: rotate(45deg);
  animation: pattern-rotate 10s infinite linear;
}

.geometric-pattern-1 {
  top: 15%;
  left: 5%;
  animation-delay: 0s;
}

.geometric-pattern-2 {
  bottom: 25%;
  right: 10%;
  animation-delay: -5s;
}

.geometric-pattern-3 {
  top: 60%;
  left: 80%;
  animation-delay: -7s;
}

@keyframes pattern-rotate {
  0% { transform: rotate(45deg) scale(1); }
  50% { transform: rotate(225deg) scale(1.2); }
  100% { transform: rotate(405deg) scale(1); }
}

/* Modern Card Accents */
.card-accent {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #f97316, #fb923c, #fed7aa, #f97316);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-with-accent {
  position: relative;
  overflow: hidden;
}

.card-with-accent:hover .card-accent {
  opacity: 0.1;
}

/* Glowing Dots */
.glow-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #f97316;
  border-radius: 50%;
  box-shadow: 0 0 20px #f97316;
  animation: glow-pulse 3s infinite ease-in-out;
}

.glow-dot-1 {
  top: 20%;
  left: 30%;
  animation-delay: 0s;
}

.glow-dot-2 {
  bottom: 40%;
  right: 20%;
  animation-delay: -1s;
}

.glow-dot-3 {
  top: 70%;
  left: 70%;
  animation-delay: -2s;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}



/* Modern Grid Background */
.grid-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(249, 115, 22, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 115, 22, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 1;
}

/* Floating Icons */
.floating-icon {
  position: absolute;
  width: 30px;
  height: 30px;
  background: linear-gradient(45deg, #f97316, #fb923c);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  animation: float-icon 6s infinite ease-in-out;
  opacity: 0.1;
}

.floating-icon-1 {
  top: 10%;
  left: 80%;
  animation-delay: 0s;
}

.floating-icon-2 {
  bottom: 20%;
  left: 10%;
  animation-delay: -2s;
}

.floating-icon-3 {
  top: 50%;
  right: 5%;
  animation-delay: -4s;
}

@keyframes float-icon {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.1; }
  50% { transform: translateY(-20px) rotate(180deg); opacity: 0.3; }
}

/* Additional Modern Elements */
.rotating-border {
  position: relative;
  overflow: hidden;
}

.rotating-border::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, #f97316, transparent);
  animation: rotate-border 8s linear infinite;
  z-index: -1;
}

.rotating-border::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: inherit;
  border-radius: inherit;
  z-index: -1;
}

@keyframes rotate-border {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Floating Particles */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #f97316;
  border-radius: 50%;
  animation: particle-float 15s infinite linear;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: -2s; }
.particle:nth-child(3) { left: 30%; animation-delay: -4s; }
.particle:nth-child(4) { left: 40%; animation-delay: -6s; }
.particle:nth-child(5) { left: 50%; animation-delay: -8s; }
.particle:nth-child(6) { left: 60%; animation-delay: -10s; }
.particle:nth-child(7) { left: 70%; animation-delay: -12s; }
.particle:nth-child(8) { left: 80%; animation-delay: -14s; }

@keyframes particle-float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.3; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

/* Dog & Community Themed Elements */
.themed-element {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.15;
  font-size: 24px;
  animation: themed-float 8s infinite ease-in-out;
}

.dog-paw {
  color: #f97316;
  animation: paw-walk 6s infinite ease-in-out;
}

.dog-bone {
  color: #fb923c;
  animation: bone-wiggle 5s infinite ease-in-out;
}

.heart-community {
  color: #f97316;
  animation: heart-pulse 4s infinite ease-in-out;
}

.walking-trail {
  color: #fed7aa;
  animation: trail-move 7s infinite ease-in-out;
}

.ball-toy {
  color: #fb923c;
  animation: ball-bounce 3s infinite ease-in-out;
}

.leash-element {
  color: #f97316;
  animation: leash-swing 6s infinite ease-in-out;
}

.themed-1 {
  top: 15%;
  left: 85%;
  animation-delay: 0s;
}

.themed-2 {
  top: 70%;
  left: 5%;
  animation-delay: -2s;
}

.themed-3 {
  top: 40%;
  left: 90%;
  animation-delay: -4s;
}

.themed-4 {
  top: 25%;
  left: 10%;
  animation-delay: -1s;
}

.themed-5 {
  top: 60%;
  left: 80%;
  animation-delay: -3s;
}

.themed-6 {
  top: 80%;
  left: 30%;
  animation-delay: -5s;
}

@keyframes themed-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-25px) rotate(5deg); }
}

@keyframes paw-walk {
  0%, 100% { transform: translateX(0px) rotate(0deg); opacity: 0.1; }
  25% { transform: translateX(10px) rotate(15deg); opacity: 0.2; }
  50% { transform: translateX(0px) rotate(0deg); opacity: 0.15; }
  75% { transform: translateX(-5px) rotate(-10deg); opacity: 0.2; }
}

@keyframes bone-wiggle {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(5deg) scale(1.1); }
  50% { transform: rotate(-5deg) scale(1); }
  75% { transform: rotate(3deg) scale(1.05); }
}

@keyframes heart-pulse {
  0%, 100% { transform: scale(1); opacity: 0.1; }
  50% { transform: scale(1.2); opacity: 0.25; }
}

@keyframes trail-move {
  0%, 100% { transform: translateX(-20px) rotate(0deg); opacity: 0.1; }
  50% { transform: translateX(20px) rotate(180deg); opacity: 0.2; }
}

@keyframes ball-bounce {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-15px) scale(1.1); }
}

@keyframes leash-swing {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(10deg); }
  50% { transform: rotate(0deg); }
  75% { transform: rotate(-8deg); }
}

/* Paw Print Trail */
.paw-trail {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.paw-print {
  position: absolute;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, #f97316 30%, transparent 30%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  opacity: 0;
  animation: paw-trail-walk 8s infinite linear;
}

.paw-print::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 2px;
  width: 3px;
  height: 3px;
  background: #f97316;
  border-radius: 50%;
}

.paw-print::after {
  content: '';
  position: absolute;
  top: -3px;
  right: 2px;
  width: 3px;
  height: 3px;
  background: #f97316;
  border-radius: 50%;
}

.paw-print:nth-child(1) { animation-delay: 0s; }
.paw-print:nth-child(2) { animation-delay: -1s; }
.paw-print:nth-child(3) { animation-delay: -2s; }
.paw-print:nth-child(4) { animation-delay: -3s; }
.paw-print:nth-child(5) { animation-delay: -4s; }

@keyframes paw-trail-walk {
  0% { left: -20px; opacity: 0; transform: rotate(0deg); }
  10% { opacity: 0.3; }
  50% { opacity: 0.2; transform: rotate(15deg); }
  90% { opacity: 0.1; }
  100% { left: 100%; opacity: 0; transform: rotate(30deg); }
}

/* Community Icons */
.community-icon {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  font-size: 20px;
  opacity: 0.12;
  animation: community-float 10s infinite ease-in-out;
}

.message-bubble {
  color: #f97316;
  animation: bubble-pop 6s infinite ease-in-out;
}

.user-group {
  color: #fb923c;
  animation: group-gather 8s infinite ease-in-out;
}

.location-pin {
  color: #f97316;
  animation: pin-drop 7s infinite ease-in-out;
}

@keyframes community-float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-20px) scale(1.1); }
}

@keyframes bubble-pop {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.1; }
  25% { transform: scale(1.2) rotate(5deg); opacity: 0.15; }
  50% { transform: scale(1) rotate(0deg); opacity: 0.12; }
  75% { transform: scale(1.1) rotate(-3deg); opacity: 0.18; }
}

@keyframes group-gather {
  0%, 100% { transform: translateX(0px) scale(1); }
  33% { transform: translateX(5px) scale(1.05); }
  66% { transform: translateX(-3px) scale(1.02); }
}

@keyframes pin-drop {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  20% { transform: translateY(-10px) rotate(5deg); }
  40% { transform: translateY(0px) rotate(0deg); }
  60% { transform: translateY(-5px) rotate(-3deg); }
  80% { transform: translateY(0px) rotate(0deg); }
}

/* Dog Walking Animation */
.dog-walking {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  font-size: 28px;
  opacity: 0.2;
  animation: dog-walk-cycle 12s infinite linear;
}

@keyframes dog-walk-cycle {
  0% { 
    left: -50px; 
    transform: scaleX(1) rotate(0deg); 
    opacity: 0; 
  }
  10% { 
    opacity: 0.2; 
  }
  25% { 
    transform: scaleX(1) rotate(5deg); 
  }
  50% { 
    transform: scaleX(1) rotate(-3deg); 
  }
  75% { 
    transform: scaleX(1) rotate(2deg); 
  }
  90% { 
    opacity: 0.1; 
  }
  100% { 
    left: calc(100% + 50px); 
    transform: scaleX(1) rotate(0deg); 
    opacity: 0; 
  }
}

/* Glowing Lines */
.glow-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, #f97316, transparent);
  box-shadow: 0 0 10px #f97316;
  animation: glow-line-move 8s infinite ease-in-out;
}

.glow-line-horizontal {
  width: 100px;
  top: 30%;
  left: 0;
  animation-delay: 0s;
}

.glow-line-vertical {
  width: 1px;
  height: 100px;
  top: 0;
  right: 20%;
  animation-delay: -4s;
}

@keyframes glow-line-move {
  0%, 100% { opacity: 0; transform: translateX(-50px); }
  50% { opacity: 0.8; transform: translateX(50px); }
}

/* Enhanced Visual Effects */
.enhanced-shadow {
  box-shadow: 
    0 10px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.enhanced-gradient {
  background: linear-gradient(
    135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0.05) 50%, 
    transparent 100%
  );
}

.glass-effect {
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.neon-glow {
  box-shadow: 
    0 0 5px rgba(249, 115, 22, 0.5),
    0 0 10px rgba(249, 115, 22, 0.3),
    0 0 15px rgba(249, 115, 22, 0.2),
    0 0 20px rgba(249, 115, 22, 0.1);
}

.text-shadow-glow {
  text-shadow: 
    0 0 10px rgba(249, 115, 22, 0.3),
    0 0 20px rgba(249, 115, 22, 0.2),
    0 0 30px rgba(249, 115, 22, 0.1);
}

/* Gradient Animations */
.animated-gradient {
  background: linear-gradient(
    -45deg, 
    #f97316, 
    #fb923c, 
    #fed7aa, 
    #f97316
  );
  background-size: 400% 400%;
  animation: gradient-shift 8s ease infinite;
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Breathing Effect */
.breathing {
  animation: breathing 4s ease-in-out infinite;
}

@keyframes breathing {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

/* Subtle Hover Effects */
.hover-glow:hover {
  box-shadow: 
    0 0 20px rgba(249, 115, 22, 0.3),
    0 0 40px rgba(249, 115, 22, 0.2),
    0 0 60px rgba(249, 115, 22, 0.1);
  transition: box-shadow 0.3s ease;
}

.hover-lift-enhanced:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 15px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Performance optimizations */
.will-change-transform {
  will-change: transform;
}

.will-change-opacity {
  will-change: opacity;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
} 