/* Advanced CSS Reset and Variables */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Perfect Color Palette - Light Theme */
  --primary-50: #eff6ff;
  --primary-100: #dbeafe;
  --primary-200: #bfdbfe;
  --primary-300: #93c5fd;
  --primary-400: #60a5fa;
  --primary-500: #3b82f6;
  --primary-600: #2563eb;
  --primary-700: #1d4ed8;
  --primary-800: #1e40af;
  --primary-900: #1e3a8a;

  --secondary-50: #fdf2f8;
  --secondary-100: #fce7f3;
  --secondary-200: #fbcfe8;
  --secondary-300: #f9a8d4;
  --secondary-400: #f472b6;
  --secondary-500: #ec4899;
  --secondary-600: #db2777;
  --secondary-700: #be185d;
  --secondary-800: #9d174d;
  --secondary-900: #831843;

  --accent-50: #fffbeb;
  --accent-100: #fef3c7;
  --accent-200: #fde68a;
  --accent-300: #fcd34d;
  --accent-400: #fbbf24;
  --accent-500: #f59e0b;
  --accent-600: #d97706;
  --accent-700: #b45309;
  --accent-800: #92400e;
  --accent-900: #78350f;

  --success-50: #ecfdf5;
  --success-100: #d1fae5;
  --success-200: #a7f3d0;
  --success-300: #6ee7b7;
  --success-400: #34d399;
  --success-500: #10b981;
  --success-600: #059669;
  --success-700: #047857;
  --success-800: #065f46;
  --success-900: #064e3b;

  /* Neutral Colors */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Light Theme Variables */
  --primary: var(--primary-600);
  --secondary: var(--secondary-600);
  --accent: var(--accent-500);
  --success: var(--success-500);
  --text-primary: var(--gray-900);
  --text-secondary: var(--gray-600);
  --text-tertiary: var(--gray-500);
  --bg-primary: #ffffff;
  --bg-secondary: var(--gray-50);
  --bg-tertiary: var(--gray-100);
  --border-color: var(--gray-200);
  --border-light: var(--gray-100);

  /* Perfect Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-700) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-500) 0%, var(--secondary-700) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-400) 0%, var(--accent-600) 100%);
  --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  --gradient-rainbow: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);

  /* Perfect Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.3);
  --shadow-glow-accent: 0 0 20px rgba(245, 158, 11, 0.3);

  /* Typography */
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Playfair Display", Georgia, serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Dark Theme Variables */
[data-theme="dark"] {
  --text-primary: var(--gray-50);
  --text-secondary: var(--gray-300);
  --text-tertiary: var(--gray-400);
  --bg-primary: var(--gray-900);
  --bg-secondary: var(--gray-800);
  --bg-tertiary: var(--gray-700);
  --border-color: var(--gray-600);
  --border-light: var(--gray-700);
  --primary: var(--primary-400);
  --secondary: var(--secondary-400);
  --accent: var(--accent-400);
  --success: var(--success-400);

  /* Dark theme gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-400) 0%, var(--primary-600) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-400) 0%, var(--secondary-600) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-400) 0%, var(--accent-600) 100%);
  --gradient-hero: linear-gradient(135deg, #4c1d95 0%, #581c87 50%, #7c3aed 100%);

  /* Dark theme shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.4), 0 4px 6px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.4), 0 10px 10px rgba(0, 0, 0, 0.3);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 20px rgba(96, 165, 250, 0.4);
  --shadow-glow-accent: 0 0 20px rgba(251, 191, 36, 0.4);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  transition: all var(--transition-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Advanced Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-container {
  text-align: center;
  color: white;
  position: relative;
}

.curtain-stage {
  position: relative;
  width: 200px;
  height: 120px;
  margin: 0 auto 2rem;
  perspective: 1000px;
}

.curtain-rod {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

.curtain-left,
.curtain-right {
  position: absolute;
  top: 6px;
  width: 90px;
  height: 114px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.85) 50%,
    rgba(255, 255, 255, 0.75) 100%
  );
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: curtainReveal 4s ease-in-out infinite;
}

.curtain-left {
  left: 10px;
  transform-origin: top left;
}

.curtain-right {
  right: 10px;
  transform-origin: top right;
}

.stage-light {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.8) 0%, transparent 70%);
  border-radius: 50%;
  animation: stageGlow 2s ease-in-out infinite alternate;
}

@keyframes curtainReveal {
  0%,
  100% {
    transform: scaleX(1) translateX(0);
    opacity: 0.95;
  }
  50% {
    transform: scaleX(0.2) translateX(30px);
    opacity: 0.7;
  }
}

@keyframes stageGlow {
  0% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.loading-text {
  font-size: 3rem;
  font-weight: 900;
  font-family: var(--font-display);
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
}

.brand-letter {
  display: inline-block;
  animation: letterDance 2s ease-in-out infinite;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.brand-letter:nth-child(1) {
  animation-delay: 0s;
}
.brand-letter:nth-child(2) {
  animation-delay: 0.1s;
}
.brand-letter:nth-child(3) {
  animation-delay: 0.2s;
}
.brand-letter:nth-child(4) {
  animation-delay: 0.3s;
}
.brand-letter:nth-child(6) {
  animation-delay: 0.4s;
}
.brand-letter:nth-child(7) {
  animation-delay: 0.5s;
}
.brand-letter:nth-child(8) {
  animation-delay: 0.6s;
}
.brand-letter:nth-child(9) {
  animation-delay: 0.7s;
}
.brand-letter:nth-child(10) {
  animation-delay: 0.8s;
}
.brand-letter:nth-child(11) {
  animation-delay: 0.9s;
}
.brand-letter:nth-child(12) {
  animation-delay: 1s;
}
.brand-letter:nth-child(13) {
  animation-delay: 1.1s;
}

.brand-space {
  width: 0.5em;
  display: inline-block;
}

@keyframes letterDance {
  0%,
  100% {
    transform: translateY(0) rotateZ(0deg) scale(1);
    opacity: 1;
  }
  25% {
    transform: translateY(-20px) rotateZ(5deg) scale(1.1);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-10px) rotateZ(-3deg) scale(1.05);
    opacity: 0.9;
  }
  75% {
    transform: translateY(-15px) rotateZ(2deg) scale(1.08);
    opacity: 0.85;
  }
}

.loading-progress {
  margin-bottom: 1.5rem;
}

.progress-track {
  width: 300px;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  margin: 0 auto 1rem;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-accent);
  border-radius: var(--radius-full);
  width: 0%;
  transition: width var(--transition-normal);
  position: relative;
}

.progress-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: progressShimmer 2s infinite;
}

@keyframes progressShimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.loading-percentage {
  font-size: 1.5rem;
  font-weight: 700;
  opacity: 0.9;
}

.loading-tagline {
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0.8;
  animation: taglinePulse 3s ease-in-out infinite;
}

@keyframes taglinePulse {
  0%,
  100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}

.loading-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: particleFloat 8s linear infinite;
}

.particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  left: 30%;
  animation-delay: 1s;
}

.particle:nth-child(3) {
  left: 50%;
  animation-delay: 2s;
}

.particle:nth-child(4) {
  left: 70%;
  animation-delay: 3s;
}

.particle:nth-child(5) {
  left: 90%;
  animation-delay: 4s;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* Perfect Mobile Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: all var(--transition-normal);
}

[data-theme="dark"] .navbar {
  background: rgba(17, 24, 39, 0.95);
  border-bottom-color: var(--border-color);
}

.navbar.scrolled {
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.98);
}

[data-theme="dark"] .navbar.scrolled {
  background: rgba(17, 24, 39, 0.98);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  max-width: 1400px;
  margin: 0 auto;
  min-height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  z-index: 1001;
}

.logo-container {
  position: relative;
  width: 45px;
  height: 45px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-glow);
  transition: all var(--transition-bounce);
}

.logo-container:hover {
  transform: scale(1.1) rotate(5deg);
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.logo-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.logo-image:error,
.logo-image[src="/placeholder.svg"],
.logo-image:not([src]) {
  opacity: 0;
}

.logo-image:error + .logo-fallback,
.logo-image[src="/placeholder.svg"] + .logo-fallback,
.logo-image:not([src]) + .logo-fallback {
  opacity: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 1.3rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--primary);
  line-height: 1;
}

.logo-sub {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1;
}

.nav-menu {
  display: flex;
  gap: var(--space-xl);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  padding: var(--space-sm) 0;
  transition: all var(--transition-normal);
}

.link-text {
  position: relative;
  z-index: 2;
}

.link-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-bounce);
  border-radius: var(--radius-full);
}

.nav-link:hover .link-underline,
.nav-link.active .link-underline {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.search-container {
  position: relative;
}

.search-container input {
  padding: var(--space-sm) var(--space-xl) var(--space-sm) var(--space-md);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-full);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 0.9rem;
  width: 200px;
  transition: all var(--transition-normal);
}

.search-container input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  width: 220px;
}

.search-icon {
  position: absolute;
  right: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  pointer-events: none;
  transition: all var(--transition-normal);
}

.search-container input:focus + .search-icon {
  color: var(--primary);
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: 1000;
  display: none;
  max-height: 400px;
  overflow-y: auto;
  margin-top: var(--space-xs);
}

.search-result-header {
  padding: var(--space-md);
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  cursor: pointer;
  transition: background-color var(--transition-normal);
}

.search-result-item:hover {
  background: var(--bg-secondary);
}

.search-result-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.search-result-info h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.search-result-info p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.theme-toggle {
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: var(--space-sm);
  border-radius: var(--radius-full);
  transition: all var(--transition-bounce);
  position: relative;
  overflow: hidden;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-icon {
  font-size: 1.1rem;
  transition: all var(--transition-bounce);
}

.theme-toggle:hover {
  background: var(--bg-tertiary);
  transform: scale(1.1);
}

.theme-toggle:hover .theme-icon {
  transform: rotate(180deg);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 3px;
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  z-index: 1001;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}

.hamburger:hover {
  background: var(--bg-tertiary);
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-bounce);
  border-radius: var(--radius-full);
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-primary);
  transition: width var(--transition-normal);
  border-radius: 0 var(--radius-sm) 0 0;
}

/* Mobile Menu Overlay - Fixed */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 999;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Perfect Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  z-index: -2;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, transparent 70%);
  top: 50%;
  right: 10%;
  animation-delay: 2s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.25) 0%, transparent 70%);
  bottom: 20%;
  left: 30%;
  animation-delay: 4s;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
    opacity: 0.9;
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
    opacity: 0.8;
  }
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.float-element {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  animation: elementFloat 6s ease-in-out infinite;
}

.element-1 {
  width: 60px;
  height: 60px;
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.element-2 {
  width: 40px;
  height: 40px;
  top: 60%;
  right: 20%;
  animation-delay: 1s;
}

.element-3 {
  width: 80px;
  height: 80px;
  top: 30%;
  right: 30%;
  animation-delay: 2s;
}

.element-4 {
  width: 50px;
  height: 50px;
  bottom: 30%;
  left: 25%;
  animation-delay: 3s;
}

.element-5 {
  width: 70px;
  height: 70px;
  top: 15%;
  left: 50%;
  animation-delay: 4s;
}

@keyframes elementFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
    opacity: 1;
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  width: 100%;
}

.hero-text {
  color: white;
}

.hero-badge {
  position: relative;
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  margin-bottom: var(--space-xl);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s ease 0.5s forwards;
}

.badge-text {
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.badge-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: badgeShimmer 3s infinite;
}

@keyframes badgeShimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  font-family: var(--font-display);
  line-height: 1.1;
  margin-bottom: var(--space-xl);
}

.title-line {
  display: block;
  overflow: hidden;
}

.word {
  display: inline-block;
  margin-right: var(--space-md);
  opacity: 0;
  transform: translateY(100px);
  animation: wordReveal 0.8s ease forwards;
  position: relative;
}

.word::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.word:hover::before {
  opacity: 1;
}

.title-line:nth-child(1) .word:nth-child(1) {
  animation-delay: 0.8s;
}
.title-line:nth-child(1) .word:nth-child(2) {
  animation-delay: 1s;
}
.title-line:nth-child(2) .word:nth-child(1) {
  animation-delay: 1.2s;
}
.title-line:nth-child(2) .word:nth-child(2) {
  animation-delay: 1.4s;
}
.title-line:nth-child(3) .word:nth-child(1) {
  animation-delay: 1.6s;
}
.title-line:nth-child(3) .word:nth-child(2) {
  animation-delay: 1.8s;
}

.gradient-word {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-word {
  position: relative;
  z-index: 1;
}

.highlight-word::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: rgba(245, 158, 11, 0.3);
  z-index: -1;
  animation: highlightExpand 1s ease 2.5s forwards;
  transform: scaleX(0);
  transform-origin: left;
}

@keyframes wordReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes highlightExpand {
  to {
    transform: scaleX(1);
  }
}

.hero-description {
  margin-bottom: var(--space-2xl);
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s ease 2s forwards;
}

.description-text {
  font-size: 1.3rem;
  line-height: 1.7;
  opacity: 0.9;
}

.typing-text {
  display: inline;
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  animation: typing 4s steps(100) 2.5s forwards;
}

.typing-text::after {
  content: "|";
  animation: blink 1s infinite 2.5s;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

.hero-stats {
  display: flex;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s ease 3s forwards;
}

.hero-stats .stat-item {
  text-align: center;
}

.hero-stats .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--accent);
  margin-bottom: var(--space-xs);
}

.hero-stats .stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
}

.hero-buttons {
  display: flex;
  gap: var(--space-lg);
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s ease 3.5s forwards;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-lg) var(--space-2xl);
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-bounce);
  overflow: hidden;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-text {
  position: relative;
  z-index: 2;
}

.btn-icon {
  position: relative;
  z-index: 2;
  transition: transform var(--transition-bounce);
}

.btn:hover .btn-icon {
  transform: translateX(5px);
}

.btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all var(--transition-slow);
}

.btn:hover .btn-ripple {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-accent);
  color: white;
  box-shadow: var(--shadow-glow-accent);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl), var(--shadow-glow-accent);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-visual {
  position: relative;
  opacity: 0;
  transform: translateX(50px);
  animation: heroSlideIn 1s ease 1s forwards;
}

@keyframes heroSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.visual-container {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.curtain-showcase {
  position: relative;
  width: 300px;
  height: 400px;
  perspective: 1000px;
}

.showcase-curtain {
  position: absolute;
  width: 100px;
  height: 100%;
  border-radius: var(--radius-lg);
  animation: curtainWave 4s ease-in-out infinite;
}

.curtain-1 {
  left: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.8) 0%, rgba(59, 130, 246, 0.6) 100%);
  animation-delay: 0s;
}

.curtain-2 {
  left: 100px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.8) 0%, rgba(236, 72, 153, 0.6) 100%);
  animation-delay: 0.5s;
}

.curtain-3 {
  left: 200px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.8) 0%, rgba(245, 158, 11, 0.6) 100%);
  animation-delay: 1s;
}

@keyframes curtainWave {
  0%,
  100% {
    transform: rotateY(0deg) translateZ(0px);
    opacity: 0.8;
  }
  50% {
    transform: rotateY(15deg) translateZ(20px);
    opacity: 1;
  }
}

.visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

.visual-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.v-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: vParticleFloat 5s linear infinite;
}

.v-particle:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.v-particle:nth-child(2) {
  top: 60%;
  left: 80%;
  animation-delay: 1s;
}

.v-particle:nth-child(3) {
  top: 80%;
  left: 40%;
  animation-delay: 2s;
}

@keyframes vParticleFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 1;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  animation: scrollBounce 2s ease-in-out infinite;
  opacity: 0;
  animation: scrollFadeIn 1s ease 4s forwards, scrollBounce 2s ease-in-out 4s infinite;
}

@keyframes scrollFadeIn {
  to {
    opacity: 1;
  }
}

.scroll-text {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
  opacity: 0.8;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  position: relative;
  margin: 0 auto;
}

.mouse-wheel {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-sm);
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheelScroll 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes wheelScroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(16px);
  }
}

/* Section Styles */
section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.section-badge {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: var(--gradient-primary);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-glow);
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-display);
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
  line-height: 1.2;
}

.section-title .title-word {
  display: inline-block;
  margin-right: var(--space-sm);
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* About Section */
.about {
  background: var(--bg-secondary);
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.about .container {
  position: relative;
  z-index: 1;
}

.about-grid {
  display: grid;
  gap: var(--space-4xl);
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-2xl);
}

.about-card {
  background: var(--bg-primary);
  padding: var(--space-2xl);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-bounce);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
}

.card-icon {
  position: relative;
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: white;
  font-size: 2rem;
  transition: all var(--transition-bounce);
}

.card-icon:hover {
  transform: scale(1.1) rotate(5deg);
}

.icon-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  opacity: 0;
  transition: opacity var(--transition-normal);
  filter: blur(20px);
}

.about-card:hover .icon-glow {
  opacity: 0.3;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.card-description {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
}

.card-hover-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
  transition: left var(--transition-slow);
}

.about-card:hover .card-hover-effect {
  left: 100%;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.stat-card {
  background: var(--bg-primary);
  padding: var(--space-2xl);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-bounce);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-card .stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  font-family: var(--font-display);
  color: var(--primary);
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.stat-card .stat-label {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 1rem;
}

.stat-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-normal);
  filter: blur(30px);
  border-radius: var(--radius-2xl);
}

.stat-card:hover .stat-glow {
  opacity: 0.1;
}

/* Products Section - 4 Products Per Row */
.products {
  position: relative;
}

.product-filters {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-4xl);
  flex-wrap: wrap;
}

.filter-btn {
  position: relative;
  padding: var(--space-md) var(--space-xl);
  border: 2px solid var(--border-color);
  background: var(--bg-primary);
  color: var(--text-primary);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-bounce);
  font-weight: 600;
  font-family: inherit;
  overflow: hidden;
}

.filter-text {
  position: relative;
  z-index: 2;
}

.filter-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-normal);
  border-radius: var(--radius-full);
}

.filter-btn:hover,
.filter-btn.active {
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.filter-btn:hover .filter-glow,
.filter-btn.active .filter-glow {
  opacity: 1;
}

/* 4 Products Per Row Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.product-card {
  background: var(--bg-primary);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-bounce);
  cursor: pointer;
  border: 1px solid var(--border-light);
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
  backdrop-filter: blur(5px);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-info {
  padding: var(--space-lg);
}

.product-title {
  font-size: 1.2rem;
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
  line-height: 1.3;
}

.product-description {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.6;
  font-size: 0.9rem;
}

.product-features {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.feature-tag {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 500;
}

.no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--space-4xl);
  color: var(--text-secondary);
}

.no-products i {
  font-size: 3rem;
  margin-bottom: var(--space-lg);
  opacity: 0.5;
}

/* Services Section - 4 Services Per Row */
.services {
  background: var(--bg-secondary);
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ec4899' fill-opacity='0.02'%3E%3Cpath d='M20 20c0-11.046-8.954-20-20-20v20h20z'/%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.services .container {
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.service-card {
  background: var(--bg-primary);
  padding: var(--space-2xl);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  text-align: center;
  transition: all var(--transition-bounce);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
}

.service-icon {
  position: relative;
  width: 90px;
  height: 90px;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: white;
  font-size: 2.2rem;
  transition: all var(--transition-bounce);
}

.service-icon:hover {
  transform: scale(1.1) rotate(5deg);
}

.service-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  opacity: 0;
  transition: opacity var(--transition-normal);
  filter: blur(25px);
}

.service-card:hover .service-glow {
  opacity: 0.4;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.service-description {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
}

.service-hover {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.05), transparent);
  transition: left var(--transition-slow);
}

.service-card:hover .service-hover {
  left: 100%;
}

/* Testimonials Section */
.testimonials {
  position: relative;
}

.testimonials-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
}

.testimonial-slide {
  display: none;
  animation: testimonialFade 0.5s ease;
}

.testimonial-slide.active {
  display: block;
}

@keyframes testimonialFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-content {
  background: var(--bg-primary);
  padding: var(--space-3xl);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  text-align: center;
  position: relative;
  border: 1px solid var(--border-light);
}

.testimonial-quote {
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.3;
}

.stars {
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
}

.testimonial-text {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
  color: var(--text-secondary);
  font-style: italic;
  font-family: var(--font-display);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
}

.author-avatar {
  position: relative;
}

.author-avatar img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}

.avatar-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--transition-normal);
  filter: blur(15px);
}

.testimonial-author:hover .avatar-glow {
  opacity: 0.3;
}

.author-name {
  color: var(--text-primary);
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: var(--space-xs);
  font-size: 1.1rem;
}

.author-location {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.testimonial-btn {
  position: relative;
  width: 60px;
  height: 60px;
  border: none;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-bounce);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  overflow: hidden;
}

.testimonial-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-glow);
}

.btn-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-normal);
  filter: blur(20px);
  border-radius: 50%;
}

.testimonial-btn:hover .btn-glow {
  opacity: 0.5;
}

.testimonial-dots {
  display: flex;
  gap: var(--space-md);
}

.dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: all var(--transition-bounce);
}

.dot.active,
.dot:hover {
  background: var(--primary);
  transform: scale(1.2);
  box-shadow: var(--shadow-glow);
}

.contact-section {
  background: var(--bg-secondary);
  position: relative;
  padding: 4rem 2rem;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f59e0b' fill-opacity='0.02'%3E%3Cpath d='M0 0h80v80H0V0zm20 20v40h40V20H20zm20 35a15 15 0 1 1 0-30 15 15 0 0 1 0 30z'/%3E%3C/g%3E%3C/svg%3E");
  animation: bgShift 60s linear infinite;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-badge {
  font-weight: bold;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.4rem;
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-description {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.social-section {
  text-align: center;
}

.social-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.social-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 1rem;
}


.social-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.social-icon {
  font-size: 1.8rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.social-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.4;
  z-index: 0;
}

/* Platform-specific backgrounds */
.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.facebook { background: #1877f2; }
.twitter { background: #1da1f2; }
.youtube { background: #ff0000; }
.tiktok { background: #000000; }
.snapchat { background: #fffc00; color: #000; }

/* Icon Pulse Animation */
.pulse {
  animation: pulseGlow 2s ease-in-out infinite;
}

/* Fade-in Animation */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
}

/* KEYFRAMES */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  }
}

@keyframes bgShift {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100px 100px;
  }
}


/* Footer */
.footer {
  background: var(--text-primary);
  color: white;
  padding: var(--space-4xl) 0 var(--space-lg);
  position: relative;
}

[data-theme="dark"] .footer {
  background: var(--gray-900);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpolygon points='50 0 60 40 100 50 60 60 50 100 40 60 0 50 40 40'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.footer-logo .logo-container {
  width: 50px;
  height: 50px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
}

.footer-logo .logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.footer-logo .logo-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.footer-logo .logo-image:error + .logo-fallback,
.footer-logo .logo-image[src="/placeholder.svg"] + .logo-fallback,
.footer-logo .logo-image:not([src]) + .logo-fallback {
  opacity: 1;
}

.footer-logo .logo-main {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--primary);
}

.footer-logo .logo-sub {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 1rem;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: var(--space-lg);
  color: var(--primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition-normal);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: white;
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.footer-contact i {
  color: var(--primary);
  width: 20px;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalShow 0.3s ease;
}

@keyframes modalShow {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.modal-content {
  position: relative;
  background: var(--bg-primary);
  border-radius: var(--radius-2xl);
  max-width: 1000px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalSlide 0.3s ease;
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--border-light);
}

@keyframes modalSlide {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 50px;
  height: 50px;
  border: none;
  background: var(--bg-tertiary);
  color: var(--text-primary);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-bounce);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  z-index: 10;
}

.modal-close:hover {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.close-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-normal);
  filter: blur(15px);
  border-radius: 50%;
}

.modal-close:hover .close-glow {
  opacity: 0.3;
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  padding: var(--space-2xl);
}

.modal-image {
  position: relative;
}

.modal-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.image-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-normal);
  filter: blur(30px);
  border-radius: var(--radius-xl);
}

.modal-image:hover .image-glow {
  opacity: 0.2;
}

.modal-title {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-display);
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
}

.modal-description {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-size: 1.1rem;
}

.modal-features {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.modal-features .feature-tag {
  background: var(--primary);
  color: white;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  font-weight: 600;
}

.modal-actions {
  display: flex;
  gap: var(--space-md);
}

  /* Floating WhatsApp Button */
 .floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  left: 1rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  animation: bestPulse 2s infinite ease-in-out;
}


    .floating-whatsapp:hover {
      transform: scale(1.1);
      background: #128C7E;
    }

    .whatsapp-tooltip {
      position: absolute;
      left: 70px;
      background-color: #333;
      color: white;
      padding: 6px 10px;
      border-radius: 6px;
      white-space: nowrap;
      font-size: 0.85rem;
      opacity: 0;
      transform: translateY(-50%);
      top: 50%;
      transition: 0.3s ease;
      pointer-events: none;
    }

    .floating-whatsapp:hover .whatsapp-tooltip {
      opacity: 1;
    }

    @keyframes bestPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7),
                0 0 0 0 rgba(37, 211, 102, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0),
                0 0 0 40px rgba(37, 211, 102, 0);
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0),
                0 0 0 0 rgba(37, 211, 102, 0);
    transform: scale(1);
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: var(--space-2xl);
  right: var(--space-2xl);
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-bounce);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-glow);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.back-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-normal);
  filter: blur(20px);
  border-radius: 50%;
}

.back-to-top:hover .back-glow {
  opacity: 0.5;
}

/* Perfect Mobile Responsive Design */
@media (max-width: 1400px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
  }

  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
  }
}

@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .social-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    text-align: center;
  }

  .hero-title {
    font-size: 3rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-info {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .modal-body {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

/* PERFECT MOBILE NAVIGATION AND LAYOUT - FIXED */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-container {
    padding: var(--space-sm) var(--space-lg);
    min-height: 60px;
  }

  .logo-container {
    width: 40px;
    height: 40px;
  }

  .logo-main {
    font-size: 1.1rem;
  }

  .logo-sub {
    display: none;
  }

  .nav-actions {
    gap: var(--space-xs);
  }

  .search-container {
    display: none;
  }

  .theme-toggle {
    width: 35px;
    height: 35px;
  }

  .hamburger {
    width: 35px;
    height: 35px;
  }

  .nav-menu {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: var(--bg-primary);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: var(--space-2xl) 0;
    transition: left var(--transition-normal);
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    border-right: 1px solid var(--border-color);
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
    margin-bottom: var(--space-lg);
  }

  .nav-link {
    display: block;
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    width: 90%;
    margin: 0 auto;
  }

  .nav-link:hover,
  .nav-link.active {
    background: var(--bg-tertiary);
    color: var(--primary);
    transform: translateY(-2px);
  }

  /* HERO SECTION - MOBILE OPTIMIZED */
  .hero {
    padding-top: 60px;
    min-height: 100vh;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    text-align: center;
    padding: var(--space-xl) 0;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: var(--space-xs) var(--space-md);
    margin-bottom: var(--space-lg);
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
  }

  .hero-description {
    margin-bottom: var(--space-lg);
  }

  .description-text {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-stats {
    flex-direction: row;
    gap: var(--space-lg);
    justify-content: center;
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
  }

  .hero-stats .stat-item {
    flex: 1;
    min-width: 80px;
  }

  .hero-stats .stat-number {
    font-size: 1.8rem;
    margin-bottom: var(--space-xs);
  }

  .hero-stats .stat-label {
    font-size: 0.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
  }

  .btn {
    padding: var(--space-md) var(--space-xl);
    font-size: 0.9rem;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .scroll-indicator {
    bottom: var(--space-lg);
  }

  /* SECTIONS - MOBILE OPTIMIZED */
  section {
    padding: var(--space-2xl) 0;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: var(--space-md);
  }

  .section-description {
    font-size: 1rem;
    margin-bottom: var(--space-2xl);
  }

  .about-cards {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about-card {
    padding: var(--space-lg);
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .stat-card {
    padding: var(--space-lg);
  }

  .stat-card .stat-number {
    font-size: 2rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .product-filters {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
  }

  .filter-btn {
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.9rem;
    width: 200px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .service-card {
    padding: var(--space-lg);
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .testimonial-content {
    padding: var(--space-lg);
  }

  .testimonial-text {
    font-size: 1.1rem;
  }

  .testimonial-controls {
    gap: var(--space-lg);
  }

  .contact-info {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .contact-card {
    padding: var(--space-lg);
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-lg);
  }

  .modal-content {
    width: 95%;
    margin: 5% auto;
  }

  .modal-body {
    grid-template-columns: 1fr;
    padding: var(--space-lg);
    gap: var(--space-lg);
  }

  .modal-image img {
    height: 250px;
  }

  .back-to-top {
    width: 50px;
    height: 50px;
    bottom: var(--space-lg);
    right: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: var(--space-xs) var(--space-md);
  }

  .logo-container {
    width: 35px;
    height: 35px;
  }

  .logo-main {
    font-size: 1rem;
  }

  .theme-toggle,
  .hamburger {
    width: 32px;
    height: 32px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-md);
  }

  .hero-stats .stat-number {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

 
 .social-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }


  .loading-text {
    font-size: 1.8rem;
  }

  .progress-track {
    width: 200px;
  }

  .nav-menu {
    padding: var(--space-lg) 0;
  }

  .nav-link {
    font-size: 1rem;
    padding: var(--space-md) var(--space-lg);
  }

  .btn {
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.85rem;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Utility Classes */
.hidden {
  display: none !important;
}

.loading {
  opacity: 0.5;
  pointer-events: none;
}

/* Focus styles for accessibility */
*:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.4);
    --shadow-2xl: 0 32px 64px rgba(0, 0, 0, 0.4);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .floating-elements .float-element,
  .gradient-orb,
  .scroll-indicator,
  .curtain-left,
  .curtain-right,
  .brand-letter,
  .particle,
  .v-particle {
    animation: none;
  }
}

/* Print styles */
@media print {
  .navbar,
  .back-to-top,
  .modal,
  .loading-screen {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: var(--space-xl) 0;
  }

  section {
    padding: var(--space-xl) 0;
    break-inside: avoid;
  }
}
