/**
 * SarasCore Website - Modern CSS with Light/Dark Theme
 * Contemporary Design with Professional Aesthetics
 */

/* CSS Variables for Light/Dark Theme */
:root {
  /* Light Theme Colors */
  --primary-color: #10b981;
  --primary-light: #34d399;
  --primary-dark: #059669;
  --secondary-color: #84cc16;
  --accent-color: #22c55e;
  
  /* Background Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-card: #ffffff;
  --bg-hero: linear-gradient(135deg, #065f46 0%, #064e3b 50%, #10b981 100%);
  
  /* Text Colors */
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  /* Border Colors */
  --border-color: #e2e8f0;
  --border-light: #f1f5f9;
  
  /* Shadow Variables */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #10b981 0%, #34d399 50%, #84cc16 100%);
  --gradient-secondary: linear-gradient(135deg, #84cc16 0%, #65a30d 100%);
  --gradient-accent: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  --gradient-text: linear-gradient(135deg, #10b981 0%, #84cc16 100%);
  
  /* Animation Variables */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
  --border-radius-sm: 0.375rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 0.75rem;
  --border-radius-xl: 1rem;
  --border-radius-2xl: 1.5rem;
}

/* Dark Theme */
[data-theme="dark"] {
  --bg-primary: #000000;
  --bg-secondary: #0a0a0a;
  --bg-tertiary: #111111;
  --bg-card: #0d1117;
  --bg-hero: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #1a1a1a 100%);
  
  --text-primary: #f0f6fc;
  --text-secondary: #c9d1d9;
  --text-muted: #8b949e;
  --text-light: #656d76;
  
  --border-color: #21262d;
  --border-light: #30363d;
  
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.4);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.5), 0 2px 4px -2px rgb(0 0 0 / 0.5);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.6), 0 4px 6px -4px rgb(0 0 0 / 0.6);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.7), 0 8px 10px -6px rgb(0 0 0 / 0.7);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.8);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  transition: background-color var(--transition-normal), color var(--transition-normal);
  overflow-x: hidden;
  position: relative;
}

/* Dynamic floating geometric background elements */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 136, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(0, 204, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
  animation: subtleBackgroundFloat 30s ease-in-out infinite;
}

/* Animated geometric shapes */
.dynamic-shape {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  opacity: 0.1;
}

.dynamic-shape.circle {
  border-radius: 50%;
}

.dynamic-shape.triangle {
  width: 0;
  height: 0;
  background: none;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 15px solid var(--primary-color);
}

.dynamic-shape.square {
  border-radius: 2px;
}

.dynamic-shape:nth-child(1) {
  top: 10%;
  left: 15%;
  width: 60px;
  height: 60px;
  background: rgba(0, 136, 255, 0.1);
  animation: enhancedFloatGeometric 8s ease-in-out infinite;
  animation-delay: 0s;
}

.dynamic-shape:nth-child(2) {
  top: 20%;
  right: 20%;
  width: 40px;
  height: 40px;
  background: rgba(0, 204, 255, 0.1);
  animation: enhancedFloatGeometric 10s ease-in-out infinite;
  animation-delay: 2s;
}

.dynamic-shape:nth-child(3) {
  top: 60%;
  left: 10%;
  width: 30px;
  height: 30px;
  background: rgba(16, 185, 129, 0.1);
  animation: enhancedFloatGeometric 12s ease-in-out infinite;
  animation-delay: 4s;
}

.dynamic-shape:nth-child(4) {
  top: 70%;
  right: 25%;
  width: 50px;
  height: 50px;
  background: rgba(245, 158, 11, 0.1);
  animation: enhancedFloatGeometric 9s ease-in-out infinite;
  animation-delay: 1s;
}

.dynamic-shape:nth-child(5) {
  top: 40%;
  left: 70%;
  width: 35px;
  height: 35px;
  background: rgba(138, 43, 226, 0.1);
  animation: enhancedFloatGeometric 11s ease-in-out infinite;
  animation-delay: 3s;
}

.dynamic-shape:nth-child(6) {
  top: 80%;
  left: 60%;
  width: 25px;
  height: 25px;
  background: rgba(239, 68, 68, 0.1);
  animation: enhancedFloatGeometric 7s ease-in-out infinite;
  animation-delay: 5s;
}

/* Subtle background floating animation */
@keyframes subtleBackgroundFloat {
  0%, 100% {
    transform: translateY(0px) scale(1);
    opacity: 0.03;
  }
  50% {
    transform: translateY(-20px) scale(1.02);
    opacity: 0.05;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-light);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 2rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 3rem; }
}

/* =================================================================
   REVOLUTIONARY HOLOGRAPHIC 3D SPATIAL NAVIGATION
   ================================================================= */

/* Revolutionary Navigation Container */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  background: linear-gradient(135deg, 
    rgba(0, 136, 255, 0.03) 0%, 
    rgba(0, 204, 255, 0.02) 30%,
    rgba(138, 43, 226, 0.03) 70%,
    rgba(0, 136, 255, 0.04) 100%);
  backdrop-filter: blur(30px) saturate(200%) hue-rotate(200deg);
  -webkit-backdrop-filter: blur(30px) saturate(200%) hue-rotate(200deg);
  border-radius: 0 0 0px 0px;
  box-shadow: 
    0 20px 60px rgba(0, 136, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 100px rgba(0, 136, 255, 0.05);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

/* Revolutionary Holographic Background Effects */
.navbar::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 136, 255, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0, 204, 255, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 15% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
    conic-gradient(from 0deg at 50% 50%, transparent 0%, rgba(0, 136, 255, 0.15) 25%, transparent 50%, rgba(0, 204, 255, 0.15) 75%, transparent 100%);
  animation: advancedHolographicRotation 25s linear infinite;
  z-index: -2;
}

.navbar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 400%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 25%,
    rgba(0, 136, 255, 0.1) 50%,
    rgba(0, 204, 255, 0.1) 60%,
    rgba(255, 255, 255, 0.05) 75%,
    transparent 100%);
  animation: advancedHolographicSweep 12s linear infinite;
  z-index: -1;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}

/* Revolutionary Logo with Holographic Projection */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  margin-left: 2.5rem;
  margin-right: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 0px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  /* backdrop-filter: blur(20px);  */
}

.nav-brand::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  opacity: 0;
  transition: all 0.6s ease;
  animation: holographicShimmer 4s ease-in-out infinite;
}

.nav-brand:hover::before {
  opacity: 1;
}

.nav-brand:hover {
  transform: translateY(-5px) scale(1.02);
  
}

.logo {
  width: 60px;
  height: auto;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 0 20px rgba(0, 136, 255, 0.5));
  z-index: 2;
  position: relative;
}

.nav-brand:hover .logo {
  filter: drop-shadow(0 0 30px rgba(0, 136, 255, 0.8));
  transform: scale(1.15) rotate(5deg);
}

.brand-text {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #10b981, #84cc16);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: 2;
  position: relative;
  letter-spacing: 0.5px;
}

/* Revolutionary Orbital Navigation System */
.nav-menu {
  display: none;
  list-style: none;
  gap: 0.5rem;
  position: relative;
  padding: 1rem;
  border-radius: 25px;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
    align-items: center;
  }
}

.nav-item {
  position: relative;
}

.nav-link {
  position: relative;
  padding: 0.9rem 1.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  border-radius: 16px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: block;
  letter-spacing: 0.3px;
}

/* Revolutionary Orbital Hover Effects */
.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    rgba(0, 136, 255, 0.15) 0%, 
    rgba(0, 204, 255, 0.2) 25%,
    rgba(138, 43, 226, 0.15) 50%,
    rgba(0, 204, 255, 0.2) 75%,
    rgba(0, 136, 255, 0.15) 100%);
  opacity: 0;
  transition: all 0.6s ease;
  animation: orbitalGlow 3s ease-in-out infinite;
}

.nav-link::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(0, 136, 255, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.nav-link:hover::before {
  opacity: 1;
}

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

.nav-link:hover {
  color: rgba(255, 255, 255, 0.95);
  transform: translateY(-6px) scale(1.03);
  box-shadow: 
    0 25px 50px rgba(0, 136, 255, 0.3),
    0 0 30px rgba(0, 204, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  
  background: rgba(0, 136, 255, 0.08);
}

/* Revolutionary Active State with Orbital Effect */
.nav-link.active {
  color: rgba(255, 255, 255, 0.95);
  background: linear-gradient(45deg, 
    rgba(0, 136, 255, 0.15), 
    rgba(0, 204, 255, 0.18),
    rgba(138, 43, 226, 0.15));
  
  box-shadow: 
    0 20px 40px rgba(0, 136, 255, 0.3),
    0 0 25px rgba(0, 204, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-4px) scale(1.02);
}

.nav-link.active::after {
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 204, 255, 0.3) 0%, transparent 70%);
  animation: activeOrbital 2s linear infinite;
}

/* Revolutionary Holographic Controls */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

/* Holographic Get Started Button */
.nav-actions .btn-primary {
  position: relative;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: white;
  text-decoration: none;
  border-radius: 18px;
  background: linear-gradient(45deg, rgba(0, 136, 255, 0.8), rgba(0, 204, 255, 0.9));
  backdrop-filter: blur(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.3px;
  box-shadow: 
    0 10px 30px rgba(0, 136, 255, 0.3),
    0 0 20px rgba(0, 204, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

.nav-actions .btn-primary:hover {
  transform: translateY(-2px) scale(1.05);
  background: linear-gradient(45deg, rgba(0, 136, 255, 0.9), rgba(0, 204, 255, 1));
  box-shadow: 
    0 20px 40px rgba(0, 136, 255, 0.4),
    0 0 30px rgba(0, 204, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  
}

.nav-actions .btn-primary:hover::before {
  left: 100%;
}

.nav-actions .btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.theme-toggle,
.mobile-menu-toggle {
  position: relative;
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.theme-toggle::before,
.mobile-menu-toggle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(0, 136, 255, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.6s ease;
  z-index: -1;
}

.theme-toggle:hover::before,
.mobile-menu-toggle:hover::before {
  opacity: 1;
}

.theme-toggle:hover,
.mobile-menu-toggle:hover {
  background: rgba(0, 136, 255, 0.15);
  
  color: white;
  transform: scale(1.2) rotate(10deg);
  box-shadow: 
    0 20px 40px rgba(0, 136, 255, 0.4),
    0 0 30px rgba(0, 204, 255, 0.3);
}

.theme-toggle:active,
.mobile-menu-toggle:active {
  transform: scale(0.95) rotate(-5deg);
}

/* Revolutionary Orbital Animations */
@keyframes advancedHolographicRotation {
  0% {
    transform: rotate(0deg) scale(1);
    filter: hue-rotate(0deg) brightness(1);
  }
  25% {
    transform: rotate(90deg) scale(1.05);
    filter: hue-rotate(90deg) brightness(1.1);
  }
  50% {
    transform: rotate(180deg) scale(1);
    filter: hue-rotate(180deg) brightness(1.2);
  }
  75% {
    transform: rotate(270deg) scale(0.95);
    filter: hue-rotate(270deg) brightness(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1);
    filter: hue-rotate(360deg) brightness(1);
  }
}

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

@keyframes advancedHolographicSweep {
  0% {
    left: -150%;
    transform: translateY(0) skewX(-5deg);
    opacity: 0.6;
  }
  50% {
    left: 50%;
    transform: translateY(-10px) skewX(0deg);
    opacity: 1;
  }
  100% {
    left: 150%;
    transform: translateY(0) skewX(5deg);
    opacity: 0.6;
  }
}

@keyframes holographicSweep {
  0% { left: -150%; }
  100% { left: 150%; }
}

@keyframes holographicShimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

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

@keyframes orbitalGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.5); }
}

@keyframes activeOrbital {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Modern Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius-lg);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  font-size: 0.875rem;
}

.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;
}

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

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-hero);
  color: white;
  position: relative;
  overflow: hidden;
}

/* Enhanced dynamic background elements for hero */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(120, 119, 198, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 119, 198, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 75% 25%, rgba(120, 198, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 25% 75%, rgba(255, 198, 120, 0.1) 0%, transparent 50%);
  animation: dynamicBackgroundShift 15s ease-in-out infinite;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 70% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
    padding: 0 2rem;
  }
}

.hero-content {
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-content {
    text-align: left;
  }
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
}

.gradient-text {
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .hero-description {
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero-actions {
    justify-content: flex-start;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .hero-stats {
    margin: 0;
  }
}

.stat {
  text-align: center;
}

@media (min-width: 1024px) {
  .stat {
    text-align: left;
  }
}

.stat h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 0.5rem;
}

.stat p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ai-animation {
  position: relative;
  width: 300px;
  height: 300px;
}

.neural-network {
  position: relative;
  width: 100%;
  height: 100%;
}

.node {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  animation: pulse 2s infinite;
}

.node:nth-child(1) { top: 20%; left: 30%; animation-delay: 0s; }
.node:nth-child(2) { top: 40%; left: 20%; animation-delay: 0.5s; }
.node:nth-child(3) { top: 60%; left: 40%; animation-delay: 1s; }
.node:nth-child(4) { top: 30%; right: 20%; animation-delay: 1.5s; }
.node:nth-child(5) { top: 70%; right: 30%; animation-delay: 2s; }

.connection {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.3), rgba(255,255,255,0.8));
  animation: flow 3s infinite;
}

.connection:nth-child(6) {
  top: 25%;
  left: 35%;
  width: 30%;
  transform: rotate(15deg);
  animation-delay: 0s;
}

.connection:nth-child(7) {
  top: 50%;
  left: 25%;
  width: 40%;
  transform: rotate(45deg);
  animation-delay: 1s;
}

.connection:nth-child(8) {
  top: 65%;
  left: 45%;
  width: 35%;
  transform: rotate(-20deg);
  animation-delay: 2s;
}

/* Floating Particles */
.floating-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
}

/* Grid Layouts */
.about-grid,
.services-grid,
.products-grid,
.testimonials-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .about-grid,
  .services-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 2fr 1fr;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Modern Cards */
.service-card,
.product-card,
.testimonial-card,
.stat-card {
  background: var(--bg-card);
  border-radius: var(--border-radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card::before,
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.service-card:hover,
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  background: var(--bg-card);
}

.service-card.premium {
  border: 2px solid var(--primary-color);
  position: relative;
}

.service-card.premium::before {
  background: var(--gradient-secondary);
}

.service-card.premium::after {
  content: 'Premium';
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--secondary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
}

/* Service Cards */
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-lg);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/* Problem-Solution Services Section */
.services {
  background: var(--bg-secondary);
}

.problem-solution-container {
  margin-top: 3rem;
}

.problem-solution-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--bg-card);
  border-radius: var(--border-radius-xl);
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.problem-solution-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.problem-solution-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

@media (max-width: 768px) {
  .problem-solution-item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .solution-arrow {
    transform: rotate(90deg);
    margin: 1rem auto;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .problem-text {
    font-size: 1rem;
  }
  
  .solution-title {
    font-size: 1.25rem;
  }
  
  .solution-description {
    font-size: 0.9rem;
  }
  
  .solution-features {
    justify-content: center;
  }
  
  .solution-price {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .problem-solution-item {
    padding: 1.5rem 1rem;
    margin-bottom: 1rem;
  }
  
  .problem-text {
    font-size: 0.95rem;
  }
  
  .solution-title {
    font-size: 1.125rem;
  }
  
  .solution-features {
    gap: 0.25rem;
  }
  
  .solution-feature {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
  }
}

.problem-section {
  text-align: right;
}

@media (max-width: 768px) {
  .problem-section {
    text-align: center;
  }
}

.problem-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #dc2626;
  margin-bottom: 1rem;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .problem-label {
    justify-content: center;
  }
}

.problem-label i {
  font-size: 1rem;
}

.problem-text {
  font-size: 1.125rem;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.problem-description {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
}

.solution-arrow {
  font-size: 2rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  color: white;
  box-shadow: var(--shadow-md);
}

.solution-section {
  text-align: left;
}

@media (max-width: 768px) {
  .solution-section {
    text-align: center;
  }
}

.solution-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #059669;
  margin-bottom: 1rem;
}

.solution-label i {
  font-size: 1rem;
}

.solution-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.solution-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.solution-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.solution-feature {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.75rem;
  border: 1px solid var(--border-light);
}

.solution-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.solution-price i {
  font-size: 1rem;
}

/* Legacy styles for backward compatibility */
.services-list {
  display: none;
}

.service-item {
  display: none;
}
.service-price {
  margin-bottom: 1.5rem;
}

.price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* Product Cards */
.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--secondary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
}

.product-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 2rem;
  color: var(--text-primary);
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.product-features span {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.75rem;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price-note {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Testimonial Cards */
.testimonial-card {
  padding: 2rem;
}

.testimonial-content {
  margin-bottom: 2rem;
}

.quote-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: white;
}

.testimonial-content p {
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.author-info h4 {
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.author-info p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.company-badge {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  padding: 0.25rem 0.5rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.75rem;
  display: inline-block;
}

.rating {
  color: var(--secondary-color);
}

/* About Section */
.about {
  background: var(--bg-secondary);
}

.about-content h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.about-features {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .about-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature {
  text-align: center;
}

.feature i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.feature p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
}

.stat-card h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.stat-card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* Testimonials Section */
.testimonials {
  background: var(--bg-secondary);
}

.trusted-partners {
  margin-top: 4rem;
  text-align: center;
}

.trusted-partners h3 {
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.partner-logo {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  box-shadow: var(--shadow-sm);
}

.logo-placeholder {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Contact Section */
.contact-grid {
  gap: 4rem;
}

.contact-info h3 {
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
    justify-content: center;
  color: white;
  flex-shrink: 0;
}

.contact-item h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: var(--text-secondary);
  margin: 0;
}

.social-links {
  margin-top: 2rem;
}

.social-links h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  margin-right: 1rem;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

/* Forms */
.contact-form {
  background: var(--bg-card);
  border-radius: var(--border-radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.form {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
  width: 100%;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-light);
  border-radius: var(--border-radius-md);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: all var(--transition-fast);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group select:focus + label,
.form-group select:valid + label 
.form-group textarea:not(:placeholder-shown) + label {
  top: -0.5rem;
  left: 0.75rem;
  font-size: 0.75rem;
  color: var(--primary-color);
  background: var(--bg-primary);
  padding: 0 0.25rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkbox-group label {
  position: static;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Footer */
.footer {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 2fr;
  }
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-brand h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 640px) {
  .footer-links {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-section h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* CTA Sections */
.services-cta,
.products-cta {
  text-align: center;
  background: var(--gradient-primary);
  color: white;
  padding: 3rem 2rem;
  border-radius: var(--border-radius-xl);
  margin-top: 4rem;
}

.services-cta h3,
.products-cta p {
  color: white;
}

.services-cta h3 {
  margin-bottom: 1rem;
}

.services-cta p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Animation Classes */
.fade-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-in {
  animation: slideInUp 0.8s ease-out forwards;
  opacity: 1;
  transform: translateY(0);
}

/* Modern Hover Effects */
.service-card,
.product-card {
  perspective: 1000px;
  transform-style: preserve-3d;
}

.service-card:hover,
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

/* Ripple Effect */
.btn {
  position: relative;
  overflow: hidden;
}

/* Mouse Trail Effect */
.mouse-trail {
  pointer-events: none;
  z-index: 9999;
}

/* Floating Elements */
.floating-shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.1;
}

@keyframes floatElement {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.1;
  }
  90% {
    opacity: 0.1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }
}

/* Theme Transition Effect */
.theme-transitioning * {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease !important;
}

/* Modern Form Effects */
.form-group.focused input,
.form-group.focused textarea {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group input:focus + label,
.form-group textarea:focus + label {
  color: var(--primary-color);
}

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

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

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

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

@keyframes flow {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-20px) translateX(10px);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-10px) translateX(-10px);
    opacity: 0.4;
  }
  75% {
    transform: translateY(-15px) translateX(5px);
    opacity: 0.8;
  }
}

/* Dynamic Background Shift Animation */
@keyframes dynamicBackgroundShift {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.8;
  }
  25% {
    transform: scale(1.1) rotate(2deg);
    opacity: 1;
  }
  50% {
    transform: scale(0.9) rotate(-1deg);
    opacity: 0.9;
  }
  75% {
    transform: scale(1.05) rotate(1deg);
    opacity: 1;
  }
}

/* Enhanced Floating Geometric Shapes */
@keyframes enhancedFloatGeometric {
  0%, 100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-30px) translateX(15px) rotate(90deg);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-20px) translateX(-10px) rotate(180deg);
    opacity: 0.5;
  }
  75% {
    transform: translateY(-40px) translateX(8px) rotate(270deg);
    opacity: 0.8;
  }
}

/* Additional Dynamic Particles Animation */
@keyframes dynamicParticles {
  0%, 100% {
    transform: translateY(0px) translateX(0px) scale(1);
    opacity: 0.4;
  }
  33% {
    transform: translateY(-25px) translateX(12px) scale(1.1);
    opacity: 0.8;
  }
  66% {
    transform: translateY(-15px) translateX(-8px) scale(0.9);
    opacity: 0.6;
  }
}

/* Loading States */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Revolutionary Holographic Mobile Menu */
@media (max-width: 1023px) {
  .nav-menu {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    padding: 2rem;
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    z-index: 999;
    border-radius: 0 0 25px 25px;
    overflow: hidden;
  }
  
  .nav-menu::before {
    display: none;
  }
  
  .nav-menu.active {
    transform: translateX(0);
  }
  
  .nav-menu.active .nav-link {
    animation: slideInLeft 0.6s ease-out forwards;
    opacity: 0;
    transform: translateX(-30px);
  }
  
  .nav-menu.active .nav-link:nth-child(1) { animation-delay: 0.1s; }
  .nav-menu.active .nav-link:nth-child(2) { animation-delay: 0.15s; }
  .nav-menu.active .nav-link:nth-child(3) { animation-delay: 0.2s; }
  .nav-menu.active .nav-link:nth-child(4) { animation-delay: 0.25s; }
  .nav-menu.active .nav-link:nth-child(5) { animation-delay: 0.3s; }
  .nav-menu.active .nav-link:nth-child(6) { animation-delay: 0.35s; }
  .nav-menu.active .nav-link:nth-child(7) { animation-delay: 0.4s; }
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Print Styles */
@media print {
  .navbar,
  .theme-toggle,
  .mobile-menu-toggle,
  .hero-actions,
  .contact-form {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
  
  section {
    padding: 2rem 0;
  }
}