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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-in-up {
  animation: fadeInUp 1.2s ease-out forwards;
}

.slide-in-left {
  animation: slideInLeft 1s ease-out forwards;
}

.scale-in {
  animation: scaleIn 0.8s ease-out forwards;
}

.glass-overlay {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
}

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

.highlight-box {
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 100px;
  height: 100px;
  position: absolute;
  border-radius: 8px;
  animation: floatBox 10s ease-in-out infinite;
}

@keyframes floatBox {
  0% { transform: translate(0, 0); }
  50% { transform: translate(10px, 15px); }
  100% { transform: translate(0, 0); }
}

.gradient-bg-dark {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.gradient-bg-light {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card {
  background: linear-gradient(145deg, #1e293b, #334155);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card.featured {
  background: linear-gradient(145deg, #dc2626, #991b1b);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.icon-bounce {
  animation: bounce 2s infinite;
}

.contact-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #dc2626 100%);
}

.service-category {
  border: 2px solid #dc2626;
  border-radius: 12px;
  background: rgba(220, 38, 38, 0.1);
}

.service-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-item-light {
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.package-badge {
  background: linear-gradient(45deg, #dc2626, #ef4444);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 16px;
}

.package-badge1 {
  background: linear-gradient(45deg, #000000, #242121);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 16px;
}

.whatsapp-float {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 1000;
display: flex;
align-items: center;
justify-content: center;
width: 50px;
height: 50px;
background-color: #25D366;
border-radius: 50%;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float img {
width: 30px;
height: 30px;
}

.whatsapp-float:hover {
transform: scale(1.1);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}