@import 'tailwindcss/base';
@import 'tailwindcss/components';
@import 'tailwindcss/utilities';

/* Custom CSS Variables */
:root {
  --primary-50: #f0f9ff;
  --primary-100: #e0f2fe;
  --primary-200: #bae6fd;
  --primary-300: #7dd3fc;
  --primary-400: #38bdf8;
  --primary-500: #0ea5e9;
  --primary-600: #0284c7;
  --primary-700: #0369a1;
  --primary-800: #075985;
  --primary-900: #0c4a6e;
  
  --accent-50: #fdf4ff;
  --accent-100: #fae8ff;
  --accent-200: #f5d0fe;
  --accent-300: #f0abfc;
  --accent-400: #e879f9;
  --accent-500: #d946ef;
  --accent-600: #c026d3;
  --accent-700: #a21caf;
  --accent-800: #86198f;
  --accent-900: #701a75;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: #000000;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.font-black {
  font-weight: 900;
}

/* Hero Slider Styles */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.8) 0%, 
    rgba(6, 182, 212, 0.3) 25%, 
    rgba(168, 85, 247, 0.3) 50%, 
    rgba(236, 72, 153, 0.3) 75%, 
    rgba(0, 0, 0, 0.8) 100%);
  backdrop-filter: blur(2px);
}

/* Slider Navigation */
.slider-nav {
  display: flex;
  gap: 12px;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-dot.active {
  background: linear-gradient(45deg, #06b6d4, #a855f7, #ec4899);
  border-color: transparent;
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

.nav-dot:hover {
  border-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

/* Masked Blur Images */
.masked-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.masked-image {
  position: absolute;
  width: 300px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  opacity: 0.6;
  transition: all 1s ease;
}

.masked-image-1 {
  top: 10%;
  left: 5%;
  animation: float-mask-1 8s ease-in-out infinite;
  mask: radial-gradient(ellipse at center, black 40%, transparent 70%);
  -webkit-mask: radial-gradient(ellipse at center, black 40%, transparent 70%);
}

.masked-image-2 {
  top: 20%;
  right: 10%;
  animation: float-mask-2 10s ease-in-out infinite 2s;
  mask: linear-gradient(45deg, black 30%, transparent 70%);
  -webkit-mask: linear-gradient(45deg, black 30%, transparent 70%);
}

.masked-image-3 {
  bottom: 30%;
  left: 15%;
  animation: float-mask-3 12s ease-in-out infinite 4s;
  mask: polygon(0% 0%, 70% 0%, 100% 70%, 30% 100%);
  -webkit-mask: polygon(0% 0%, 70% 0%, 100% 70%, 30% 100%);
}

.masked-image-4 {
  bottom: 15%;
  right: 5%;
  animation: float-mask-4 9s ease-in-out infinite 1s;
  mask: radial-gradient(circle at 30% 30%, black 50%, transparent 80%);
  -webkit-mask: radial-gradient(circle at 30% 30%, black 50%, transparent 80%);
}

.blur-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px) brightness(0.8) contrast(1.2);
  transition: all 0.5s ease;
}

/* Mask Float Animations */
@keyframes float-mask-1 {
  0%, 100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-30px) translateX(20px) rotate(5deg);
    opacity: 0.8;
  }
}

@keyframes float-mask-2 {
  0%, 100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0.5;
  }
  50% {
    transform: translateY(25px) translateX(-15px) rotate(-3deg);
    opacity: 0.7;
  }
}

@keyframes float-mask-3 {
  0%, 100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-20px) translateX(30px) rotate(8deg);
    opacity: 0.9;
  }
}

@keyframes float-mask-4 {
  0%, 100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(35px) translateX(-25px) rotate(-5deg);
    opacity: 0.8;
  }
}

/* Gallery Styles */
.gallery-grid {
  perspective: 1000px;
}

.gallery-item {
  transform-style: preserve-3d;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
  transform: translateY(-20px) rotateX(5deg) rotateY(5deg);
}

.gallery-mask {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(168, 85, 247, 0.1));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.6s ease;
  filter: brightness(0.8) contrast(1.1);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
  filter: brightness(1) contrast(1.2) saturate(1.2);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(6, 182, 212, 0.8) 0%, 
    rgba(168, 85, 247, 0.8) 50%, 
    rgba(236, 72, 153, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s;
}

.gallery-item:hover .overlay-content {
  transform: translateY(0);
}

/* Enhanced Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes float-slow {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  33% {
    transform: translateY(-30px) translateX(10px);
  }
  66% {
    transform: translateY(-10px) translateX(-10px);
  }
}

@keyframes float-reverse {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  33% {
    transform: translateY(20px) translateX(-15px);
  }
  66% {
    transform: translateY(-15px) translateX(15px);
  }
}

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

@keyframes gradient-x {
  0%, 100% {
    background-size: 200% 200%;
    background-position: left center;
  }
  50% {
    background-size: 200% 200%;
    background-position: right center;
  }
}

@keyframes gradient {
  0%, 100% {
    background-size: 400% 400%;
    background-position: 0% 50%;
  }
  50% {
    background-size: 400% 400%;
    background-position: 100% 50%;
  }
}

@keyframes bounce-slow {
  0%, 20%, 53%, 80%, 100% {
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    transform: translate3d(0, -15px, 0);
  }
  70% {
    transform: translate3d(0, -8px, 0);
  }
  90% {
    transform: translate3d(0, -2px, 0);
  }
}

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

@keyframes scroll-indicator {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

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

@keyframes float-icon-delayed {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(-10deg);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.3), 0 0 40px rgba(168, 85, 247, 0.2), 0 0 60px rgba(236, 72, 153, 0.1);
  }
  50% {
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.5), 0 0 60px rgba(168, 85, 247, 0.4), 0 0 90px rgba(236, 72, 153, 0.3);
  }
}

@keyframes text-glow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(6, 182, 212, 0.3), 0 0 30px rgba(168, 85, 247, 0.2);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(6, 182, 212, 0.5), 0 0 40px rgba(168, 85, 247, 0.4);
  }
}

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

@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  0%, 50% {
    border-color: transparent;
  }
  51%, 100% {
    border-color: #06b6d4;
  }
}

/* Animation Classes */
.animate-float {
  animation: float 6s ease-in-out infinite;
}

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

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

.animate-spin-slow {
  animation: spin-slow 20s linear infinite;
}

.animate-gradient-x {
  animation: gradient-x 3s ease infinite;
}

.animate-gradient {
  animation: gradient 6s ease infinite;
}

.animate-bounce-slow {
  animation: bounce-slow 3s infinite;
}

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

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

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

.animate-float-icon-delayed {
  animation: float-icon-delayed 4s ease-in-out infinite 2s;
}

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

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

.animate-particle-float {
  animation: particle-float 15s linear infinite;
}

/* Particle System */
.particles-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: linear-gradient(45deg, #06b6d4, #a855f7, #ec4899);
  border-radius: 50%;
  opacity: 0;
}

.particle-1 {
  left: 10%;
  animation: particle-float 12s linear infinite;
  animation-delay: 0s;
}

.particle-2 {
  left: 20%;
  animation: particle-float 15s linear infinite;
  animation-delay: 2s;
}

.particle-3 {
  left: 30%;
  animation: particle-float 18s linear infinite;
  animation-delay: 4s;
}

.particle-4 {
  left: 60%;
  animation: particle-float 14s linear infinite;
  animation-delay: 1s;
}

.particle-5 {
  left: 80%;
  animation: particle-float 16s linear infinite;
  animation-delay: 3s;
}

.particle-6 {
  left: 90%;
  animation: particle-float 13s linear infinite;
  animation-delay: 5s;
}

/* Grid Pattern */
.grid-pattern {
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(6, 182, 212, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 182, 212, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: float-slow 20s ease-in-out infinite;
}

/* Geometric Shapes */
.geometric-shape {
  filter: blur(1px);
  will-change: transform;
}

/* Floating Icons */
.floating-icons {
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  opacity: 0.6;
  filter: drop-shadow(0 0 10px currentColor);
}

/* Hero Text Effects */
.hero-text-mask {
  background: linear-gradient(45deg, #06b6d4, #a855f7, #ec4899, #06b6d4);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text-glow {
  position: relative;
}

.hero-text-glow::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(45deg, #06b6d4, #a855f7, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: blur(10px);
  opacity: 0.7;
}

/* Typewriter Effect */
.typewriter-text {
  overflow: hidden;
  border-right: 2px solid #06b6d4;
  white-space: nowrap;
  animation: typewriter 3s steps(40, end), blink 0.75s step-end infinite;
}

.typewriter-text-2 {
  overflow: hidden;
  border-right: 2px solid #a855f7;
  white-space: nowrap;
  animation: typewriter 2s steps(30, end) 3.5s both, blink 0.75s step-end infinite 3.5s;
}

/* Enhanced Service Cards */
.service-card {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.service-card:hover {
  transform: translateY(-15px) scale(1.03);
}

.service-card-inner {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.service-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.service-card:hover .service-card-inner::before {
  left: 100%;
}

/* Enhanced Buttons */
.cta-button-primary {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cta-button-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.6s ease;
}

.cta-button-primary:hover::before {
  transform: translateX(100%) skewX(-15deg);
}

.cta-button-secondary {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

/* Counter Animation */
.counter {
  font-variant-numeric: tabular-nums;
}

/* Stats Animation */
.stat-item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.stat-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll-based Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Masking Effects */
.mask-gradient {
  -webkit-mask-image: linear-gradient(45deg, transparent 20%, black 50%, transparent 80%);
  mask-image: linear-gradient(45deg, transparent 20%, black 50%, transparent 80%);
}

/* Enhanced Glassmorphism */
.glass-effect {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #000000;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #06b6d4, #a855f7, #ec4899);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #0891b2, #9333ea, #db2777);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-content p {
    font-size: 1.125rem;
  }
  
  .service-card {
    margin-bottom: 1rem;
  }
  
  .floating-icon {
    display: none;
  }
  
  .geometric-shape {
    opacity: 0.5;
  }
  
  .masked-image {
    width: 200px;
    height: 150px;
  }
  
  .gallery-image {
    height: 250px;
  }
}

/* Enhanced Hover Effects */
.nav-link {
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #06b6d4, #a855f7, #ec4899);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile Menu Styles */
#mobile-menu {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(107, 114, 128, 0.2);
  transition: all 0.3s ease;
  animation: slideDown 0.3s ease;
}

#mobile-menu.hidden {
  animation: slideUp 0.3s ease;
}

#mobile-menu a {
  transition: all 0.3s ease;
  border-radius: 8px;
}

#mobile-menu a:hover {
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  transform: translateX(4px);
}

#mobile-menu-btn, #mobile-menu-btn-pages {
  transition: all 0.3s ease;
}

#mobile-menu-btn:hover, #mobile-menu-btn-pages:hover {
  color: #06b6d4;
  transform: scale(1.1);
}

#mobile-menu-btn svg, #mobile-menu-btn-pages svg {
  transition: transform 0.3s ease;
}

.rotate-90 {
  transform: rotate(90deg);
}

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

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

/* Form Enhancements */
input:focus,
textarea:focus {
  outline: none;
  ring: 2px;
  ring-color: #06b6d4;
  border-color: #06b6d4;
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

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

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

/* Advanced Background Effects */
.hero-bg-animated {
  background: linear-gradient(-45deg, #000000, #1a1a2e, #16213e, #0f3460);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

/* Neon Effects */
.neon-text {
  text-shadow: 
    0 0 5px currentColor,
    0 0 10px currentColor,
    0 0 15px currentColor,
    0 0 20px currentColor;
}

.neon-border {
  box-shadow: 
    0 0 5px currentColor,
    0 0 10px currentColor,
    0 0 15px currentColor,
    inset 0 0 5px currentColor;
}

/* Micro Interactions */
.micro-bounce {
  transition: transform 0.1s ease;
}

.micro-bounce:active {
  transform: scale(0.95);
}

/* Loading States */
.loading-shimmer {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* WhatsApp Floating Button */
.whatsapp-btn {
  position: relative;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.whatsapp-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.whatsapp-btn:hover::before {
  left: 100%;
}

.whatsapp-btn:hover {
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
  transform: translateY(-3px) scale(1.05);
}

.whatsapp-btn:active {
  transform: translateY(-1px) scale(1.02);
}

/* WhatsApp floating animation */
@keyframes whatsapp-float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

#whatsapp-float {
  animation: whatsapp-float 3s ease-in-out infinite;
}

/* WhatsApp pulse effect */
@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.whatsapp-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(37, 211, 102, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: whatsapp-pulse 2s infinite;
  z-index: -1;
}

/* WhatsApp notification dot animation */
@keyframes notification-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.whatsapp-btn .animate-ping {
  animation: notification-pulse 1.5s ease-in-out infinite;
}

/* Responsive WhatsApp button */
@media (max-width: 768px) {
  #whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-btn {
    width: 56px;
    height: 56px;
  }
  
  .whatsapp-btn svg {
    width: 24px;
    height: 24px;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Print Styles */
@media print {
  .no-print {
    display: none !important;
  }
  
  * {
    background: white !important;
    color: black !important;
  }
}