/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

/* Global Styles */
:root {
  --primary-color: #333366;
  --secondary-color: #212529;
  --accent-color: #6c757d;
  --light-bg: #f8f9fa;
  --dark-bg: #212529;
  --transition: all 0.3s ease;
  --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  --gradient-5: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  --neon-blue: #333366;
  --neon-pink: #ff006e;
  --neon-green: #00ff88;
  --neon-purple: #b84fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #f0f0f0;
  padding-top: 0;
  background: #0a0a0a;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(51, 51, 102, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 0, 110, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: backgroundPulse 15s ease-in-out infinite;
}

@keyframes backgroundPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(51, 51, 102, 0.03) 2px, rgba(51, 51, 102, 0.03) 4px);
  pointer-events: none;
  z-index: 1;
  animation: scanlines 8s linear infinite;
}

@keyframes scanlines {
  0% { transform: translateY(0); }
  100% { transform: translateY(20px); }
}

/* Custom Button Styles */
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--primary-color), 0 0 20px rgba(51, 51, 102, 0.5);
}

.btn-warning {
  background: linear-gradient(135deg, var(--primary-color), #4d4d99);
  border: none;
  color: #ffffff;
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(51, 51, 102, 0.4);
}

.btn-warning::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-warning:hover::before {
  width: 300px;
  height: 300px;
}

.btn-warning:hover {
  background: linear-gradient(135deg, #4d4d99, var(--primary-color));
  transform: translateY(-5px) scale(1.05);
  box-shadow: 
    0 15px 40px rgba(51, 51, 102, 0.6),
    0 0 30px rgba(51, 51, 102, 0.4),
    inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-warning:active {
  transform: translateY(-2px) scale(1.02);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  font-weight: 600;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
}

.btn-outline-light::before {
  content: '';
  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.7s ease;
}

.btn-outline-light:hover::before {
  left: 100%;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--primary-color);
  color: #ffffff;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 
    0 15px 40px rgba(51, 51, 102, 0.3),
    0 0 30px rgba(51, 51, 102, 0.2);
}

/* Navigation Styles */
.navbar {
  background: linear-gradient(135deg, rgba(51, 51, 102, 0.95) 0%, rgba(33, 37, 41, 0.95) 100%) !important;
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 8px 32px rgba(51, 51, 102, 0.2), 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--neon-blue), var(--neon-pink), var(--neon-green)) 1;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  margin: 0;
}

.navbar::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink), var(--neon-green), var(--neon-blue));
  background-size: 200% 100%;
  animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* Logo Styles */
.navbar-logo {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
}

.navbar-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.5));
}

.footer-logo {
  height: 60px;
  width: auto;
  filter: brightness(1.2) drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
}

.hero-logo-container {
  display: inline-block;
}

.hero-logo {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
  animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
  .navbar-logo {
    height: 40px;
  }
  
  .footer-logo {
    height: 50px;
  }
  
  .hero-logo {
    height: 80px;
  }
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(45deg, var(--primary-color), var(--neon-blue), var(--neon-pink));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
  text-shadow: 0 0 30px rgba(51, 51, 102, 0.5);
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #ffffff !important;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 1rem !important;
  overflow: hidden;
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, var(--neon-blue), transparent);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.navbar-nav .nav-link:hover::before {
  width: 300px;
  height: 300px;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
  text-shadow: 0 0 10px var(--primary-color);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-pink), var(--primary-color), var(--neon-blue));
  transition: var(--transition);
  transform: translateX(-50%);
  box-shadow: 0 0 10px currentColor;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Dropdown Menu Styling */
.navbar .dropdown-menu {
  background: linear-gradient(135deg, rgba(51, 51, 102, 0.95) 0%, rgba(33, 37, 41, 0.95) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(51, 51, 102, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.navbar .dropdown-item {
  color: #ffffff;
  transition: all 0.3s ease;
}

.navbar .dropdown-item:hover {
  background: rgba(51, 51, 102, 0.2);
  color: #ffffff;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, rgba(10, 10, 10, 1) 70%);
  padding-top: 80px;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.2) saturate(1.3);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(51, 51, 102, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0, 212, 255, 0.2) 0%, transparent 50%),
    linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(33, 37, 41, 0.8) 100%);
  z-index: -1;
  animation: overlayPulse 8s ease-in-out infinite;
}

@keyframes overlayPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: heroFadeIn 1.5s ease-out;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-section h1 {
  text-shadow: 
    0 0 10px rgba(51, 51, 102, 0.8),
    0 0 20px rgba(51, 51, 102, 0.6),
    0 0 30px rgba(51, 51, 102, 0.4),
    2px 2px 4px rgba(0, 0, 0, 0.8);
  animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
  0%, 100% { 
    text-shadow: 
      0 0 10px rgba(51, 51, 102, 0.8),
      0 0 20px rgba(51, 51, 102, 0.6),
      0 0 30px rgba(51, 51, 102, 0.4),
      2px 2px 4px rgba(0, 0, 0, 0.8);
  }
  50% { 
    text-shadow: 
      0 0 20px rgba(51, 51, 102, 1),
      0 0 30px rgba(51, 51, 102, 0.8),
      0 0 40px rgba(51, 51, 102, 0.6),
      2px 2px 4px rgba(0, 0, 0, 0.8);
  }
}

.hero-section .lead {
  text-shadow: 
    0 0 10px rgba(255, 255, 255, 0.5),
    1px 1px 2px rgba(0, 0, 0, 0.8);
  animation: textFloat 3s ease-in-out infinite;
}

@keyframes textFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Feature Cards - Old styles kept for compatibility */
.feature-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 2px solid rgba(51, 51, 102, 0.2);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  min-height: 420px;
}

/* Full-Width Feature Sections */
.feature-full-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 !important;
}

.feature-full-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
  filter: brightness(0.4) contrast(1.1);
}

.feature-full-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(33, 37, 41, 0.90) 100%);
  z-index: 1;
}

.feature-full-section-alt .feature-full-overlay {
  background: linear-gradient(135deg, rgba(33, 37, 41, 0.90) 0%, rgba(10, 10, 10, 0.85) 100%);
}

.min-vh-50 {
  min-height: 50vh;
}

/* Feature Icon Large */
.feature-icon-large i {
  font-size: 5rem;
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8));
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Feature Detail Boxes */
.feature-detail-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(51, 51, 102, 0.2);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-detail-box:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(51, 51, 102, 0.3);
}

/* Stats Grid */
.feature-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stat-card {
  background: linear-gradient(135deg, rgba(51, 51, 102, 0.15) 0%, rgba(51, 51, 102, 0.05) 100%);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  border: 2px solid rgba(51, 51, 102, 0.3);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(51, 51, 102, 0.4);
  border-color: var(--primary-color);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: 'Orbitron', sans-serif;
  color: var(--primary-color);
  line-height: 1;
  text-shadow: 0 0 20px rgba(51, 51, 102, 0.5);
}

.stat-label {
  color: #ffffff;
  font-size: 0.95rem;
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Quality Checklist */
.quality-checklist {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.checklist-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.checklist-item:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(51, 51, 102, 0.2);
}

.checklist-icon {
  flex-shrink: 0;
  font-size: 2rem;
  color: #ffffff;
}

.checklist-content h5 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

/* Quality Badges */
.quality-badges {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.quality-badge {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(51, 51, 102, 0.15) 0%, rgba(51, 51, 102, 0.05) 100%);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 2px solid rgba(51, 51, 102, 0.3);
  transition: all 0.3s ease;
}

.quality-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(51, 51, 102, 0.4);
  border-color: var(--primary-color);
}

.quality-badge i {
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
}

/* Support Cards */
.support-card {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(51, 51, 102, 0.2);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.support-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-color: var(--primary-color);
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(51, 51, 102, 0.3);
}

.support-card-icon {
  font-size: 3rem;
  color: #ffffff;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}

/* Support Channels */
.support-channels {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 3rem;
  border: 2px solid rgba(51, 51, 102, 0.2);
}

.channel-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(51, 51, 102, 0.1) 0%, rgba(51, 51, 102, 0.05) 100%);
  border-radius: 15px;
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.channel-item:hover {
  background: linear-gradient(135deg, rgba(51, 51, 102, 0.15) 0%, rgba(51, 51, 102, 0.08) 100%);
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(51, 51, 102, 0.3);
}

.channel-info h5 {
  margin-bottom: 0.25rem;
}

.channel-info p {
  margin-bottom: 0;
}

/* Pricing Benefits */
.pricing-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pricing-benefit {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.pricing-benefit:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(51, 51, 102, 0.2);
}

.pricing-icon {
  flex-shrink: 0;
  font-size: 2.5rem;
}

/* Price Promise Box */
.price-promise-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 3rem;
  border: 2px solid rgba(51, 51, 102, 0.3);
}

.promise-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.promise-list li {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(51, 51, 102, 0.1);
  font-size: 1.05rem;
}

.promise-list li:last-child {
  border-bottom: none;
}

.promise-list li i {
  font-size: 1.3rem;
}

/* Discount Badge */
.discount-badge {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--primary-color), #4d4d99);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(51, 51, 102, 0.4);
  animation: badgePulse 2s infinite;
}

.discount-value {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.discount-value .display-3 {
  font-size: 4rem;
}

.discount-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-top: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .feature-full-section {
    min-height: auto;
    padding: 60px 0 !important;
  }
  
  .feature-stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .feature-icon-large i {
    font-size: 3.5rem;
  }
  
  .quality-badges {
    flex-direction: row;
  }
  
  .support-channels,
  .price-promise-box {
    margin-top: 3rem;
  }
}

/* Feature Sections - Full Width */
.feature-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem 3rem;
  transition: all 0.4s ease;
  border: 2px solid rgba(51, 51, 102, 0.2);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.feature-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(51, 51, 102, 0.15), transparent);
  transition: left 0.6s ease;
}

.feature-section:hover::before {
  left: 100%;
}

.feature-section:hover {
  border-color: rgba(51, 51, 102, 0.5);
  box-shadow: 
    0 12px 48px rgba(51, 51, 102, 0.3),
    0 0 0 1px rgba(51, 51, 102, 0.3),
    inset 0 0 20px rgba(51, 51, 102, 0.05);
  transform: translateX(10px);
}

.feature-section h3 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.feature-section p {
  font-size: 1.1rem;
  color: #c0c0c0;
  margin: 0;
}

.feature-icon-large {
  position: relative;
  display: inline-block;
}

.feature-icon-large i {
  font-size: 4rem;
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 10px rgba(51, 51, 102, 0.5));
}

.feature-section:hover .feature-icon-large i {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 20px rgba(51, 51, 102, 0.8));
}

/* Responsive adjustments for feature sections */
@media (max-width: 768px) {
  .feature-section {
    padding: 1.5rem;
    margin-bottom: 1.5rem !important;
  }
  
  .feature-section h3 {
    font-size: 1.5rem;
  }
  
  .feature-icon-large i {
    font-size: 3rem;
  }
  
  .feature-section:hover {
    transform: translateX(5px);
  }
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(51, 51, 102, 0.2) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease;
  z-index: 0;
}

.feature-card:hover::before {
  transform: scale(1);
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(51, 51, 102, 0.3), transparent);
  transition: left 0.7s ease;
}

.feature-card:hover::after {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-20px) scale(1.05);
  box-shadow: 
    0 20px 60px rgba(51, 51, 102, 0.4),
    0 0 0 2px rgba(51, 51, 102, 0.5),
    inset 0 0 20px rgba(51, 51, 102, 0.1);
  border-color: var(--primary-color);
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-icon {
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.feature-card:hover .feature-icon i {
  transform: scale(1.3) rotateY(360deg);
  filter: drop-shadow(0 0 20px var(--primary-color));
}

/* Category Cards */
.category-card {
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.category-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink), var(--neon-green), var(--neon-purple));
  background-size: 400% 400%;
  border-radius: 25px;
  z-index: -1;
  animation: borderRotate 4s linear infinite;
  opacity: 0;
  transition: opacity 0.5s;
}

@keyframes borderRotate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.category-card:hover::before {
  opacity: 1;
}

.category-card:hover {
  transform: translateY(-20px) scale(1.05) rotateX(2deg);
  box-shadow: 
    0 30px 60px rgba(51, 51, 102, 0.3),
    0 0 0 3px rgba(51, 51, 102, 0.5),
    inset 0 0 30px rgba(51, 51, 102, 0.1);
}

.category-image {
  position: relative;
  height: 400px;
  overflow: hidden;
  cursor: pointer;
}

.category-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  z-index: 2;
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -75%; }
  20%, 100% { left: 125%; }
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  filter: brightness(0.8) contrast(1.1);
}

.category-card:hover .category-image img {
  transform: scale(1.2) rotate(2deg);
  filter: brightness(1.1) contrast(1.2) saturate(1.3);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 30%, rgba(51, 51, 102, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(0, 212, 255, 0.4) 0%, transparent 50%),
    linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(33, 37, 41, 0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s ease;
  backdrop-filter: blur(5px);
  transform: scale(0.8);
}

.category-card:hover .category-overlay {
  opacity: 1;
  transform: scale(1);
}

.category-content {
  text-align: center;
  padding: 2rem;
  animation: contentSlideUp 0.6s ease 0.2s both;
}

@keyframes contentSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.category-content h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 20px rgba(51, 51, 102, 0.8);
  animation: titleGlow 2s ease-in-out infinite;
}

@keyframes titleGlow {
  0%, 100% { text-shadow: 0 0 20px rgba(51, 51, 102, 0.8); }
  50% { text-shadow: 0 0 30px rgba(51, 51, 102, 1), 0 0 40px rgba(51, 51, 102, 0.6); }
}

.category-content ul li {
  margin-bottom: 0.5rem;
  animation: listItemFade 0.4s ease both;
}

.category-content ul li:nth-child(1) { animation-delay: 0.3s; }
.category-content ul li:nth-child(2) { animation-delay: 0.4s; }
.category-content ul li:nth-child(3) { animation-delay: 0.5s; }

@keyframes listItemFade {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Brand Logo in Category Overlay */
.brand-logo-overlay {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 1.5rem;
  border: 2px solid rgba(51, 51, 102, 0.3);
  display: inline-block;
  transition: all 0.3s ease;
}

.category-card:hover .brand-logo-overlay {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.12) 100%);
  border-color: var(--primary-color);
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(51, 51, 102, 0.4);
}

.brand-logo-overlay img {
  filter: brightness(1.2) drop-shadow(0 0 10px rgba(51, 51, 102, 0.5));
  transition: all 0.3s ease;
}

.category-card:hover .brand-logo-overlay img {
  filter: brightness(1.5) drop-shadow(0 0 20px rgba(51, 51, 102, 0.8));
}

/* Brand Features List in Overlay */
.brand-features-list {
  margin: 1.5rem 0;
}

.brand-features-list ul li {
  font-size: 0.95rem;
  padding: 0.4rem 0;
  transition: all 0.3s ease;
}

.brand-features-list ul li:hover {
  transform: translateX(5px);
  color: #ffffff !important;
}

/* Brand Cards */
.brand-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 2px solid transparent;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.brand-card h4 {
  color: #ffffff;
}

.brand-card .text-muted {
  color: #c0c0c0 !important;
}

.brand-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: conic-gradient(from 0deg, var(--neon-blue), var(--neon-pink), var(--neon-green), var(--neon-purple), var(--neon-blue));
  opacity: 0;
  transition: opacity 0.5s;
  animation: rotate 4s linear infinite;
  z-index: -1;
}

@keyframes rotate {
  100% { transform: rotate(360deg); }
}

.brand-card::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(33, 37, 41, 0.95) 100%);
  border-radius: 23px;
  z-index: -1;
}

.brand-card:hover::before {
  opacity: 1;
}

.brand-card:hover {
  transform: translateY(-20px) scale(1.08);
  box-shadow: 
    0 25px 50px rgba(51, 51, 102, 0.4),
    0 0 0 3px rgba(51, 51, 102, 0.5),
    inset 0 0 30px rgba(51, 51, 102, 0.1);
  border-color: var(--primary-color);
}

.brand-logo {
  transition: all 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  filter: drop-shadow(0 0 5px rgba(51, 51, 102, 0));
}

.brand-card:hover .brand-logo {
  transform: scale(1.2) rotateY(360deg);
  filter: drop-shadow(0 0 25px rgba(51, 51, 102, 0.8));
}

.brand-card:hover .brand-logo img {
  filter: brightness(1.3) contrast(1.2);
}

.brand-features .badge {
  font-size: 0.8rem;
  padding: 0.5rem 0.8rem;
  background: linear-gradient(135deg, var(--primary-color), #4d4d99);
  border: none;
  box-shadow: 0 4px 15px rgba(51, 51, 102, 0.3);
  transition: all 0.3s ease;
  animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(51, 51, 102, 0.5); }
}

.brand-features .badge:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 8px 25px rgba(51, 51, 102, 0.6) !important;
}

/* Contact Items */
.contact-item {
  transition: var(--transition);
}

.contact-item h5 {
  color: #ffffff;
}

.contact-item p {
  color: #c0c0c0 !important;
}

.contact-item:hover {
  transform: translateY(-5px);
}

.contact-item i {
  transition: var(--transition);
}

.contact-item:hover i {
  transform: scale(1.1);
}

/* Footer Styles */
footer {
  background: 
    linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 29, 32, 0.95) 100%),
    radial-gradient(circle at 30% 50%, rgba(51, 51, 102, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--neon-blue), var(--neon-pink), var(--neon-green)) 1;
  position: relative;
  z-index: 2;
}

footer::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink), var(--neon-green), var(--neon-blue));
  background-size: 200% 100%;
  animation: borderGlow 3s linear infinite;
}

footer .text-light-50 {
  color: rgba(255, 255, 255, 0.8) !important;
}

footer .text-light-50:hover {
  color: var(--primary-color) !important;
  transition: var(--transition);
}

footer h5, footer h6 {
  color: #ffffff;
}

footer p {
  color: rgba(255, 255, 255, 0.8);
}

footer a.text-warning {
  transition: var(--transition);
}

footer a.text-warning:hover {
  color: #e0a800 !important;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    min-height: 90vh;
    padding-top: 80px;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section .lead {
    font-size: 1.2rem;
  }
  
  .category-image {
    height: 300px;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .brand-card {
    margin-bottom: 2rem;
  }
  
  section:not(.hero-section) {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section .lead {
    font-size: 1.1rem;
  }
  
  .feature-card, .brand-card {
    margin-bottom: 1.5rem;
  }
  
  .category-image {
    height: 250px;
  }
}

/* Animation Enhancements */
.category-card, .feature-card, .brand-card,
.feature-detail-box, .stat-card, .checklist-item,
.quality-badge, .support-card, .channel-item,
.pricing-benefit, .support-channels, .price-promise-box {
  will-change: transform;
  transform-style: preserve-3d;
  cursor: pointer;
}

/* Smooth Scrolling for Anchor Links */
html {
  scroll-behavior: smooth;
}

/* Loading Animation for Images */
img {
  transition: opacity 0.3s ease;
}

img:not([src]) {
  opacity: 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #4d4d99;
}

/* Utility Classes */
.text-warning {
  color: var(--primary-color) !important;
}

/* Override text-warning to white when on primary background */
.bg-warning .text-warning,
.navbar .text-warning,
.footer .text-warning,
[style*="background: #333366"] .text-warning,
[style*="background-color: #333366"] .text-warning {
  color: #ffffff !important;
}

.bg-warning {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
}

.border-warning {
  border-color: var(--primary-color) !important;
}

/* Form Styles */
.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--accent-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Additional Interactive Elements */
.interactive-element {
  cursor: pointer;
  transition: var(--transition);
}

.interactive-element:hover {
  transform: scale(1.02);
}

/* Floating Particles Background */
.floating-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: float 15s infinite;
  box-shadow: 0 0 10px var(--primary-color);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(100px);
    opacity: 0;
  }
}

/* Glowing Orbs */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 20s infinite;
}

.glow-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(51, 51, 102, 0.3), transparent);
  top: 20%;
  left: 10%;
}

.glow-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.3), transparent);
  top: 60%;
  right: 10%;
  animation-delay: -10s;
}

.glow-orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 0, 110, 0.3), transparent);
  bottom: 20%;
  left: 50%;
  animation-delay: -5s;
}

@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-50px, 50px) scale(0.9);
  }
}

/* Brush Trail Effect */
.brush-trail {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(51, 51, 102, 0.8), rgba(51, 51, 102, 0.4), transparent);
  box-shadow: 
    0 0 20px rgba(51, 51, 102, 0.6),
    0 0 40px rgba(51, 51, 102, 0.4),
    0 0 60px rgba(51, 51, 102, 0.2);
  animation: brushFade 1.5s ease-out forwards;
  mix-blend-mode: screen;
}

@keyframes brushFade {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}

/* Additional Moving Colored Circles */
.ambient-circle {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  filter: blur(80px);
}

.ambient-circle-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(103, 126, 234, 0.4), transparent);
  top: 10%;
  right: 20%;
  animation: ambientMove1 25s ease-in-out infinite;
}

.ambient-circle-2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(240, 147, 251, 0.35), transparent);
  bottom: 15%;
  left: 15%;
  animation: ambientMove2 30s ease-in-out infinite;
}

.ambient-circle-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(67, 233, 123, 0.3), transparent);
  top: 50%;
  left: 30%;
  animation: ambientMove3 35s ease-in-out infinite;
}

.ambient-circle-4 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(250, 112, 154, 0.35), transparent);
  top: 40%;
  right: 15%;
  animation: ambientMove4 28s ease-in-out infinite;
}

.ambient-circle-5 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(79, 172, 254, 0.35), transparent);
  bottom: 30%;
  right: 30%;
  animation: ambientMove5 32s ease-in-out infinite;
}

@keyframes ambientMove1 {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(30px, 40px);
  }
  50% {
    transform: translate(-20px, 60px);
  }
  75% {
    transform: translate(40px, -30px);
  }
}

@keyframes ambientMove2 {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-40px, -30px);
  }
  50% {
    transform: translate(50px, 20px);
  }
  75% {
    transform: translate(-30px, 40px);
  }
}

@keyframes ambientMove3 {
  0%, 100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(35px, -45px);
  }
  66% {
    transform: translate(-45px, 35px);
  }
}

@keyframes ambientMove4 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(25px, 35px) scale(1.05);
  }
  50% {
    transform: translate(-35px, -25px) scale(0.95);
  }
  75% {
    transform: translate(45px, 30px) scale(1.02);
  }
}

@keyframes ambientMove5 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(-30px, 40px) rotate(5deg);
  }
  66% {
    transform: translate(40px, -30px) rotate(-5deg);
  }
}

/* Section Backgrounds */
section {
  position: relative;
  z-index: 2;
  scroll-margin-top: 80px;
}

section:not(.hero-section) {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

section h2, section h3, section h4, section h5, section h6 {
  color: #ffffff;
}

section p {
  color: #e0e0e0;
}

.bg-light {
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.5) 0%, rgba(50, 50, 50, 0.5) 100%) !important;
  backdrop-filter: blur(10px);
}

.bg-light h2, .bg-light h3, .bg-light h4, .bg-light h5 {
  color: #ffffff;
}

.bg-light .lead {
  color: #d0d0d0;
}

.text-muted {
  color: #b0b0b0 !important;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink), var(--neon-green));
  z-index: 99999;
  transition: width 0.1s;
  box-shadow: 0 0 20px var(--primary-color);
}

/* Backdrop Blur Support */
@supports (backdrop-filter: blur(10px)) {
  .navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(33, 37, 41, 0.9) !important;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #ffcc00;
    --secondary-color: #000000;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
