@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --primary-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  --secondary-gradient: linear-gradient(135deg, #f43f5e 0%, #fb923c 100%);
  --accent-gradient: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
  --dark-glass: rgba(15, 23, 42, 0.8);
  --light-glass: rgba(255, 255, 255, 0.7);

  --shadow-premium: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);

  --radius-xl: 24px;
  --radius-lg: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f8fafc;
  color: #1e293b;
}

h1,
h2,
h3,
.navbar-brand {
  font-family: 'Outfit', sans-serif;
}

/* Glassmorphism Card */
.glass-card {
  background: var(--light-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-premium);
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25);
}

/* Premium Buttons */
.btn-premium {
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-gradient);
  z-index: -1;
  transition: opacity 0.3s ease;
}

.btn-premium:hover {
  transform: scale(1.05);
  color: white;
  box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.5);
}

/* Progress Counters */
.stat-card {
  text-align: center;
  padding: 30px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

/* Product Image Reveal */
.product-img-container {
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
}

.product-img-container img {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-img-container:hover img {
  transform: scale(1.1);
}

/* Floating Animation */
@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(2deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

.floating {
  animation: float 5s ease-in-out infinite;
}

/* Progress Urgent */
.progress-urgent {
  height: 8px;
  border-radius: 10px;
}

.progress-bar-urgent {
  background: var(--secondary-gradient);
  animation: shimmer 2s infinite linear;
  background-size: 200% 100%;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Scroll Indicators */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Footer Section */
.footer-modern {
  background: #0f172a;
  color: #cbd5e1;
  padding: 80px 0 30px;
}

.footer-link {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: block;
  margin-bottom: 10px;
}

.footer-link:hover {
  color: #a855f7;
  padding-left: 8px;
}

.btn-gradient-primary {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: white !important;
  border: none;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
}

.btn-gradient-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
  filter: brightness(1.2);
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  color: white;
}

.social-icon:hover {
  background: var(--primary-gradient);
  transform: translateY(-5px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
}