/* Extracted styles from index.html */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: #050505; color: #ffffff; overflow-x: hidden; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #000000; }
::-webkit-scrollbar-thumb { background: #333333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #555555; }

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@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 pulse-glow { 0%, 100% { box-shadow: 0 0 20px rgba(239,68,68,0.2); } 50% { box-shadow: 0 0 40px rgba(239,68,68,0.4); } }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes count-up { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.animate-fade-in-up { animation: fadeInUp 0.8s ease-out forwards; opacity: 0; }
.animate-fade-in { animation: fadeIn 1s ease-out forwards; opacity: 0; }
.animate-scale-in { animation: scaleIn 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-float { animation: float 4s ease-in-out infinite; }
.animate-pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }
.animate-spin-slow { animation: spin-slow 20s linear infinite; }

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Gradient text */
.gradient-text { background: linear-gradient(to right, #ffffff, #EF4444); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.gradient-text-white { background: linear-gradient(to right, #ffffff, #a3a3a3); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Glass card */
.glass-card {
    background: rgba(23,23,23,0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
}
.glass-card-solid {
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.08);
}

/* Service card hover */
.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(239,68,68,0.3);
    box-shadow: 0 20px 60px -15px rgba(239,68,68,0.15);
}
.service-card:hover .service-icon {
    background: rgba(239,68,68,0.15);
    border-color: rgba(239,68,68,0.4);
}
.service-card:hover .service-icon svg {
    color: #EF4444;
}

/* Button styles */
.btn-primary {
    background: #EF4444;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px -10px rgba(239,68,68,0.5);
}
.btn-primary:hover {
    background: #DC2626;
    transform: scale(1.05);
    box-shadow: 0 0 45px -10px rgba(239,68,68,0.6);
}
.btn-secondary {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #ffffff;
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

/* Nav link hover */
.nav-link { position: relative; transition: color 0.3s ease; }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #EF4444;
    transition: width 0.3s ease;
}
.nav-link:hover { color: #ffffff; }
.nav-link:hover::after { width: 100%; }

/* Stat counter */
.stat-item { transition: all 0.3s ease; }
.stat-item:hover { transform: scale(1.05); }

/* Product card */
.product-card {
    transition: all 0.4s ease;
}
.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(239,68,68,0.3);
}

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.6);
}

/* Mobile menu */
.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
}
.mobile-menu.open {
    transform: translateX(0);
}

/* Hero background glow */
.hero-glow {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(239,68,68,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-glow-left {
    position: absolute;
    bottom: -300px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(239,68,68,0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Decorative dots */
.dot-pattern {
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Process step connector */
.process-connector {
    position: absolute;
    top: 28px;
    left: calc(50% + 28px);
    width: calc(100% - 56px);
    height: 2px;
    background: linear-gradient(to right, rgba(239,68,68,0.4), rgba(239,68,68,0.1));
}

/* Filter buttons */
.filter-btn {
  padding: 8px 20px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #a3a3a3;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover {
  background: rgba(255,255,255,0.1);
  color: #ffffff;
}
.filter-btn.active {
  background: #EF4444;
  border-color: #EF4444;
  color: #ffffff;
  box-shadow: 0 0 30px -10px rgba(239,68,68,0.5);
}

/* Toast notification */
.toast {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 1001;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}
.toast.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.toast-success {
    background: rgba(34,197,94,0.15);
    border: 1px solid rgba(34,197,94,0.3);
    color: #22C55E;
}
.toast-error {
    background: rgba(239,68,68,0.15);
    border: 1px solid rgba(239,68,68,0.3);
    color: #EF4444;
}
