/* ========== META VIEWPORT (Add to HTML <head>) ========== */
/*
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0, user-scalable=yes">
*/

:root {
  --bg-primary: #0B0A1A;
  --bg-secondary: #13112C;
  --bg-accent: #1B1842;
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --accent-blue: #38bdf8;
  --accent-purple: #8b5cf6;
  --accent-pink: #ec4899;
  --accent-gold: #facc15;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-hover: rgba(255, 255, 255, 0.06);
  --nav-bg: rgba(11, 10, 26, 0.85);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(56, 189, 248, 0.3);
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
  width: 100%;
  position: relative;
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Global Glassmorphism Elements */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
}

/* ========== NAVBAR ========== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}
.navbar.hide { transform: translateY(-100%); }
.nav-container {
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  padding: 16px 32px; 
  max-width: 1400px; 
  margin: 0 auto;
}
.logo img { 
  height: 60px; 
  width: auto; 
  filter: drop-shadow(0 0 10px rgba(56,189,248,0.2)); 
  transition: var(--transition-smooth); 
}
.logo img:hover { 
  filter: drop-shadow(0 0 15px rgba(56,189,248,0.5)); 
  transform: scale(1.05); 
}

.nav-links { 
  display: flex; 
  gap: 28px; 
  align-items: center; 
}
.nav-link {
  text-decoration: none; 
  font-weight: 600; 
  color: var(--text-primary);
  padding: 8px 0; 
  transition: var(--transition-fast);
  display: flex; 
  align-items: center; 
  gap: 6px; 
  position: relative;
}
.nav-link::after {
  content: ''; 
  position: absolute; 
  bottom: 0; 
  left: 0; 
  width: 0; 
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
  transition: var(--transition-smooth);
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--accent-blue); }

.nav-item { position: relative; }
.submenu {
  position: absolute; 
  top: 120%; 
  left: 0;
  background: var(--bg-secondary);
  backdrop-filter: blur(24px); 
  border: 1px solid var(--glass-border);
  min-width: 300px; 
  border-radius: 16px; 
  box-shadow: var(--shadow-lg);
  padding: 12px 0; 
  opacity: 0; 
  visibility: hidden;
  transform: translateY(10px); 
  transition: var(--transition-smooth); 
  z-index: 100;
}
.nav-item:hover .submenu {
  opacity: 1; 
  visibility: visible; 
  transform: translateY(0);
}
.submenu a {
  display: block; 
  padding: 10px 24px; 
  text-decoration: none;
  color: var(--text-secondary); 
  font-weight: 500; 
  transition: var(--transition-fast);
}
.submenu a:hover {
  background: var(--glass-hover); 
  color: var(--accent-blue); 
  padding-left: 32px;
}

/* Sub Submenu */
.submenu-item {
  position: relative;
}
.submenu-item > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.subsubmenu {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 300px;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-lg);
}
.submenu-item:hover .subsubmenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.subsubmenu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}
.subsubmenu a:hover {
  background: var(--glass-hover);
  color: var(--accent-blue);
  padding-left: 28px;
}
.mobile-menu { 
  display: none; 
  font-size: 28px; 
  cursor: pointer; 
  color: white; 
}

/* Call to Action Button */
a[href="How-to-Order.php"] {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple)) !important;
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.4);
  transition: var(--transition-smooth) !important;
}
a[href="How-to-Order.php"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.6);
}

/* Tablet Navigation */
@media (max-width: 992px) {
  .submenu-item > .subsubmenu {
    display: none;
  }
  .submenu-item.sub-active > .subsubmenu {
    display: block !important;
  }
}

/* Mobile Navigation */
@media (max-width: 1000px) {
  .subsubmenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    margin-top: 10px;
    background: rgba(255,255,255,0.03);
  }
  .submenu-item.active .subsubmenu {
    display: block;
  }
  .nav-links { display: none; }
  .mobile-menu { display: block; }
  .mobile-active {
    display: flex !important; 
    flex-direction: column; 
    position: absolute;
    top: 100%; 
    left: 0; 
    width: 100%; 
    background: var(--bg-secondary);
    padding: 24px; 
    gap: 20px; 
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--glass-border); 
    z-index: 999;
  }
  .submenu { 
    position: static; 
    opacity: 1; 
    visibility: visible; 
    transform: none; 
    box-shadow: none; 
    border: none; 
    display: none; 
    background: rgba(0,0,0,0.2); 
  }
  .nav-item.active .submenu { 
    display: block; 
    margin-top: 10px; 
  }
}

/* ========== HERO SECTION ========== */
.custom-hero-section {
  position: relative; 
  width: 100%; 
  padding: 30px 0;
  background: radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 40%),
              radial-gradient(circle at 20% 80%, rgba(56, 189, 248, 0.15) 0%, transparent 40%);
}
.custom-hero-container { 
  max-width: 1280px; 
  margin: 0 auto; 
  padding: 0 40px; 
  position: relative; 
  z-index: 2; 
}
.custom-hero-grid { 
  display: grid; 
  grid-template-columns: 1.2fr 0.8fr; 
  gap: 60px; 
  align-items: center; 
}
.custom-hero-badge {
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
  background: var(--glass-bg); 
  backdrop-filter: blur(12px); 
  border: 1px solid var(--glass-border);
  padding: 8px 20px; 
  border-radius: 50px; 
  font-size: 14px; 
  font-weight: 500; 
  color: var(--accent-blue);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.badge-dot { 
  width: 8px; 
  height: 8px; 
  background: #4cff8e; 
  border-radius: 50%; 
  box-shadow: 0 0 10px #4cff8e; 
  animation: pulse 2s infinite; 
}
@keyframes pulse { 
  0%, 100% { opacity: 1; transform: scale(1); } 
  50% { opacity: 0.5; transform: scale(1.5); } 
}
.custom-hero-title { 
  font-size: 56px; 
  font-weight: 800; 
  line-height: 1.1; 
  margin-bottom: 24px; 
  letter-spacing: -0.02em; 
}
.custom-hero-title .highlight {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  -webkit-background-clip: text; 
  background-clip: text;
  color: transparent;
}
.custom-hero-subtitle { 
  font-size: 18px; 
  color: var(--text-secondary); 
  margin-bottom: 0; 
  line-height: 1.6; 
}
.custom-hero-subtitle strong { color: var(--accent-gold); }
.custom-slide { 
  display: none; 
  opacity: 0; 
  transform: translateY(20px); 
  transition: all 0.6s ease; 
}
.custom-slide.active-custom-slide { 
  display: block; 
  opacity: 1; 
  transform: translateY(0); 
}
.custom-slider-dots { 
  display: flex; 
  gap: 10px; 
  margin-top: 10px; 
}
.custom-dot {
  width: 30px; 
  height: 4px; 
  border-radius: 4px; 
  background: rgba(255,255,255,0.2); 
  border: none; 
  cursor: pointer; 
  transition: var(--transition-smooth);
}
.custom-dot.active-dot { 
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple)); 
  width: 60px; 
}
.custom-hero-buttons { 
  display: flex; 
  gap: 20px; 
  margin-top: 30px; 
}
.custom-btn {
  display: inline-flex; 
  align-items: center; 
  gap: 10px; 
  padding: 14px 32px; 
  border-radius: 50px;
  font-weight: 600; 
  font-size: 16px; 
  text-decoration: none; 
  transition: var(--transition-smooth);
}
.custom-btn-primary {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  color: white; 
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.4);
}
.custom-btn-primary:hover { 
  transform: translateY(-3px) scale(1.02); 
  box-shadow: 0 15px 35px rgba(56, 189, 248, 0.6); 
}
.custom-btn-secondary {
  background: var(--glass-bg); 
  backdrop-filter: blur(12px); 
  border: 1px solid var(--glass-border); 
  color: white;
}
.custom-btn-secondary:hover { 
  background: var(--glass-hover); 
  border-color: var(--accent-blue); 
  transform: translateY(-3px); 
  box-shadow: var(--shadow-glow); 
}
.custom-hero-tagline { 
  display: flex; 
  align-items: center; 
  gap: 20px; 
  margin-top: 40px; 
}
.tagline-line { 
  flex: 1; 
  height: 1px; 
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent); 
}
.custom-hero-tagline p { 
  font-size: 14px; 
  font-weight: 500; 
  color: var(--text-secondary); 
  text-transform: uppercase; 
  letter-spacing: 2px; 
}
.custom-hero-tagline p span { 
  color: var(--accent-blue); 
  font-weight: 700; 
}
.custom-hero-visual { position: relative; }
.custom-blob {
  position: absolute; 
  width: 450px; 
  height: 450px; 
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  border-radius: 50%; 
  opacity: 0.15; 
  filter: blur(60px); 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%);
  animation: blobFloat 10s infinite alternate;
}
@keyframes blobFloat { 
  0% { transform: translate(-50%, -50%) scale(1); } 
  100% { transform: translate(-45%, -55%) scale(1.1); } 
}
.custom-hero-image { 
  position: relative; 
  width: 100%; 
  max-width: 500px; 
  z-index: 2; 
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5)); 
  animation: floatImg 6s ease-in-out infinite; 
}
@keyframes floatImg { 
  0%, 100% { transform: translateY(0); } 
  50% { transform: translateY(-15px); } 
}
.custom-floating-card {
  position: absolute; 
  display: flex; 
  align-items: center; 
  gap: 12px;
  background: rgba(19, 17, 44, 0.8); 
  backdrop-filter: blur(16px);
  padding: 10px 20px; 
  border-radius: 50px; 
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3); 
  z-index: 10;
}
.card-icon { 
  width: 32px; 
  height: 32px; 
  background: rgba(56, 189, 248, 0.15); 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
}
.card-icon svg { stroke: var(--accent-blue); width: 16px; height: 16px; }
.card-info { display: flex; flex-direction: column; }
.card-number { font-size: 16px; font-weight: 800; color: white; }
.card-label { 
  font-size: 11px; 
  font-weight: 500; 
  color: var(--text-secondary); 
  text-transform: uppercase; 
  letter-spacing: 1px; 
}
.card-1 { top: 10%; left: -5%; animation: floatCard 4s infinite 0s; }
.card-2 { bottom: 15%; left: 0%; animation: floatCard 4s infinite 1s; }
.card-3 { top: 20%; right: -5%; animation: floatCard 4s infinite 2s; }
.card-4 { top: 60%; right: -10%; animation: floatCard 4s infinite 3s; }
.card-5 { bottom: -5%; right: 20%; animation: floatCard 4s infinite 0.5s; }
.card-6 { top: -5%; left: 30%; animation: floatCard 4s infinite 1.5s; }
@keyframes floatCard { 
  0%, 100% { transform: translateY(0); } 
  50% { transform: translateY(-10px); } 
}

/* Hero Responsive */
@media (max-width: 1024px) {
  .custom-hero-grid { 
    grid-template-columns: 1fr; 
    text-align: center; 
    gap: 40px; 
  }
  .custom-hero-title { font-size: 42px; }
  .custom-hero-buttons, 
  .custom-hero-tagline, 
  .custom-slider-dots { 
    justify-content: center; 
  }
  .custom-floating-card { display: none; }
}

/* ========== TRUST SLIDER SECTION ========== */
.trust-slider-section {
  background: var(--bg-secondary); 
  padding: 30px 0; 
  border-top: 1px solid var(--glass-border); 
  border-bottom: 1px solid var(--glass-border); 
  overflow: hidden;
}
.trust-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}
.trust-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.trust-slider::before,
.trust-slider::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.trust-slider::before {
  left: 0;
  background: linear-gradient(90deg, #3a075e, transparent);
}
.trust-slider::after {
  right: 0;
  background: linear-gradient(270deg, #3a075e, transparent);
}
.trust-track {
  display: flex;
  gap: 24px;
  width: fit-content;
  animation: scrollTrust 25s linear infinite;
}
.trust-track:hover {
  animation-play-state: paused;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05); 
  backdrop-filter: blur(10px);
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  transition: all 0.3s ease;
  color: #fff;
}
.trust-item span { font-size: 15px; font-weight: 600; color: white; }
.trust-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #3a075e;
  transform: translateY(-2px);
}
.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 25%;
  background: rgba(255, 255, 255, 0.08);
}
.trust-icon svg { width: 14px; height: 14px; }
.shield-icon svg { stroke: #60a5fa; }
.headset-icon svg { stroke: #34d399; }
.clock-icon svg { stroke: #fbbf24; }
.dollar-icon svg { stroke: #f472b6; }
.rocket-icon svg { stroke: #c084fc; }
.globe-icon svg { stroke: #2dd4bf; }
.trust-item span {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  letter-spacing: 0.3px;
}
@keyframes scrollTrust {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Trust Slider Mobile */
@media (max-width: 768px) {
  .trust-slider-section { padding: 18px 0; }
  .trust-item { padding: 7px 18px; }
  .trust-item span { font-size: 12px; }
  .trust-icon { width: 24px; height: 24px; }
  .trust-icon svg { width: 12px; height: 12px; }
  .trust-track { gap: 16px; }
  .trust-slider::before,
  .trust-slider::after { width: 40px; }
}

/* ========== AI AUTOMATION SECTION ========== */
.ai-automation-section { 
  position: relative; 
  padding: 25px 0; 
  background: var(--bg-primary); 
}
.ai-container { 
  max-width: 1280px; 
  margin: 0 auto; 
  padding: 0 20px; 
  position: relative; 
  z-index: 2; 
}
.ai-header { text-align: center; margin-bottom: 60px; }
.ai-badge {
  display: inline-flex; 
  align-items: center; 
  gap: 8px; 
  background: rgba(139, 92, 246, 0.1);
  padding: 8px 20px; 
  border-radius: 50px; 
  font-size: 13px; 
  font-weight: 700; 
  color: var(--accent-purple);
  border: 1px solid rgba(139, 92, 246, 0.2); 
  text-transform: uppercase; 
  letter-spacing: 1px;
}
.ai-title { 
  font-size: 42px; 
  font-weight: 800; 
  margin: 20px 0; 
}
.ai-title .highlight { 
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink)); 
  -webkit-background-clip: text; 
  background-clip: text;
  color: transparent; 
}
.ai-subtitle { 
  font-size: 16px; 
  color: var(--text-secondary); 
  max-width: 700px; 
  margin: 0 auto; 
}
.ai-services-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
  gap: 24px; 
}
.ai-card {
  background: var(--glass-bg); 
  backdrop-filter: blur(16px); 
  border-radius: 24px; 
  padding: 15px 24px;
  border: 1px solid var(--glass-border); 
  transition: var(--transition-smooth); 
  position: relative; 
  overflow: hidden;
}
.ai-card::before {
  content: ''; 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.06), transparent 40%);
  opacity: 0; 
  transition: opacity 0.3s; 
  pointer-events: none;
}
.ai-card:hover::before { opacity: 1; }
.ai-card:hover { 
  transform: translateY(-8px); 
  border-color: rgba(139, 92, 246, 0.4); 
  box-shadow: 0 15px 35px rgba(0,0,0,0.4); 
}
.ai-card-icon { 
  width: 56px; 
  height: 56px; 
  border-radius: 16px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  margin-bottom: 24px; 
  transition: var(--transition-smooth); 
}
.ai-card:hover .ai-card-icon { transform: scale(1.1) rotate(5deg); }
.ai-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.ai-card p { 
  font-size: 14px; 
  color: var(--text-secondary); 
  margin-bottom: 24px; 
  line-height: 1.6; 
}
.ai-btn { 
  font-size: 14px; 
  font-weight: 700; 
  color: var(--accent-purple); 
  text-decoration: none; 
  display: flex; 
  align-items: center; 
  gap: 8px; 
  transition: var(--transition-fast); 
}
.ai-card:hover .ai-btn { gap: 12px; color: var(--accent-pink); }
.ai-cta { 
  text-align: center; 
  margin-top: 50px; 
  padding-top: 40px; 
  border-top: 1px solid var(--glass-border); 
}
.ai-cta p { font-size: 20px; font-weight: 700; margin-bottom: 20px; }
.ai-cta-btn {
  display: inline-flex; 
  align-items: center; 
  gap: 10px; 
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
  padding: 14px 36px; 
  border-radius: 50px; 
  font-weight: 600; 
  font-size: 16px; 
  color: white; 
  text-decoration: none;
  transition: var(--transition-smooth); 
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}
.ai-cta-btn:hover { 
  transform: translateY(-3px) scale(1.02); 
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.6); 
}

/* AI Icons */
.chatbot-icon { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }
.facebook-icon { background: rgba(24, 119, 242, 0.15); color: #1877f2; }
.blog-icon { background: rgba(139, 92, 246, 0.15); color: #8b5cf6; }
.web-icon { background: rgba(6, 182, 212, 0.15); color: #06b6d4; }
.email-icon { background: rgba(244, 114, 182, 0.15); color: #f472b6; }
.video-icon { background: rgba(239, 68, 68, 0.15); color: #ef4444; }
.post-icon { background: rgba(16, 185, 129, 0.15); color: #10b981; }
.image-icon { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }

/* ========== SERVICES FOUR COLUMN ========== */
.services-three-column-section {
  padding: 45px 0 70px;
  background: var(--bg-secondary);
}
.services-three-column-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}
.services-left-panel,
.services-center-panel,
.services-right-panel,
.services-manage-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(2px);
  border-radius: 25px;
  padding: 22px 2px;
  border: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}
.services-left-panel:hover,
.services-center-panel:hover,
.services-right-panel:hover,
.services-manage-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.5);
}
.services-section-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-blue);
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.services-menu-box {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: var(--transition-fast);
}
.services-menu-box:hover {
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-glow);
}
.services-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  cursor: pointer;
}
.services-menu-title {
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.2px;
}
.services-menu-btn {
  background: rgba(56, 189, 248, 0.12);
  color: var(--accent-blue);
  padding: 6px 18px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-fast);
  display: inline-block;
}
.services-menu-box:hover .services-menu-btn {
  background: var(--accent-blue);
  color: #000;
  box-shadow: 0 0 6px #38bdf8;
}
.services-sub-menu {
  display: none;
  padding: 0 18px 20px;
}
.services-menu-box:hover .services-sub-menu {
  display: block;
  animation: slideDown 0.3s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.services-sub-item {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  position: relative;
  cursor: pointer;
  font-weight: 500;
  backdrop-filter: blur(2px);
}
.services-sub-item:hover {
  background: var(--accent-blue);
  color: #000000;
  transform: translateX(6px);
  font-weight: 600;
}
.services-tooltip {
  position: absolute;
  left: calc(100% + 16px);
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  width: 270px;
  background: rgba(8, 8, 20, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid var(--accent-blue);
  color: #f0f9ff;
  padding: 12px 18px;
  border-radius: 18px;
  font-size: 13px;
  line-height: 1.45;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  z-index: 200;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  font-weight: normal;
  letter-spacing: 0.2px;
}
.services-sub-item:hover .services-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* Services Responsive */
@media (max-width: 1200px) {
  .services-three-column-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 1024px) {
  .services-tooltip {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .services-three-column-container {
    grid-template-columns: 1fr;
  }
  .services-tooltip {
    display: none !important;
  }
  .ai-title {
    font-size: 32px;
  }
}
.services-menu-title i, 
.services-section-title i {
  font-style: normal;
}
.services-manage-panel .services-menu-box:last-child {
  margin-bottom: 0;
}

/* ========== PRODUCT SLIDER SECTION ========== */
.product-slider-section {
  width: 100%;
  background: var(--bg-primary);
  padding: 25px 0;
  position: relative;
  overflow: hidden;
}
.product-slider-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}
.product-slider-header {
  text-align: center;
  margin-bottom: 50px;
}
.product-badge {
  display: inline-block;
  background: rgba(56, 189, 248, 0.15);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #38bdf8;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.product-main-title {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}
.title-highlight {
  background: linear-gradient(135deg, #38bdf8, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.product-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}
.slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  margin-bottom: 30px;
}
.slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.product-card {
  min-width: 280px;
  max-width: 280px;
  background: linear-gradient(135deg, #00406a 0%, #00406a 6px, #3a075e 7px, #00406a 100%);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  flex-shrink: 0;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56, 189, 248, 0.4);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.3);
}
.product-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 180px;
}
.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-image {
  transform: scale(1.05);
}
.product-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
}
.product-tag {
  background: linear-gradient(135deg, #667eea, #764ba2);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: white;
}
.product-icon-wrapper {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(139, 92, 246, 0.1));
}
.product-icon-wrapper i {
  font-size: 64px;
  color: #38bdf8;
}
.product-info {
  padding: 20px;
}
.product-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}
.product-info p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin-bottom: 12px;
}
.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.current-price {
  font-size: 20px;
  font-weight: 800;
  color: #38bdf8;
}
.old-price {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
}
.product-btn {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(56, 189, 248, 0.4);
  padding: 10px 0;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}
.product-btn:hover {
  background: #38bdf8;
  border-color: #38bdf8;
  color: #0f172a;
}
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.slider-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.slider-nav svg { stroke: white; }
.slider-nav:hover {
  background: #38bdf8;
  border-color: #38bdf8;
  transform: scale(1.05);
}
.slider-nav:hover svg { stroke: #0f172a; }
.slider-dots {
  display: flex;
  gap: 10px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider-dot.active {
  width: 28px;
  border-radius: 10px;
  background: #38bdf8;
}

/* Product Slider Mobile */
@media (max-width: 768px) {
  .product-slider-section { padding: 50px 0; }
  .product-slider-container { padding: 0 20px; }
  .product-main-title { font-size: 28px; }
  .product-card { min-width: 260px; max-width: 260px; }
  .product-image-wrapper, .product-icon-wrapper { height: 150px; }
}

/* ========== COMPACT OFFERS SECTION ========== */
.compact-offers-section {
  width: 100%;
  background: var(--bg-secondary);
  padding: 25px 0;
  position: relative;
  overflow: hidden;
}
.compact-offers-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 25px;
  position: relative;
  z-index: 2;
}
.compact-offers-header {
  text-align: center;
  margin-bottom: 30px;
}
.compact-badge {
  display: inline-block;
  background: rgba(250, 204, 21, 0.15);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  color: #facc15;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.compact-title {
  font-size: 30px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}
.highlight {
  background: linear-gradient(135deg, #facc15, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.compact-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.compact-countdown {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.countdown-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  padding: 12px 25px;
  border-radius: 60px;
  border: 1px solid rgba(250, 204, 21, 0.3);
}
.countdown-block {
  text-align: center;
  min-width: 55px;
}
.countdown-num {
  font-size: 28px;
  font-weight: 800;
  color: #facc15;
  background: rgba(0, 0, 0, 0.4);
  padding: 6px 10px;
  border-radius: 10px;
  display: inline-block;
  min-width: 55px;
}
.countdown-text {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  display: block;
  margin-top: 4px;
}
.countdown-dots {
  font-size: 28px;
  font-weight: 800;
  color: #facc15;
}
.free-offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}
.free-card {
  background: linear-gradient(135deg, #00406a 0px, #00406a 5px, #3a075e 35%, #3a075e 100%);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 22px 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.free-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #facc15, #f59e0b);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.free-card:hover {
  transform: translateY(-5px);
  border-color: rgba(250, 204, 21, 0.3);
  background: rgba(255, 255, 255, 0.06);
}
.free-card:hover::before { transform: scaleX(1); }
.free-icon { font-size: 42px; margin-bottom: 12px; }
.free-card h3 { font-size: 18px; font-weight: 700; color: #ffffff; margin-bottom: 8px; }
.free-card p { font-size: 12px; color: rgba(255, 255, 255, 0.7); line-height: 1.4; margin-bottom: 15px; }
.free-price { margin-bottom: 12px; }
.old-price { font-size: 14px; color: rgba(255, 255, 255, 0.4); text-decoration: line-through; margin-right: 10px; }
.new-price { font-size: 22px; font-weight: 800; color: #facc15; }
.free-badge {
  display: inline-block;
  background: rgba(250, 204, 21, 0.15);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 9px;
  font-weight: 600;
  color: #facc15;
  margin-bottom: 15px;
}
.free-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  background: transparent;
  border: 1.5px solid rgba(250, 204, 21, 0.5);
  color: #facc15;
  padding: 8px 0;
  border-radius: 40px;
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.free-btn:hover {
  background: #facc15;
  color: #0f172a;
  border-color: #facc15;
  gap: 10px;
}
.offer-note { text-align: center; }
.offer-note p { font-size: 10px; color: rgba(255, 255, 255, 0.4); }

/* Offers Responsive */
@media (max-width: 850px) {
  .free-offers-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
  .countdown-box { padding: 10px 20px; gap: 10px; }
  .countdown-num { font-size: 22px; min-width: 45px; }
  .compact-title { font-size: 26px; }
}
@media (max-width: 600px) {
  .compact-offers-section { padding: 40px 0; }
  .free-offers-grid { grid-template-columns: 1fr; }
  .countdown-dots { display: none; }
}

/* ========== TRANSFORM SECTION ========== */
.transform-section {
  width: 100%;
  background: var(--bg-primary);
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}
.transform-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}
.transform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 70px;
}
.transform-image-wrapper {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.3);
}
.transform-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.transform-image-wrapper:hover .transform-image { transform: scale(1.05); }
.transform-image-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}
.floating-stats {
  display: flex;
  gap: 15px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  padding: 15px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.stat-item { flex: 1; text-align: center; }
.stat-number { display: block; font-size: 24px; font-weight: 800; color: #38bdf8; }
.stat-label { font-size: 12px; color: rgba(255, 255, 255, 0.7); }
.transform-badge {
  display: inline-block;
  background: rgba(56, 189, 248, 0.15);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: #38bdf8;
  margin-bottom: 20px;
}
.transform-title {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.transform-title .highlight {
  background: linear-gradient(135deg, #38bdf8, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.transform-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 30px;
}
.transform-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.transform-btn-primary {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.transform-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}
.transform-btn-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.transform-btn-secondary:hover {
  border-color: #38bdf8;
  background: rgba(56, 189, 248, 0.1);
  transform: translateY(-3px);
}
.getstarted-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 40px;
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.getstarted-left h2 {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}
.getstarted-left h2 .highlight { color: #38bdf8; }
.getstarted-left p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 24px;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}
.feature-item { font-size: 15px; color: white; }
.getstarted-btn {
  display: inline-block;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 12px 32px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.getstarted-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}
.getstarted-icon {
  width: 70px;
  height: 70px;
  background: rgba(56, 189, 248, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.getstarted-icon svg { stroke: #38bdf8; }
.getstarted-image-wrapper {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}
.getstarted-image {
  width: 69%;
  height: auto;
  border-radius: 28px;
}
.floating-chat {
  position: absolute;
  bottom: 20px;
  right: 100px;
  background: #38bdf8;
  padding: 10px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 600;
  font-size: 14px;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Transform Responsive */
@media (max-width: 1024px) {
  .transform-row, .getstarted-row { grid-template-columns: 1fr; gap: 40px; }
  .getstarted-row { padding: 40px; }
  .transform-title { font-size: 32px; }
}
@media (max-width: 768px) {
  .transform-section { padding: 50px 0; }
  .transform-container { padding: 0 20px; }
  .transform-title { font-size: 28px; }
  .getstarted-left h2 { font-size: 26px; }
  .getstarted-row { padding: 30px; }
  .transform-buttons { flex-direction: column; }
  .transform-btn-primary, .transform-btn-secondary { text-align: center; }
}

/* ========== MODERN FAQ SECTION ========== */
.modern-faq-section {
  width: 100%;
  background: var(--bg-primary);
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}
.modern-faq-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}
.faq-header {
  text-align: center;
  margin-bottom: 50px;
}
.faq-badge {
  display: inline-block;
  background: rgba(56, 189, 248, 0.15);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #38bdf8;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.faq-title {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}
.faq-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 50px;
}
.faq-column { display: flex; flex-direction: column; gap: 20px; }
.faq-item {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover {
  border-color: rgba(56, 189, 248, 0.3);
  background: rgba(255, 255, 255, 0.06);
}
.faq-question {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.faq-question:hover { background: rgba(56, 189, 248, 0.05); }
.faq-icon { font-size: 28px; flex-shrink: 0; }
.faq-question h3 {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}
.faq-toggle {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.faq-toggle svg { stroke: #38bdf8; transition: all 0.3s ease; }
.minus-icon { display: none; }
.faq-item.active .plus-icon { display: none; }
.faq-item.active .minus-icon { display: block; }
.faq-item.active .faq-toggle { background: #38bdf8; }
.faq-item.active .faq-toggle svg { stroke: #0f172a; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  padding: 0 24px;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px 24px;
}
.faq-answer p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 12px;
}
.faq-answer ul {
  margin: 12px 0;
  padding-left: 20px;
}
.faq-answer li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
  list-style: none;
}
.faq-answer strong { color: #38bdf8; }
.faq-contact-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 28px;
  padding: 30px 35px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.banner-icon { font-size: 48px; flex-shrink: 0; }
.banner-content { flex: 1; }
.banner-content h3 { font-size: 22px; font-weight: 700; color: #ffffff; margin-bottom: 6px; }
.banner-content p { font-size: 14px; color: rgba(255, 255, 255, 0.7); }
.banner-btn {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.banner-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

/* FAQ Responsive */
@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; gap: 20px; }
  .faq-title { font-size: 32px; }
  .faq-question { padding: 16px 20px; }
  .faq-question h3 { font-size: 16px; }
  .faq-contact-banner { flex-direction: column; text-align: center; padding: 25px; }
}
@media (max-width: 768px) {
  .modern-faq-section { padding: 50px 0; }
  .modern-faq-container { padding: 0 20px; }
  .faq-title { font-size: 28px; }
}

/* ========== PAYMENT SECTION ========== */
.modern-payment-section { padding: 30px 0; background: var(--bg-primary); }
.modern-payment-container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.payment-header { text-align: center; margin-bottom: 60px; }
.payment-badge { 
  display: inline-block; 
  background: rgba(56, 189, 248, 0.1); 
  padding: 8px 20px; 
  border-radius: 50px; 
  font-size: 13px; 
  font-weight: 700; 
  color: var(--accent-blue); 
  text-transform: uppercase; 
  letter-spacing: 1px; 
  border: 1px solid rgba(56, 189, 248, 0.2); 
}
.payment-title { font-size: 42px; font-weight: 800; margin: 20px 0; }
.payment-subtitle { font-size: 16px; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }
.payment-two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.payment-options-col, .trusted-platforms-col {
  background: var(--glass-bg); 
  backdrop-filter: blur(16px); 
  border-radius: 32px; 
  padding: 40px; 
  border: 1px solid var(--glass-border); 
  transition: var(--transition-smooth);
}
.payment-options-col:hover, .trusted-platforms-col:hover { 
  border-color: rgba(56, 189, 248, 0.3); 
  box-shadow: 0 20px 50px rgba(0,0,0,0.3); 
  transform: translateY(-5px); 
}
.col-header { 
  text-align: center; 
  margin-bottom: 30px; 
  padding-bottom: 20px; 
  border-bottom: 1px solid var(--glass-border); 
}
.col-header h3 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.col-header p { font-size: 14px; color: var(--text-secondary); }
.payment-method-card, .platform-card {
  display: flex; 
  align-items: center; 
  gap: 20px; 
  background: rgba(255,255,255,0.02); 
  border-radius: 20px; 
  padding: 16px 24px;
  border: 1px solid var(--glass-border); 
  margin-bottom: 16px; 
  transition: var(--transition-smooth); 
  text-decoration: none;
}
.payment-method-card:hover, .platform-card:hover { 
  background: rgba(56, 189, 248, 0.05); 
  border-color: var(--accent-blue); 
  transform: translateX(10px); 
  box-shadow: 0 10px 20px rgba(0,0,0,0.2); 
}
.method-icon, .platform-icon { 
  width: 56px; 
  height: 56px; 
  border-radius: 16px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  flex-shrink: 0; 
}
.method-info h4, .platform-info h4 { font-size: 18px; font-weight: 700; margin-bottom: 4px; color: white; }
.method-info p, .platform-info p { font-size: 13px; color: var(--text-secondary); }
.method-badge { 
  background: rgba(56, 189, 248, 0.15); 
  padding: 6px 12px; 
  border-radius: 50px; 
  font-size: 12px; 
  font-weight: 700; 
  color: var(--accent-blue); 
}
.platform-rating { 
  background: rgba(250, 204, 21, 0.15); 
  color: var(--accent-gold); 
  padding: 6px 12px; 
  border-radius: 50px; 
  font-size: 12px; 
  font-weight: 700; 
}
.trust-badges-row { 
  display: flex; 
  justify-content: center; 
  gap: 20px; 
  flex-wrap: wrap; 
  margin-top: 30px; 
}
.trust-badge { 
  font-size: 13px; 
  font-weight: 600; 
  color: white; 
  background: rgba(255,255,255,0.05); 
  padding: 8px 16px; 
  border-radius: 50px; 
  border: 1px solid var(--glass-border); 
}
.footer-badges-row { display: flex; gap: 20px; margin-top: 30px; }
.direct-badge, .guarantee-badge { 
  flex: 1; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 10px; 
  padding: 12px 20px; 
  border-radius: 16px; 
  text-align: center; 
}
.direct-badge { background: rgba(56, 189, 248, 0.1); border: 1px solid rgba(56, 189, 248, 0.2); }
.guarantee-badge { background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.2); }
.badge-text { font-size: 14px; font-weight: 600; color: white; }
.badge-text a { color: var(--accent-blue); text-decoration: none; }

/* Payment Responsive */
@media (max-width: 900px) {
  .payment-two-column { grid-template-columns: 1fr; }
  .footer-badges-row { flex-direction: column; }
  .payment-title { font-size: 32px; }
}
@media (max-width: 600px) {
  .payment-options-col, .trusted-platforms-col { padding: 25px; }
  .payment-method-card, .platform-card { flex-direction: column; text-align: center; gap: 12px; }
}

/* ========== MODERN REVIEWS SECTION ========== */
.modern-reviews-section {
  width: 100%;
  background: var(--bg-secondary);
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}
.modern-reviews-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}
.reviews-header {
  text-align: center;
  margin-bottom: 35px;
}
.reviews-badge {
  display: inline-block;
  background: rgba(56, 189, 248, 0.15);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  color: #38bdf8;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.reviews-title {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}
.reviews-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin: 0 auto;
}
.rating-trust-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 45px;
}
.rating-summary-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}
.score-number {
  font-size: 52px;
  font-weight: 800;
  color: #ffc107;
  line-height: 1;
}
.score-stars {
  font-size: 18px;
  color: #ffc107;
  letter-spacing: 2px;
  margin: 8px 0;
}
.score-count {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}
.rating-bars-list { text-align: left; margin-top: 15px; }
.rating-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.rating-bar-item span:first-child {
  width: 50px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}
.bar {
  flex: 1;
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffc107, #ffb300);
  border-radius: 10px;
}
.rating-bar-item span:last-child {
  width: 35px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}
.trust-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.trust-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}
.trust-card:hover {
  transform: translateY(-3px);
  background: rgba(56, 189, 248, 0.05);
  border-color: rgba(56, 189, 248, 0.3);
}
.trust-icon { font-size: 34px; }
.trust-info h4 { font-size: 20px; font-weight: 800; color: #ffffff; margin-bottom: 2px; }
.trust-info p { font-size: 11px; color: rgba(255, 255, 255, 0.6); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
  margin-bottom: 35px;
}
.review-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}
.review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.3);
  background: rgba(255, 255, 255, 0.06);
}
.review-quote {
  font-size: 36px;
  color: #38bdf8;
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 8px;
}
.review-text {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 15px;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: white;
}
.av1 { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.av2 { background: linear-gradient(135deg, #10b981, #059669); }
.av3 { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.av4 { background: linear-gradient(135deg, #f59e0b, #d97706); }
.av5 { background: linear-gradient(135deg, #ef4444, #dc2626); }
.av6 { background: linear-gradient(135deg, #ec4899, #db2777); }
.reviewer-details h4 { font-size: 14px; font-weight: 700; color: #ffffff; margin-bottom: 2px; }
.reviewer-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.rating { font-size: 11px; color: #ffc107; letter-spacing: 1px; }
.location { font-size: 10px; color: rgba(255, 255, 255, 0.5); }
.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.verified { font-size: 10px; color: #10b981; }
.date { font-size: 10px; color: rgba(255, 255, 255, 0.4); }
.view-all-container { text-align: center; }
.view-all-reviews-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid rgba(56, 189, 248, 0.4);
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}
.view-all-reviews-btn:hover {
  background: #38bdf8;
  border-color: #38bdf8;
  color: #0f172a;
  transform: translateY(-2px);
}
.view-all-reviews-btn svg { stroke: currentColor; }

/* Reviews Responsive */
@media (max-width: 900px) {
  .rating-trust-two-column { grid-template-columns: 1fr; gap: 20px; }
  .trust-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .modern-reviews-section { padding: 50px 0; }
  .modern-reviews-container { padding: 0 20px; }
  .reviews-title { font-size: 28px; }
}
@media (max-width: 550px) {
  .trust-cards-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ========== FOOTER ========== */
.modern-footer { 
  background: #05040F; 
  border-top: 1px solid var(--glass-border); 
  position: relative; 
  overflow: hidden; 
  padding-top: 80px; 
}
.modern-footer::before { 
  content: ''; 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 3px; 
  background: linear-gradient(90deg, transparent, var(--accent-blue), var(--accent-purple), var(--accent-blue), transparent); 
}
.footer-container { 
  max-width: 1400px; 
  margin: 0 auto; 
  padding: 0 40px 40px; 
  position: relative; 
  z-index: 2; 
}
.footer-grid { 
  display: grid; 
  grid-template-columns: 2fr 1fr 1fr 1.5fr 1fr; 
  gap: 40px; 
  margin-bottom: 60px; 
}
.footer-logo { 
  height: 60px; 
  width: auto; 
  margin-bottom: 24px; 
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.2)); 
}
.footer-tagline { font-size: 20px; font-weight: 800; margin-bottom: 16px; color: white; }
.footer-description { 
  font-size: 15px; 
  color: var(--text-secondary); 
  margin-bottom: 30px; 
  line-height: 1.6; 
  max-width: 300px; 
}
.footer-social { display: flex; gap: 16px; flex-wrap: wrap; }
.social-icon { 
  width: 44px; 
  height: 44px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  background: rgba(255,255,255,0.05); 
  border-radius: 50%; 
  border: 1px solid var(--glass-border); 
  transition: var(--transition-smooth); 
}
.social-icon svg { stroke: white; width: 20px; height: 20px; }
.social-icon:hover { transform: translateY(-5px); }
.social-icon.facebook:hover { background: #1877f2; border-color: #1877f2; box-shadow: 0 10px 20px rgba(24, 119, 242, 0.4); }
.social-icon.twitter:hover { background: #1da1f2; border-color: #1da1f2; box-shadow: 0 10px 20px rgba(29, 161, 242, 0.4); }
.social-icon.instagram:hover { background: #e4405f; border-color: #e4405f; box-shadow: 0 10px 20px rgba(228, 64, 95, 0.4); }
.social-icon.linkedin:hover { background: #0077b5; border-color: #0077b5; box-shadow: 0 10px 20px rgba(0, 119, 181, 0.4); }
.social-icon.whatsapp:hover { background: #25d366; border-color: #25d366; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4); }
.footer-links h4, .footer-contact h4, .footer-legal h4 { 
  font-size: 20px; 
  font-weight: 800; 
  margin-bottom: 24px; 
  position: relative; 
  padding-bottom: 10px; 
}
.footer-links h4::after, .footer-contact h4::after, .footer-legal h4::after { 
  content: ''; 
  position: absolute; 
  bottom: 0; 
  left: 0; 
  width: 40px; 
  height: 3px; 
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple)); 
  border-radius: 3px; 
}
.footer-links ul, .footer-legal ul { list-style: none; }
.footer-links li, .footer-legal li { margin-bottom: 16px; }
.footer-links a, .footer-legal a { 
  font-size: 15px; 
  color: var(--text-secondary); 
  text-decoration: none; 
  transition: var(--transition-fast); 
  display: inline-block; 
  font-weight: 500; 
}
.footer-links a:hover, .footer-legal a:hover { 
  color: var(--accent-blue); 
  transform: translateX(8px); 
}
.contact-item { 
  display: flex; 
  align-items: flex-start; 
  gap: 16px; 
  margin-bottom: 20px; 
}
.contact-item svg { 
  stroke: var(--accent-blue); 
  width: 20px; 
  height: 20px; 
  flex-shrink: 0; 
  margin-top: 2px; 
}
.contact-item a, .contact-item span { 
  font-size: 15px; 
  color: var(--text-secondary); 
  text-decoration: none; 
  transition: var(--transition-fast); 
  font-weight: 500; 
  word-break: break-word;
}
.contact-item a:hover { color: var(--accent-blue); }
.footer-bottom { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding-top: 40px; 
  border-top: 1px solid var(--glass-border); 
  flex-wrap: wrap; 
  gap: 20px; 
}
.footer-bottom p { font-size: 14px; color: rgba(255,255,255,0.4); font-weight: 500; }
.footer-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-badges .badge { 
  font-size: 12px; 
  font-weight: 700; 
  padding: 6px 16px; 
  background: rgba(255,255,255,0.05); 
  border-radius: 50px; 
  color: white; 
  border: 1px solid var(--glass-border); 
  text-transform: uppercase; 
  letter-spacing: 1px; 
}
.back-to-top {
  position: fixed; 
  bottom: 40px; 
  right: 40px; 
  width: 56px; 
  height: 56px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  z-index: 100;
  opacity: 0; 
  visibility: hidden; 
  transition: var(--transition-smooth); 
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.4); 
  text-decoration: none;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 15px 35px rgba(56, 189, 248, 0.6); 
}
.back-to-top svg { stroke: white; width: 24px; height: 24px; }

/* Footer Responsive */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .modern-footer { padding-top: 50px; }
  .footer-container { padding: 0 20px 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; justify-content: center; }
  .footer-social { justify-content: center; }
  .footer-description { max-width: 100%; text-align: center; margin-left: auto; margin-right: auto; }
  .footer-logo { display: block; margin-left: auto; margin-right: auto; }
  .footer-tagline { text-align: center; }
  .footer-links h4::after, .footer-contact h4::after, .footer-legal h4::after { left: 50%; transform: translateX(-50%); }
  .footer-links h4, .footer-contact h4, .footer-legal h4 { text-align: center; }
  .footer-links ul, .footer-legal ul { text-align: center; }
  .contact-item { justify-content: center; }
  .footer-badges { justify-content: center; }
  .back-to-top { bottom: 20px; right: 20px; width: 48px; height: 48px; }
}

/* ========== ADDITIONAL MOBILE FIXES ========== */
@media (max-width: 768px) {
  /* Container padding fixes */
  .custom-hero-container,
  .ai-container,
  .product-slider-container,
  .compact-offers-container,
  .transform-container,
  .modern-faq-container,
  .modern-payment-container,
  .modern-reviews-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  
  /* Section padding consistency */
  .custom-hero-section,
  .ai-automation-section,
  .product-slider-section,
  .compact-offers-section,
  .transform-section,
  .modern-faq-section,
  .modern-payment-section,
  .modern-reviews-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  
  /* Button full width on small screens */
  .custom-hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .custom-btn {
    justify-content: center;
  }
  
  /* Better touch targets */
  .nav-link,
  .submenu a,
  .services-sub-item,
  .product-btn,
  .free-btn,
  .transform-btn-primary,
  .transform-btn-secondary,
  .banner-btn,
  .view-all-reviews-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  
  /* Fix image max-width */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Fix grid gaps */
  .ai-services-grid,
  .reviews-grid {
    gap: 16px;
  }
  
  /* Typography adjustments */
  .custom-hero-title {
    font-size: 32px !important;
  }
  
  .ai-title,
  .product-main-title,
  .faq-title,
  .payment-title,
  .reviews-title {
    font-size: 28px !important;
  }
  
  .transform-title {
    font-size: 28px !important;
  }
  
  .compact-title {
    font-size: 24px !important;
  }
  
  /* Fix countdown on mobile */
  .countdown-box {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  
  .countdown-block {
    min-width: auto;
  }
  
  .countdown-num {
    font-size: 20px;
    min-width: 40px;
  }
  
  /* Payment section mobile fixes */
  .payment-method-card,
  .platform-card {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .method-badge,
  .platform-rating {
    display: inline-block;
  }
  
  /* Review cards on mobile */
  .review-card {
    padding: 15px;
  }
  
  .reviewer {
    flex-wrap: wrap;
  }
  
  /* Floating chat hide on mobile */
  .floating-chat {
    display: none;
  }
  
  /* Get started image fix */
  .getstarted-image {
    width: 100%;
  }
  
  /* Stat items responsive */
  .floating-stats {
    flex-wrap: wrap;
  }
  
  .stat-item {
    min-width: 80px;
  }
}

/* Very small devices */
@media (max-width: 480px) {
  .custom-hero-title {
    font-size: 28px !important;
  }
  
  .nav-container {
    padding: 12px 20px;
  }
  
  .logo img {
    height: 50px;
  }
  
  .custom-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .ai-card {
    padding: 20px;
  }
  
  .product-card {
    min-width: 220px;
    max-width: 220px;
  }
  
  .free-card {
    padding: 18px 15px;
  }
  
  .free-icon {
    font-size: 36px;
  }
  
  .free-card h3 {
    font-size: 16px;
  }
  
  .new-price {
    font-size: 20px;
  }
  
  .faq-question {
    padding: 12px 16px;
  }
  
  .faq-question h3 {
    font-size: 14px;
  }
  
  .faq-icon {
    font-size: 22px;
  }
  
  .trust-card {
    padding: 12px;
  }
  
  .trust-icon {
    font-size: 28px;
  }
  
  .trust-info h4 {
    font-size: 16px;
  }
  
  .score-number {
    font-size: 40px;
  }
}

/* Landscape mode fixes */
@media (max-width: 900px) and (orientation: landscape) {
  .custom-hero-section {
    padding: 20px 0;
  }
  
  .custom-hero-grid {
    gap: 20px;
  }
  
  .services-three-column-container {
    gap: 15px;
  }
}

/* Ensure no horizontal scroll */
body {
  overflow-x: hidden;
  width: 100%;
}

.container, 
.custom-hero-container,
.ai-container,
.product-slider-container,
.compact-offers-container,
.transform-container,
.modern-faq-container,
.modern-payment-container,
.modern-reviews-container,
.footer-container {
  overflow-x: hidden;
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
a:focus,
[tabindex]:focus {
  outline: 2px solid var(--accent-blue);
  outline-offset: 2px;
}

/* Disable outline on mouse click but keep for keyboard */
button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
  outline: none;
}

