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

:root {
  --bg-primary: #000000;
  --bg-secondary: #0a0a0a;
  --bg-tertiary: #1a1a1a;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.85);
  --text-muted: rgba(255, 255, 255, 0.65);
  --text-subtle: rgba(255, 255, 255, 0.45);
  --accent-primary: #ffffff;
  --accent-secondary: #f5f5f5;
  --accent-tertiary: #e0e0e0;
  --border-light: rgba(255, 255, 255, 0.1);
  --border-medium: rgba(255, 255, 255, 0.2);
  --border-strong: rgba(255, 255, 255, 0.3);
  --shadow-soft: rgba(0, 0, 0, 0.3);
  --shadow-medium: rgba(0, 0, 0, 0.5);
  --shadow-strong: rgba(0, 0, 0, 0.8);
  --gradient-primary: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #e0e0e0 100%);
  --gradient-secondary: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  --gradient-bg: linear-gradient(135deg, #000000 0%, #0f0f0f 25%, #1a1a1a 50%, #0f0f0f 75%, #000000 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
}



body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="particles" width="200" height="200" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.03"><animate attributeName="opacity" values="0.03;0.08;0.03" dur="4s" repeatCount="indefinite"/></circle><circle cx="150" cy="75" r="0.8" fill="%23cccccc" opacity="0.02"><animate attributeName="opacity" values="0.02;0.06;0.02" dur="6s" repeatCount="indefinite"/></circle><circle cx="100" cy="150" r="1.2" fill="%23999999" opacity="0.025"><animate attributeName="opacity" values="0.025;0.07;0.025" dur="5s" repeatCount="indefinite"/></circle><circle cx="25" cy="125" r="0.6" fill="%23666666" opacity="0.02"><animate attributeName="opacity" values="0.02;0.05;0.02" dur="7s" repeatCount="indefinite"/></circle></pattern></defs><rect width="200" height="200" fill="url(%23particles)"/></svg>') repeat;
  pointer-events: none;
  z-index: -1;
  animation: particleFloat 30s linear infinite;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.92) 50%, rgba(20, 20, 20, 0.95) 100%);
  backdrop-filter: blur(20px) saturate(100%);
  border-bottom: 1px solid var(--border-medium);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px var(--shadow-medium), 0 2px 10px var(--shadow-soft);
  opacity: 1;
  transform: none;
  border-radius: 0;
  margin: 0;
  max-width: 100%;
  left: 0;
  right: 0;
  width: 100%;
}



.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-logo h2 {
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  border-radius: 8px;
  overflow: hidden;
  opacity: 1 !important;
  transform: none !important;
  display: inline-block;
  backdrop-filter: none;
  border: none;
  background: transparent;
}

.nav-link.active {
  background: transparent;
  color: #ffffff;
  border: none;
}

.hamburger {
  display: none;
}

.nav-link.active::after {
  width: 90%;
}

.nav-link::before {
  display: none;
}

.nav-link:hover,
.nav-link:focus {
  color: #ffffff;
  transform: translateY(-1px);
  background: transparent;
  border: none;
  backdrop-filter: none;
  box-shadow: none;
  opacity: 0.8;
  outline: none;
}

.nav-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
  border-radius: 6px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(-50%);
  border-radius: 0.5px;
}

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

.nav-link.active::after {
  width: 80%;
  background: rgba(255, 255, 255, 0.9);
}





/* Mobile Bottom Navigation */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-light);
  display: none;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
  z-index: 1000;
  box-shadow: 0 -4px 20px var(--shadow-medium);
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text-muted);
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 12px;
  min-width: 60px;
  position: relative;
}

.mobile-nav-item i {
  font-size: 20px;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.mobile-nav-item span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.mobile-nav-item.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.mobile-nav-item.active::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 0 0 3px 3px;
}

.mobile-nav-item:active {
  transform: scale(0.95);
  background: rgba(255, 255, 255, 0.1);
}

/* Section Transition Effects */
section, .hero, .products, .showcase, .contact {
  position: relative;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 2rem;
  scroll-margin-top: 80px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
  gap: 5rem;
  position: relative;
  z-index: 5;
  overflow: hidden;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-medium);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-content {
  flex: 1;
  max-width: 600px;
  animation: fadeInLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.hero-content h1 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(3.2rem, 6.5vw, 5rem);
  font-weight: 800;
  margin-bottom: 2.5rem;
  background: var(--gradient-primary);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite, fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
  font-feature-settings: 'ss01' 1, 'ss02' 1;
  opacity: 0;
}

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

@keyframes gradientFlow {
  0%, 100% {
    background-position: 0% 0%, 100% 100%, 50% 50%, 80% 20%;
  }
  16.66% {
    background-position: 20% 30%, 80% 70%, 70% 30%, 60% 40%;
  }
  33.33% {
    background-position: 100% 50%, 0% 50%, 80% 20%, 20% 80%;
  }
  50% {
    background-position: 80% 80%, 20% 20%, 20% 80%, 80% 50%;
  }
  66.66% {
    background-position: 50% 100%, 50% 0%, 60% 60%, 40% 30%;
  }
  83.33% {
    background-position: 0% 50%, 100% 50%, 80% 50%, 50% 20%;
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(0px) translateX(0px);
  }
  33% {
    transform: translateY(-10px) translateX(5px);
  }
  66% {
    transform: translateY(5px) translateX(-3px);
  }
  100% {
    transform: translateY(0px) translateX(0px);
  }
}

/* Professional Fade-in Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes staggeredFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

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

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-content p {
  font-size: 1.35rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.7;
  font-weight: 450;
  letter-spacing: -0.01em;
  max-width: 600px;
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s both;
}

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

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-card);
  color: var(--text-primary);
  padding: 1.25rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px var(--shadow-medium), 0 2px 8px var(--shadow-soft);
  border: 1px solid var(--border-medium);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeInScale 1s cubic-bezier(0.4, 0, 0.2, 1) 1.2s both;
  backdrop-filter: blur(15px);
}

.cta-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s ease;
  border-radius: 60px;
}

.cta-button:hover::after {
  left: 100%;
}

.cta-button::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.6s ease;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px var(--shadow-medium), 0 4px 12px var(--shadow-soft);
    background: var(--bg-card-hover);
    border-color: var(--border-strong);
    color: var(--text-primary);
  }

.cta-button:hover::before {
  left: 100%;
}

.cta-button:active {
  transform: translateY(-1px) scale(0.98);
}

.hero-visual {
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 15;
  height: fit-content;
  padding: 2rem 0;
  opacity: 0;
  animation: fadeInRight 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
  flex-wrap: wrap;
}

.floating-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px) saturate(100%);
  border: 1px solid var(--border-medium);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  width: 250px;
  position: relative;
  overflow: hidden;
  z-index: 10;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
  box-shadow: 
    0 8px 32px var(--shadow-medium),
    0 2px 12px var(--shadow-soft),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.floating-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.floating-card:nth-child(1) {
  animation-delay: 0.2s;
}

.floating-card:nth-child(2) {
  animation-delay: 0.4s;
}

.floating-card:nth-child(3) {
  animation-delay: 0.6s;
}

.floating-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
  box-shadow: 
    0 16px 48px var(--shadow-medium),
    0 6px 20px var(--shadow-soft),
    0 0 0 1px var(--border-medium),
    inset 0 2px 0 rgba(255, 255, 255, 0.15);
}

.floating-card:hover::before {
  opacity: 1;
}



.floating-card i {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.floating-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
}

.products {
  padding: 6rem 0 8rem 0;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.4) 0%, 
    rgba(32, 32, 32, 0.04) 25%,
    rgba(64, 64, 64, 0.06) 50%,
    rgba(96, 96, 96, 0.04) 75%,
    rgba(0, 0, 0, 0.4) 100%);
  position: relative;
  z-index: 1;
  backdrop-filter: blur(5px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.products::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, 
    rgba(128, 128, 128, 0.05) 0%, 
    transparent 60%);
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  pointer-events: none;
  z-index: -1;
}

.products:hover::after {
  opacity: 1;
}

.products h2 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  text-align: center;
  margin-bottom: 3.5rem;
  padding: 0 2rem;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  background: linear-gradient(135deg, #ffffff, #e5e5e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.025em;
  line-height: 1.15;
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
  opacity: 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  perspective: 1000px;
  transform-style: preserve-3d;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  
  /* Advanced Grid Layout */
  grid-auto-rows: minmax(320px, auto);
  align-items: start;
}

/* Enhanced Grid Responsive Design */
@media (min-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  
  .product-card {
    min-height: 300px;
  }
}

@media (max-width: 767px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
    max-width: 350px;
  }
  
  .product-card {
    min-height: 280px;
    margin: 0 auto;
    max-width: 100%;
    padding: 1.25rem;
  }
  
  .product-features {
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .feature {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    border-radius: 15px;
  }
  
  .feature i {
    font-size: 0.7rem;
  }
}

.product-card {
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.8) 0%, 
    rgba(20, 20, 20, 0.9) 50%,
    rgba(0, 0, 0, 0.8) 100%);
  backdrop-filter: blur(25px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  padding: 2.5rem;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  animation: staggeredFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) both;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 8px 32px rgba(255, 255, 255, 0.1),
    inset 0 2px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3);
  height: fit-content;
  max-width: 340px;
  margin: 0 auto;
}

.best-fivem-badge {
  display: flex;
  justify-content: center;
  margin: 1rem 0 1.5rem 0;
}

.badge-text {
  background: linear-gradient(135deg, #ffffff, #e5e5e5);
  color: #000000;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 
    0 4px 16px rgba(255, 255, 255, 0.3),
    0 1px 4px rgba(255, 255, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-text::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;
}

.product-card:hover .badge-text::before {
  left: 100%;
}

.coming-soon-badge {
  display: flex;
  justify-content: center;
  margin: 1rem 0 1.5rem 0;
}

.coming-soon-badge .badge-text {
  background: linear-gradient(135deg, #ffffff, #e5e5e5);
  color: #000000;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 
    0 4px 16px rgba(255, 255, 255, 0.3),
    0 1px 4px rgba(255, 255, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 2px 8px var(--shadow-medium);
  }
  to {
    box-shadow: 0 4px 16px var(--shadow-strong);
  }
}

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

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.coming-soon-card {
  position: relative;
  overflow: hidden;
}

.coming-soon-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.1), transparent);
  animation: shimmer 3s infinite;
  z-index: 1;
}

.notify-btn {
  background: linear-gradient(135deg, #ffffff, #e5e5e5);
  color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.notify-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, #f0f0f0, #d0d0d0);
  border-color: rgba(255, 255, 255, 0.5);
}

.coming-soon-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-primary);
  font-weight: 500;
  margin-bottom: 1rem;
}

.coming-soon-status i {
  animation: spin 2s linear infinite;
}

.product-card:nth-child(1) {
  animation-delay: 0.6s;
}

.product-card:nth-child(2) {
  animation-delay: 0.8s;
}

.product-card:nth-child(3) {
  animation-delay: 1s;
}

.product-card:nth-child(4) {
  animation-delay: 1.2s;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffffff, #e5e5e5, #cccccc);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.product-card:hover {
  transform: translateY(-18px) scale(1.04);
  box-shadow: 
    0 40px 90px rgba(255, 255, 255, 0.3),
    0 20px 50px rgba(255, 255, 255, 0.2),
    0 8px 25px rgba(255, 255, 255, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.8),
    inset 0 2px 0 rgba(255, 255, 255, 0.2),
    inset 0 -2px 0 rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.9) 0%, 
    rgba(40, 40, 40, 0.95) 50%,
    rgba(0, 0, 0, 0.9) 100%);
  backdrop-filter: blur(50px) saturate(250%) brightness(1.1);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    transparent 50%,
    rgba(255, 255, 255, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px;
  pointer-events: none;
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-image {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.product-image i {
  font-size: 3.5rem;
  color: #ffffff;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(200, 200, 200, 0.8));
  border-radius: 50%;
  position: relative;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.4),
    0 5px 15px rgba(255, 255, 255, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.25),
    inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

.product-image i::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #ffffff, #e5e5e5, #cccccc);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-image i {
  transform: scale(1.15) rotateY(15deg) rotateX(10deg) translateZ(20px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.9), rgba(150, 150, 150, 0.8));
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.6),
    0 10px 30px rgba(255, 255, 255, 0.4),
    0 5px 15px rgba(255, 255, 255, 0.3),
    inset 0 3px 0 rgba(255, 255, 255, 0.4),
    inset 0 -3px 0 rgba(0, 0, 0, 0.15);
}

.product-card:hover .product-image i::before {
  opacity: 1;
}

.product-info h3 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.product-info p {
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: -0.005em;
}

.product-features {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.feature i {
  color: #ffffff;
  font-size: 0.8rem;
}

.feature:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}



.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.product-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.view-details-btn {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.view-details-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.view-details-btn:active {
  transform: translateY(0);
  transition: transform 0.1s ease;
}

.purchase-btn {
  flex: 1;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #ffffff, #e5e5e5);
  color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 4px 16px var(--shadow-medium),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

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

.purchase-btn:hover {
  transform: translateY(-2px) scale(1.02);
  background: linear-gradient(135deg, #f0f0f0, #d0d0d0);
  box-shadow: 
    0 8px 24px rgba(255, 255, 255, 0.4),
    0 0 0 1px var(--border-medium),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

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

.purchase-btn:active {
  transform: translateY(-1px) scale(0.98);
}

.purchase-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.purchase-btn.loading {
  pointer-events: none;
}

.purchase-btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.purchase-btn.loading span {
  opacity: 0;
}

.showcase {
  padding: 6rem 0;
  background: var(--gradient-overlay);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 70% 30%, 
    rgba(255, 255, 255, 0.04) 0%, 
    transparent 50%);
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  pointer-events: none;
  z-index: -1;
}

.showcase:hover::after {
  opacity: 1;
}

.showcase h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #ffffff;
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
  opacity: 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.showcase-item {
  background: var(--bg-card);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border-medium);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  animation: staggeredFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) both;
  opacity: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-item:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: var(--border-strong);
  box-shadow: 
    0 12px 32px var(--shadow-medium),
    0 4px 16px var(--shadow-soft),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  background: var(--bg-card-hover);
  backdrop-filter: blur(20px);
}

.showcase-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-overlay);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 15px;
  pointer-events: none;
}

.showcase-item:hover::before {
  opacity: 1;
}

.showcase-item:nth-child(1) {
  animation-delay: 0.4s;
}

.showcase-item:nth-child(2) {
  animation-delay: 0.6s;
}

.showcase-item:nth-child(3) {
  animation-delay: 0.8s;
}

.showcase-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.after-only {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.after-only .placeholder-image {
  width: 100%;
  max-width: 500px;
}

.placeholder-image {
  aspect-ratio: 16/9;
  background: var(--gradient-bg);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.placeholder-image:hover {
  border-color: var(--text-primary);
}

.placeholder-image i {
  font-size: 2rem;
  color: var(--text-primary);
}

.placeholder-image span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

.vehicle-after,
.city-after,
.character-after {
  background: linear-gradient(135deg, #ffffff, #e5e5e5);
}

.showcase-item p {
  color: var(--text-muted);
  line-height: 1.6;
}

.contact {
  padding: 8rem 0;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.3) 0%, 
    rgba(236, 72, 153, 0.04) 25%,
    rgba(16, 185, 129, 0.05) 50%,
    rgba(255, 255, 255, 0.04) 75%,
    rgba(0, 0, 0, 0.3) 100%);
  backdrop-filter: blur(8px);
  border-top: 2px solid rgba(255, 255, 255, 0.08);
  position: relative;
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center bottom, 
    rgba(16, 185, 129, 0.04) 0%, 
    transparent 60%);
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  pointer-events: none;
  z-index: -1;
}

.contact:hover::after {
  opacity: 1;
}

.contact h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #ffffff;
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
  opacity: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  
  /* Advanced Grid Layout */
  grid-auto-rows: minmax(250px, auto);
  align-items: stretch;
}

/* Enhanced Contact Grid Responsive Design */
@media (min-width: 1200px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 3rem auto 0;
    gap: 2.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .contact-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .contact-card {
    margin: 0 auto;
    max-width: 400px;
  }
}

.contact-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px) saturate(100%);
  border: 1px solid var(--border-medium);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
  box-shadow: 
    0 8px 32px var(--shadow-medium),
    0 2px 12px var(--shadow-soft),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.025em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: white;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
}

.form-group input:hover,
.form-group textarea:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 
    0 12px 30px rgba(255, 255, 255, 0.25),
    0 0 0 3px rgba(255, 255, 255, 0.1);
}

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

.submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #ffffff, #e5e5e5);
  color: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 4px 16px var(--shadow-medium),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

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

.submit-btn:hover {
  transform: translateY(-2px) scale(1.02);
  background: var(--gradient-secondary);
  box-shadow: 
    0 8px 24px var(--shadow-strong),
    0 0 0 1px var(--border-medium),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

.submit-btn:active {
  transform: translateY(-1px) scale(0.98);
}

.contact-card:nth-child(1) {
  animation-delay: 0.1s;
}

.contact-card:nth-child(2) {
  animation-delay: 0.2s;
}

.contact-card:nth-child(3) {
  animation-delay: 0.3s;
}

.contact-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
  box-shadow: 
    0 16px 48px var(--shadow-medium),
    0 6px 20px var(--shadow-soft),
    0 0 0 1px var(--border-medium),
    inset 0 2px 0 rgba(255, 255, 255, 0.15);
}

.contact-card i {
  font-size: 3rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.contact-card h3 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.contact-card p {
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: -0.005em;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  color: var(--text-primary);
  padding: 0.8rem 1.5rem;
  border: 1px solid var(--border-medium);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.contact-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-overlay);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 24px var(--shadow-medium),
    0 2px 8px var(--shadow-soft),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
  color: var(--text-primary);
}

.contact-btn:hover::before {
  opacity: 1;
}

.contact-btn:active {
  transform: translateY(-1px) scale(0.98);
  transition: transform 0.1s ease;
}

.footer {
  background: var(--gradient-overlay);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-medium);
  padding: 4rem 0 2rem;
  position: relative;
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
  opacity: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  animation: staggeredFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
  opacity: 0;
}

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

.footer-section p {
  color: var(--text-muted);
  line-height: 1.6;
}

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

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

.footer-section ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  display: inline-block;
  background: transparent;
  border: none;
  backdrop-filter: none;
  position: relative;
  overflow: hidden;
}

.footer-section ul li a::before {
  display: none;
}

.footer-section ul li a:hover,
.footer-section ul li a:focus {
  color: rgba(255, 255, 255, 0.95);
  background: transparent;
  border: none;
  transform: translateY(-1px);
  box-shadow: none;
  opacity: 0.8;
  outline: none;
}

.footer-section ul li a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
  border-radius: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s both;
  opacity: 0;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
  }

  .hamburger:active {
    transform: scale(0.95);
  }

  .hamburger .bar {
    width: 25px;
    height: 3px;
    background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.8));
    margin: 3px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }

  .hamburger.active {
    background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  }

  .hamburger.active .bar:nth-child(1) {
    transform: rotate(-25deg) translate(-3px, 4px);
    background: linear-gradient(135deg, #ffffff, #e5e5e5);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: rotate(25deg) translate(-3px, -4px);
    background: linear-gradient(135deg, #ffffff, #e5e5e5);
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: linear-gradient(135deg, 
      rgba(0, 0, 0, 0.95) 0%,
      rgba(10, 10, 20, 0.98) 50%,
      rgba(0, 0, 0, 0.95) 100%);
    backdrop-filter: blur(25px) saturate(180%);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
      0 20px 60px rgba(0, 0, 0, 0.6),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 3rem 0;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-20px);
  }

  .nav-menu.active {
    left: 0;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .nav-item {
    margin: 0.75rem 0;
    width: 90%;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  .nav-menu.active .nav-item:nth-child(1) { animation-delay: 0.1s; }
  .nav-menu.active .nav-item:nth-child(2) { animation-delay: 0.2s; }
  .nav-menu.active .nav-item:nth-child(3) { animation-delay: 0.3s; }
  .nav-menu.active .nav-item:nth-child(4) { animation-delay: 0.4s; }
  .nav-menu.active .nav-item:nth-child(5) { animation-delay: 0.5s; }

  .nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    padding: 1.25rem 2rem;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
  }

  .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
      transparent, 
      rgba(255, 255, 255, 0.1), 
      transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-link:hover::before {
    left: 100%;
  }

  .nav-link:hover {
    color: #ffffff;
    background: linear-gradient(135deg, 
      rgba(255, 255, 255, 0.2), 
      rgba(255, 255, 255, 0.15));
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 
      0 12px 35px rgba(255, 255, 255, 0.25),
      0 6px 15px rgba(255, 255, 255, 0.15);
  }

  .nav-link:active {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px) scale(0.98);
  }

  .nav-container {
    padding: 0 1rem;
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    height: 70px;
  }

  .nav-menu {
    display: none;
  }

  .mobile-bottom-nav {
    display: flex;
  }

  main {
    padding-bottom: 80px;
  }

  .nav-logo h2 {
    font-size: 1.5rem;
    margin: 0;
  }
}



  .hero {
    flex-direction: column;
    text-align: center;
    padding: 4rem 1.5rem;
    gap: 4rem;
    min-height: calc(100vh - 70px);
  }

  .hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    order: -1;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .floating-card {
    width: 180px;
    padding: 1.5rem 1rem;
    margin: 0.5rem;
  }

  .products {
    padding: 4rem 0;
  }

  .products-grid {
    gap: 2rem;
    padding: 0 1rem;
  }

  .product-card {
    margin-bottom: 2rem;
    padding: 2rem;
  }

  .product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .product-info p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .product-actions {
    gap: 1rem;
    flex-direction: column;
  }

  .product-actions button {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
  }

  .floating-card:nth-child(2),
  .floating-card:nth-child(3) {
    transform: none;
  }

  .container {
    padding: 0 1.5rem;
  }

  .products-grid,
  .showcase-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-card,
  .showcase-item,
  .contact-card {
    margin-bottom: 1rem;
  }

  .before-after {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
    background: transparent;
  }

  .contact-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    min-height: 48px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    border-width: 2px;
  }

  .contact-btn:hover {
    transform: translateY(-1px);
  }

  .footer-section ul li a {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
  }

  .footer-section ul li a:hover,
  .footer-section ul li a:focus {
    transform: translateY(-1px);
    background: transparent;
    opacity: 0.8;
    outline: none;
  }

  .footer-section ul li a:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
    border-radius: 4px;
  }

  .cta-button,
  .purchase-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    min-height: 48px;
    touch-action: manipulation;
  }
.view-details-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .floating-card {
    width: calc(50% - 0.5rem);
    max-width: 160px;
    padding: 1.2rem 0.8rem;
    margin: 0.25rem;
  }

  .product-card,
  .showcase-item,
  .contact-card {
    padding: 1.5rem;
  }

  .contact-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
    border-radius: 12px;
  }

  .footer-section ul li a {
    padding: 0.625rem 0.875rem;
    font-size: 0.95rem;
    width: 100%;
    margin-bottom: 0.25rem;
    background: transparent;
    border: none;
  }

  .footer-content {
    gap: 1.5rem;
  }

  .footer-section {
    padding: 0 1rem;
  }
}

/* Page Loader Styles */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease;
}

.loader-content {
  text-align: center;
  color: #ffffff;
}

.loader-logo {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff, #e5e5e5, #cccccc);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
  animation: pulse 2s ease-in-out infinite;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid #ffffff;
  border-radius: 50%;
  margin: 0 auto;
  animation: spin 1s linear infinite;
}



/* Enhanced Scroll Behavior */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* Improved section transitions */
section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* Prevent layout shifts during transitions */
* {
  box-sizing: border-box;
}

/* Prevent background scrolling when mobile menu is open */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

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

::-webkit-scrollbar-track {
  background: #1e293b;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #ffffff, #e5e5e5);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #ffffff, #e5e5e5);
}

/* Mobile Menu Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}