/* GTA 6 Night Style CSS */

/* CSS Variables */
:root {
  --midnight-black: #0B0D1A;
  --midnight-blue: #1A1B3A;
  --electric-pink: #FF006E;
  --electric-cyan: #00F5FF;
  --pure-white: #FFFFFF;
  --off-white: #F8F9FA;
  --subtle-purple: #8B5CF6;
  --dark-glass: rgba(26, 27, 58, 0.8);
  --scroll: 0%;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--midnight-black);
}

body {
  font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background: linear-gradient(135deg, var(--midnight-black) 0%, var(--midnight-blue) 50%, var(--midnight-black) 100%);
  color: var(--pure-white);
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-family: 'Inter', sans-serif;
}

h1 {
  font-size: 4.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--pure-white) 0%, var(--electric-pink) 50%, var(--electric-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(255, 0, 110, 0.3);
}

h2 {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--electric-pink) 0%, var(--electric-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h3 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--pure-white);
}

h4 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--electric-cyan);
}

h5 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--electric-pink);
}

h6 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--subtle-purple);
}

p {
  line-height: 1.7;
  color: var(--off-white);
  font-size: 1rem;
}

/* Scroll Progress Indicator */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(26, 27, 58, 0.5);
  z-index: 9999;
  backdrop-filter: blur(10px);
}

.scroll-indicator::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--electric-pink), var(--electric-cyan), var(--subtle-purple));
  width: var(--scroll, 0%);
  transition: width 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 0, 110, 0.5);
}

/* Background Effects */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.particle:nth-child(1) { 
  width: 2px; height: 2px; 
  top: 20%; left: 20%; 
  animation-delay: 0s;
  background: var(--electric-pink);
  opacity: 0.6;
}

.particle:nth-child(2) { 
  width: 1px; height: 1px; 
  top: 60%; left: 80%; 
  animation-delay: 3s;
  background: var(--electric-cyan);
  opacity: 0.4;
}

.particle:nth-child(3) { 
  width: 3px; height: 3px; 
  top: 80%; left: 40%; 
  animation-delay: 6s;
  background: var(--subtle-purple);
  opacity: 0.3;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); opacity: 0.3; }
  50% { transform: translateY(-30px) scale(1.2); opacity: 0.8; }
}

.city-lights-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255, 0, 110, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 245, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}

.city-grid-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.05;
  pointer-events: none;
  z-index: 1;
}

/* Glass Morphism */
.glass-card {
  background: var(--dark-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  border-radius: 16px;
}

/* Neon Glows */
.neon-glow-pink {
  box-shadow: 0 0 20px rgba(255, 0, 110, 0.4);
}

.neon-glow-cyan {
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
}

.neon-glow-purple {
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

/* Text Gradients */
.text-gradient-pink {
  background: linear-gradient(135deg, var(--electric-pink), var(--subtle-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-cyan {
  background: linear-gradient(135deg, var(--electric-cyan), var(--electric-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.modern-button {
  background: linear-gradient(135deg, var(--electric-pink), var(--electric-cyan));
  border: none;
  color: var(--pure-white);
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  padding: 12px 24px;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.modern-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 0, 110, 0.4);
}

.modern-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;
}

.modern-button:hover::before {
  left: 100%;
}

.secondary-button {
  background: transparent;
  border: 2px solid var(--electric-pink);
  color: var(--electric-pink);
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 10px 22px;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.secondary-button:hover {
  background: var(--electric-pink);
  color: var(--pure-white);
  box-shadow: 0 0 20px rgba(255, 0, 110, 0.4);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(26, 27, 58, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand .brand-text {
  font-size: 2rem;
  font-weight: 900;
  color: var(--pure-white);
  text-decoration: none;
}

.brand-accent {
  color: var(--electric-pink);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--off-white);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--electric-pink);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--electric-pink);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--off-white);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.nav-btn:hover {
  border-color: var(--electric-cyan);
  color: var(--electric-cyan);
  background: rgba(0, 245, 255, 0.1);
}

.cart-btn {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--electric-pink);
  color: var(--pure-white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--pure-white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, 
    var(--midnight-black) 0%, 
    var(--midnight-blue) 25%, 
    rgba(255, 0, 110, 0.1) 50%, 
    var(--midnight-blue) 75%, 
    var(--midnight-black) 100%);
  padding-top: 100px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-content h1 {
  margin-bottom: 2rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--off-white);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--electric-pink);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--off-white);
  opacity: 0.8;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-visual {
  position: relative;
}

.hero-car-container {
  position: relative;
}

.hero-car-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.floating-badge {
  position: absolute;
  background: var(--dark-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--pure-white);
  font-size: 0.9rem;
  font-weight: 600;
  animation: float 3s ease-in-out infinite;
}

.badge-1 {
  top: 20px;
  right: 20px;
  animation-delay: 0s;
}

.badge-2 {
  bottom: 80px;
  left: 20px;
  animation-delay: 1s;
}

.badge-3 {
  bottom: 20px;
  right: 40px;
  animation-delay: 2s;
}

/* Section Styles */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  position: relative;
  z-index: 10;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--off-white);
  max-width: 800px;
  margin: 0 auto;
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, 
    var(--midnight-black) 0%, 
    var(--midnight-blue) 50%, 
    var(--midnight-black) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-card {
  padding: 2.5rem;
}

.about-card h3 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.about-card p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.feature-dot.pink { background: var(--electric-pink); }
.feature-dot.cyan { background: var(--electric-cyan); }
.feature-dot.purple { background: var(--subtle-purple); }

.certification-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.cert-badge {
  background: var(--dark-glass);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.cert-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--electric-pink);
  margin-bottom: 0.5rem;
}

.cert-subtitle {
  font-size: 0.9rem;
  color: var(--off-white);
}

.visual-card {
  padding: 1.5rem;
  position: relative;
}

.visual-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.visual-overlay h4 {
  margin-bottom: 1rem;
  color: var(--pure-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card {
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 30px rgba(255, 0, 110, 0.2);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

.feature-icon.pink {
  background: linear-gradient(135deg, var(--electric-pink), rgba(255, 0, 110, 0.8));
  color: var(--pure-white);
}

.feature-icon.cyan {
  background: linear-gradient(135deg, var(--electric-cyan), rgba(0, 245, 255, 0.8));
  color: var(--pure-white);
}

.feature-icon.purple {
  background: linear-gradient(135deg, var(--subtle-purple), rgba(139, 92, 246, 0.8));
  color: var(--pure-white);
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.stats-section {
  padding: 3rem;
}

.stats-header {
  text-align: center;
  margin-bottom: 3rem;
}

.stats-header h3 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
}

.stat-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-weight: 600;
  color: var(--pure-white);
  margin-bottom: 0.25rem;
}

/* Products Section */
.products-section {
  background: linear-gradient(135deg, 
    var(--midnight-black) 0%, 
    var(--midnight-blue) 50%, 
    var(--midnight-black) 100%);
}

.categories-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.category-btn {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--off-white);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.category-btn:hover,
.category-btn.active {
  border-color: var(--electric-pink);
  color: var(--electric-pink);
  background: rgba(255, 0, 110, 0.1);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.product-card {
  background: var(--dark-glass);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 30px rgba(255, 0, 110, 0.2);
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-info {
  padding: 1.5rem;
}

.product-category {
  background: rgba(255, 0, 110, 0.2);
  color: var(--electric-pink);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.product-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pure-white);
  margin-bottom: 0.5rem;
}

.product-description {
  color: var(--off-white);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--electric-pink);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.star {
  width: 16px;
  height: 16px;
  color: var(--electric-pink);
}

.star.filled {
  fill: currentColor;
}

.product-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
}

.add-to-cart-btn {
  flex: 1;
  background: linear-gradient(135deg, var(--electric-pink), var(--electric-cyan));
  border: none;
  color: var(--pure-white);
  padding: 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(255, 0, 110, 0.3);
}

.load-more-container {
  text-align: center;
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(135deg, 
    var(--midnight-black) 0%, 
    var(--midnight-blue) 50%, 
    var(--midnight-black) 100%);
}

.testimonial-main {
  padding: 3rem;
  margin-bottom: 3rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2rem;
}

.testimonial-customer {
  text-align: center;
}

.customer-avatar {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.customer-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 0, 110, 0.3);
}

.verified-badge {
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 24px;
  height: 24px;
  background: var(--electric-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--midnight-blue);
  font-size: 12px;
  color: var(--pure-white);
}

.testimonial-customer h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--pure-white);
}

.testimonial-customer p {
  color: var(--off-white);
  margin-bottom: 1rem;
}

.rating {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.product-purchased {
  background: var(--dark-glass);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  display: inline-block;
}

.testimonial-content {
  position: relative;
}

.quote-icon {
  position: absolute;
  top: -1rem;
  left: -1rem;
  font-size: 3rem;
  color: rgba(255, 0, 110, 0.3);
}

.testimonial-content blockquote {
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--pure-white);
  font-style: italic;
  padding-left: 2rem;
}

.testimonial-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonial-nav .nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-glass);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--off-white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-nav .nav-btn:hover {
  border-color: var(--electric-pink);
  color: var(--electric-pink);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background: var(--electric-pink);
  transform: scale(1.2);
}

.trust-indicators {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.trust-card {
  padding: 2rem;
  text-align: center;
}

.trust-number {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.trust-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.trust-label {
  font-weight: 600;
  color: var(--pure-white);
  margin-bottom: 0.5rem;
}

.trust-subtitle {
  font-size: 0.9rem;
  color: var(--off-white);
  opacity: 0.8;
}

/* Banner Section */
.banner-section {
  background: linear-gradient(135deg, 
    var(--midnight-black) 0%, 
    var(--midnight-blue) 25%, 
    rgba(255, 0, 110, 0.1) 50%, 
    var(--midnight-blue) 75%, 
    var(--midnight-black) 100%);
  padding: 5rem 2rem;
  position: relative;
}

.banner-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem;
  text-align: center;
}

.banner-content h2 {
  margin-bottom: 1.5rem;
  font-size: 3rem;
}

.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.banner-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.banner-benefits {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.benefit-item {
  text-align: center;
}

.benefit-title {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}

.benefit-subtitle {
  font-size: 0.9rem;
  color: var(--off-white);
}

.benefit-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.3);
}

.banner-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.banner-feature {
  text-align: center;
}

.banner-feature .feature-icon {
  margin-bottom: 1rem;
}

.banner-feature h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--pure-white);
}

.banner-feature p {
  font-size: 0.9rem;
  color: var(--off-white);
}

.banner-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-stat {
  text-align: center;
}

.banner-stat .stat-number {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.banner-stat .stat-label {
  font-size: 0.8rem;
  color: var(--off-white);
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, 
    var(--midnight-black) 0%, 
    var(--midnight-blue) 50%, 
    var(--midnight-black) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card {
  padding: 2rem;
}

.contact-card h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  color: var(--pure-white);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.05);
}

.method-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.method-details h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--pure-white);
}

.method-details p {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.method-details span {
  font-size: 0.9rem;
  color: var(--off-white);
  opacity: 0.8;
}

.office-hours {
  padding: 2rem;
}

.hours-schedule {
  margin-bottom: 1.5rem;
}

.schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-item:last-child {
  border-bottom: none;
}

.day {
  font-weight: 600;
  color: var(--pure-white);
}

.time {
  color: var(--off-white);
}

.global-support {
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(255, 0, 110, 0.1));
  padding: 1rem;
  border-radius: 12px;
}

.support-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--electric-cyan);
  font-weight: 600;
}

.global-support p {
  font-size: 0.9rem;
  color: var(--off-white);
}

.contact-form {
  padding: 2rem;
}

.contact-form h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  color: var(--pure-white);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--pure-white);
  font-size: 0.9rem;
}

.modern-input {
  background: rgba(26, 27, 58, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--pure-white);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.modern-input:focus {
  outline: none;
  border-color: var(--electric-pink);
  box-shadow: 0 0 0 3px rgba(255, 0, 110, 0.1);
}

.modern-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.form-note {
  font-size: 0.9rem;
  color: var(--off-white);
  opacity: 0.8;
}

.quick-support {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.support-option {
  padding: 1.5rem;
  text-align: center;
}

.support-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.support-option h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  color: var(--pure-white);
}

.support-option p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--off-white);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, 
    var(--midnight-black) 0%, 
    var(--midnight-blue) 50%, 
    var(--midnight-black) 100%);
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding: 4rem 0;
}

.footer-brand h3 {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--pure-white);
}

.footer-brand p {
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--off-white);
}

.contact-item i {
  color: var(--electric-cyan);
}

.contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--electric-cyan);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--dark-glass);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--off-white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--electric-pink);
  border-color: var(--electric-pink);
  box-shadow: 0 0 15px rgba(255, 0, 110, 0.3);
}

.footer-section h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  color: var(--pure-white);
}

.footer-section h4 i {
  color: var(--electric-cyan);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--off-white);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--electric-cyan);
  padding-left: 0.5rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-input {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input input {
  flex: 1;
}

.newsletter-tip {
  padding: 1rem;
}

.tip-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--electric-cyan);
  font-weight: 600;
}

.tip-dot {
  width: 8px;
  height: 8px;
  background: var(--electric-cyan);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.newsletter-tip p {
  font-size: 0.9rem;
  color: var(--off-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.copyright {
  color: var(--off-white);
  font-size: 0.9rem;
}

.heart-icon {
  color: var(--electric-pink);
  animation: pulse 2s ease-in-out infinite;
}

.legal-links {
  display: flex;
  gap: 2rem;
}

.legal-links a {
  color: var(--off-white);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: var(--electric-cyan);
}

.footer-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.footer-badge {
  padding: 1rem;
  text-align: center;
}

.badge-title {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.badge-subtitle {
  font-size: 0.8rem;
  color: var(--off-white);
  opacity: 0.8;
}

/* Shopping Cart Sidebar */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -500px;
  width: 500px;
  height: 100vh;
  background: var(--dark-glass);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  z-index: 1001;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.open {
  right: 0;
}

.cart-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--electric-pink), var(--electric-cyan));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-white);
}

.cart-title h2 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  color: var(--pure-white);
}

.cart-title p {
  font-size: 0.9rem;
  color: var(--off-white);
}

.close-cart {
  width: 40px;
  height: 40px;
  background: var(--dark-glass);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--off-white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-cart:hover {
  color: var(--pure-white);
  border-color: var(--electric-pink);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.empty-cart {
  text-align: center;
  padding: 3rem 1rem;
}

.empty-cart-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(255, 0, 110, 0.2), rgba(0, 245, 255, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--off-white);
}

.empty-cart h3 {
  margin-bottom: 1rem;
  color: var(--pure-white);
}

.empty-cart p {
  margin-bottom: 2rem;
  color: var(--off-white);
}

.cart-item {
  background: var(--dark-glass);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 1rem;
}

.cart-item-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-weight: 600;
  color: var(--pure-white);
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price {
  font-size: 0.9rem;
  color: var(--off-white);
  margin-bottom: 0.75rem;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quantity-btn {
  width: 28px;
  height: 28px;
  background: var(--dark-glass);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--off-white);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
}

.quantity-btn:hover {
  color: var(--electric-cyan);
  border-color: var(--electric-cyan);
}

.quantity-display {
  width: 30px;
  text-align: center;
  font-weight: 600;
  color: var(--pure-white);
}

.cart-item-total {
  font-weight: 700;
  color: var(--electric-pink);
}

.remove-item {
  width: 28px;
  height: 28px;
  background: var(--dark-glass);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--off-white);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 0.5rem;
}

.remove-item:hover {
  color: #ff4444;
  border-color: #ff4444;
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-code {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.promo-code input {
  flex: 1;
}

.order-summary {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  color: var(--off-white);
}

.summary-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 1rem 0;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pure-white);
}

.checkout-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.security-notice {
  text-align: center;
}

.security-notice p {
  font-size: 0.8rem;
  color: var(--off-white);
  opacity: 0.8;
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.show {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 13, 26, 0.8);
  backdrop-filter: blur(10px);
}

.modal-content {
  position: relative;
  background: var(--dark-glass);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 40px rgba(255, 0, 110, 0.1);
  max-width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  backdrop-filter: blur(20px);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1500;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 1rem;
}

.cookie-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
}

.cookie-banner {
  position: relative;
  width: 100%;
  max-width: 1000px;
  background: rgba(26, 27, 58, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(255, 0, 110, 0.2);
}

.cookie-content {
  padding: 2rem;
}

.cookie-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.cookie-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--electric-pink), var(--electric-cyan));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--pure-white);
  flex-shrink: 0;
}

.cookie-text {
  flex: 1;
}

.cookie-text h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--pure-white);
}

.cookie-text p {
  color: var(--off-white);
  line-height: 1.6;
}

.cookie-close {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  color: var(--off-white);
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.cookie-close:hover {
  color: var(--pure-white);
  background: rgba(255, 255, 255, 0.1);
}

.cookie-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.cookie-type {
  background: var(--dark-glass);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem;
}

.cookie-type-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.cookie-type-header i {
  color: var(--electric-cyan);
  margin-right: 0.5rem;
}

.cookie-type-header span {
  font-weight: 600;
  color: var(--pure-white);
  flex: 1;
}

.toggle-switch {
  width: 32px;
  height: 16px;
  background: #666;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: var(--electric-cyan);
}

.toggle-slider {
  width: 12px;
  height: 12px;
  background: var(--pure-white);
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: left 0.3s ease;
}

.toggle-switch.active .toggle-slider {
  left: 18px;
}

.cookie-type p {
  font-size: 0.9rem;
  color: var(--off-white);
  opacity: 0.8;
}

.cookie-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-links {
  display: flex;
  gap: 1rem;
}

.cookie-links a {
  color: var(--off-white);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.3s ease;
}

.cookie-links a:hover {
  color: var(--pure-white);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .cart-sidebar {
    width: 100%;
    right: -100%;
  }
  
  h1 { font-size: 3rem; }
  h2 { font-size: 2.5rem; }
  h3 { font-size: 2rem; }
  h4 { font-size: 1.5rem; }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .banner-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .cookie-types {
    grid-template-columns: 1fr;
  }
  
  .cookie-actions {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .section-container {
    padding: 3rem 1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .modern-button,
  .secondary-button {
    width: 100%;
    justify-content: center;
  }
  
  .trust-indicators {
    grid-template-columns: 1fr;
  }
  
  .banner-features {
    grid-template-columns: 1fr;
  }
  
  .quick-support {
    grid-template-columns: 1fr;
  }
  
  .footer-badges {
    grid-template-columns: 1fr;
  }
}

/* Animations */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--midnight-blue);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--electric-pink), var(--electric-cyan));
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(255, 0, 110, 0.3);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--electric-cyan), var(--subtle-purple));
}