/**
 * ═══════════════════════════════════════════════════════════════════════════════
 * NAWAB MOBILES V3 - ULTIMATE PREMIUM THEME
 * With Custom iPhone Cursor & Charging Animation
 * ═══════════════════════════════════════════════════════════════════════════════
 */

/* ═════════════════════════════════════════════════════════════════════════════
   CSS VARIABLES
   ═════════════════════════════════════════════════════════════════════════════ */
:root {
  /* Primary Colors - Luxury Gold */
  --gold-primary: #D4AF37;
  --gold-light: #F4D03F;
  --gold-dark: #B8860B;
  --gold-glow: rgba(212, 175, 55, 0.4);
  --gold-shimmer: rgba(244, 208, 63, 0.6);
  
  /* Background Colors */
  --bg-primary: #0A0A0A;
  --bg-secondary: #111111;
  --bg-card: #1A1A1A;
  --bg-hover: #222222;
  --bg-glass: rgba(26, 26, 26, 0.8);
  
  /* Text Colors */
  --text-primary: #FFFFFF;
  --text-secondary: #B0B0B0;
  --text-muted: #666666;
  
  /* Accent Colors */
  --accent-cyan: #00D4FF;
  --accent-green: #00FF88;
  --accent-red: #FF3366;
  
  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #D4AF37, #F4D03F, #B8860B);
  --gradient-dark: linear-gradient(180deg, #111111, #0A0A0A);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  
  /* Shadows */
  --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.3);
  --shadow-gold-lg: 0 0 60px rgba(212, 175, 55, 0.5);
  --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.8);
  
  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

/* ═════════════════════════════════════════════════════════════════════════════
   RESET & BASE
   ═════════════════════════════════════════════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  padding-top: 100px; /* adjust to your navbar height */
  font-family: 'Montserrat', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  cursor: none; /* Hide default cursor for custom cursor */
}

/* Show default cursor on mobile */
@media (pointer: coarse) {
  body {
    cursor: auto;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: none;
  border: none;
  outline: none;
  background: none;
}

@media (pointer: coarse) {
  button {
    cursor: pointer;
  }
}

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

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-gold);
  border-radius: 4px;
}

/* ═════════════════════════════════════════════════════════════════════════════
   CUSTOM CURSOR - iPHONE STYLE
   ═════════════════════════════════════════════════════════════════════════════ */
.custom-cursor {
  position: fixed;
  width: 40px;
  height: 60px;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease-out;
  display: none;
}

@media (pointer: fine) {
  .custom-cursor {
    display: block;
  }
}

.cursor-phone {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Phone Body */
.cursor-phone::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
  border-radius: 8px;
  box-shadow: 
    0 0 0 2px var(--gold-primary),
    0 0 20px var(--gold-glow),
    inset 0 0 10px rgba(0,0,0,0.5);
}

/* Phone Screen */
.cursor-phone::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  background: linear-gradient(135deg, rgba(212,175,55,0.3), rgba(0,212,255,0.2));
  border-radius: 6px;
  animation: cursorScreenPulse 2s ease-in-out infinite;
}

/* Dynamic Island */
.cursor-island {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 4px;
  background: #000;
  border-radius: 2px;
  z-index: 2;
}

/* Home Indicator */
.cursor-home {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  border-radius: 1px;
  z-index: 2;
}

/* Cursor Glow Ring */
.cursor-ring {
  position: absolute;
  inset: -10px;
  border: 1px solid var(--gold-primary);
  border-radius: 12px;
  opacity: 0.5;
  animation: cursorRingPulse 1.5s ease-in-out infinite;
}

/* Cursor Trail */
.cursor-trail {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  opacity: 0;
  filter: blur(2px);
}

@keyframes cursorScreenPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

@keyframes cursorRingPulse {
  0%, 100% { 
    transform: scale(1);
    opacity: 0.5;
  }
  50% { 
    transform: scale(1.1);
    opacity: 0.2;
  }
}

/* Cursor on clickable elements */
.custom-cursor.hover .cursor-phone::before {
  box-shadow: 
    0 0 0 3px var(--gold-light),
    0 0 40px var(--gold-glow),
    inset 0 0 10px rgba(0,0,0,0.5);
  transform: scale(1.1);
}

.custom-cursor.click {
  transform: translate(-50%, -50%) scale(0.9);
}

/* ═════════════════════════════════════════════════════════════════════════════
   CHARGING ANIMATION / PRELOADER
   ═════════════════════════════════════════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Charging Phone Container */
.charging-phone {
  position: relative;
  width: 120px;
  height: 200px;
}

/* Phone Frame */
.charging-frame {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #333, #111);
  border-radius: 20px;
  box-shadow: 
    0 0 0 3px var(--gold-primary),
    0 0 50px var(--gold-glow),
    inset 0 0 30px rgba(0,0,0,0.8);
  overflow: hidden;
}

/* Screen */
.charging-screen {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Battery Icon */
.battery-container {
  position: relative;
  width: 60px;
  height: 100px;
  margin-bottom: 1rem;
}

.battery-body {
  position: absolute;
  inset: 10px 0 0 0;
  border: 3px solid var(--gold-primary);
  border-radius: 8px;
  overflow: hidden;
}

.battery-cap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 10px;
  background: var(--gold-primary);
  border-radius: 3px 3px 0 0;
}

.battery-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-primary));
  border-radius: 0 0 4px 4px;
  animation: batteryCharge 2.5s ease-in-out infinite;
  box-shadow: 0 0 20px var(--gold-glow);
}

.battery-fill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255,255,255,0.3) 50%,
    transparent 100%
  );
  animation: batteryShimmer 1s linear infinite;
}

/* Lightning Bolt */
.battery-bolt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #000;
  z-index: 10;
  animation: boltPulse 0.5s ease-in-out infinite;
}

/* Charging Percentage */
.charging-percent {
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: percentGlow 1s ease-in-out infinite;
}

/* Charging Cable */
.charging-cable {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 50px;
  background: linear-gradient(180deg, var(--gold-primary), var(--gold-dark));
  border-radius: 0 0 4px 4px;
}

.charging-cable::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 15px;
  background: linear-gradient(145deg, #silver, #gray);
  border-radius: 4px;
}

/* Energy Particles */
.energy-particles {
  position: absolute;
  inset: -50px;
  pointer-events: none;
}

.energy-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold-primary);
  border-radius: 50%;
  animation: particleFloat 2s ease-in-out infinite;
}

.energy-particle:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.energy-particle:nth-child(2) { top: 30%; right: 20%; animation-delay: 0.3s; }
.energy-particle:nth-child(3) { top: 50%; left: 10%; animation-delay: 0.6s; }
.energy-particle:nth-child(4) { top: 60%; right: 10%; animation-delay: 0.9s; }
.energy-particle:nth-child(5) { top: 80%; left: 30%; animation-delay: 1.2s; }

/* Loading Text */
.loading-text {
  font-size: 1.2rem;
  color: var(--text-secondary);
  letter-spacing: 4px;
  animation: loadingPulse 1.5s ease-in-out infinite;
}

.loading-dots::after {
  content: '';
  animation: loadingDots 1.5s steps(4) infinite;
}

@keyframes batteryCharge {
  0% { height: 0%; }
  50% { height: 70%; }
  100% { height: 100%; }
}

@keyframes batteryShimmer {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

@keyframes boltPulse {
  0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

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

@keyframes particleFloat {
  0%, 100% { 
    transform: translateY(0) scale(1);
    opacity: 0.5;
  }
  50% { 
    transform: translateY(-20px) scale(1.5);
    opacity: 1;
  }
}

@keyframes loadingPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes loadingDots {
  0% { content: ''; }
  25% { content: '.'; }
  50% { content: '..'; }
  75% { content: '...'; }
  100% { content: ''; }
}

/* ═════════════════════════════════════════════════════════════════════════════
   ANIMATIONS
   ═════════════════════════════════════════════════════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

@keyframes goldPulse {
  0%, 100% {
    box-shadow: 0 0 20px var(--gold-glow);
  }
  50% {
    box-shadow: 0 0 50px var(--gold-glow), 0 0 80px rgba(212, 175, 55, 0.3);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ═════════════════════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ═════════════════════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ═════════════════════════════════════════════════════════════════════════════
   NAVIGATION
   ═════════════════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  background: transparent;
  transition: var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  box-shadow: var(--shadow-dark);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: transparent;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--bg-primary);
  box-shadow: var(--shadow-gold);
  animation: goldPulse 3s ease-in-out infinite;
}

.logo-text {
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--gradient-gold);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  transition: var(--transition-normal);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
  background: transparent;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: var(--gold-primary);
  transition: var(--transition-normal);
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 380px;
  height: 100vh;
  background: var(--bg-secondary);
  z-index: 999;
  padding: 6rem 2rem 2rem;
  transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.mobile-drawer.active {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-normal);
}

.mobile-nav-link:hover {
  background: var(--bg-card);
  color: var(--gold-primary);
}

.mobile-nav-link i {
  color: var(--gold-primary);
  width: 24px;
}

.mobile-nav-cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ═════════════════════════════════════════════════════════════════════════════
   BUTTONS
   ═════════════════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-lg);
}

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

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

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

.btn-secondary:hover {
  background: var(--gold-primary);
  color: var(--bg-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.btn-small {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ═════════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ═════════════════════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
    radial-gradient(ellipse at 60% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 45%),
    var(--bg-primary);
  z-index: -2;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  filter: blur(80px);
  animation: float 6s ease-in-out infinite;
  z-index: -1;
}

.hero-glow-1 {
  top: 10%;
  right: 10%;
}

.hero-glow-2 {
  bottom: 20%;
  left: 5%;
  width: 400px;
  height: 400px;
  animation-delay: 3s;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-primary);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title .gold-text {
  background: var(--gradient-gold);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 500px;
  line-height: 1.7;
}

.hero-image {
  position: relative;
  animation: fadeIn 1.2s ease-out 0.3s both;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 400px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.8));
  animation: float 4s ease-in-out infinite;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
}

/* ═════════════════════════════════════════════════════════════════════════════
   SECTIONS
   ═════════════════════════════════════════════════════════════════════════════ */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-primary);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--gold-primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

/* ═════════════════════════════════════════════════════════════════════════════
   PRODUCT GRID
   ═════════════════════════════════════════════════════════════════════════════ */
.products-section {
  background: var(--bg-secondary);
}

.product-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.7rem 1.8rem;
  background: transparent;
  border: 1px solid var(--text-muted);
  border-radius: 50px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-gold);
  border-color: var(--gold-primary);
  color: var(--bg-primary);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid transparent;
  transition: var(--transition-normal);
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

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

.product-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.product-image img {
  width: 70%;
  height: auto;
  object-fit: contain;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1) rotate(-5deg);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.4rem 1rem;
  background: var(--gradient-gold);
  color: var(--bg-primary);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  z-index: 2;
}

.product-info {
  padding: 1.5rem;
  position: relative;
  z-index: 1;
}

.product-info h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

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

/* ═════════════════════════════════════════════════════════════════════════════
   FEATURES
   ═════════════════════════════════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
  border: 1px solid transparent;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.6s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--gold-primary);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: var(--transition-normal);
}

.feature-card:hover .feature-icon {
  background: var(--gradient-gold);
  color: var(--bg-primary);
  transform: rotateY(360deg);
}

.feature-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

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

/* ═════════════════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═════════════════════════════════════════════════════════════════════════════ */
.testimonials-section {
  background: var(--bg-secondary);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid transparent;
  position: relative;
  transition: var(--transition-normal);
}

.testimonial-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-5px);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  color: var(--gold-primary);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-stars {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.testimonial-stars i {
  color: var(--gold-primary);
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--bg-primary);
  font-size: 1.2rem;
}

.testimonial-name {
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ═════════════════════════════════════════════════════════════════════════════
   CTA SECTION
   ═════════════════════════════════════════════════════════════════════════════ */
.cta-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at center, rgba(212, 175, 55, 0.15) 0%, transparent 60%),
    var(--bg-primary);
  z-index: -1;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content h2 span {
  color: var(--gold-primary);
}

.cta-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ═════════════════════════════════════════════════════════════════════════════
   ABOUT PAGE
   ═════════════════════════════════════════════════════════════════════════════ */
.about-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 10rem 0 6rem;
  background: linear-gradient(rgba(10,10,10,0.9), rgba(10,10,10,0.95)),
    url('images/store.jpg') center/cover;
}

.about-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.about-hero h1 span {
  color: var(--gold-primary);
}

.story-section {
  padding: 6rem 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.story-image img {
  width: 100%;
  border-radius: var(--radius-xl);
}

.story-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.story-content h2 span {
  color: var(--gold-primary);
}

.story-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* Timeline */
.timeline-section {
  background: var(--bg-secondary);
  padding: 6rem 0;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--gradient-gold);
}

.timeline-item {
  position: relative;
  padding: 2rem 0;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  padding-right: 3rem;
  text-align: right;
}

.timeline-item:nth-child(even) {
  padding-left: 3rem;
  margin-left: 50%;
}

.timeline-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--gold-primary);
  border-radius: 50%;
  top: 2.5rem;
  box-shadow: 0 0 20px var(--gold-glow);
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -10px;
}

.timeline-year {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.value-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid transparent;
  transition: var(--transition-normal);
}

.value-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-8px);
}

.value-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold-primary);
  opacity: 0.3;
  margin-bottom: 1rem;
}

/* ═════════════════════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═════════════════════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-info h2 span {
  color: var(--gold-primary);
}

.contact-info > p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: var(--transition-normal);
}

.contact-card:hover {
  border-color: var(--gold-primary);
  transform: translateX(10px);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.contact-card:hover .contact-icon {
  background: var(--gradient-gold);
  color: var(--bg-primary);
}

.contact-details h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.contact-details p,
.contact-details a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-details a:hover {
  color: var(--gold-primary);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid transparent;
}

.contact-form-wrapper:hover {
  border-color: var(--gold-primary);
}

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

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

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  background: var(--bg-secondary);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition-normal);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Map */
.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid transparent;
}

.map-container:hover {
  border-color: var(--gold-primary);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* ═════════════════════════════════════════════════════════════════════════════
   FLOATING WHATSAPP
   ═════════════════════════════════════════════════════════════════════════════ */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-normal);
  animation: goldPulse 2s ease-in-out infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* ═════════════════════════════════════════════════════════════════════════════
   NOTIFICATION
   ═════════════════════════════════════════════════════════════════════════════ */
.notification {
  position: fixed;
  top: 2rem;
  right: 2rem;
  padding: 1.2rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  z-index: 100001;
  transform: translateX(150%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: var(--shadow-dark);
}

.notification.show {
  transform: translateX(0);
}

.notification.success {
  background: linear-gradient(135deg, #10B981, #059669);
  color: white;
}

.notification.error {
  background: linear-gradient(135deg, #EF4444, #DC2626);
  color: white;
}

/* ═════════════════════════════════════════════════════════════════════════════
   FOOTER
   ═════════════════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-secondary);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo-icon {
  width: 45px;
  height: 45px;
  background: transparent;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: none;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-link {
  color: var(--text-secondary);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-normal);
}

.footer-link:hover {
  color: var(--gold-primary);
  transform: translateX(5px);
}

.footer-link i {
  font-size: 0.8rem;
  color: var(--gold-primary);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-contact i {
  color: var(--gold-primary);
  width: 20px;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  border: 1px solid transparent;
  transition: var(--transition-normal);
}

.social-link:hover {
  background: var(--gold-primary);
  color: var(--bg-primary);
  border-color: var(--gold-primary);
  transform: translateY(-5px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  text-align: center;
}

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

.footer-bottom span {
  color: var(--gold-primary);
}

/* ═════════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-container,
  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-content {
    order: 2;
    text-align: center;
  }
  
  .hero-image {
    order: 1;
  }
  
  .hero-subtitle {
    margin: 0 auto 2.5rem;
  }
  
  .btn-group {
    justify-content: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    width: 100%;
    padding-left: 4rem;
    padding-right: 0;
    margin-left: 0;
    text-align: left;
  }
  
  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: 10px;
    right: auto;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-link {
    justify-content: center;
  }
  
  .footer-contact p {
    justify-content: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .floating-whatsapp {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
  }
  
  .btn-group {
    flex-direction: column;
  }
  
  .product-grid,
  .features-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .charging-phone {
    transform: scale(0.8);
  }
}

/* Page Transition */
.page-transition {
  animation: pageFadeIn 0.6s ease-out;
}

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