/* NXT Cards Style Profile Design with Futuristic Elements */
.profile-body-nxt {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #0f0f23 100%);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  overflow-x: hidden;
}

/* Animated background particles */
.profile-body-nxt::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 100 100"><circle cx="20" cy="20" r="0.5" fill="rgba(99,102,241,0.4)"/><circle cx="80" cy="40" r="0.3" fill="rgba(168,85,247,0.3)"/><circle cx="40" cy="80" r="0.8" fill="rgba(59,130,246,0.2)"/><circle cx="70" cy="10" r="0.4" fill="rgba(139,92,246,0.5)"/></svg>');
  animation: floatParticles 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.nxt-container {
  max-width: 480px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* Glass morphism effect */
.nxt-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0.1) 100%);
  pointer-events: none;
  z-index: -1;
}

/* Holographic border effect - subtle and professional */
.nxt-container::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(135deg,
    rgba(99, 102, 241, 0.2),
    rgba(139, 92, 246, 0.15),
    rgba(59, 130, 246, 0.2));
  border-radius: 25px;
  z-index: -1;
  opacity: 0.4;
}

.nxt-profile-card {
  padding: 40px 30px 30px;
  position: relative;
}

/* Cover Image with Parallax Effect */
.nxt-cover-container {
  position: relative;
  height: 200px;
  margin: -40px -30px 40px -30px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.nxt-cover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.nxt-cover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(15, 15, 35, 0.4) 0%,
    rgba(26, 26, 62, 0.3) 50%,
    rgba(15, 15, 35, 0.4) 100%);
  z-index: 2;
}

.nxt-cover-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="0.2" fill="rgba(255,255,255,0.2)"/><circle cx="80" cy="40" r="0.15" fill="rgba(255,255,255,0.25)"/><circle cx="40" cy="80" r="0.25" fill="rgba(255,255,255,0.15)"/></svg>');
  z-index: 3;
}

.nxt-cover-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%,
    rgba(99, 102, 241, 0.1) 0%,
    transparent 60%);
  z-index: 1;
}/* Header Section */
.nxt-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.nxt-avatar-container {
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

/* Futuristic avatar with subtle glow effects */
.nxt-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(99, 102, 241, 0.3);
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow:
    0 4px 20px rgba(99, 102, 241, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.nxt-avatar:hover {
  transform: scale(1.02);
  box-shadow:
    0 6px 25px rgba(99, 102, 241, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* Subtle ring around avatar */
.nxt-avatar-container::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 50%;
  z-index: 1;
}

.nxt-avatar-container::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  z-index: 1;
}

.nxt-avatar-placeholder {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 40px;
  box-shadow:
    0 0 20px rgba(99, 102, 241, 0.3),
    0 0 40px rgba(99, 102, 241, 0.1);
}

.nxt-profile-info {
  margin-bottom: 30px;
  position: relative;
}

.nxt-name {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 8px 0;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.nxt-company {
  font-size: 16px;
  color: #64748b;
  margin: 0 0 12px 0;
  font-weight: 500;
  opacity: 0.9;
}

.nxt-bio {
  font-size: 15px;
  color: #475569;
  line-height: 1.5;
  margin: 0;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.8;
}

/* Action Buttons with Futuristic Design */
.nxt-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.nxt-action-btn {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 16px;
  text-decoration: none;
  color: #1e293b;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nxt-action-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(99, 102, 241, 0.1),
    transparent);
  transition: left 0.5s ease;
}

.nxt-action-btn:hover::before {
  left: 100%;
}

.nxt-action-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #1e293b;
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(99, 102, 241, 0.3);
  border-color: rgba(99, 102, 241, 0.4);
}

.nxt-action-btn:active {
  transform: translateY(0) scale(1);
}

.nxt-btn-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 16px;
  flex-shrink: 0;
  font-size: 16px;
  box-shadow:
    0 4px 12px rgba(99, 102, 241, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.nxt-action-btn:hover .nxt-btn-icon {
  transform: rotate(10deg) scale(1.1);
  box-shadow:
    0 6px 16px rgba(99, 102, 241, 0.4),
    0 0 20px rgba(99, 102, 241, 0.2);
}

.nxt-btn-text {
  flex: 1;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.nxt-save-contact .nxt-btn-icon {
  background: linear-gradient(135deg, #10b981, #059669);
}

.nxt-save-contact:hover .nxt-btn-icon {
  box-shadow:
    0 6px 16px rgba(16, 185, 129, 0.4),
    0 0 20px rgba(16, 185, 129, 0.2);
}

/* Contact Form with Futuristic Design */
.nxt-contact-form {
  border-top: 1px solid rgba(99, 102, 241, 0.2);
  padding-top: 30px;
  position: relative;
}

.nxt-contact-form::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(99, 102, 241, 0.5),
    transparent);
}

.nxt-form-title {
  font-size: 20px;
  font-weight: 600;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 20px 0;
  text-align: center;
}

.nxt-form-group {
  margin-bottom: 16px;
  position: relative;
}

.input-wrapper {
  position: relative;
  overflow: hidden;
}

.input-scan-line {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    rgba(99, 102, 241, 0.8),
    transparent);
  transition: left 0.3s ease;
}

.input-wrapper:focus-within .input-scan-line {
  left: 100%;
}

.nxt-input {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 12px;
  font-size: 15px;
  color: #1e293b;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  box-sizing: border-box;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nxt-input:focus {
  outline: none;
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow:
    0 0 0 3px rgba(99, 102, 241, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
}

.nxt-input::placeholder {
  color: #94a3b8;
  transition: color 0.3s ease;
}

.nxt-input:focus::placeholder {
  color: #cbd5e1;
}

.nxt-textarea {
  resize: vertical;
  min-height: 80px;
}

.nxt-submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 12px rgba(99, 102, 241, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.nxt-submit-btn:active .btn-ripple {
  width: 300px;
  height: 300px;
}.nxt-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;
}

.nxt-submit-btn:hover::before {
  left: 100%;
}

.nxt-submit-btn:hover {
  background: linear-gradient(135deg, #5b5bf6, #7c3aed);
  transform: translateY(-2px);
  box-shadow:
    0 8px 20px rgba(99, 102, 241, 0.4),
    0 0 30px rgba(99, 102, 241, 0.2);
}

.nxt-submit-btn:active {
  transform: translateY(0);
}

.nxt-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Futuristic Animations */
@keyframes floatParticles {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-100vh); }
}

@keyframes rotateRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Floating Geometric Shapes */
.geometric-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.geo-shape {
  position: absolute;
  opacity: 0.1;
}

.geo-circle {
  width: 100px;
  height: 100px;
  border: 2px solid #6366f1;
  border-radius: 50%;
  top: 20%;
  left: 10%;
  animation: floatShape 8s ease-in-out infinite;
}

.geo-triangle {
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 50px solid #8b5cf6;
  top: 60%;
  right: 15%;
  animation: floatShape 10s ease-in-out infinite reverse;
}

.geo-square {
  width: 80px;
  height: 80px;
  border: 2px solid #3b82f6;
  top: 40%;
  right: 10%;
  animation: rotateShape 12s linear infinite;
}

/* Scan Indicator */
.scan-indicator {
  position: absolute;
  top: 15px;
  right: 20px;
  background: rgba(16, 185, 129, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 20px;
  padding: 8px 12px;
  font-size: 11px;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.scan-line {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: scanPulse 2s ease-in-out infinite;
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes rotateShape {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes scanPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.5);
  }
}

/* Responsive Design */
@media (max-width: 480px) {
  .profile-body-nxt {
    padding: 10px;
  }

  .nxt-profile-card {
    padding: 30px 20px 20px;
  }

  .nxt-cover-container {
    height: 150px;
    margin: -30px -20px 30px -20px;
  }

  .nxt-name {
    font-size: 24px;
  }

  .nxt-avatar {
    width: 100px;
    height: 100px;
  }

  .nxt-action-btn {
    padding: 14px 16px;
  }

  .nxt-btn-icon {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    font-size: 14px;
  }
}

/* Original styles preserved below */
:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --secondary: #64748b;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --light: #f8fafc;
  --dark: #0f172a;
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  --gradient-success: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
  --gradient-purple: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  --glass: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}

/* Landing Page Styles */
.landing-body {
  background: #0f172a;
  color: white;
  overflow-x: hidden;
}

.profile-body {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Animated Background */
.animated-bg, .profile-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="white" opacity="0.1"/><circle cx="80" cy="40" r="0.5" fill="white" opacity="0.15"/><circle cx="40" cy="80" r="1.5" fill="white" opacity="0.08"/><circle cx="70" cy="10" r="0.8" fill="white" opacity="0.12"/></svg>');
  animation: particleFloat 20s linear infinite;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.7;
  animation: orbFloat 15s ease-in-out infinite;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: var(--gradient-primary);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 200px;
  height: 200px;
  background: var(--gradient-success);
  bottom: 20%;
  right: 10%;
  animation-delay: 5s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: var(--gradient-purple);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 10s;
}

/* Navigation */
#mainNav {
  background: transparent;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

#mainNav.scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
}

.futuristic-brand {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
}

/* Buttons */
.glow-btn {
  position: relative;
  transition: all 0.3s ease;
  border-radius: 25px;
  overflow: hidden;
}

.glow-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
}

.pulse-btn {
  animation: pulse 2s infinite;
  background: var(--gradient-primary);
  border: none;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}

.glass-btn {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 25px;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-badge {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.9rem;
  animation: float 3s ease-in-out infinite;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.typing-text {
  color: #94a3b8;
  border-right: 2px solid #6366f1;
  animation: blink 1s infinite;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #94a3b8;
  max-width: 600px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-card {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.nfc-card {
  width: 200px;
  height: 120px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
  animation: rotate 10s linear infinite;
}

.nfc-waves {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wave {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: wave 2s ease-out infinite;
}

.wave:nth-child(2) { animation-delay: 0.5s; }
.wave:nth-child(3) { animation-delay: 1s; }

.nfc-card i {
  font-size: 2rem;
  color: white;
  z-index: 10;
}

.floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
}

.icon-float {
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  animation: iconFloat 4s ease-in-out infinite;
}

.icon-float:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.icon-float:nth-child(2) { top: 10%; right: 10%; animation-delay: 1s; }
.icon-float:nth-child(3) { bottom: 20%; left: 10%; animation-delay: 2s; }
.icon-float:nth-child(4) { bottom: 10%; right: 20%; animation-delay: 3s; }

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
}

/* Sections */
.features-section, .demo-section, .cta-section {
  position: relative;
  z-index: 10;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #94a3b8;
  margin-bottom: 3rem;
}

/* Feature Cards */
.feature-card {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: white;
}

/* Demo Section */
.demo-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: #94a3b8;
  font-size: 0.9rem;
}

.phone-mockup {
  width: 250px;
  height: 500px;
  background: linear-gradient(145deg, #1e293b, #334155);
  border-radius: 30px;
  padding: 20px;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.screen {
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-preview {
  text-align: center;
  color: white;
}

.avatar-demo {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin: 0 auto 10px;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.contact-btn-demo {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* CTA Section */
.cta-section {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--glass-border);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: #94a3b8;
}

/* Footer */
.landing-footer {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--glass-border);
}

/* Profile Styles */
.profile-wrapper {
  position: relative;
  z-index: 10;
}

.modern-profile {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.cover-container {
  position: relative;
  overflow: hidden;
}

.cover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
}

.cover-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.futuristic-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  margin: -50px 20px 0;
  color: white;
}

.avatar-container {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.avatar-wrapper {
  position: relative;
  display: inline-block;
}

.futuristic-avatar {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 2;
}

.avatar-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: pulse 3s ease-in-out infinite;
}

.avatar-ring {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: rotate 10s linear infinite;
}

.profile-name {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.company-name {
  font-size: 1.25rem;
  opacity: 0.8;
  font-weight: 500;
}

.bio-text {
  opacity: 0.9;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-btn-modern {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-btn-modern:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  color: white;
}

.btn-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.btn-label {
  font-weight: 500;
  flex: 1;
}

.btn-glow {
  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;
}

.contact-btn-modern:hover .btn-glow {
  left: 100%;
}

.save-contact {
  background: rgba(16, 185, 129, 0.2) !important;
  border-color: rgba(16, 185, 129, 0.4) !important;
}

/* Lead Form */
.lead-form-container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  margin: 2rem 0;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.visible-form {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 2px solid rgba(99, 102, 241, 0.3) !important;
}

/* Ensure AOS doesn't hide form */
[data-aos="fade-up"] {
  opacity: 1;
  transform: translateY(0);
}

.lead-form-container[data-aos] {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Override Bootstrap form control styles */
.futuristic-form .form-control-modern {
  background: rgba(255, 255, 255, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: white !important;
}

.futuristic-form .form-control-modern:focus {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(99, 102, 241, 0.8) !important;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3) !important;
  color: white !important;
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: white !important;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: rgba(255, 255, 255, 0.8) !important;
  margin: 0;
  margin-bottom: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.input-group-modern {
  position: relative;
  width: 100%;
  display: block !important;
}

.input-group-modern input,
.input-group-modern textarea {
  width: 100% !important;
  min-height: 50px;
}

.form-control-modern {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 12px;
  color: white !important;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: block !important;
  visibility: visible !important;
}

.form-control-modern::placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
}

.form-control-modern:focus {
  outline: none;
  border-color: rgba(99, 102, 241, 0.8) !important;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3) !important;
  background: rgba(255, 255, 255, 0.2) !important;
}

.input-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  background: linear-gradient(45deg, transparent, rgba(99, 102, 241, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.input-group-modern.focused .input-glow {
  opacity: 1;
}

.full-width {
  grid-column: 1 / -1;
}

.submit-container {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.btn-submit-modern {
  background: var(--gradient-primary) !important;
  border: none;
  border-radius: 25px;
  padding: 1rem 3rem;
  color: white !important;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: block !important;
  min-height: 60px;
}

.btn-submit-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
}

.btn-text {
  position: relative;
  z-index: 2;
}

.btn-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="white" opacity="0.3"/><circle cx="80" cy="40" r="0.5" fill="white" opacity="0.5"/><circle cx="40" cy="80" r="1.5" fill="white" opacity="0.2"/></svg>');
  animation: particleFloat 3s linear infinite;
}

.btn-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.btn-submit-modern:hover .btn-shimmer {
  left: 100%;
}

/* Profile Footer */
.profile-footer {
  text-align: center;
  padding: 2rem;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-glow {
  position: absolute;
  top: -50%;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(ellipse at center top, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
}

.footer-text {
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 2;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(180deg); }
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  33% { transform: translateY(-30px) scale(1.1); }
  66% { transform: translateY(20px) scale(0.9); }
}

@keyframes particleFloat {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-20px); }
}

@keyframes wave {
  0% { transform: scale(0); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

@keyframes blink {
  0%, 50% { border-color: transparent; }
  51%, 100% { border-color: #6366f1; }
}

/* Enhanced Theme Variations with Modern Gradients */
.theme-modern .futuristic-card {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
  border: 1px solid rgba(102, 126, 234, 0.3);
}

.theme-modern .nxt-action-btn {
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.3);
}

.theme-modern .nxt-btn-icon {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.theme-corporate .futuristic-card {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.2) 0%, rgba(55, 48, 163, 0.2) 100%);
  border: 1px solid rgba(30, 58, 138, 0.3);
}

.theme-corporate .nxt-action-btn {
  background: rgba(30, 58, 138, 0.1);
  border: 1px solid rgba(30, 58, 138, 0.3);
}

.theme-corporate .nxt-btn-icon {
  background: linear-gradient(135deg, #1e3a8a, #3730a3);
}

.theme-nature .futuristic-card {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.2) 0%, rgba(4, 120, 87, 0.2) 100%);
  border: 1px solid rgba(5, 150, 105, 0.3);
}

.theme-nature .nxt-action-btn {
  background: rgba(5, 150, 105, 0.1);
  border: 1px solid rgba(5, 150, 105, 0.3);
}

.theme-nature .nxt-btn-icon {
  background: linear-gradient(135deg, #059669, #047857);
}

.theme-sunset .futuristic-card {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(217, 119, 6, 0.2) 100%);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.theme-sunset .nxt-action-btn {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.theme-sunset .nxt-btn-icon {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Enhanced Service-Specific Icons and Colors */
.service-phone {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}
.service-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
}
.service-email {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
}
.service-website {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: white;
}
.service-linkedin {
  background: linear-gradient(135deg, #0077b5, #005582);
  color: white;
}
.service-instagram {
  background: linear-gradient(135deg, #e4405f, #833ab4);
  color: white;
}
.service-twitter {
  background: linear-gradient(135deg, #1da1f2, #0d8bd9);
  color: white;
}
.service-facebook {
  background: linear-gradient(135deg, #1877f2, #166fe5);
  color: white;
}
.service-youtube {
  background: linear-gradient(135deg, #ff0000, #cc0000);
  color: white;
}
.service-tiktok {
  background: linear-gradient(135deg, #000000, #333333);
  color: white;
}
.service-github {
  background: linear-gradient(135deg, #333333, #24292e);
  color: white;
}
.service-custom {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
}

/* Admin Panel Enhancements */
.admin-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.admin-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.stats-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tier-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tier-basic {
  background: linear-gradient(45deg, #6b7280, #4b5563);
  color: white;
}

.tier-premium {
  background: linear-gradient(45deg, #8b5cf6, #7c3aed);
  color: white;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.tier-enterprise {
  background: linear-gradient(45deg, #f59e0b, #d97706);
  color: white;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

/* Enhanced Button Styles */
.btn-gradient-primary {
  background: linear-gradient(45deg, #667eea, #764ba2);
  border: none;
  color: white;
  transition: all 0.3s ease;
}

.btn-gradient-primary:hover {
  background: linear-gradient(45deg, #5a67d8, #6b46c1);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  color: white;
}

.btn-gradient-success {
  background: linear-gradient(45deg, #10b981, #059669);
  border: none;
  color: white;
  transition: all 0.3s ease;
}

.btn-gradient-success:hover {
  background: linear-gradient(45deg, #0d9488, #047857);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
  color: white;
}

/* Enhanced Form Controls */
.form-control-modern {
  border-radius: 12px;
  border: 1px solid rgba(102, 126, 234, 0.2);
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  padding: 12px 16px;
}

.form-control-modern:focus {
  border-color: rgba(102, 126, 234, 0.5);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
  background: rgba(255, 255, 255, 1);
}

.form-select-modern {
  border-radius: 12px;
  border: 1px solid rgba(102, 126, 234, 0.2);
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  padding: 12px 16px;
}

.form-select-modern:focus {
  border-color: rgba(102, 126, 234, 0.5);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
  background: rgba(255, 255, 255, 1);
}

/* Upload Area Enhancements */
.upload-area-modern {
  border: 2px dashed rgba(102, 126, 234, 0.3);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.upload-area-modern:hover {
  border-color: rgba(102, 126, 234, 0.5);
  background: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.upload-area-modern.dragover {
  border-color: rgba(102, 126, 234, 0.8);
  background: rgba(102, 126, 234, 0.1);
  transform: scale(1.02);
}

/* Loading States */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(102, 126, 234, 0.3);
  border-radius: 50%;
  border-top-color: #667eea;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Toast Notifications */
.toast-modern {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  animation: slideInRight 0.3s ease;
}

.toast-success {
  border-left: 4px solid #10b981;
}

.toast-error {
  border-left: 4px solid #ef4444;
}

.toast-warning {
  border-left: 4px solid #f59e0b;
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(100%); opacity: 0; }
}

/* Mobile Responsiveness Enhancements */
@media (max-width: 768px) {
  .glass-card {
    border-radius: 15px;
    margin: 0 10px;
  }

  .stats-card {
    padding: 1rem;
  }

  .contact-field-row {
    padding: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .tier-badge {
    font-size: 0.75rem;
    padding: 4px 8px;
  }
}

/* Enhanced Admin Approval System Styles */
.approval-workflow {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.approval-item {
  border-bottom: 1px solid rgba(226, 232, 240, 0.3);
  transition: all 0.3s ease;
  padding: 1.5rem;
}

.approval-item:hover {
  background: rgba(102, 126, 234, 0.05);
  transform: translateX(5px);
}

.approval-item:last-child {
  border-bottom: none;
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  margin-right: 1rem;
}

.approval-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-pending {
  background: linear-gradient(45deg, #f59e0b, #d97706);
  color: white;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
  animation: pulse 2s infinite;
}

.status-approved {
  background: linear-gradient(45deg, #10b981, #059669);
  color: white;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.status-rejected {
  background: linear-gradient(45deg, #ef4444, #dc2626);
  color: white;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.changes-preview {
  background: rgba(248, 250, 252, 0.8);
  border: 1px solid rgba(226, 232, 240, 0.5);
  border-radius: 12px;
  padding: 1rem;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.875rem;
  line-height: 1.5;
  max-height: 300px;
  overflow-y: auto;
  transition: all 0.3s ease;
}

.changes-preview:hover {
  background: rgba(248, 250, 252, 1);
  border-color: rgba(102, 126, 234, 0.3);
}

/* Enhanced Button Styles for Approvals */
.approval-actions {
  display: flex;
  gap: 0.5rem;
}

.btn-approve {
  background: linear-gradient(45deg, #10b981, #059669);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
}

.btn-approve:hover {
  background: linear-gradient(45deg, #0d9488, #047857);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
  color: white;
}

.btn-reject {
  background: linear-gradient(45deg, #ef4444, #dc2626);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
}

.btn-reject:hover {
  background: linear-gradient(45deg, #dc2626, #b91c1c);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
  color: white;
}

.btn-view-changes {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 25px;
  padding: 0.4rem 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.btn-view-changes:hover {
  background: rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.5);
  color: #5a67d8;
  transform: translateY(-1px);
}

/* Bulk Actions Enhancement */
.bulk-actions-bar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  padding: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 90px;
  z-index: 100;
  margin-bottom: 1rem;
  transform: translateY(-100px);
  opacity: 0;
  transition: all 0.3s ease;
}

.bulk-actions-bar.show {
  transform: translateY(0);
  opacity: 1;
}

.bulk-select-checkbox {
  transform: scale(1.2);
  accent-color: #667eea;
}

/* Enhanced Analytics Cards */
.analytics-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.analytics-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, #667eea, #764ba2);
}

.analytics-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.metric-label {
  color: #6b7280;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.metric-trend {
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.trend-up {
  color: #10b981;
}

.trend-down {
  color: #ef4444;
}

.trend-neutral {
  color: #6b7280;
}

/* Advanced Field Type Indicators */
.field-type-icon {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  margin-right: 1rem;
  transition: all 0.3s ease;
}

.field-type-icon:hover {
  transform: scale(1.1) rotate(5deg);
}

/* Theme Selection Enhancement */
.theme-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.theme-option {
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 1rem;
  border-radius: 15px;
  border: 2px solid transparent;
}

.theme-option:hover {
  background: rgba(102, 126, 234, 0.05);
  border-color: rgba(102, 126, 234, 0.2);
}

.theme-option.selected {
  background: rgba(102, 126, 234, 0.1);
  border-color: rgba(102, 126, 234, 0.5);
}

.theme-preview {
  width: 100%;
  height: 80px;
  border-radius: 12px;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.theme-preview:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Enhanced Notification Styles */
.notification-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  padding: 1rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  animation: slideInRight 0.3s ease;
  max-width: 400px;
  min-width: 300px;
}

.notification-success {
  border-left: 4px solid #10b981;
}

.notification-error {
  border-left: 4px solid #ef4444;
}

.notification-warning {
  border-left: 4px solid #f59e0b;
}

.notification-info {
  border-left: 4px solid #3b82f6;
}

/* Pulse animation for pending items */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.02);
  }
}

/* Loading states */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(102, 126, 234, 0.2);
  border-top: 4px solid #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .demo-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .futuristic-card {
    margin: -30px 10px 0;
    padding: 2rem 1rem;
  }

  .futuristic-avatar {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .futuristic-card {
    margin: -30px 10px 0;
    padding: 2rem 1rem;
  }

  .futuristic-avatar {
    width: 100px;
    height: 100px;
  }

  .form-control-modern {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}