/*==================================================
  MODERN FUTURISTIC DESIGN 2025 - WEB HOSTING
  Design System: Glassmorphism + Neumorphism
  Color Palette: Midnight Blue, Soft Purple, Pastel Gradient
==================================================*/

/* ========== IMPORTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Sora:wght@300;400;600;700;800&display=swap');

/* ========== CSS VARIABLES (2025 DESIGN TOKENS) ========== */
:root {
  /* Typography */
  --font-primary: 'Sora', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  
  /* Modern Color Palette */
  --color-midnight: #0f172a;
  --color-midnight-light: #1e293b;
  --color-midnight-lighter: #334155;
  
  --color-purple: #8b5cf6;
  --color-purple-light: #a78bfa;
  --color-purple-lighter: #c4b5fd;
  
  --color-blue: #3b82f6;
  --color-blue-light: #60a5fa;
  --color-cyan: #06b6d4;
  
  --color-pink: #ec4899;
  --color-rose: #f43f5e;
  
  --color-accent: #22d3ee;
  --color-accent-glow: rgba(34, 211, 238, 0.5);
  
  /* Neutral Colors */
  --color-white: #ffffff;
  --color-gray-50: #f8fafc;
  --color-gray-100: #f1f5f9;
  --color-gray-200: #e2e8f0;
  --color-gray-300: #cbd5e1;
  --color-gray-400: #94a3b8;
  --color-gray-500: #64748b;
  --color-gray-600: #475569;
  --color-gray-700: #334155;
  --color-gray-800: #1e293b;
  --color-gray-900: #0f172a;
  
  /* Modern Gradients */
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  --gradient-blue: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  --gradient-sunset: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-ocean: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  --gradient-mesh: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  
  /* Shadows (2025 Style) */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 20px rgba(139, 92, 246, 0.4), 0 0 40px rgba(139, 92, 246, 0.2);
  --shadow-glow-cyan: 0 0 20px rgba(34, 211, 238, 0.4), 0 0 40px rgba(34, 211, 238, 0.2);
  
  /* Glass Effect */
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ========== GLOBAL RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-secondary);
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  background-attachment: fixed;
  color: var(--color-gray-100);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* Animated Background Mesh Gradient */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 40% 80%, rgba(236, 72, 153, 0.08) 0%, transparent 40%);
  z-index: -1;
  pointer-events: none;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--color-white);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--color-gray-100);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--color-gray-100);
}

p {
  font-size: 1.1rem;
  color: var(--color-gray-300);
  line-height: 1.8;
  margin-bottom: 1rem;
}

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

/* ========== GLASSMORPHISM UTILITIES ========== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.glass-strong {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* ========== NAVBAR (Modern Floating Style) ========== */
.navbar-area {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 1.5rem 0;
  transition: all var(--transition-base);
}

.navbar-area.sticky {
  padding: 1rem 0;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-base);
}

.navbar:hover {
  box-shadow: var(--shadow-2xl);
  transform: translateY(-2px);
}

.navbar-brand img {
  height: 40px;
  filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
  transition: all var(--transition-base);
}

.navbar-brand:hover img {
  filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.8));
  transform: scale(1.05);
}

.navbar-nav {
  display: flex;
  gap: 1rem;
  list-style: none;
  align-items: center;
}

.nav-item a {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-gray-200);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  position: relative;
  transition: all var(--transition-base);
}

.nav-item a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-purple);
  transform: translateX(-50%);
  transition: width var(--transition-base);
}

.nav-item a:hover,
.nav-item a.active {
  color: var(--color-white);
}

.nav-item a:hover::before,
.nav-item a.active::before {
  width: 70%;
}

/* Menu Button (Glassmorphic) */
.menu-bar {
  padding: 0.75rem 1.25rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  color: var(--color-white);
  font-size: 1.5rem;
  transition: all var(--transition-base);
  cursor: pointer;
}

.menu-bar:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-glow);
  transform: rotate(90deg);
}

/* ========== HERO SECTION (Modern Futuristic) ========== */
.header-area {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}



.header-content {
  position: relative;
  z-index: 2;
}

.header-content h1 {
  margin-bottom: 1.1rem;
  animation: fadeInUp 1s ease-out;
}

.header-content p {
  font-size: 1rem;
  color: var(--color-gray-300);
  margin-bottom: 2.5rem;
  max-width: 600px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

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

.header-content .button {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.4s both;
}

/* Modern Buttons (2025 Style) */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-purple);
  z-index: -1;
  transition: all var(--transition-base);
}

.btn::after {
  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:hover::after {
  width: 300px;
  height: 300px;
}

.primary-btn {
  background: var(--gradient-purple);
  color: var(--color-white);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.primary-btn:hover {
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
  transform: translateY(-3px);
}

.primary-btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.primary-btn-outline::before {
  opacity: 0;
}

.primary-btn-outline:hover {
  border-color: var(--color-purple);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
  background: rgba(139, 92, 246, 0.1);
}

/* Video Button */
.video-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-white);
  font-weight: 600;
  transition: all var(--transition-base);
}

.video-button .icon-btn {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 2px solid var(--glass-border);
  border-radius: 50%;
  font-size: 1.5rem;
  transition: all var(--transition-base);
  position: relative;
}

.video-button .icon-btn::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid var(--color-purple);
  opacity: 0;
  animation: pulse 2s infinite;
}

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

.video-button:hover .icon-btn {
  background: var(--gradient-purple);
  box-shadow: var(--shadow-glow);
  transform: scale(1.1);
}

/* Hero Image */
.header-image {
  position: relative;
  animation: fadeInRight 1s ease-out 0.6s both;
}

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

.header-image img {
  width: 100%;
  filter: drop-shadow(0 20px 60px rgba(139, 92, 246, 0.4));
  animation: floatImage 6s ease-in-out infinite;
}

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

/* Floating Stats Cards (Modern Feature) */
.floating-stats {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 10;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  min-width: 180px;
  animation: slideInRight 0.8s ease-out both, floatCard 4s ease-in-out infinite;
  transition: all var(--transition-base);
}

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

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

.stat-card:hover {
  transform: translateX(-10px) scale(1.05);
  box-shadow: var(--shadow-glow);
  border-color: var(--color-purple);
}

.stat-icon {
  font-size: 2rem;
  filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.6));
}

.stat-info h3 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-white);
  margin: 0;
  line-height: 1;
}

.stat-info p {
  font-size: 0.85rem;
  color: var(--color-gray-400);
  margin: 0;
  margin-top: 0.25rem;
}

@media (max-width: 992px) {
  .floating-stats {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
  }
  
  .stat-card {
    min-width: auto;
    flex: 1;
    min-width: 150px;
  }
}

/* ========== SCROLL INDICATOR (Modern) ========== */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: fadeIn 1s ease-out 1s both;
}

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

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--color-purple-light);
  border-radius: 15px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 10px;
  background: var(--color-purple-light);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
}

.arrow {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.arrow span {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-purple-light);
  border-bottom: 2px solid var(--color-purple-light);
  transform: rotate(45deg);
  animation: arrowMove 2s infinite;
}

.arrow span:nth-child(2) {
  animation-delay: 0.2s;
}

@keyframes arrowMove {
  0%, 100% {
    opacity: 0;
    transform: rotate(45deg) translateY(-10px);
  }
  50% {
    opacity: 1;
    transform: rotate(45deg) translateY(0);
  }
}

/* ========== TRUST BADGES ========== */
.trust-badges {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.03) 100%);
}

.badges-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: default;
}

.badge-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
  border-color: var(--color-purple);
  background: rgba(255, 255, 255, 0.12);
}

.badge-item i {
  font-size: 1.5rem;
  color: var(--color-purple-light);
}

.badge-item span {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-white);
  white-space: nowrap;
}

/* ========== SECTION TITLE (Modern) ========== */
.section-title-five {
  text-align: center;
  padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.section-title-five h6 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-purple-light);
  margin-bottom: 1rem;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius-full);
}

.section-title-five h2 {
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title-five p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: var(--color-gray-300);
}

/* ========== SERVICES SECTION (Glass Cards) ========== */
.services-area {
  padding: var(--spacing-3xl) 0;
  position: relative;
}

.services-area .row {
  gap: 2rem 0;
}

.single-services {
  padding: 2.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.single-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-purple);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.single-services:hover::before {
  transform: scaleX(1);
}

.single-services:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(139, 92, 246, 0.5);
}

.service-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-purple);
  border-radius: var(--radius-lg);
  font-size: 2.5rem;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
  transition: all var(--transition-base);
}

.single-services:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-glow);
}

.service-content h4 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.service-content p {
  color: var(--color-gray-300);
  line-height: 1.8;
}

/* ========== PRICING SECTION (Modern Cards) ========== */
.pricing-area {
  padding: var(--spacing-3xl) 0;
  background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.05) 100%);
}

.pricing-style-fourteen {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-style-fourteen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-purple);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.pricing-style-fourteen:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 80px rgba(139, 92, 246, 0.4);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(139, 92, 246, 0.5);
}

.pricing-style-fourteen:hover::before {
  transform: scaleX(1);
}

/* Active/Featured Plan */
.pricing-style-fourteen.active {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
  border: 2px solid var(--color-purple);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.5);
  transform: scale(1.05);
}

.pricing-style-fourteen.active::after {
  content: 'POPULAR';
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 0.5rem 1rem;
  background: var(--gradient-purple);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  letter-spacing: 1px;
}

.table-head {
  text-align: center;
  margin-bottom: 2rem;
}

.table-head .title {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.table-head p {
  font-size: 0.95rem;
  color: var(--color-gray-300);
  margin-bottom: 1.5rem;
}

.price {
  margin: 1.5rem 0;
}

.price-discount {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.discount-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: linear-gradient(135deg, #f43f5e 0%, #ec4899 100%);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(244, 63, 94, 0.4);
  animation: pulse 2s infinite;
}

.original-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gray-500);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  opacity: 0.8;
}

.price .amount {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price .duration {
  font-size: 1rem;
  color: var(--color-gray-400);
}

.light-rounded-buttons {
  margin: 2rem 0;
}

.light-rounded-buttons .btn {
  width: 100%;
  justify-content: center;
}

.table-content {
  flex: 1;
}

.table-list {
  list-style: none;
}

.table-list li {
  padding: 0.875rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--color-gray-300);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table-list li:last-child {
  border-bottom: none;
}

.table-list li i {
  color: var(--color-purple-light);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* ========== FOOTER (Modern Glassmorphic) ========== */
.footer-area {
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.8) 100%);
  padding: var(--spacing-3xl) 0 var(--spacing-lg);
  margin-top: var(--spacing-3xl);
  position: relative;
}

.footer-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(139, 92, 246, 0.5) 50%, transparent 100%);
}

.footer-top {
  padding-bottom: var(--spacing-xl);
}

.footer-widget {
  height: 100%;
}

.footer-widget h5 {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.footer-widget p {
  color: var(--color-gray-300);
  margin-bottom: 1rem;
  line-height: 1.7;
}

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

.footer-widget ul li {
  margin-bottom: 0.75rem;
}

.footer-widget ul li a {
  color: var(--color-gray-300);
  transition: all var(--transition-base);
  display: inline-block;
}

.footer-widget ul li a:hover {
  color: var(--color-purple-light);
  transform: translateX(5px);
}

.copyright-text {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: var(--color-gray-400);
}

/* Contact Info */
.contact-info .contact-list {
  list-style: none;
  margin-top: 0;
}

.contact-info .contact-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.625rem 0.875rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.contact-info .contact-list li:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-purple);
  transform: translateX(5px);
}

.contact-info .contact-list li i {
  font-size: 1.25rem;
  color: var(--color-purple-light);
  flex-shrink: 0;
}

.contact-info .contact-list li a {
  color: var(--color-gray-200);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition-base);
}

.contact-info .contact-list li a:hover {
  color: var(--color-white);
}

.contact-info .contact-list li span {
  color: var(--color-gray-300);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: var(--color-white);
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  z-index: 1000;
  transition: all var(--transition-base);
  animation: floatWA 3s ease-in-out infinite;
  overflow: hidden;
}

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

.whatsapp-float::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.5s;
}

.whatsapp-float:hover::before {
  left: 100%;
}

.whatsapp-float:hover {
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.7);
  transform: translateY(-3px) scale(1.05);
}

.wa-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 1.75rem;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.whatsapp-float:hover .wa-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(15deg) scale(1.1);
}

.wa-text {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.3px;
}

/* ========== SIDEBAR (Glassmorphic) ========== */
.sidebar-left {
  position: fixed;
  top: 0;
  left: -100%;
  width: 380px;
  height: 100vh;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(30px);
  padding: 2rem;
  z-index: 9999;
  transition: left var(--transition-slow);
  overflow-y: auto;
  border-right: 1px solid rgba(139, 92, 246, 0.3);
}

.sidebar-left.open {
  left: 0;
  box-shadow: 20px 0 60px rgba(0, 0, 0, 0.5);
}

.overlay-left {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  cursor: pointer;
}

.overlay-left.open {
  opacity: 1;
  visibility: visible;
}

.sidebar-close {
  position: sticky;
  top: 0;
  text-align: right;
  margin-bottom: 2rem;
  padding: 1rem 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  z-index: 10;
}

.sidebar-close .close {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--color-white);
  font-size: 1.5rem;
  transition: all var(--transition-base);
  cursor: pointer;
}

.sidebar-close .close:hover {
  background: var(--gradient-purple);
  border-color: var(--color-purple);
  box-shadow: var(--shadow-glow);
  transform: rotate(90deg) scale(1.1);
}

.sidebar-logo {
  margin-bottom: 1.5rem;
}

.sidebar-logo img {
  height: 50px;
}

.sidebar-content .text {
  color: var(--color-gray-300);
  margin-bottom: 2rem;
}

.sidebar-menu {
  margin-bottom: 2rem;
}

.sidebar-menu .menu-title {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sidebar-menu ul {
  list-style: none;
}

.sidebar-menu ul li {
  margin-bottom: 0.75rem;
}

.sidebar-menu ul li a {
  color: var(--color-gray-300);
  padding: 0.75rem 1rem;
  display: block;
  transition: all var(--transition-base);
  border-radius: var(--radius-md);
  background: transparent;
}

.sidebar-menu ul li a:hover,
.sidebar-menu ul li a:active {
  color: var(--color-purple-light);
  background: rgba(139, 92, 246, 0.1);
  padding-left: 1.25rem;
}

.sidebar-social .social-title {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sidebar-social ul {
  display: flex;
  gap: 1rem;
  list-style: none;
}

.sidebar-social ul li a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--color-white);
  font-size: 1.25rem;
  transition: all var(--transition-base);
}

.sidebar-social ul li a:hover {
  background: var(--gradient-purple);
  box-shadow: var(--shadow-glow);
  transform: translateY(-5px);
}

/* ========== MOBILE MENU TOGGLE ========== */
.navbar-toggler {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.toggler-icon {
  width: 28px;
  height: 3px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.navbar-toggler.active .toggler-icon:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.navbar-toggler.active .toggler-icon:nth-child(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1199px) {
  .container {
    max-width: 100%;
    padding: 0 1.5rem;
  }
  
  h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
  }
  
  h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
  }
}

@media (max-width: 1024px) {
  .navbar-nav {
    gap: 1.5rem;
  }
  
  .nav-item a {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }
  
  .single-services {
    margin-bottom: 1.5rem;
  }
  
  .pricing-style-fourteen {
    margin-bottom: 2rem;
  }
}

@media (max-width: 992px) {
  .navbar {
    padding: 1rem 1.5rem;
  }
  
  .navbar-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    flex-direction: column;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(30px);
    padding: 6rem 2rem 2rem;
    gap: 0;
    transition: right var(--transition-slow);
    border-left: 1px solid rgba(139, 92, 246, 0.3);
    overflow-y: auto;
    z-index: 10000;
  }
  
  .navbar-collapse.show .navbar-nav {
    right: 0;
  }
  
  .nav-item {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .nav-item a {
    display: block;
    padding: 1rem;
    border-radius: var(--radius-md);
  }
  
  .navbar-toggler {
    display: flex;
  }
  
  .menu-bar {
    display: none;
  }
  
  .header-area {
    padding: 6rem 0 3rem;
    min-height: auto;
  }
  
  .header-content {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .header-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
  }
  
  .header-content p {
    font-size: 1rem;
  }
  
  .header-image {
    text-align: center;
  }
  
  .floating-stats {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
  }
  
  .stat-card {
    min-width: auto;
    flex: 1;
    min-width: 150px;
  }
  
  .pricing-style-fourteen.active {
    transform: scale(1);
  }
  
  .services-area .row,
  .pricing-area .row {
    gap: 0;
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-xl: 2.5rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
  }
  
  body {
    font-size: 15px;
  }
  
  h1 {
    font-size: clamp(1.875rem, 5vw, 2.5rem);
    margin-top: 80px;
  }
  
  h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  h4 {
    font-size: 1.125rem;
  }
  
  p {
    font-size: 1rem;
  }
  
  .navbar-area {
    padding: 1rem 0;
  }
  
  .navbar {
    padding: 0.75rem 1rem;
  }
  
  .header-area {
    padding: 5rem 0 2rem;
  }
  
  .header-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .header-content .button {
    gap: 1rem;
  }
  
  .btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
  }
  
  .scroll-indicator {
    bottom: 20px;
    display: none;
  }
  
  .trust-badges {
    padding: var(--spacing-lg) 0;
  }
  
  .badges-wrapper {
    gap: 1rem;
  }
  
  .badge-item {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
  
  .badge-item i {
    font-size: 1.25rem;
  }
  
  .section-title-five {
    padding: var(--spacing-xl) 0 var(--spacing-lg);
  }
  
  .section-title-five h6 {
    font-size: 0.75rem;
  }
  
  .section-title-five h2 {
    margin-bottom: 1rem;
  }
  
  .section-title-five p {
    font-size: 1rem;
  }
  
  .services-area,
  .pricing-area {
    padding: var(--spacing-xl) 0;
  }
  
  .single-services {
    /* margin-bottom: 50px; */
    padding: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
  
  .service-content h4 {
    font-size: 1.25rem;
  }
  
  .pricing-style-fourteen {
    padding: 2.5rem 1.5rem;
    margin-bottom: 2rem;
  }
  
  .table-head .title {
    font-size: 1.5rem;
  }
  
  .price .amount {
    font-size: 2.5rem;
  }
  
  .discount-badge {
    font-size: 0.6875rem;
    padding: 0.3rem 0.75rem;
  }
  
  .original-price {
    font-size: 1.125rem;
  }
  
  .table-list li {
    font-size: 0.875rem;
  }
  
  .footer-area {
    padding: var(--spacing-xl) 0 var(--spacing-md);
  }
  
  .footer-widget {
    margin-bottom: 2rem;
  }
  
  .footer-widget h5 {
    font-size: 1.125rem;
  }
  
  .sidebar-left {
    width: 85%;
    max-width: 340px;
    padding: 0 1.5rem 2rem;
  }
  
  .sidebar-close {
    margin-bottom: 1.5rem;
    padding: 1rem 0.5rem;
  }
  
  .sidebar-close .close {
    width: 50px;
    height: 50px;
    font-size: 1.75rem;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    padding: 0.75rem 1rem;
    gap: 0.625rem;
  }
  
  .wa-icon {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .wa-text {
    font-size: 0.9375rem;
  }
  
  .scroll-to-top {
    bottom: 85px !important;
    right: 20px !important;
    width: 45px !important;
    height: 45px !important;
    font-size: 1.25rem !important;
  }
}

@media (max-width: 576px) {
  :root {
    --spacing-xs: 0.375rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 2.5rem;
    --spacing-3xl: 3rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  h1 {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
    line-height: 1.3;
  }
  
  h2 {
    font-size: clamp(1.5rem, 5vw, 1.875rem);
  }
  
  h4 {
    font-size: 1.125rem;
  }
  
  p {
    font-size: 0.9375rem;
  }
  
  .navbar {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
  }
  
  .navbar-brand img {
    height: 28px;
  }
  
  .navbar-nav {
    width: 280px;
  }
  
  .header-area {
    padding: 4.5rem 0 2rem;
  }
  
  .header-content {
    padding: 0 0.5rem;
  }
  
  .header-content h1 {
    margin-bottom: 1rem;
  }
  
  .header-content p {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }
  
  .header-content .button {
    flex-direction: column;
    gap: 0.875rem;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }
  
  .video-button {
    justify-content: center;
    width: 100%;
  }
  
  .video-button .icon-btn {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .floating-stats {
    gap: 0.75rem;
  }
  
  .stat-card {
    padding: 0.75rem 1rem;
    min-width: calc(50% - 0.375rem);
  }
  
  .stat-icon {
    font-size: 1.5rem;
  }
  
  .stat-info h3 {
    font-size: 1.25rem;
  }
  
  .stat-info p {
    font-size: 0.75rem;
  }
  
  .trust-badges {
    padding: var(--spacing-md) 0;
  }
  
  .badges-wrapper {
    gap: 0.75rem;
    justify-content: center;
  }
  
  .badge-item {
    padding: 0.625rem 1rem;
    flex: 0 1 auto;
  }
  
  .badge-item span {
    font-size: 0.8125rem;
  }
  
  .section-title-five {
    padding: var(--spacing-lg) 0 var(--spacing-md);
  }
  
  .section-title-five h6 {
    font-size: 0.6875rem;
    padding: 0.375rem 1rem;
  }
  
  .section-title-five p {
    font-size: 0.9375rem;
    padding: 0 0.5rem;
  }
  
  .services-area,
  .pricing-area {
    padding: var(--spacing-lg) 0;
  }
  
  .single-services {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  .service-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }
  
  .service-content p {
    font-size: 0.9375rem;
  }
  
  .pricing-style-fourteen {
    padding: 1.75rem 1rem;
    margin-bottom: 1.5rem;
  }
  
  .table-head .title {
    font-size: 1.375rem;
  }
  
  .table-head p {
    font-size: 0.875rem;
  }
  
  .price .amount {
    font-size: 2.25rem;
  }
  
  .price .duration {
    font-size: 0.875rem;
  }
  
  .price-discount {
    gap: 0.5rem;
    margin-bottom: 0.375rem;
  }
  
  .discount-badge {
    font-size: 0.625rem;
    padding: 0.25rem 0.625rem;
  }
  
  .original-price {
    font-size: 1rem;
  }
  
  .table-list li {
    padding: 0.75rem 0;
    font-size: 0.8125rem;
  }
  
  .table-list li i {
    font-size: 1.125rem;
  }
  
  .footer-area {
    padding: var(--spacing-lg) 0 var(--spacing-sm);
  }
  
  .footer-widget {
    margin-bottom: 1.5rem;
  }
  
  .footer-widget h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .footer-widget p,
  .footer-widget ul li a,
  .footer-widget ul li span {
    font-size: 0.875rem;
  }
  
  .contact-info .contact-list li {
    padding: 0.625rem 0.75rem;
    gap: 0.625rem;
  }
  
  .contact-info .contact-list li i {
    font-size: 1.125rem;
  }
  
  .copyright-text {
    margin-top: 2rem;
    padding-top: 1.5rem;
    font-size: 0.8125rem;
  }
  
  .sidebar-left {
    width: 100%;
    padding: 0 1.25rem 1.5rem;
  }
  
  .sidebar-close {
    margin-bottom: 1rem;
    padding: 0.75rem 0.25rem;
  }
  
  .sidebar-close .close {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--color-purple-light);
  }
  
  .sidebar-logo img {
    height: 40px;
  }
  
  .sidebar-content .text {
    font-size: 0.875rem;
  }
  
  .sidebar-menu .menu-title {
    font-size: 0.875rem;
  }
  
  .sidebar-social .social-title {
    font-size: 0.875rem;
  }
  
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    padding: 0.625rem 0.875rem;
    gap: 0.5rem;
  }
  
  .wa-icon {
    width: 38px;
    height: 38px;
    font-size: 1.375rem;
  }
  
  .wa-text {
    font-size: 0.875rem;
  }
  
  .scroll-to-top {
    bottom: 75px !important;
    right: 15px !important;
    width: 42px !important;
    height: 42px !important;
    font-size: 1.125rem !important;
  }
}

/* Extra small devices */
@media (max-width: 400px) {
  h1 {
    font-size: 1.625rem;
  }
  
  h2 {
    font-size: 1.375rem;
  }
  
  .navbar-brand img {
    height: 26px;
  }
  
  .stat-card {
    min-width: 100%;
  }
  
  .badge-item {
    min-width: calc(50% - 0.375rem);
  }
  
  .badge-item span {
    font-size: 0.75rem;
  }
  
  .single-services {
    padding: 1.25rem;
    margin-bottom: 50px;
  }
  
  .pricing-style-fourteen {
    padding: 1.5rem 0.875rem;
  }
  
  .price .amount {
    font-size: 2rem;
  }
  
  .whatsapp-float {
    padding: 0.5rem 0.75rem;
    gap: 0.375rem;
  }
  
  .wa-icon {
    width: 35px;
    height: 35px;
    font-size: 1.25rem;
  }
  
  .wa-text {
    font-size: 0.8125rem;
  }
}

/* ========== UTILITY CLASSES ========== */
.text-center { text-align: center; }
.text-gradient {
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Smooth Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-midnight);
}

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

::-webkit-scrollbar-thumb:hover {
  background: var(--color-purple-light);
}

/* Selection Color */
::selection {
  background: var(--color-purple);
  color: var(--color-white);
}
