/* VIPGramPanel - Premium SMM Panel Styles */

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

:root {
  /* Premium Color Palette - Enhanced with Vibrant Colors */
  --vip-primary: #0057ff;
  --vip-primary-dark: #004ae0;
  --vip-primary-light: #00c6ff;
  --vip-secondary: #00c6ff;
  --vip-gradient: linear-gradient(135deg, #0057ff 0%, #00c6ff 50%, #7c3aed 100%);
  --vip-gradient-vibrant: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
  --vip-gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
  --vip-gradient-card: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 50%, rgba(240, 147, 251, 0.1) 100%);
  --vip-accent-purple: #7c3aed;
  --vip-accent-pink: #ec4899;
  --vip-accent-orange: #f97316;
  --vip-accent-cyan: #06b6d4;
  --vip-bg: #f4f7ff;
  --vip-bg-dark: #0d1b2a;
  --vip-card-bg: rgba(255, 255, 255, 0.92);
  --vip-icon-bg: #eaf1ff;
  --vip-text: #1a1f36;
  --vip-text-light: #6b7280;
  --vip-border: rgba(0, 0, 0, 0.08);
  --vip-border-colorful: linear-gradient(135deg, #667eea, #764ba2, #f093fb, #4facfe);
  --vip-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --vip-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --vip-shadow-hover: 0 12px 32px rgba(0, 87, 255, 0.15);
  --vip-shadow-colorful: 0 12px 40px rgba(102, 126, 234, 0.25);
  --vip-shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.15);
  --vip-shadow-premium: 0 25px 80px rgba(0, 0, 0, 0.2);
  
  /* Typography */
  --vip-font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --vip-letter-spacing: 0.2px;
  --vip-line-height: 1.55;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--vip-font-family);
  letter-spacing: var(--vip-letter-spacing);
  line-height: var(--vip-line-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 100px; /* Navbar height + extra space */
}

/* Ensure first section after navbar has proper spacing */
body > section:first-child,
body > div:first-child > section:first-child {
  margin-top: 0; /* Body padding already handles this */
}

@media (max-width: 768px) {
  body {
    padding-top: 180px !important; /* Navbar height on mobile (may be taller due to wrap) + extra space for orders page */
  }
}

/* Premium Hero Section */
.vip-hero-section {
  min-height: auto;
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  background: var(--vip-gradient);
  padding: 0;
  margin-top: 72px; /* Navbar height */
}

@media (max-width: 768px) {
  .vip-hero-section {
    padding: 30px 15px 40px;
    margin-top: 72px;
  }
}

@media (max-width: 480px) {
  .vip-hero-section {
    padding: 20px 12px 30px;
    margin-top: 72px;
  }
}

.vip-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 198, 255, 0.15) 0%, transparent 50%);
  z-index: 1;
}

.vip-hero-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 40px;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .vip-hero-container {
    padding: 0;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .vip-hero-container {
    padding: 0;
    width: 100%;
  }
}

.vip-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Stats */
.vip-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.vip-hero-stat-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--vip-shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.vip-hero-stat-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.3);
  background: rgba(255, 255, 255, 1);
}

.vip-hero-stat-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--vip-primary) 0%, var(--vip-secondary) 100%);
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
  color: #ffffff;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.vip-hero-stat-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2.5;
}

.vip-hero-stat-item:hover .vip-hero-stat-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
}

.vip-hero-stat-content {
  flex: 1;
}

.vip-hero-stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--vip-text);
  margin: 0 0 5px 0;
  background: linear-gradient(135deg, var(--vip-primary) 0%, var(--vip-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vip-hero-stat-label {
  font-size: 14px;
  color: var(--vip-text-light);
  font-weight: 500;
  margin: 0;
}

/* Sign In Container */
.vip-signin-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}



/* Hero Left Content */
.vip-hero-left {
  color: #ffffff;
}

.vip-signin-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 24px 0;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.vip-signin-subtitle {
  font-size: 20px;
  line-height: 1.6;
  margin: 0 0 40px 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

/* Hero Right - Premium Sign In Form Area */
.vip-hero-right {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0;
}

.vip-hero-signin-box {
  width: 100%;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.99);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 
    0 30px 100px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset,
    0 0 60px rgba(0, 87, 255, 0.1);
  position: relative;
  overflow: hidden;
  padding: 48px 40px;
  animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateZ(0);
  transition: all 0.4s ease;
}

.vip-hero-signin-box:hover {
  box-shadow: 
    0 35px 120px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset,
    0 0 80px rgba(0, 87, 255, 0.15);
  transform: translateY(-2px);
}

.vip-hero-signin-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #0057ff 0%, #00c6ff 50%, #0057ff 100%);
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
  z-index: 1;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.vip-hero-signin-box::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 87, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.vip-hero-signin-header {
  text-align: center;
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}

.vip-hero-signin-title {
  font-size: 30px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--vip-primary) 0%, var(--vip-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 12px 0;
  letter-spacing: -0.4px;
  line-height: 1.2;
}

.vip-hero-signin-subtitle {
  font-size: 15px;
  color: var(--vip-text-light);
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
}

.vip-hero-signin-form {
  position: relative;
  z-index: 2;
}

/* Enhanced Form Inputs */
.vip-hero-signin-form .vip-form-group {
  margin-bottom: 24px;
}

.vip-hero-signin-form .vip-form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--vip-text);
  margin-bottom: 10px;
  display: block;
  letter-spacing: 0.2px;
}

.vip-hero-signin-form .vip-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.vip-hero-signin-form .vip-input-icon {
  position: absolute;
  left: 16px;
  width: 20px;
  height: 20px;
  color: var(--vip-text-light);
  pointer-events: none;
  z-index: 1;
  transition: color 0.3s ease;
}

.vip-hero-signin-form .vip-form-input {
  width: 100%;
  padding: 16px 16px 16px 48px;
  font-size: 15px;
  border: 2px solid var(--vip-border);
  border-radius: 14px;
  background: var(--vip-bg);
  color: var(--vip-text);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--vip-font-family);
  letter-spacing: 0.2px;
}

.vip-hero-signin-form .vip-form-input:focus {
  outline: none;
  border-color: var(--vip-primary);
  background: #ffffff;
  box-shadow: 
    0 0 0 4px rgba(0, 87, 255, 0.1),
    0 4px 12px rgba(0, 87, 255, 0.1);
  transform: translateY(-1px);
}

.vip-hero-signin-form .vip-form-input:focus + .vip-input-icon,
.vip-hero-signin-form .vip-form-input:not(:placeholder-shown) ~ .vip-input-icon {
  color: var(--vip-primary);
}

.vip-hero-signin-form .vip-form-input::placeholder {
  color: var(--vip-text-light);
  opacity: 0.6;
}

.vip-hero-signin-form .vip-forgot-link {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: var(--vip-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  z-index: 2;
}

.vip-hero-signin-form .vip-forgot-link:hover {
  color: var(--vip-primary-dark);
  text-decoration: underline;
}

.vip-hero-signin-form .vip-checkbox-group {
  margin-bottom: 28px;
}

.vip-hero-signin-form .vip-checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  gap: 10px;
}

.vip-hero-signin-form .vip-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--vip-primary);
  border-radius: 4px;
  transition: all 0.2s ease;
}

.vip-hero-signin-form .vip-checkbox-text {
  font-size: 14px;
  color: var(--vip-text);
  font-weight: 400;
}

.vip-hero-signin-form .vip-btn-primary {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  background: var(--vip-gradient);
  color: #ffffff;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 87, 255, 0.3);
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

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

.vip-hero-signin-form .vip-btn-primary:hover::before {
  left: 100%;
}

.vip-hero-signin-form .vip-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 87, 255, 0.4);
}

.vip-hero-signin-form .vip-btn-primary:active {
  transform: translateY(0);
}

.vip-hero-signin-form .vip-signup-link {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--vip-text-light);
  line-height: 1.6;
}

/* Sign In Box (Form) */
.vip-signin-box {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  max-width: 480px;
  margin-top: 40px;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Smooth Transitions for All Interactive Elements */
.vip-feature-card,
.vip-service-card,
.vip-platform-card,
.vip-country-card,
.vip-pricing-card,
.vip-popular-card,
.vip-use-case-card,
.vip-testimonial-card,
.vip-trust-card,
.vip-blog-card,
.vip-category-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.vip-feature-card:hover,
.vip-service-card:hover,
.vip-platform-card:hover,
.vip-country-card:hover,
.vip-pricing-card:hover,
.vip-popular-card:hover,
.vip-use-case-card:hover,
.vip-testimonial-card:hover,
.vip-trust-card:hover,
.vip-blog-card:hover,
.vip-category-card:hover {
  transform: translateY(-8px) scale(1.02);
}

/* Premium Navbar */
.vip-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.vip-navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vip-navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--vip-text);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.vip-navbar-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.vip-nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--vip-text);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-block;
}

.vip-nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  width: 0;
  height: 2px;
  background: var(--vip-gradient);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.vip-nav-link:hover,
.vip-nav-link-active {
  color: var(--vip-primary);
  background: rgba(0, 87, 255, 0.05);
}

.vip-nav-link:hover::after,
.vip-nav-link-active::after {
  width: calc(100% - 24px);
}

.vip-nav-btn {
  background: linear-gradient(135deg, var(--vip-primary) 0%, var(--vip-secondary) 100%);
  color: #ffffff !important;
  padding: 10px 24px !important;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 4px 15px rgba(0, 87, 255, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.vip-nav-btn::after {
  display: none;
}

.vip-nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 87, 255, 0.4);
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--vip-primary-dark) 0%, var(--vip-secondary-dark) 100%);
}

/* Navbar Dropdown */
.vip-nav-dropdown {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}


.vip-dropdown-arrow {
  font-size: 10px;
  color: var(--vip-text-light);
  transition: transform 0.3s ease;
  margin-left: 4px;
}

.vip-nav-dropdown:hover .vip-dropdown-arrow,
.vip-nav-dropdown.vip-dropdown-open .vip-dropdown-arrow {
  transform: rotate(180deg);
  color: var(--vip-primary);
}

.vip-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: var(--vip-card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  border: 1px solid var(--vip-border);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  padding: 8px 0;
  overflow: hidden;
}

.vip-nav-dropdown:hover .vip-dropdown-menu,
.vip-nav-dropdown.vip-dropdown-open .vip-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.vip-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: 14px;
  color: var(--vip-text);
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  border-radius: 0;
}

.vip-dropdown-item i {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.vip-dropdown-item:hover {
  background: linear-gradient(90deg, rgba(0, 87, 255, 0.08) 0%, rgba(0, 198, 255, 0.08) 100%);
  color: var(--vip-primary);
  padding-left: 24px;
}

.vip-dropdown-active {
  background: var(--vip-icon-bg);
  color: var(--vip-primary);
  font-weight: 600;
}

/* Currency Badge */
.vip-nav-dropdown .badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: var(--vip-gradient);
  color: #ffffff;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 87, 255, 0.2);
  transition: all 0.3s ease;
}

.vip-nav-dropdown:hover .badge {
  box-shadow: 0 4px 12px rgba(0, 87, 255, 0.3);
  transform: translateY(-1px);
}

/* Navbar Menu Icon Support */
.vip-nav-link i {
  margin-right: 6px;
  font-size: 16px;
}

/* Responsive Navbar */
@media (max-width: 1024px) {
  .vip-navbar-menu {
    gap: 20px;
    flex-wrap: wrap;
  }

  .vip-nav-link {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .vip-navbar-container {
    padding: 12px 20px;
    flex-wrap: wrap;
  }

  .vip-navbar-menu {
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 12px;
    justify-content: flex-start;
  }

  .vip-nav-link {
    font-size: 13px;
    padding: 6px 0;
  }

  .vip-nav-btn {
    padding: 8px 16px !important;
    font-size: 13px;
  }

  .vip-dropdown-menu {
    right: auto;
    left: 0;
  }
}

/* Header */
.vip-signin-header {
  text-align: center;
  margin-bottom: 30px;
}

.vip-signin-header {
  text-align: left;
  margin-bottom: 0;
}

.vip-signin-box .vip-signin-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--vip-text);
  margin: 0 0 12px 0;
  letter-spacing: -0.3px;
}

.vip-signin-box .vip-signin-subtitle {
  font-size: 15px;
  color: var(--vip-text-light);
  margin: 0 0 30px 0;
}

/* Form Styles */
.vip-signin-form {
  width: 100%;
}

.vip-form-group {
  margin-bottom: 16px;
  position: relative;
}

.vip-form-group-password {
  margin-bottom: 15px;
}

.vip-form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--vip-text);
  margin-bottom: 8px;
}

/* Input Wrapper - Already added above, keeping for compatibility */
.vip-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.vip-input-icon {
  position: absolute;
  left: 14px;
  color: var(--vip-text-light);
  pointer-events: none;
  transition: color 0.15s ease;
  z-index: 1;
  width: 18px;
  height: 18px;
}

.vip-form-input {
  width: 100%;
  padding: 12px 14px 12px 42px;
  font-size: 15px;
  border: 2px solid var(--vip-border);
  border-radius: 10px;
  background: var(--vip-card-bg);
  color: var(--vip-text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  outline: none;
  font-weight: 400;
  font-family: var(--vip-font-family);
}

.vip-form-input:focus {
  border-color: var(--vip-primary);
  background: var(--vip-card-bg);
  box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.1);
  /* Removed transform for better performance */
}

.vip-form-group:focus-within .vip-input-icon {
  color: var(--vip-primary);
}

.vip-form-input::placeholder {
  color: var(--vip-text-light);
  opacity: 0.7;
}

.vip-form-input:focus::placeholder {
  opacity: 0.5;
}

/* Forgot Password Link */
.vip-forgot-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--vip-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.vip-forgot-link:hover {
  color: var(--vip-primary-dark);
  text-decoration: underline;
}

/* Checkbox */
.vip-checkbox-group {
  margin-bottom: 16px;
}

.vip-checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  gap: 8px;
}

.vip-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--vip-primary);
  flex-shrink: 0;
}

.vip-checkbox-text {
  font-size: 14px;
  color: var(--vip-text);
}

/* Buttons */
.vip-btn {
  display: inline-block;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.vip-btn-primary {
  background: var(--vip-primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 87, 255, 0.3);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.vip-btn-primary:hover {
  background: var(--vip-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 87, 255, 0.4);
  color: #ffffff;
}

.vip-btn-primary:active {
  transform: translateY(0);
}

.vip-btn-text {
  position: relative;
  z-index: 1;
}

.vip-btn-icon {
  position: relative;
  z-index: 1;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vip-btn-primary:hover .vip-btn-icon {
  transform: translateX(4px);
}

.vip-btn-primary:active {
  transform: translateY(0);
}

.vip-btn-block {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Google Sign In */
.vip-google-signin {
  margin: 20px 0;
  display: flex;
  justify-content: center;
}

/* Sign Up Link */
.vip-signup-link {
  text-align: center;
  margin-top: 25px;
  font-size: 14px;
  color: var(--vip-text-light);
}

.vip-link {
  color: var(--vip-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.vip-link:hover {
  color: var(--vip-primary-dark);
  text-decoration: underline;
}

/* Alerts */
.vip-alert {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vip-alert-error {
  background: #fef2f2;
  color: var(--vip-error);
  border: 1px solid #fecaca;
}

.vip-alert-success {
  background: #f0fdf4;
  color: var(--vip-success);
  border: 1px solid #bbf7d0;
}

.vip-alert-icon {
  margin-right: 10px;
  font-size: 18px;
  font-weight: bold;
}

/* Auth Text Container */
.vip-auth-text-container {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
}

.vip-auth-text-box {
  background: var(--vip-card-bg);
  border-radius: 15px;
  padding: 25px;
  box-shadow: var(--vip-shadow);
  border: 1px solid var(--vip-border);
}

/* RTL Support */
.rtl-form {
  direction: rtl;
}

.rtl-form .vip-checkbox {
  margin-right: 0;
  margin-left: 10px;
}

.rtl-form .vip-alert-icon {
  margin-right: 0;
  margin-left: 10px;
}

.rtl-content {
  direction: rtl;
  text-align: right;
}

/* Responsive Design */
@media (max-width: 768px) {
  .vip-signin-container {
    padding: 15px;
  }

  .vip-signin-box {
    padding: 30px 25px;
    border-radius: 15px;
  }

  .vip-signin-title {
    font-size: 24px;
  }

  .vip-signin-subtitle {
    font-size: 14px;
  }

  .vip-form-input {
    padding: 11px 14px;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .vip-btn {
    padding: 13px 20px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .vip-signin-box {
    padding: 25px 20px;
  }

  .vip-signin-title {
    font-size: 22px;
  }

  .vip-form-group {
    margin-bottom: 18px;
  }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
  :root {
    --vip-bg: #0f172a;
    --vip-card-bg: #1e293b;
    --vip-text: #f1f5f9;
    --vip-text-light: #94a3b8;
    --vip-border: #334155;
  }

  .vip-hero-section {
    background: linear-gradient(135deg, #0c4a6e 0%, #075985 50%, #0369a1 100%);
  }
}

/* Loading State */
.vip-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* Focus Visible for Accessibility */
.vip-form-input:focus-visible,
.vip-btn:focus-visible,
.vip-checkbox:focus-visible {
  outline: 2px solid var(--vip-primary);
  outline-offset: 2px;
}

/* Performance Optimizations */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Optimized Transitions - Only for necessary elements */
a, button {
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

/* Order form specific performance optimizations */
.vip-order-box,
.vip-order-form,
.vip-form-group {
  /* Prevent layout shifts */
  contain: layout;
}

.vip-form-input,
.vip-form-select {
  /* GPU acceleration only when needed */
  will-change: border-color;
}

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* SEO Content Sections - Balanced & Equal */
.vip-seo-section {
  padding: 80px 20px;
  background: var(--vip-bg);
  position: relative;
  overflow: hidden;
}

/* Gradient Transitions Between Sections */
.vip-seo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 87, 255, 0.2) 50%, transparent 100%);
  z-index: 1;
}

.vip-seo-section:nth-child(even) {
  background: var(--vip-card-bg);
}

/* CTA Section - Force gradient background, override any vip-seo-section styles */
.vip-cta-section {
  background: var(--vip-gradient) !important;
}

.vip-cta-section.vip-seo-section {
  background: var(--vip-gradient) !important;
}

.vip-cta-section:nth-child(even),
.vip-cta-section:nth-child(odd) {
  background: var(--vip-gradient) !important;
}

.vip-seo-section:nth-child(odd)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 198, 255, 0.3) 50%, transparent 100%);
  z-index: 1;
}

/* Override for API Banner - must have gradient background */
.vip-api-banner-section {
  background: linear-gradient(135deg, var(--vip-primary) 0%, var(--vip-secondary) 100%) !important;
}

.vip-api-banner-section:nth-child(even),
.vip-api-banner-section:nth-child(odd) {
  background: linear-gradient(135deg, var(--vip-primary) 0%, var(--vip-secondary) 100%) !important;
}

.vip-api-banner-section::before,
.vip-api-banner-section::after {
  display: none !important;
}

/* Section Spacing - Equal margins */
.vip-seo-section + .vip-seo-section {
  margin-top: 0;
}

.vip-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Tickets and other pages - ensure proper spacing from navbar */
body > section:first-child .vip-container,
body > div:first-child > section:first-child .vip-container {
  padding-top: 40px; /* Extra padding for first container after navbar */
}

@media (max-width: 768px) {
  body > section:first-child .vip-container,
  body > div:first-child > section:first-child .vip-container {
    padding-top: 30px; /* Extra padding for mobile */
  }
}

/* Orders page specific - ensure content doesn't overlap with navbar */
body > section:first-child,
body > div:first-child > section:first-child {
  margin-top: 0;
  padding-top: 40px; /* Extra padding for orders page */
}

/* Orders page mobile specific fix - aggressive approach */
@media (max-width: 768px) {
  /* Force first section to have large top padding on mobile */
  body > section:first-child {
    margin-top: 0 !important;
    padding-top: 220px !important; /* Very large padding to ensure content is below navbar */
    position: relative !important;
    z-index: 1 !important;
    min-height: auto !important;
  }
  
  body > div:first-child > section:first-child {
    margin-top: 0 !important;
    padding-top: 220px !important; /* Very large padding to ensure content is below navbar */
    position: relative !important;
    z-index: 1 !important;
    min-height: auto !important;
  }
  
  /* Ensure first container in orders page has spacing */
  body > section:first-child .vip-container,
  body > div:first-child > section:first-child .vip-container {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
  
  /* Orders page table/list containers */
  table,
  .table,
  .vip-container table,
  .vip-container .table {
    margin-top: 20px !important;
  }
  
  /* First element in section - tabs, filters, search - ensure visible */
  body > section:first-child > *:first-child,
  body > div:first-child > section:first-child > *:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
    position: relative !important;
    z-index: 2 !important;
  }
  
  /* First element in container */
  body > section:first-child .vip-container > *:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}

/* Section Subtitle */
.vip-section-subtitle {
  text-align: center;
  font-size: 17px;
  color: var(--vip-text-light);
  margin: -30px auto 50px auto;
  max-width: 700px;
  line-height: 1.6;
}

/* Intro Section */
.vip-intro-section {
  background: var(--vip-card-bg);
  padding: 100px 20px;
}

/* Premium Typography */
.vip-seo-h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--vip-text);
  margin: 0 0 50px 0;
  text-align: center;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.vip-seo-h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--vip-text);
  margin: 0 0 20px 0;
  letter-spacing: -0.3px;
}

.vip-content-paragraph {
  font-size: 16px;
  line-height: 1.7;
  color: var(--vip-text);
  margin: 0 0 24px 0;
}

.vip-intro-content {
  max-width: 900px;
  margin: 0 auto;
}

.vip-intro-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--vip-text);
  text-align: center;
  margin: 0;
}

.vip-intro-text strong {
  color: var(--vip-primary);
  font-weight: 600;
}

/* Features Section */
.vip-features-section {
  background: var(--vip-bg);
}

.vip-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 50px;
  align-items: stretch; /* Equal height cards */
}

.vip-feature-card {
  background: var(--vip-card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 
    var(--vip-shadow),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--vip-border);
  position: relative;
  transform: translateZ(0);
  height: 100%; /* Equal height */
  display: flex;
  flex-direction: column;
  min-height: 280px; /* Prevent collapse */
  overflow: hidden;
}

.vip-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--vip-gradient-vibrant);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
  transform: scaleX(0);
  transition: transform 0.4s ease;
  z-index: 1;
}

.vip-feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    var(--vip-shadow-hover),
    0 0 0 1px rgba(0, 87, 255, 0.1) inset,
    0 0 40px rgba(0, 87, 255, 0.1);
}

.vip-feature-card:hover::before {
  opacity: 1;
}

.vip-feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 0 24px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vip-icon-bg);
  border-radius: 12px;
  color: var(--vip-primary);
}

.vip-feature-icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 2;
}

.vip-feature-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--vip-text);
  margin: 0 0 16px 0;
  letter-spacing: -0.3px;
}

.vip-feature-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--vip-text-light);
  margin: 0;
  font-weight: 400;
}

.vip-feature-text strong {
  color: var(--vip-primary);
}

/* Services Section */
.vip-services-section {
  background: var(--vip-card-bg);
}

.vip-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.vip-service-card {
  background: linear-gradient(135deg, var(--vip-primary) 0%, var(--vip-secondary) 100%);
  padding: 35px 30px;
  border-radius: 15px;
  color: #ffffff;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--vip-shadow);
}

.vip-service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--vip-shadow-lg);
}

.vip-service-icon {
  font-size: 50px;
  margin-bottom: 20px;
  display: block;
}

.vip-service-title {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 15px 0;
  color: #ffffff;
}

.vip-service-text {
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 20px 0;
  opacity: 0.95;
}

.vip-service-link {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: background 0.3s ease;
}

.vip-service-link:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.vip-how-section {
  background: var(--vip-bg);
}

.vip-how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.vip-how-step {
  text-align: center;
  position: relative;
}

.vip-how-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--vip-primary) 0%, var(--vip-secondary) 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: var(--vip-shadow);
}

.vip-how-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--vip-text);
  margin: 0 0 12px 0;
}

.vip-how-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--vip-text-light);
  margin: 0;
}

/* FAQ Section */
.vip-faq-section {
  background: var(--vip-bg);
  padding: 100px 20px;
}

.vip-faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.vip-faq-item {
  background: var(--vip-bg);
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid var(--vip-border);
  transition: box-shadow 0.3s ease;
}

.vip-faq-item:hover {
  box-shadow: var(--vip-shadow);
}

.vip-faq-question {
  font-size: 18px;
  font-weight: 600;
  color: var(--vip-text);
  margin: 0 0 12px 0;
}

.vip-faq-answer {
  font-size: 15px;
  line-height: 1.7;
  color: var(--vip-text-light);
  margin: 0;
}

/* CTA Section */
.vip-cta-section {
  background: var(--vip-gradient) !important;
  color: #ffffff !important;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

/* Force all text in CTA to be white */
.vip-cta-section h1,
.vip-cta-section h2,
.vip-cta-section h3,
.vip-cta-section p,
.vip-cta-section span {
  color: #ffffff !important;
}

.vip-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(249, 115, 22, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.2) 0%, transparent 50%);
  z-index: 0;
}

.vip-cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.vip-cta-title {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: #ffffff;
}

.vip-cta-text {
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 35px 0;
  color: rgba(255, 255, 255, 0.95) !important;
}

.vip-cta-text strong {
  font-weight: 700;
  color: #ffffff !important;
  opacity: 1;
}

.vip-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.vip-cta-btn {
  padding: 16px 35px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  display: inline-block;
}

.vip-cta-primary {
  background: #ffffff;
  color: var(--vip-primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.vip-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: var(--vip-primary-dark);
}

.vip-cta-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 2px solid #ffffff;
}

.vip-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Hero Title Section */
.vip-hero-title-section {
  background: var(--vip-card-bg);
  padding: 30px 20px;
  text-align: center;
}

.vip-main-h1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--vip-text);
  margin: 0;
  line-height: 1.6;
  text-align: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Why Us Section */
.vip-why-us-section {
  background: var(--vip-bg);
  padding: 100px 20px;
}

.vip-why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 50px;
  align-items: stretch; /* Equal height */
  grid-auto-rows: 1fr; /* Force equal rows */
}

/* Premium Feature Cards - Glassmorphism with Colorful Design */
.vip-why-us-card {
  background: var(--vip-card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 36px 32px;
  border-radius: 20px;
  box-shadow: 
    var(--vip-shadow),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--vip-border);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  height: 100%; /* Equal height */
  display: flex;
  flex-direction: column;
  min-height: 280px; /* Prevent collapse */
}

.vip-why-us-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.vip-why-us-card:nth-child(1)::after {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.25), rgba(118, 75, 162, 0.25));
}

.vip-why-us-card:nth-child(2)::after {
  background: linear-gradient(135deg, rgba(240, 147, 251, 0.25), rgba(79, 172, 254, 0.25));
}

.vip-why-us-card:nth-child(3)::after {
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.25), rgba(0, 242, 254, 0.25));
}

.vip-why-us-card:nth-child(4)::after {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.25), rgba(249, 115, 22, 0.25));
}

.vip-why-us-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--vip-gradient-vibrant);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
  transform: scaleX(0);
  transition: transform 0.4s ease;
  z-index: 1;
}

.vip-why-us-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    var(--vip-shadow-colorful),
    0 0 0 1px rgba(102, 126, 234, 0.2) inset,
    0 0 60px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.3);
}

.vip-why-us-card:hover::after {
  opacity: 1;
}

.vip-why-us-card:hover::before {
  transform: scaleX(1);
}

.vip-why-us-icon {
  width: 70px;
  height: 70px;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vip-gradient-vibrant);
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
  border-radius: 16px;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
  transition: transform 0.25s ease;
}

.vip-why-us-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2;
}

.vip-why-us-card:hover .vip-why-us-icon {
  transform: scale(1.1);
}

.vip-why-us-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--vip-text);
  margin: 0 0 12px 0;
  letter-spacing: -0.2px;
}

.vip-why-us-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--vip-text-light);
  margin: 0;
  font-weight: 400;
}

/* Premium Platform Cards - Vertical Design */
.vip-platforms-section {
  background: var(--vip-bg);
  padding: 100px 20px;
}

.vip-platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.vip-platform-card {
  background: var(--vip-card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 36px 28px;
  border-radius: 16px;
  border: 1px solid var(--vip-border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    var(--vip-shadow),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateZ(0);
  height: 100%; /* Equal height */
  min-height: 240px; /* Prevent collapse */
}

.vip-platform-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--vip-gradient);
  transform: scaleY(0);
  transition: transform 0.25s ease;
}

.vip-platform-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    var(--vip-shadow-hover),
    0 0 0 1px rgba(0, 87, 255, 0.1) inset,
    0 0 40px rgba(0, 87, 255, 0.1);
}

.vip-platform-card:hover::before {
  transform: scaleY(1);
}

.vip-platform-icon {
  width: 56px;
  height: 56px;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  position: relative;
}

/* Platform-specific gradient colors */
.vip-platform-card[data-platform="instagram"] .vip-platform-icon {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  color: #ffffff;
}

.vip-platform-card[data-platform="tiktok"] .vip-platform-icon {
  background: linear-gradient(135deg, #000000 0%, #ff0050 100%);
  color: #ffffff;
}

.vip-platform-card[data-platform="youtube"] .vip-platform-icon {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  color: #ffffff;
}

.vip-platform-card[data-platform="facebook"] .vip-platform-icon {
  background: linear-gradient(135deg, #1877f2 0%, #0d5dbf 100%);
  color: #ffffff;
}

/* Default platform icon style */
.vip-platform-card:not([data-platform]) .vip-platform-icon {
  background: var(--vip-gradient);
  color: #ffffff;
}

.vip-platform-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2.5;
}

.vip-platform-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--vip-text);
  margin: 0 0 12px 0;
  letter-spacing: -0.2px;
}

.vip-platform-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--vip-text-light);
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.vip-platform-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--vip-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: gap 0.25s ease;
}

.vip-platform-link:hover {
  gap: 10px;
  color: var(--vip-primary-dark);
}

/* Categories Section */
.vip-categories-section {
  background: var(--vip-card-bg);
  padding: 100px 20px;
}

.vip-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.vip-category-card {
  background: var(--vip-card-bg);
  padding: 30px;
  border-radius: 15px;
  text-decoration: none;
  display: block;
  border: 2px solid var(--vip-border);
  transition: all 0.3s ease;
  box-shadow: var(--vip-shadow);
}

.vip-category-card:hover {
  transform: translateY(-5px);
  border-color: var(--vip-primary);
  box-shadow: var(--vip-shadow-lg);
}

.vip-category-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--vip-text);
  margin: 0 0 15px 0;
}

.vip-category-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--vip-text-light);
  margin: 0;
}

/* Countries Section */
.vip-countries-section {
  background: var(--vip-bg);
  padding: 100px 20px;
}

.vip-section-subtitle {
  text-align: center;
  font-size: 17px;
  color: var(--vip-text-light);
  margin: 0 0 40px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.vip-countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.vip-country-card {
  background: var(--vip-bg);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid var(--vip-border);
  text-align: center;
  transition: transform 0.3s ease;
}

.vip-country-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--vip-shadow);
}

.vip-country-flag {
  font-size: 48px;
  margin-bottom: 15px;
  display: block;
}

.vip-country-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--vip-text);
  margin: 0 0 12px 0;
}

.vip-country-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--vip-text-light);
  margin: 0;
}

/* Pricing Section */
.vip-pricing-section {
  background: var(--vip-card-bg);
  padding: 100px 20px;
}

.vip-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.vip-pricing-card {
  background: var(--vip-card-bg);
  padding: 40px 30px;
  border-radius: 20px;
  border: 2px solid var(--vip-border);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vip-pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--vip-shadow-lg);
}

.vip-pricing-card.vip-pricing-featured {
  border-color: var(--vip-primary);
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.2);
}

.vip-pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--vip-primary) 0%, var(--vip-secondary) 100%);
  color: #ffffff;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.vip-pricing-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--vip-text);
  margin: 20px 0 15px 0;
}

.vip-pricing-price {
  font-size: 18px;
  color: var(--vip-text-light);
  margin-bottom: 25px;
}

.vip-price-highlight {
  font-size: 32px;
  font-weight: 700;
  color: var(--vip-primary);
  background: linear-gradient(135deg, var(--vip-primary) 0%, var(--vip-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vip-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  text-align: left;
}

.vip-pricing-features li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--vip-text);
}

.vip-pricing-btn {
  display: inline-block;
  padding: 14px 35px;
  background: linear-gradient(135deg, var(--vip-primary) 0%, var(--vip-secondary) 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.vip-pricing-btn:hover {
  transform: translateY(-2px);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
}

/* Popular Packages */
.vip-popular-section {
  background: var(--vip-bg);
  padding: 100px 20px;
}

.vip-popular-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.vip-popular-card {
  background: var(--vip-bg);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid var(--vip-border);
  position: relative;
  transition: transform 0.3s ease;
}

.vip-popular-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--vip-shadow);
}

.vip-popular-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--vip-primary);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

.vip-popular-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--vip-text);
  margin: 0 0 12px 0;
}

.vip-popular-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--vip-text-light);
  margin: 0 0 20px 0;
}

.vip-popular-price {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--vip-primary) 0%, var(--vip-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 20px 0;
}

.vip-popular-btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--vip-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.vip-popular-btn:hover {
  background: var(--vip-primary-dark);
  color: #ffffff;
}

/* Comparison Table */
.vip-comparison-section {
  background: var(--vip-card-bg);
  padding: 100px 20px;
}

.vip-comparison-table {
  background: var(--vip-card-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--vip-shadow);
  margin-top: 40px;
}

.vip-comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: linear-gradient(135deg, var(--vip-primary) 0%, var(--vip-secondary) 100%);
  color: #ffffff;
  font-weight: 600;
  padding: 20px;
}

.vip-comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 20px;
  border-bottom: 1px solid var(--vip-border);
}

.vip-comparison-row:last-child {
  border-bottom: none;
}

.vip-comparison-row:nth-child(even) {
  background: var(--vip-bg);
}

.vip-comparison-col {
  padding: 10px;
  font-size: 15px;
  color: var(--vip-text);
}

.vip-comparison-our {
  color: var(--vip-primary);
  font-weight: 600;
}

/* Use Cases */
.vip-use-cases-section {
  background: var(--vip-bg);
  padding: 100px 20px;
}

.vip-use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.vip-use-case-card {
  background: var(--vip-bg);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid var(--vip-border);
  transition: transform 0.3s ease;
}

.vip-use-case-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--vip-shadow);
}

.vip-use-case-icon {
  font-size: 48px;
  margin-bottom: 15px;
  display: block;
}

.vip-use-case-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--vip-text);
  margin: 0 0 12px 0;
}

.vip-use-case-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--vip-text-light);
  margin: 0;
}

/* Testimonials */
.vip-testimonials-section {
  background: var(--vip-card-bg);
  padding: 100px 20px;
}

.vip-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 50px;
  align-items: stretch; /* Equal height */
}

.vip-testimonial-card {
  background: var(--vip-card-bg);
  padding: 36px 32px;
  border-radius: 20px;
  box-shadow: var(--vip-shadow);
  border: 2px solid var(--vip-border);
  height: 100%; /* Equal height */
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

.vip-testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--vip-gradient-vibrant);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
  transform: scaleX(0);
  transition: transform 0.4s ease;
  z-index: 1;
}

.vip-testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--vip-shadow-colorful);
  border-color: rgba(102, 126, 234, 0.3);
}

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

.vip-testimonial-rating {
  font-size: 18px;
  margin-bottom: 15px;
}

.vip-testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--vip-text);
  margin: 0 0 20px 0;
  font-style: italic;
}

.vip-testimonial-author {
  font-size: 14px;
  color: var(--vip-text-light);
}

/* Trust Section */
.vip-trust-section {
  background: var(--vip-card-bg);
  padding: 100px 20px;
}

.vip-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 50px;
  align-items: stretch; /* Equal height */
}

.vip-trust-card {
  background: var(--vip-card-bg);
  padding: 36px 32px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--vip-border);
  transition: all 0.3s ease;
  box-shadow: var(--vip-shadow);
  height: 100%; /* Equal height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px;
}

.vip-trust-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--vip-shadow);
}

.vip-trust-icon {
  font-size: 48px;
  margin-bottom: 15px;
  display: block;
}

.vip-trust-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--vip-text);
  margin: 0 0 12px 0;
}

.vip-trust-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--vip-text-light);
  margin: 0;
}

/* Stats Section */
.vip-stats-section {
  background: var(--vip-bg);
  padding: 100px 20px;
}

.vip-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 50px;
  align-items: stretch; /* Equal height */
}

.vip-stat-card {
  text-align: center;
  padding: 36px 32px;
  background: var(--vip-card-bg);
  border-radius: 16px;
  border: 1px solid var(--vip-border);
  box-shadow: var(--vip-shadow);
  transition: all 0.3s ease;
  height: 100%; /* Equal height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px;
}

.vip-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vip-shadow-hover);
}

.vip-stat-number {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--vip-primary) 0%, var(--vip-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  display: inline-block;
}

.vip-stat-symbol {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--vip-primary) 0%, var(--vip-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.vip-stat-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--vip-text);
  margin: 10px 0 8px 0;
}

.vip-stat-description {
  font-size: 14px;
  color: var(--vip-text-light);
  margin: 0;
}

/* Blog Section */
.vip-blog-section {
  background: var(--vip-card-bg);
  padding: 80px 20px;
}

.vip-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 50px;
  align-items: stretch; /* Equal height */
}

.vip-blog-card {
  background: var(--vip-card-bg);
  padding: 36px 32px;
  border-radius: 16px;
  border: 1px solid var(--vip-border);
  box-shadow: var(--vip-shadow);
  transition: all 0.3s ease;
  height: 100%; /* Equal height */
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.vip-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--vip-shadow-hover);
  border-color: var(--vip-primary);
}

.vip-blog-category {
  display: inline-block;
  background: var(--vip-gradient);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(0, 87, 255, 0.2);
}

.vip-blog-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--vip-text);
  margin: 0 0 16px 0;
  line-height: 1.4;
  letter-spacing: -0.3px;
}

.vip-blog-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--vip-text-light);
  margin: 0 0 24px 0;
  flex: 1; /* Push link to bottom */
}

.vip-blog-link {
  color: var(--vip-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto; /* Push to bottom */
}

.vip-blog-link:hover {
  color: var(--vip-primary-dark);
  gap: 10px;
  transform: translateX(4px);
}

/* Footer */
.vip-simple-footer {
  background: var(--vip-bg-dark);
  color: #ffffff;
  padding: 30px 20px;
}

.vip-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.vip-footer-text {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.vip-footer-copyright {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.vip-inline-link {
  color: var(--vip-primary);
  text-decoration: none;
  font-weight: 600;
}

.vip-inline-link:hover {
  text-decoration: underline;
}

/* Responsive SEO Sections */
@media (max-width: 1024px) {
  .vip-hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .vip-hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .vip-hero-section {
    padding: 30px 15px 40px;
    min-height: auto;
  }

  .vip-hero-section::after {
    display: none; /* Disable animation on mobile for performance */
  }

  .vip-hero-container {
    padding: 0;
    width: 100%;
  }

  .vip-hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
  }

  .vip-hero-left {
    order: 1;
    width: 100%;
  }

  .vip-hero-right {
    order: 2;
    width: 100%;
    max-width: 100%;
    padding-top: 0;
    display: block;
  }

  .vip-hero-signin-box {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 32px 24px;
  }

  .vip-signin-title {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .vip-signin-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .vip-hero-seo-content {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .vip-hero-stats {
    margin: 20px 0;
    gap: 10px;
  }

  .vip-hero-trust-badges {
    margin: 20px 0;
    flex-wrap: wrap;
    gap: 8px;
  }

  .vip-hero-cta {
    margin-top: 20px;
    flex-direction: column;
    gap: 12px;
  }

  .vip-seo-section {
    padding: 60px 16px;
  }

  .vip-seo-h2 {
    font-size: 28px;
  }

  .vip-why-us-section,
  .vip-features-section,
  .vip-platforms-section,
  .vip-categories-section,
  .vip-countries-section,
  .vip-pricing-section,
  .vip-popular-section,
  .vip-comparison-section,
  .vip-use-cases-section,
  .vip-testimonials-section,
  .vip-faq-section,
  .vip-trust-section,
  .vip-stats-section,
  .vip-blog-section,
  .vip-cheapest-section,
  .vip-top-services-section,
  .vip-highlight-banner-section,
  .vip-intro-section {
    padding: 60px 16px;
  }

  .vip-signin-box {
    padding: 35px 25px;
  }

  .vip-form-input {
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .vip-features-grid,
  .vip-services-grid,
  .vip-why-us-grid,
  .vip-platforms-grid,
  .vip-countries-grid,
  .vip-pricing-grid,
  .vip-popular-grid,
  .vip-use-cases-grid,
  .vip-testimonials-grid,
  .vip-trust-grid,
  .vip-stats-grid,
  .vip-blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .vip-categories-grid {
    grid-template-columns: 1fr;
  }

  .vip-comparison-header,
  .vip-comparison-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .vip-how-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .vip-cta-title {
    font-size: 28px;
  }

  .vip-cta-text {
    font-size: 16px;
  }

  .vip-cta-buttons {
    flex-direction: column;
  }

  .vip-cta-btn {
    width: 100%;
  }

  .vip-footer-content {
    flex-direction: column;
    text-align: center;
  }

  .vip-hero-stats {
    grid-template-columns: 1fr;
  }

  .vip-hero-stat-item {
    padding: 25px;
  }

  .vip-hero-stat-icon {
    width: 60px;
    height: 60px;
    font-size: 40px;
  }

  .vip-hero-stat-number {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .vip-hero-section {
    padding: 20px 12px 30px;
  }

  .vip-hero-content {
    gap: 24px;
  }

  .vip-hero-signin-box {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .vip-signin-title {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .vip-signin-subtitle {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .vip-hero-seo-content {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .vip-hero-stats {
    gap: 8px;
    margin: 16px 0;
  }

  .vip-hero-stat-card {
    padding: 12px 8px;
  }

  .vip-hero-stat-number {
    font-size: 20px;
  }

  .vip-hero-stat-label {
    font-size: 10px;
  }

  .vip-hero-trust-badges {
    gap: 6px;
    margin: 16px 0;
  }

  .vip-hero-trust-badge {
    padding: 8px 12px;
    font-size: 12px;
  }

  .vip-hero-cta {
    margin-top: 16px;
  }

  .vip-seo-h2 {
    font-size: 22px;
  }

  .vip-feature-card,
  .vip-service-card {
    padding: 25px 20px;
  }

  .vip-cta-section {
    padding: 50px 15px;
  }
}

/* Hero CTA Buttons */
.vip-hero-cta {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.vip-hero-btn {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Premium Button Styles */
.vip-hero-btn,
.vip-btn-primary,
.vip-btn-secondary {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  font-family: var(--vip-font-family);
  letter-spacing: var(--vip-letter-spacing);
}

.vip-hero-btn-primary,
.vip-btn-primary {
  background: #0057ff;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 87, 255, 0.3);
}

.vip-hero-btn-primary:hover,
.vip-btn-primary:hover {
  background: #004ae0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 87, 255, 0.4);
  color: #ffffff;
}

.vip-hero-btn-secondary,
.vip-btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.vip-hero-btn-secondary:hover,
.vip-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.8);
  color: #ffffff;
}

/* Cheapest SMM Panel Section */
.vip-cheapest-section {
  background: var(--vip-bg);
}

.vip-section-intro {
  text-align: center;
  font-size: 18px;
  color: var(--vip-text-light);
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.vip-cheapest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.vip-cheapest-card {
  background: var(--vip-card-bg);
  padding: 35px;
  border-radius: 20px;
  border: 2px solid var(--vip-border);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--vip-shadow);
}

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

.vip-cheapest-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--vip-primary) 0%, var(--vip-secondary) 100%);
  border-radius: 20px;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.vip-cheapest-icon svg {
  width: 40px;
  height: 40px;
}

.vip-cheapest-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--vip-text);
  margin: 0 0 15px 0;
}

.vip-cheapest-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--vip-text-light);
  margin: 0;
}

/* Top Services Section */
.vip-top-services-section {
  background: var(--vip-card-bg);
}

.vip-top-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.vip-top-service-card {
  background: var(--vip-bg);
  padding: 30px;
  border-radius: 16px;
  border: 2px solid var(--vip-border);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.vip-top-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--vip-primary) 0%, var(--vip-secondary) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.vip-top-service-card:hover::before {
  transform: scaleX(1);
}

.vip-top-service-card:hover {
  transform: translateY(-5px);
  border-color: var(--vip-primary);
  box-shadow: var(--vip-shadow-lg);
}

.vip-top-service-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--vip-primary) 0%, var(--vip-secondary) 100%);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
}

.vip-top-service-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--vip-text);
  margin: 0 0 12px 0;
}

.vip-top-service-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--vip-text-light);
  margin: 0;
}

/* Long Form Content Section */
.vip-long-content-section {
  background: var(--vip-bg);
}

.vip-long-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--vip-card-bg);
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--vip-shadow);
}

.vip-content-paragraph {
  font-size: 17px;
  line-height: 1.9;
  color: var(--vip-text);
  margin: 0 0 25px 0;
  text-align: justify;
}

.vip-content-h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--vip-text);
  margin: 35px 0 20px 0;
  background: linear-gradient(135deg, var(--vip-primary) 0%, var(--vip-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* API Banner Section */
.vip-api-banner-section {
  background: linear-gradient(135deg, var(--vip-primary) 0%, var(--vip-secondary) 100%) !important;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.vip-api-banner {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 50px 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.vip-api-banner-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
}

.vip-api-banner-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  color: #ffffff;
}

.vip-api-banner-icon svg {
  width: 48px;
  height: 48px;
}

.vip-api-banner-text {
  color: #ffffff !important;
}

.vip-api-banner-title {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #ffffff !important;
  letter-spacing: -0.3px;
}

.vip-api-banner-description {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  color: rgba(255, 255, 255, 0.95) !important;
}

.vip-api-banner-description strong {
  color: #ffffff !important;
  font-weight: 700;
}

.vip-api-banner-btn {
  padding: 14px 28px;
  background: #ffffff;
  color: var(--vip-primary);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.vip-api-banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  color: var(--vip-primary-dark);
}

/* Trust Badges Section */
.vip-trust-badges-section {
  background: var(--vip-card-bg);
  padding: 80px 20px;
}

.vip-trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  margin: 50px 0 40px 0;
  padding: 0;
}

.vip-trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--vip-primary);
  transition: all 0.3s ease;
  padding: 20px;
  border-radius: 12px;
  background: var(--vip-bg);
  min-width: 120px;
}

.vip-trust-badge-item:hover {
  transform: translateY(-6px);
  background: var(--vip-card-bg);
  box-shadow: var(--vip-shadow);
}

.vip-trust-badge-item svg {
  width: 48px;
  height: 48px;
  stroke-width: 2;
}

.vip-trust-badge-item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--vip-text);
  text-align: center;
  letter-spacing: 0.2px;
}

.vip-payment-methods {
  text-align: center;
  margin-top: 60px;
  padding-top: 50px;
  border-top: 2px solid var(--vip-border);
}

.vip-payment-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--vip-text);
  margin: 0 0 32px 0;
  letter-spacing: -0.2px;
}

.vip-payment-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.vip-payment-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vip-card-bg);
  border-radius: 16px;
  color: var(--vip-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--vip-border);
  box-shadow: var(--vip-shadow);
}

.vip-payment-icon:hover {
  transform: translateY(-6px) scale(1.05);
  border-color: var(--vip-primary);
  box-shadow: var(--vip-shadow-hover);
  background: var(--vip-bg);
}

.vip-payment-icon svg {
  width: 32px;
  height: 32px;
}

/* Premium Highlight Banner */
.vip-highlight-banner-section {
  background: var(--vip-card-bg);
  padding: 80px 20px;
}

.vip-highlight-banner {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--vip-card-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--vip-shadow-lg);
  border: 1px solid var(--vip-border);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}

.vip-highlight-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vip-icon-bg);
  border-radius: 16px;
  color: var(--vip-primary);
  flex-shrink: 0;
}

.vip-highlight-icon svg {
  width: 56px;
  height: 56px;
  stroke-width: 2;
}

.vip-highlight-content {
  color: var(--vip-text);
}

.vip-highlight-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: var(--vip-text);
  letter-spacing: -0.4px;
  line-height: 1.3;
}

.vip-highlight-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--vip-text-light);
  margin: 0 0 24px 0;
}

.vip-highlight-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--vip-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.25s ease;
}

.vip-highlight-btn:hover {
  background: var(--vip-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 87, 255, 0.4);
  color: #ffffff;
}

/* Sign In Section */
.vip-signin-section {
  background: var(--vip-bg);
  padding: 80px 20px;
}

.vip-signin-box-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--vip-text);
  margin: 0 0 8px 0;
  letter-spacing: -0.3px;
}

.vip-signin-box-subtitle {
  font-size: 16px;
  color: var(--vip-text-light);
  margin: 0 0 30px 0;
}

/* Premium Footer */
.vip-footer {
  background: var(--vip-bg-dark);
  color: #ffffff;
  padding: 80px 40px 30px;
}

.vip-footer-main {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vip-footer-section h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 24px 0;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.vip-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vip-footer-links li {
  margin-bottom: 12px;
}

.vip-footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.vip-footer-links a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.vip-footer-description {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.vip-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.vip-footer-copyright {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* Top Services Section */
.vip-top-services-section {
  background: var(--vip-bg);
  padding: 100px 20px;
}

.vip-top-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.vip-top-service-card {
  background: var(--vip-card-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 32px 28px;
  border-radius: 16px;
  border: 1px solid var(--vip-border);
  transition: all 0.25s ease;
  box-shadow: var(--vip-shadow);
  position: relative;
  overflow: hidden;
  height: 100%; /* Equal height */
  display: flex;
  flex-direction: column;
  min-height: 200px;
}

.vip-top-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--vip-gradient);
  transform: scaleY(0);
  transition: transform 0.25s ease;
}

.vip-top-service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--vip-shadow-hover);
}

.vip-top-service-card:hover::before {
  transform: scaleY(1);
}

.vip-top-service-badge {
  display: inline-block;
  background: var(--vip-icon-bg);
  color: var(--vip-primary);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.vip-top-service-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--vip-text);
  margin: 0 0 10px 0;
  letter-spacing: -0.2px;
}

.vip-top-service-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--vip-text-light);
  margin: 0;
}

/* Cheapest Section */
.vip-cheapest-section {
  background: var(--vip-bg);
  padding: 100px 20px;
}

.vip-cheapest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 50px;
}

.vip-cheapest-card {
  background: var(--vip-card-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 40px 32px;
  border-radius: 16px;
  border: 1px solid var(--vip-border);
  text-align: left;
  transition: all 0.25s ease;
  box-shadow: var(--vip-shadow);
  position: relative;
  height: 100%; /* Equal height */
  display: flex;
  flex-direction: column;
  min-height: 240px;
}

.vip-cheapest-card:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: var(--vip-shadow-hover);
  border-color: var(--vip-primary);
}

.vip-cheapest-icon {
  width: 64px;
  height: 64px;
  margin: 0 0 24px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 87, 255, 0.1) 0%, rgba(0, 87, 255, 0.3) 100%);
  border-radius: 8px;
  color: var(--vip-primary);
}

.vip-cheapest-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2;
}

.vip-cheapest-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--vip-text);
  margin: 0 0 12px 0;
  letter-spacing: -0.2px;
}

.vip-cheapest-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--vip-text-light);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .vip-hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .vip-hero-left {
    order: 1;
  }

  .vip-hero-right {
    order: 2;
    max-width: 100%;
  }

  .vip-hero-signin-box {
    max-width: 100%;
    padding: 32px 24px;
  }

  .vip-features-grid {
    grid-template-columns: 1fr;
  }

  .vip-highlight-banner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .vip-highlight-icon {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .vip-hero-section {
    min-height: auto;
    padding: 30px 15px 40px;
  }

  .vip-hero-container {
    padding: 0;
    width: 100%;
  }

  .vip-hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
  }

  .vip-hero-left {
    order: 1;
    width: 100%;
  }

  .vip-hero-right {
    order: 2;
    width: 100%;
    max-width: 100%;
    padding-top: 0;
    display: block;
  }

  .vip-hero-signin-box {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 32px 24px;
  }

  .vip-signin-title {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .vip-signin-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .vip-hero-seo-content {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .vip-hero-stats {
    margin: 20px 0;
    gap: 10px;
  }

  .vip-hero-trust-badges {
    margin: 20px 0;
    flex-wrap: wrap;
    gap: 8px;
  }

  .vip-hero-cta {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .vip-navbar-container {
    padding: 12px 20px;
  }

  .vip-navbar-menu {
    gap: 12px;
    flex-wrap: wrap;
  }

  .vip-nav-link {
    font-size: 13px;
    padding: 6px 0;
  }

  .vip-nav-btn {
    padding: 8px 16px !important;
    font-size: 13px;
  }

  .vip-hero-signin-box {
    padding: 28px 20px;
  }

  .vip-hero-btn {
    width: 100%;
    justify-content: center;
  }

  .vip-why-us-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vip-why-us-icon {
    width: 56px;
    height: 56px;
  }

  .vip-why-us-icon svg {
    width: 28px;
    height: 28px;
  }

  .vip-features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vip-feature-icon {
    width: 56px;
    height: 56px;
  }

  .vip-feature-icon svg {
    width: 28px;
    height: 28px;
  }

  .vip-platforms-grid {
    grid-template-columns: 1fr;
  }

  .vip-top-services-grid {
    grid-template-columns: 1fr;
  }

  .vip-cheapest-grid {
    grid-template-columns: 1fr;
  }

  .vip-long-content {
    padding: 24px 16px;
  }

  .vip-content-paragraph {
    font-size: 16px;
    text-align: left;
  }

  .vip-api-banner-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .vip-api-banner-btn {
    width: 100%;
  }

  .vip-highlight-banner {
    padding: 32px 24px;
  }

  .vip-highlight-title {
    font-size: 24px;
  }

  .vip-trust-badges {
    gap: 20px;
  }

  .vip-footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vip-footer {
    padding: 60px 20px 30px;
  }

  .vip-seo-h2 {
    font-size: 24px;
  }

  .vip-highlight-banner {
    padding: 32px 24px;
  }

  .vip-highlight-title {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .vip-hero-section {
    padding: 40px 16px;
  }

  .vip-signin-title {
    font-size: 28px;
  }

  .vip-signin-subtitle {
    font-size: 16px;
  }

  .vip-hero-right {
    height: auto;
    min-height: auto;
  }

  .vip-why-us-card,
  .vip-feature-card,
  .vip-platform-card,
  .vip-top-service-card,
  .vip-cheapest-card {
    padding: 24px 20px;
  }

  .vip-why-us-icon,
  .vip-feature-icon,
  .vip-cheapest-icon {
    width: 48px;
    height: 48px;
  }

  .vip-why-us-icon svg,
  .vip-feature-icon svg,
  .vip-cheapest-icon svg {
    width: 24px;
    height: 24px;
  }

  .vip-seo-section {
    padding: 60px 16px;
  }

  .vip-seo-h2 {
    font-size: 24px;
  }

  .vip-highlight-banner {
    padding: 24px 20px;
  }

  .vip-highlight-icon {
    width: 64px;
    height: 64px;
  }

  .vip-highlight-icon svg {
    width: 40px;
    height: 40px;
  }

  .vip-highlight-title {
    font-size: 20px;
  }

  .vip-highlight-text {
    font-size: 15px;
  }
}

/* Additional Premium Features CSS */

/* Stats Section Enhancements */
.vip-stats-header {
  text-align: center;
  margin-bottom: 50px;
}

.vip-stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vip-icon-bg);
  border-radius: 12px;
  color: var(--vip-primary);
}

.vip-stat-live {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--vip-text-light);
  font-weight: 500;
}

.vip-live-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

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

/* Recent Orders Feed */
.vip-recent-orders-section {
  background: var(--vip-card-bg);
}

.vip-recent-orders-feed {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vip-order-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--vip-bg);
  border-radius: 12px;
  border: 1px solid var(--vip-border);
  transition: all 0.3s ease;
  animation: slideInRight 0.5s ease-out;
}

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

.vip-order-item:hover {
  transform: translateX(4px);
  box-shadow: var(--vip-shadow);
  border-color: var(--vip-primary);
}

.vip-order-icon {
  font-size: 32px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vip-icon-bg);
  border-radius: 10px;
  flex-shrink: 0;
}

.vip-order-content {
  flex: 1;
}

.vip-order-service {
  font-size: 16px;
  font-weight: 600;
  color: var(--vip-text);
  margin: 0 0 4px 0;
}

.vip-order-details {
  font-size: 14px;
  color: var(--vip-text-light);
  margin: 0;
}

.vip-order-time {
  color: var(--vip-primary);
  font-weight: 500;
}

.vip-order-status {
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.vip-order-completed {
  background: #f0fdf4;
  color: #10b981;
}

.vip-order-processing {
  background: #fef3c7;
  color: #f59e0b;
}

.vip-recent-orders-footer {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--vip-border);
}

.vip-recent-orders-note {
  font-size: 15px;
  color: var(--vip-text-light);
  margin: 0;
}

/* FAQ Accordion */
.vip-faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 20px;
}

.vip-faq-question {
  font-size: 18px;
  font-weight: 600;
  color: var(--vip-text);
  margin: 0;
  flex: 1;
}

.vip-faq-icon {
  width: 24px;
  height: 24px;
  color: var(--vip-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.vip-faq-item[aria-expanded="true"] .vip-faq-icon {
  transform: rotate(180deg);
}

.vip-faq-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 0 0 0;
}

.vip-faq-item[aria-expanded="true"] .vip-faq-answer-wrapper {
  max-height: 500px;
  padding: 20px 0 0 0;
}

/* Video Section */
.vip-video-section {
  background: var(--vip-bg);
}

.vip-video-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.vip-video-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--vip-text-light);
  margin: 0 0 30px 0;
}

.vip-video-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.vip-video-features li {
  padding: 10px 0;
  font-size: 15px;
  color: var(--vip-text);
  border-bottom: 1px solid var(--vip-border);
}

.vip-video-features li:last-child {
  border-bottom: none;
}

.vip-video-cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--vip-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 87, 255, 0.3);
}

.vip-video-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 87, 255, 0.4);
}

.vip-video-placeholder {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: linear-gradient(135deg, var(--vip-primary) 0%, var(--vip-secondary) 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--vip-shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.vip-video-placeholder:hover {
  transform: scale(1.02);
}

.vip-video-play-btn {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vip-primary);
  transition: all 0.3s ease;
  z-index: 2;
}

.vip-video-placeholder:hover .vip-video-play-btn {
  transform: scale(1.1);
  background: #ffffff;
}

.vip-video-placeholder-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  z-index: 2;
}

/* Pricing Calculator */
.vip-calculator-section {
  background: var(--vip-card-bg);
}

.vip-calculator-box {
  max-width: 600px;
  margin: 40px auto 0;
  background: var(--vip-bg);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--vip-border);
  box-shadow: var(--vip-shadow);
}

.vip-calculator-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vip-calculator-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vip-calculator-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--vip-text);
}

.vip-calculator-select,
.vip-calculator-input {
  padding: 14px 16px;
  font-size: 15px;
  border: 2px solid var(--vip-border);
  border-radius: 12px;
  background: var(--vip-card-bg);
  color: var(--vip-text);
  transition: all 0.3s ease;
  font-family: var(--vip-font-family);
}

.vip-calculator-select:focus,
.vip-calculator-input:focus {
  outline: none;
  border-color: var(--vip-primary);
  box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.1);
}

.vip-calculator-result {
  margin-top: 20px;
  padding: 24px;
  background: var(--vip-gradient);
  border-radius: 16px;
  text-align: center;
}

.vip-calculator-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.vip-calculator-price-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.vip-calculator-price-value {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
}

.vip-calculator-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Fix for equal height cards on all devices */
@media (min-width: 769px) {
  .vip-features-grid,
  .vip-why-us-grid,
  .vip-platforms-grid,
  .vip-stats-grid,
  .vip-testimonials-grid,
  .vip-trust-grid {
    grid-auto-rows: 1fr;
  }
}

/* Special Design Modules - Google Friendly */
.vip-design-module {
  background: linear-gradient(135deg, rgba(0, 87, 255, 0.03) 0%, rgba(0, 198, 255, 0.03) 100%);
  border-radius: 20px;
  padding: 40px;
  margin: 40px 0;
  border: 1px solid rgba(0, 87, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.vip-design-module::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--vip-gradient);
  z-index: 1;
}

.vip-design-module-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--vip-text);
  margin: 0 0 16px 0;
  letter-spacing: -0.3px;
}

.vip-design-module-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--vip-text-light);
  margin: 0;
}

/* Grid Fixes - Prevent Shifting - Equal Height Cards */
.vip-platforms-grid,
.vip-stats-grid,
.vip-testimonials-grid,
.vip-trust-grid,
.vip-blog-grid,
.vip-use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch; /* Equal height */
}

.vip-platform-card,
.vip-stat-card,
.vip-testimonial-card,
.vip-trust-card,
.vip-blog-card,
.vip-use-case-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Section Background Gradients - Subtle Color Transitions */
.vip-seo-section:nth-child(3n+1) {
  background: linear-gradient(180deg, var(--vip-bg) 0%, rgba(244, 247, 255, 0.5) 100%);
}

.vip-seo-section:nth-child(3n+2) {
  background: linear-gradient(180deg, var(--vip-card-bg) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.vip-seo-section:nth-child(3n+3) {
  background: linear-gradient(180deg, var(--vip-bg) 0%, rgba(234, 241, 255, 0.3) 100%);
}

/* Prevent Layout Shift */
.vip-feature-card,
.vip-why-us-card,
.vip-platform-card,
.vip-stat-card,
.vip-testimonial-card,
.vip-trust-card,
.vip-blog-card,
.vip-use-case-card {
  min-height: 200px; /* Prevent collapse */
  /* Removed will-change for better performance */
}

/* Responsive Additions */
@media (max-width: 768px) {
  .vip-video-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vip-calculator-box {
    padding: 30px 24px;
  }

  .vip-recent-orders-feed {
    gap: 12px;
  }

  .vip-order-item {
    padding: 16px;
    flex-wrap: wrap;
  }

  .vip-order-status {
    width: 100%;
    text-align: center;
    margin-top: 8px;
  }
}

/* Premium Order Form Section - Optimized for Performance */
.vip-order-section {
  padding: 40px 20px;
  background: var(--vip-bg);
  min-height: calc(100vh - 72px);
  margin-top: 72px; /* Navbar height */
}

.vip-order-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.vip-order-box {
  background: var(--vip-card-bg);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--vip-border);
  /* Removed backdrop-filter and complex transitions for better performance */
}

.vip-order-header {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--vip-border);
}

.vip-order-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--vip-primary);
  margin: 0 0 8px 0;
  letter-spacing: -0.3px;
}

.vip-order-subtitle {
  font-size: 14px;
  color: var(--vip-text-light);
  margin: 0;
  line-height: 1.5;
}

.vip-order-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Form Label with Icon - Optimized */
.vip-form-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--vip-text);
  margin-bottom: 8px;
}

.vip-label-icon {
  color: var(--vip-primary);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

/* Select Wrapper */
.vip-select-wrapper {
  position: relative;
}

.vip-form-select {
  width: 100%;
  padding: 12px 40px 12px 14px;
  font-size: 15px;
  border: 2px solid var(--vip-border);
  border-radius: 10px;
  background: var(--vip-card-bg);
  color: var(--vip-text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  outline: none;
  font-weight: 400;
  font-family: var(--vip-font-family);
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%230057ff' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.vip-form-select:focus {
  border-color: var(--vip-primary);
  box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.1);
  /* Removed transform for better performance */
}

.vip-select-arrow {
  display: none; /* Hidden - using background-image instead */
}

/* Search Wrapper */
.vip-search-wrapper {
  position: relative;
}

.vip-search-wrapper .vip-input-wrapper {
  position: relative;
}

/* Charge Input - Optimized */
.vip-charge-wrapper {
  position: relative;
}

.vip-form-input-charge {
  padding-right: 42px;
  font-size: 18px;
  font-weight: 700;
  color: var(--vip-primary);
  background: var(--vip-icon-bg);
  border-color: var(--vip-primary);
  border-width: 2px;
}

.vip-charge-badge {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vip-primary);
  border-radius: 6px;
  color: #ffffff;
  pointer-events: none;
}

/* Service Description - Optimized */
.vip-service-description {
  background: var(--vip-icon-bg);
  border: 1px solid var(--vip-border);
  border-radius: 8px;
  padding: 14px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--vip-text);
  margin-top: 6px;
}

/* Order Success Details */
.vip-order-success-details {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.vip-order-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.vip-order-detail-label {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  min-width: 120px;
}

.vip-order-detail-value {
  color: #ffffff;
  font-weight: 500;
}

/* Alert Enhancements - Optimized */
.vip-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 10px;
  margin-bottom: 20px;
  position: relative;
  /* Removed animation for better performance */
}

.vip-alert-error {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
  border: 2px solid rgba(239, 68, 68, 0.3);
  color: #dc2626;
}

.vip-alert-success {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.1) 100%);
  border: 2px solid rgba(34, 197, 94, 0.3);
  color: #16a34a;
}

.vip-alert-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.vip-alert-content {
  flex: 1;
}

.vip-alert-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: inherit;
}

.vip-alert-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: inherit;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vip-alert-close:hover {
  opacity: 1;
}

/* Submit Button - Optimized */
.vip-btn-submit {
  margin-top: 4px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 87, 255, 0.2);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.vip-btn-submit:hover {
  box-shadow: 0 4px 12px rgba(0, 87, 255, 0.3);
  /* Removed transform for better performance */
}

/* New Order Text Section */
.vip-neworder-text-section {
  background: var(--vip-card-bg);
  padding: 60px 20px;
}

.vip-neworder-text-box {
  max-width: 900px;
  margin: 0 auto;
  background: var(--vip-bg);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--vip-border);
  box-shadow: var(--vip-shadow);
  font-size: 15px;
  line-height: 1.8;
  color: var(--vip-text);
}

/* Dynamic Fields Styling - Optimized */
#fields .vip-form-group {
  margin-bottom: 0;
}

#fields input,
#fields textarea,
#fields select {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  border: 2px solid var(--vip-border);
  border-radius: 10px;
  background: var(--vip-card-bg);
  color: var(--vip-text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  outline: none;
  font-family: var(--vip-font-family);
}

#fields input:focus,
#fields textarea:focus,
#fields select:focus {
  border-color: var(--vip-primary);
  box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.1);
}

/* Responsive Order Form - Optimized */
@media (max-width: 768px) {
  .vip-order-section {
    padding: 24px 16px;
    margin-top: 100px; /* Navbar height on mobile (may be taller due to wrap) */
  }

  .vip-order-box {
    padding: 24px 20px;
    border-radius: 12px;
  }

  .vip-order-title {
    font-size: 24px;
  }

  .vip-order-subtitle {
    font-size: 13px;
  }

  .vip-order-form {
    gap: 16px;
  }

  .vip-order-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
  }

  .vip-order-detail-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .vip-order-detail-label {
    min-width: auto;
  }
}

/* Removed slideDown animation for better performance */


 
/* ============================================
   ORDER PAGE ADDITIONAL SECTIONS
   ============================================ */

/* Quick Actions Section */
.vip-order-actions-section {
  padding: 60px 20px;
  background: var(--vip-bg);
}

.vip-order-actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.vip-action-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--vip-card-bg);
  border-radius: 16px;
  border: 2px solid var(--vip-border);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--vip-shadow);
  position: relative;
  overflow: hidden;
}

.vip-action-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--vip-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

.vip-action-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 87, 255, 0.15);
  border-color: var(--vip-primary);
}

.vip-action-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--vip-icon-bg);
  color: var(--vip-primary);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.vip-action-primary .vip-action-icon {
  background: linear-gradient(135deg, rgba(0, 87, 255, 0.1) 0%, rgba(0, 198, 255, 0.1) 100%);
}

.vip-action-secondary .vip-action-icon {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.1) 100%);
  color: #16a34a;
}

.vip-action-tertiary .vip-action-icon {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(234, 88, 12, 0.1) 100%);
  color: #ea580c;
}

.vip-action-quaternary .vip-action-icon {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
  color: #9333ea;
}

.vip-action-card:hover .vip-action-icon {
  transform: scale(1.1) rotate(5deg);
}

.vip-action-content {
  flex: 1;
}

.vip-action-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--vip-text);
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.vip-action-text {
  font-size: 14px;
  color: var(--vip-text-light);
  margin: 0;
  line-height: 1.5;
}

.vip-action-arrow {
  color: var(--vip-text-light);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.vip-action-card:hover .vip-action-arrow {
  color: var(--vip-primary);
  transform: translateX(4px);
}

/* Account Stats Section */
.vip-order-stats-section {
  padding: 40px 20px;
  background: linear-gradient(135deg, rgba(0, 87, 255, 0.03) 0%, rgba(0, 198, 255, 0.03) 100%);
}

.vip-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.vip-stat-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  background: var(--vip-card-bg);
  border-radius: 16px;
  border: 2px solid var(--vip-border);
  box-shadow: var(--vip-shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.vip-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--vip-gradient);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}

.vip-stat-card:hover::before {
  transform: scaleY(1);
}

.vip-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 87, 255, 0.12);
  border-color: var(--vip-primary);
}

.vip-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--vip-icon-bg);
  color: var(--vip-primary);
  flex-shrink: 0;
}

.vip-stat-balance .vip-stat-icon {
  background: linear-gradient(135deg, rgba(0, 87, 255, 0.1) 0%, rgba(0, 198, 255, 0.1) 100%);
}

.vip-stat-orders .vip-stat-icon {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.1) 100%);
  color: #16a34a;
}

.vip-stat-tickets .vip-stat-icon {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(234, 88, 12, 0.1) 100%);
  color: #ea580c;
}

.vip-stat-content {
  flex: 1;
}

.vip-stat-label {
  font-size: 14px;
  color: var(--vip-text-light);
  margin-bottom: 8px;
  font-weight: 500;
}

.vip-stat-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--vip-text);
  line-height: 1.2;
}

.vip-stat-link {
  font-size: 14px;
  color: var(--vip-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.vip-stat-link:hover {
  color: var(--vip-secondary);
  transform: translateX(4px);
}

/* Popular Services Section */
.vip-order-popular-section {
  padding: 60px 20px;
  background: var(--vip-card-bg);
}

.vip-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.vip-section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--vip-text);
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.vip-section-subtitle {
  font-size: 16px;
  color: var(--vip-text-light);
  margin: 0;
  line-height: 1.6;
}

.vip-popular-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.vip-popular-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  background: var(--vip-bg);
  border-radius: 16px;
  border: 2px solid var(--vip-border);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--vip-shadow);
}

.vip-popular-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 87, 255, 0.15);
  border-color: var(--vip-primary);
}

.vip-popular-service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.vip-icon-instagram {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  color: #ffffff;
}

.vip-icon-tiktok {
  background: linear-gradient(135deg, #000000 0%, #ff0050 100%);
  color: #ffffff;
}

.vip-icon-youtube {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  color: #ffffff;
}

.vip-icon-facebook {
  background: linear-gradient(135deg, #1877f2 0%, #0d5fbd 100%);
  color: #ffffff;
}

.vip-popular-service-card:hover .vip-popular-service-icon {
  transform: scale(1.1) rotate(5deg);
}

.vip-popular-service-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--vip-text);
  margin: 0 0 8px 0;
}

.vip-popular-service-text {
  font-size: 14px;
  color: var(--vip-text-light);
  margin: 0;
  line-height: 1.5;
}

/* Help & Support Section */
.vip-order-help-section {
  padding: 60px 20px;
  background: var(--vip-bg);
}

.vip-help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.vip-help-card {
  padding: 40px 32px;
  background: var(--vip-card-bg);
  border-radius: 16px;
  border: 2px solid var(--vip-border);
  box-shadow: var(--vip-shadow);
  text-align: center;
  transition: all 0.3s ease;
}

.vip-help-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 87, 255, 0.12);
  border-color: var(--vip-primary);
}

.vip-help-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: var(--vip-icon-bg);
  color: var(--vip-primary);
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.vip-help-card:hover .vip-help-icon {
  transform: scale(1.1);
  background: var(--vip-gradient);
  color: #ffffff;
}

.vip-help-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--vip-text);
  margin: 0 0 12px 0;
}

.vip-help-text {
  font-size: 15px;
  color: var(--vip-text-light);
  margin: 0 0 24px 0;
  line-height: 1.6;
}

.vip-help-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--vip-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.vip-help-link:hover {
  color: var(--vip-secondary);
  gap: 12px;
}

/* Responsive Order Page Sections */
@media (max-width: 768px) {
  .vip-order-actions-section,
  .vip-order-stats-section,
  .vip-order-popular-section,
  .vip-order-help-section {
    padding: 40px 16px;
  }

  .vip-order-section {
    margin-top: 72px; /* Ensure navbar doesn't overlap on mobile */
  }

  .vip-order-actions-grid,
  .vip-stats-grid,
  .vip-popular-services-grid,
  .vip-help-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .vip-action-card {
    padding: 20px;
  }

  .vip-stat-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .vip-stat-content {
    text-align: center;
  }

  .vip-stat-link {
    margin-top: 12px;
  }

  .vip-section-title {
    font-size: 28px;
  }

  .vip-popular-service-icon {
    width: 64px;
    height: 64px;
  }

  .vip-help-card {
    padding: 32px 24px;
  }
}

/* ============================================
   BLOG PAGE STYLES
   ============================================ */

/* Blog Section */
.vip-blog-section {
  padding: 80px 20px;
  background: var(--vip-bg);
  min-height: 60vh;
}

.vip-blog-header {
  text-align: center;
  margin-bottom: 60px;
}

.vip-blog-main-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--vip-text);
  margin: 0 0 16px 0;
  line-height: 1.2;
  background: var(--vip-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vip-blog-subtitle {
  font-size: 18px;
  color: var(--vip-text-light);
  margin: 0;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Blog Content Box (Single Post) */
.vip-blog-content-box {
  max-width: 900px;
  margin: 0 auto;
  background: var(--vip-card-bg);
  padding: 50px 40px;
  border-radius: 20px;
  border: 2px solid var(--vip-border);
  box-shadow: var(--vip-shadow-lg);
}

.vip-blog-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--vip-text);
}

.vip-blog-content h1,
.vip-blog-content h2,
.vip-blog-content h3,
.vip-blog-content h4 {
  color: var(--vip-text);
  margin-top: 32px;
  margin-bottom: 16px;
  font-weight: 700;
}

.vip-blog-content h1 {
  font-size: 32px;
}

.vip-blog-content h2 {
  font-size: 28px;
}

.vip-blog-content h3 {
  font-size: 24px;
}

.vip-blog-content p {
  margin-bottom: 20px;
}

.vip-blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 24px 0;
  box-shadow: var(--vip-shadow);
}

.vip-blog-content a {
  color: var(--vip-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.vip-blog-content a:hover {
  color: var(--vip-secondary);
  text-decoration: underline;
}

.vip-blog-content ul,
.vip-blog-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.vip-blog-content li {
  margin-bottom: 10px;
}

.vip-blog-content blockquote {
  border-left: 4px solid var(--vip-primary);
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
  color: var(--vip-text-light);
  background: var(--vip-icon-bg);
  padding: 20px;
  border-radius: 8px;
}

/* Blog Posts Grid */
.vip-blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto 60px;
}

.vip-blog-post-card {
  background: var(--vip-card-bg);
  border-radius: 20px;
  border: 2px solid var(--vip-border);
  box-shadow: var(--vip-shadow);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.vip-blog-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 87, 255, 0.15);
  border-color: var(--vip-primary);
}

.vip-blog-post-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: var(--vip-icon-bg);
}

.vip-blog-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vip-blog-post-card:hover .vip-blog-post-image img {
  transform: scale(1.1);
}

.vip-blog-post-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vip-blog-post-card:hover .vip-blog-post-overlay {
  opacity: 1;
}

.vip-blog-post-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vip-blog-post-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--vip-text);
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.vip-blog-post-title a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

.vip-blog-post-title a:hover {
  color: var(--vip-primary);
}

.vip-blog-post-excerpt {
  font-size: 15px;
  color: var(--vip-text-light);
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}

.vip-blog-post-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--vip-border);
}

.vip-blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--vip-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.vip-blog-read-more:hover {
  color: var(--vip-secondary);
  gap: 12px;
}

.vip-blog-read-more svg {
  transition: transform 0.3s ease;
}

.vip-blog-read-more:hover svg {
  transform: translateX(4px);
}

/* Blog Pagination */
.vip-blog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.vip-pagination-nav {
  display: inline-block;
}

.vip-pagination-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vip-pagination-item {
  margin: 0;
}

.vip-pagination-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--vip-text);
  text-decoration: none;
  background: var(--vip-card-bg);
  border: 2px solid var(--vip-border);
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: var(--vip-shadow);
}

.vip-pagination-link:hover {
  background: var(--vip-icon-bg);
  border-color: var(--vip-primary);
  color: var(--vip-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 87, 255, 0.15);
}

.vip-pagination-active {
  background: var(--vip-gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(0, 87, 255, 0.3);
}

.vip-pagination-active:hover {
  background: var(--vip-gradient);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 87, 255, 0.4);
}

.vip-pagination-prev,
.vip-pagination-next {
  font-weight: 600;
}

.vip-pagination-prev svg,
.vip-pagination-next svg {
  transition: transform 0.3s ease;
}

.vip-pagination-prev:hover svg {
  transform: translateX(-4px);
}

.vip-pagination-next:hover svg {
  transform: translateX(4px);
}

/* RTL Support for Pagination */
.rtl-pagination .vip-pagination-list {
  direction: rtl;
}

/* Responsive Blog Page */
@media (max-width: 1024px) {
  .vip-blog-posts-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .vip-blog-section {
    padding: 60px 16px;
  }

  .vip-blog-main-title {
    font-size: 32px;
  }

  .vip-blog-subtitle {
    font-size: 16px;
  }

  .vip-blog-content-box {
    padding: 32px 24px;
    border-radius: 16px;
  }

  .vip-blog-posts-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vip-blog-post-image {
    height: 200px;
  }

  .vip-blog-post-content {
    padding: 24px;
  }

  .vip-blog-post-title {
    font-size: 20px;
  }

  .vip-pagination-list {
    flex-wrap: wrap;
    gap: 6px;
  }

  .vip-pagination-link {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
  }

  .vip-pagination-prev span,
  .vip-pagination-next span {
    display: none;
  }
}

@media (max-width: 480px) {
  .vip-blog-main-title {
    font-size: 28px;
  }

  .vip-blog-content-box {
    padding: 24px 20px;
  }

  .vip-blog-post-image {
    height: 180px;
  }

  .vip-blog-post-content {
    padding: 20px;
  }
}

/* ============================================
   BLOG POST PAGE STYLES
   ============================================ */

/* Blog Post Section */
.vip-blogpost-section {
  padding: 40px 20px 80px;
  background: var(--vip-bg);
  min-height: 60vh;
}

.vip-blogpost-article {
  max-width: 900px;
  margin: 0 auto;
  background: var(--vip-card-bg);
  border-radius: 20px;
  border: 2px solid var(--vip-border);
  box-shadow: var(--vip-shadow-lg);
  overflow: hidden;
}

/* Blog Post Hero Image */
.vip-blogpost-hero {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: var(--vip-icon-bg);
}

.vip-blogpost-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vip-blogpost-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
}

/* Blog Post Content Wrapper */
.vip-blogpost-content-wrapper {
  padding: 50px 50px 40px;
}

/* Blog Post Header */
.vip-blogpost-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--vip-border);
}

.vip-blogpost-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--vip-text);
  margin: 0;
  line-height: 1.2;
  background: var(--vip-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Blog Post Content */
.vip-blogpost-content {
  font-size: 17px;
  line-height: 1.9;
  color: var(--vip-text);
  margin-bottom: 40px;
}

.vip-blogpost-content h1,
.vip-blogpost-content h2,
.vip-blogpost-content h3,
.vip-blogpost-content h4,
.vip-blogpost-content h5,
.vip-blogpost-content h6 {
  color: var(--vip-text);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.vip-blogpost-content h1 {
  font-size: 36px;
}

.vip-blogpost-content h2 {
  font-size: 32px;
}

.vip-blogpost-content h3 {
  font-size: 28px;
}

.vip-blogpost-content h4 {
  font-size: 24px;
}

.vip-blogpost-content h5 {
  font-size: 20px;
}

.vip-blogpost-content h6 {
  font-size: 18px;
}

.vip-blogpost-content p {
  margin-bottom: 24px;
}

.vip-blogpost-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 32px 0;
  box-shadow: var(--vip-shadow-lg);
  border: 2px solid var(--vip-border);
}

.vip-blogpost-content a {
  color: var(--vip-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.vip-blogpost-content a:hover {
  color: var(--vip-secondary);
  border-bottom-color: var(--vip-secondary);
}

.vip-blogpost-content ul,
.vip-blogpost-content ol {
  margin: 24px 0;
  padding-left: 32px;
}

.vip-blogpost-content li {
  margin-bottom: 12px;
  line-height: 1.8;
}

.vip-blogpost-content ul li {
  list-style-type: disc;
}

.vip-blogpost-content ol li {
  list-style-type: decimal;
}

.vip-blogpost-content blockquote {
  border-left: 4px solid var(--vip-primary);
  padding: 24px 28px;
  margin: 32px 0;
  font-style: italic;
  font-size: 18px;
  color: var(--vip-text-light);
  background: var(--vip-icon-bg);
  border-radius: 12px;
  position: relative;
}

.vip-blogpost-content blockquote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 60px;
  color: var(--vip-primary);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.vip-blogpost-content code {
  background: var(--vip-icon-bg);
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 15px;
  font-family: 'Courier New', monospace;
  color: var(--vip-primary);
  border: 1px solid var(--vip-border);
}

.vip-blogpost-content pre {
  background: var(--vip-icon-bg);
  padding: 24px;
  border-radius: 12px;
  overflow-x: auto;
  margin: 24px 0;
  border: 2px solid var(--vip-border);
}

.vip-blogpost-content pre code {
  background: none;
  padding: 0;
  border: none;
  color: var(--vip-text);
}

.vip-blogpost-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  box-shadow: var(--vip-shadow);
  border-radius: 12px;
  overflow: hidden;
}

.vip-blogpost-content table th,
.vip-blogpost-content table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--vip-border);
}

.vip-blogpost-content table th {
  background: var(--vip-icon-bg);
  font-weight: 700;
  color: var(--vip-text);
}

.vip-blogpost-content table tr:last-child td {
  border-bottom: none;
}

.vip-blogpost-content table tr:hover {
  background: var(--vip-icon-bg);
}

.vip-blogpost-content hr {
  border: none;
  height: 2px;
  background: var(--vip-border);
  margin: 40px 0;
  border-radius: 2px;
}

.vip-blogpost-content strong {
  font-weight: 700;
  color: var(--vip-text);
}

.vip-blogpost-content em {
  font-style: italic;
}

/* Blog Post Footer */
.vip-blogpost-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid var(--vip-border);
}

.vip-blogpost-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: var(--vip-gradient);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 87, 255, 0.3);
}

.vip-blogpost-back-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 87, 255, 0.4);
  gap: 14px;
}

.vip-blogpost-back-btn svg {
  transition: transform 0.3s ease;
}

.vip-blogpost-back-btn:hover svg {
  transform: translateX(-4px);
}

/* Responsive Blog Post Page */
@media (max-width: 1024px) {
  .vip-blogpost-content-wrapper {
    padding: 40px 40px 32px;
  }

  .vip-blogpost-title {
    font-size: 36px;
  }

  .vip-blogpost-hero {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .vip-blogpost-section {
    padding: 20px 16px 60px;
  }

  .vip-blogpost-article {
    border-radius: 16px;
  }

  .vip-blogpost-hero {
    height: 280px;
  }

  .vip-blogpost-content-wrapper {
    padding: 32px 24px 28px;
  }

  .vip-blogpost-title {
    font-size: 28px;
  }

  .vip-blogpost-content {
    font-size: 16px;
    line-height: 1.8;
  }

  .vip-blogpost-content h1 {
    font-size: 28px;
  }

  .vip-blogpost-content h2 {
    font-size: 24px;
  }

  .vip-blogpost-content h3 {
    font-size: 22px;
  }

  .vip-blogpost-content h4 {
    font-size: 20px;
  }

  .vip-blogpost-content blockquote {
    padding: 20px 24px;
    font-size: 16px;
  }

  .vip-blogpost-content ul,
  .vip-blogpost-content ol {
    padding-left: 24px;
  }

  .vip-blogpost-footer {
    margin-top: 32px;
    padding-top: 24px;
  }

  .vip-blogpost-back-btn {
    padding: 12px 24px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .vip-blogpost-hero {
    height: 220px;
  }

  .vip-blogpost-content-wrapper {
    padding: 24px 20px 24px;
  }

  .vip-blogpost-title {
    font-size: 24px;
  }

  .vip-blogpost-content {
    font-size: 15px;
  }

  .vip-blogpost-content h1 {
    font-size: 24px;
  }

  .vip-blogpost-content h2 {
    font-size: 22px;
  }

  .vip-blogpost-content h3 {
    font-size: 20px;
  }
}

/* ============================================
   MEGA MENU STYLES (Free Services & How it works)
   ============================================ */

/* Mega Dropdown Base */
.vip-mega-dropdown {
  position: relative;
}

/* Mobile Overlay */
.vip-mega-overlay {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vip-mega-overlay.active {
  display: block;
  opacity: 1;
}

@media (min-width: 769px) {
  .vip-mega-overlay {
    display: none !important;
  }
}

.vip-mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  margin-top: 8px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 215, 0, 0.3) inset;
  border: 2px solid rgba(255, 215, 0, 0.2);
  min-width: 480px;
  max-width: 650px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1002;
  padding: 0;
  overflow: hidden;
  max-height: 70vh;
  overflow-y: auto;
}

.vip-mega-dropdown:hover .vip-mega-menu,
.vip-mega-dropdown.vip-dropdown-open .vip-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Ensure mega dropdown link shows active state */
.vip-mega-dropdown:hover .vip-nav-link,
.vip-mega-dropdown.vip-dropdown-open .vip-nav-link {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
}

.vip-mega-dropdown:hover .vip-nav-link::after,
.vip-mega-dropdown.vip-dropdown-open .vip-nav-link::after {
  width: calc(100% - 24px);
  background: linear-gradient(90deg, #ffd700 0%, #ffc107 100%);
  height: 3px;
}

.vip-mega-menu-content {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

/* Free Services Mega Menu */
.vip-mega-menu-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vip-mega-menu-title {
  font-size: 13px;
  font-weight: 700;
  color: #ffd700;
  margin: 0 0 8px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.1) 0%, transparent 100%);
  padding-left: 8px;
  padding-right: 8px;
  border-radius: 4px;
}

.vip-mega-menu-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vip-mega-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  font-weight: 500;
}

.vip-mega-menu-item:hover,
.vip-mega-menu-item:active {
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 193, 7, 0.15) 100%);
  border-color: rgba(255, 215, 0, 0.3);
  color: #ffd700;
  transform: translateX(4px);
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
}

.vip-mega-menu-icon {
  font-size: 18px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.vip-mega-menu-item:hover .vip-mega-menu-icon {
  background: linear-gradient(135deg, #ffd700 0%, #ffc107 100%);
  color: #1a1a2e;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.vip-mega-menu-text {
  font-size: 14px;
  font-weight: 500;
  flex: 1;
  color: #ffffff;
}

.vip-mega-menu-item:hover .vip-mega-menu-text {
  color: #ffd700;
}

.vip-mega-menu-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--vip-gradient);
  color: #ffffff;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vip-mega-menu-disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* How it works Mega Menu */
.vip-how-it-works-menu {
  min-width: 500px;
  max-width: 600px;
}

.vip-how-it-works-menu .vip-mega-menu-content {
  grid-template-columns: 1fr;
  gap: 16px;
}

.vip-how-it-works-item {
  padding: 16px;
  background: var(--vip-bg);
  border-radius: 10px;
  border: 2px solid var(--vip-border);
  transition: all 0.3s ease;
}

.vip-mega-dropdown:hover .vip-how-it-works-item {
  border-color: var(--vip-primary);
  box-shadow: 0 4px 12px rgba(0, 87, 255, 0.1);
}

.vip-how-it-works-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.vip-how-it-works-icon {
  font-size: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vip-icon-bg);
  border-radius: 10px;
  flex-shrink: 0;
}

.vip-how-it-works-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--vip-text);
  margin: 0;
  line-height: 1.3;
}

.vip-how-it-works-description {
  font-size: 13px;
  color: var(--vip-text-light);
  line-height: 1.6;
  margin: 0;
}

/* Responsive Mega Menu */
@media (max-width: 1024px) {
  .vip-mega-menu {
    min-width: 420px;
    max-width: 550px;
  }

  .vip-mega-menu-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 16px;
  }

  .vip-how-it-works-menu {
    min-width: 450px;
    max-width: 550px;
  }
}

@media (max-width: 768px) {
  .vip-mega-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    transform: translateX(0) translateY(-100%);
    min-width: 100%;
    max-width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: 2px solid var(--vip-border);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .vip-mega-dropdown.vip-dropdown-open .vip-mega-menu {
    transform: translateX(0) translateY(0);
    opacity: 1;
    visibility: visible;
  }

  /* Disable hover on mobile */
  .vip-mega-dropdown:hover .vip-mega-menu {
    transform: translateX(0) translateY(-100%);
    opacity: 0;
    visibility: hidden;
  }

  .vip-mega-menu-content {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }

  .vip-mega-menu-section {
    gap: 10px;
  }

  .vip-mega-menu-title {
    font-size: 12px;
    padding-bottom: 8px;
  }

  .vip-mega-menu-item {
    padding: 10px 12px;
    min-height: 44px; /* Touch target size */
  }

  .vip-mega-menu-icon {
    font-size: 16px;
    width: 24px;
    height: 24px;
  }

  .vip-mega-menu-text {
    font-size: 12px;
  }

  .vip-how-it-works-menu {
    min-width: 100%;
    max-width: 100%;
  }

  .vip-how-it-works-item {
    padding: 14px;
  }

  .vip-how-it-works-header {
    gap: 10px;
    margin-bottom: 10px;
  }

  .vip-how-it-works-icon {
    font-size: 20px;
    width: 40px;
    height: 40px;
  }

  .vip-how-it-works-title {
    font-size: 15px;
  }

  .vip-how-it-works-description {
    font-size: 12px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .vip-mega-menu-content {
    padding: 12px;
    gap: 12px;
  }

  .vip-mega-menu-section {
    gap: 8px;
  }

  .vip-mega-menu-item {
    padding: 8px 10px;
    min-height: 40px;
  }

  .vip-how-it-works-item {
    padding: 12px;
  }

  .vip-how-it-works-icon {
    font-size: 18px;
    width: 36px;
    height: 36px;
  }

  .vip-how-it-works-title {
    font-size: 14px;
  }

  .vip-how-it-works-description {
    font-size: 11px;
  }
}

/* ============================================
   FREE INSTAGRAM FOLLOWERS PAGE STYLES
   ============================================ */

/* Free Followers Page Container */
.vip-free-followers-page {
  padding: 40px 20px 80px;
  background: var(--vip-bg);
  min-height: 100vh;
}

/* H1 Title */
.vip-free-page-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--vip-text);
  text-align: center;
  margin: 0 0 24px 0;
  line-height: 1.2;
  background: var(--vip-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Intro Paragraph */
.vip-free-intro {
  font-size: 18px;
  line-height: 1.8;
  color: var(--vip-text);
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

.vip-free-intro strong {
  color: var(--vip-primary);
  font-weight: 700;
}

/* Free Followers Tool Box */
.vip-free-tool-box {
  max-width: 600px;
  margin: 0 auto 50px;
  background: var(--vip-card-bg);
  border-radius: 20px;
  border: 2px solid var(--vip-border);
  box-shadow: 0 12px 40px rgba(0, 87, 255, 0.15);
  padding: 40px;
  overflow: hidden;
  position: relative;
}

.vip-free-tool-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--vip-gradient);
}

.vip-free-tool-header {
  text-align: center;
  margin-bottom: 32px;
}

.vip-free-tool-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--vip-text);
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.vip-free-tool-subtitle {
  font-size: 16px;
  color: var(--vip-text-light);
  margin: 0;
  line-height: 1.6;
}

/* Free Tool Form */
.vip-free-tool-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vip-free-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vip-free-form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--vip-text);
}

.vip-free-form-input,
.vip-free-form-select {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: 2px solid var(--vip-border);
  border-radius: 12px;
  background: var(--vip-card-bg);
  color: var(--vip-text);
  transition: all 0.3s ease;
  font-family: var(--vip-font-family);
  outline: none;
}

.vip-free-form-input:focus,
.vip-free-form-select:focus {
  border-color: var(--vip-primary);
  box-shadow: 0 0 0 4px rgba(0, 87, 255, 0.1);
}

.vip-free-form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%230057ff' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 45px;
}

/* Countdown Section */
.vip-free-countdown-section {
  text-align: center;
  padding: 24px;
  background: var(--vip-icon-bg);
  border-radius: 12px;
  border: 2px solid var(--vip-primary);
}

.vip-countdown-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--vip-text);
}

.vip-countdown-timer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.vip-countdown-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--vip-primary);
  line-height: 1;
}

.vip-countdown-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--vip-text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Submit Button */
.vip-free-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
  background: var(--vip-gradient);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 87, 255, 0.3);
  width: 100%;
}

.vip-free-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 87, 255, 0.4);
}

.vip-free-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* CTA Buttons */
.vip-free-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
  background: var(--vip-gradient);
  color: #ffffff;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 87, 255, 0.3);
}

.vip-free-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 87, 255, 0.4);
}

.vip-free-cta-inline {
  text-align: center;
  margin: 40px 0;
}

/* Transition Section */
.vip-free-transition {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(0, 87, 255, 0.05) 0%, rgba(0, 198, 255, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.vip-free-transition::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--vip-gradient);
}

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

.vip-transition-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--vip-text);
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.vip-transition-text {
  font-size: 18px;
  color: var(--vip-text-light);
  margin: 0 0 32px 0;
  line-height: 1.7;
}

.vip-transition-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.vip-transition-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 87, 255, 0.2);
}

.vip-transition-primary {
  background: var(--vip-gradient);
  color: #ffffff;
}

.vip-transition-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 87, 255, 0.3);
}

.vip-transition-secondary {
  background: var(--vip-card-bg);
  color: var(--vip-primary);
  border: 2px solid var(--vip-primary);
}

.vip-transition-secondary:hover {
  background: var(--vip-icon-bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 87, 255, 0.15);
}

/* SEO Article */
.vip-free-seo-article {
  max-width: 900px;
  margin: 0 auto;
  background: var(--vip-card-bg);
  padding: 50px 40px;
  border-radius: 16px;
  border: 2px solid var(--vip-border);
  box-shadow: var(--vip-shadow);
}

.vip-free-seo-article h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--vip-text);
  margin: 50px 0 20px 0;
  line-height: 1.3;
}

.vip-free-seo-article h2:first-child {
  margin-top: 0;
}

.vip-free-seo-article h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--vip-text);
  margin: 32px 0 16px 0;
  line-height: 1.3;
}

.vip-free-seo-article p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--vip-text);
  margin-bottom: 20px;
}

.vip-free-seo-article ul,
.vip-free-seo-article ol {
  margin: 20px 0;
  padding-left: 30px;
}

.vip-free-seo-article li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--vip-text);
  margin-bottom: 12px;
}

.vip-free-seo-article strong {
  color: var(--vip-primary);
  font-weight: 700;
}

/* Comparison Table */
.vip-comparison-table-wrapper {
  margin: 40px 0;
  background: var(--vip-bg);
  padding: 32px;
  border-radius: 16px;
  border: 2px solid var(--vip-border);
}

.vip-comparison-table-wrapper h2 {
  font-size: 28px;
  margin: 0 0 24px 0;
}

.vip-comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: var(--vip-card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--vip-shadow);
}

.vip-comparison-table thead {
  background: var(--vip-gradient);
  color: #ffffff;
}

.vip-comparison-table th {
  padding: 16px;
  text-align: left;
  font-weight: 700;
  font-size: 15px;
}

.vip-comparison-table td {
  padding: 16px;
  border-bottom: 1px solid var(--vip-border);
  font-size: 14px;
  color: var(--vip-text);
}

.vip-comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.vip-comparison-table tbody tr:hover {
  background: var(--vip-icon-bg);
}

.vip-comparison-table tbody tr:first-child {
  background: rgba(0, 87, 255, 0.05);
  font-weight: 600;
}

.vip-comparison-note {
  font-size: 14px;
  color: var(--vip-text-light);
  margin-top: 20px;
  font-style: italic;
  text-align: center;
}

/* Internal Links */
.vip-internal-links {
  margin: 40px 0;
  padding: 32px;
  background: var(--vip-icon-bg);
  border-radius: 12px;
}

.vip-internal-links h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--vip-text);
  margin: 0 0 16px 0;
}

.vip-internal-links p {
  font-size: 15px;
  color: var(--vip-text-light);
  margin: 0 0 16px 0;
}

.vip-internal-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vip-internal-links li {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
}

.vip-internal-links a {
  color: var(--vip-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.vip-internal-links a:hover {
  color: var(--vip-secondary);
  text-decoration: underline;
}

/* Custom Content Box */
.vip-free-custom-content {
  max-width: 900px;
  margin: 40px auto 0;
  background: var(--vip-card-bg);
  padding: 40px;
  border-radius: 16px;
  border: 2px solid var(--vip-border);
  box-shadow: var(--vip-shadow);
  font-size: 16px;
  line-height: 1.8;
  color: var(--vip-text);
}


/* Testimonials Section */
.vip-free-testimonials {
  max-width: 1200px;
  margin: 0 auto 60px;
}

.vip-free-testimonials h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--vip-text);
  text-align: center;
  margin: 0 0 40px 0;
}

.vip-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.vip-testimonial-card {
  background: var(--vip-card-bg);
  padding: 32px;
  border-radius: 16px;
  border: 2px solid var(--vip-border);
  box-shadow: var(--vip-shadow);
  transition: all 0.3s ease;
}

.vip-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 87, 255, 0.12);
  border-color: var(--vip-primary);
}

.vip-testimonial-rating {
  font-size: 20px;
  margin-bottom: 16px;
}

.vip-testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--vip-text);
  margin: 0 0 20px 0;
}

.vip-testimonial-author {
  font-size: 14px;
  color: var(--vip-text-light);
  font-weight: 600;
}

/* FAQ Section */
.vip-free-faq-section {
  margin: 50px 0;
}

.vip-free-faq-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--vip-text);
  text-align: center;
  margin: 0 0 40px 0;
}

.vip-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vip-faq-item {
  background: var(--vip-card-bg);
  border-radius: 12px;
  border: 2px solid var(--vip-border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.vip-faq-item:hover {
  border-color: var(--vip-primary);
}

.vip-faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--vip-text);
  cursor: pointer;
  transition: all 0.3s ease;
}

.vip-faq-question-btn:hover {
  color: var(--vip-primary);
}

.vip-faq-question-btn svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.vip-faq-item.vip-faq-open .vip-faq-question-btn svg {
  transform: rotate(180deg);
}

.vip-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.vip-faq-item.vip-faq-open .vip-faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

.vip-faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--vip-text-light);
  margin: 0;
}

/* CTA Section */
.vip-free-cta {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, #0057ff 0%, #00c6ff 100%);
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 87, 255, 0.2);
}

.vip-free-cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px 0;
}

.vip-free-cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 32px 0;
  line-height: 1.6;
}

.vip-free-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Free Followers Page */
@media (max-width: 768px) {
  .vip-free-followers-page {
    padding: 20px 16px 60px;
  }

  .vip-free-page-title {
    font-size: 28px;
  }

  .vip-free-intro {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .vip-free-tool-box {
    padding: 24px 20px;
    margin-bottom: 40px;
  }

  .vip-free-tool-title {
    font-size: 22px;
  }

  .vip-free-tool-subtitle {
    font-size: 14px;
  }

  .vip-free-form-input,
  .vip-free-form-select {
    font-size: 15px;
    padding: 12px 14px;
  }

  .vip-free-submit-btn {
    padding: 14px 24px;
    font-size: 16px;
  }

  .vip-countdown-number {
    font-size: 36px;
  }

  .vip-free-transition {
    padding: 60px 16px;
  }

  .vip-transition-title {
    font-size: 28px;
  }

  .vip-transition-text {
    font-size: 16px;
  }

  .vip-transition-buttons {
    flex-direction: column;
  }

  .vip-transition-btn {
    width: 100%;
  }

  .vip-free-seo-article {
    padding: 32px 24px;
  }

  .vip-free-seo-article h2 {
    font-size: 24px;
    margin-top: 40px;
  }

  .vip-free-seo-article h3 {
    font-size: 20px;
    margin-top: 28px;
  }

  .vip-free-seo-article p,
  .vip-free-seo-article li {
    font-size: 15px;
  }

  .vip-comparison-table-wrapper {
    padding: 24px 16px;
  }

  .vip-comparison-table {
    font-size: 12px;
  }

  .vip-comparison-table th,
  .vip-comparison-table td {
    padding: 12px 8px;
  }

  .vip-internal-links {
    padding: 24px 20px;
  }

  .vip-free-cta-btn {
    padding: 14px 24px;
    font-size: 16px;
    width: 100%;
  }

  .vip-free-custom-content {
    padding: 24px 20px;
  }
}

/* Scroll to Top Button */
.vip-scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0057ff 0%, #00c6ff 50%, #7c3aed 100%);
  border: none;
  border-radius: 50%;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 87, 255, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  -webkit-tap-highlight-color: transparent;
}

.vip-scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.vip-scroll-to-top:hover {
  background: linear-gradient(135deg, #004ae0 0%, #00b3e6 50%, #6d2ed1 100%);
  box-shadow: 0 6px 25px rgba(0, 87, 255, 0.4);
  transform: translateY(-3px);
}

.vip-scroll-to-top:active {
  transform: translateY(-1px) scale(0.95);
}

.vip-scroll-to-top svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .vip-scroll-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 18px;
  }

  .vip-scroll-to-top svg {
    width: 20px;
    height: 20px;
  }
}

/* Breadcrumb Styles */
.vip-breadcrumb {
  background: linear-gradient(135deg, rgba(0, 87, 255, 0.05) 0%, rgba(0, 198, 255, 0.05) 100%);
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 87, 255, 0.1);
}

.vip-breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.vip-breadcrumb-item {
  display: flex;
  align-items: center;
}

.vip-breadcrumb-item a {
  color: var(--vip-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.vip-breadcrumb-item a:hover {
  color: var(--vip-primary-dark);
  text-decoration: underline;
}

.vip-breadcrumb-active span {
  color: var(--vip-text-secondary);
}

.vip-breadcrumb-separator {
  color: var(--vip-text-secondary);
}

/* Hero SEO Content */
.vip-hero-seo-content {
  margin: 24px 0;
  padding: 20px;
  background: linear-gradient(135deg, rgba(0, 87, 255, 0.05) 0%, rgba(0, 198, 255, 0.05) 100%);
  border-radius: 12px;
  border-left: 4px solid var(--vip-primary);
}

.vip-hero-seo-content p {
  margin: 0;
  line-height: 1.8;
  color: var(--vip-text);
  font-size: 15px;
}

/* Hero Stats */
.vip-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.vip-hero-stat-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 14px 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.vip-hero-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 1);
}

.vip-hero-stat-card > div:first-child {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 2px;
}

.vip-hero-stat-number {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.2;
  display: inline-block;
}

.vip-hero-stat-symbol {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  display: inline-block;
  line-height: 1.2;
}

.vip-hero-stat-label {
  font-size: 11px;
  color: #4a5568;
  font-weight: 500;
  margin-top: 6px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Hero Trust Badges */
.vip-hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.vip-hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  border: 1px solid rgba(0, 87, 255, 0.2);
  font-size: 13px;
  font-weight: 500;
  color: var(--vip-text);
  transition: all 0.3s ease;
}

.vip-hero-trust-badge:hover {
  background: rgba(0, 87, 255, 0.1);
  border-color: var(--vip-primary);
  transform: translateY(-2px);
}

.vip-hero-trust-badge svg {
  color: var(--vip-primary);
  flex-shrink: 0;
}

/* Testimonial Carousel */
.vip-testimonials-carousel-wrapper {
  position: relative;
  margin-top: 40px;
}

.vip-testimonials-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 20px 0;
  scrollbar-width: none;
}

.vip-testimonials-carousel::-webkit-scrollbar {
  display: none;
}

.vip-testimonial-card {
  min-width: 320px;
  max-width: 400px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 87, 255, 0.1);
  scroll-snap-align: start;
  transition: all 0.3s ease;
}

.vip-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 87, 255, 0.15);
}

.vip-testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vip-primary) 0%, var(--vip-secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.vip-testimonial-avatar-initial {
  color: white;
  font-size: 20px;
  font-weight: 700;
}

.vip-testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.vip-testimonial-rating svg {
  color: #ffc107;
  width: 18px;
  height: 18px;
}

.vip-testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--vip-text);
  margin-bottom: 20px;
  font-style: italic;
}

.vip-testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vip-testimonial-author strong {
  color: var(--vip-text);
  font-size: 15px;
}

.vip-testimonial-role {
  color: var(--vip-text-secondary);
  font-size: 13px;
}

.vip-testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.vip-testimonials-prev,
.vip-testimonials-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vip-primary) 0%, var(--vip-secondary) 100%);
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 87, 255, 0.3);
}

.vip-testimonials-prev:hover,
.vip-testimonials-next:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 87, 255, 0.4);
}

.vip-testimonials-dots {
  display: flex;
  gap: 8px;
}

.vip-testimonials-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 87, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.vip-testimonials-dot.active {
  background: var(--vip-primary);
  width: 24px;
  border-radius: 5px;
}

/* Service Cards Enhanced */
.vip-top-service-card {
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.vip-top-service-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: 0 12px 40px rgba(0, 87, 255, 0.2);
}

.vip-top-service-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.3s ease;
}

.vip-top-service-card:hover .vip-top-service-icon {
  transform: scale(1.1) rotate(5deg);
}

.vip-top-service-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--vip-primary);
  margin: 16px 0;
}

.vip-top-service-btn {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--vip-primary) 0%, var(--vip-secondary) 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  margin-top: 12px;
  box-shadow: 0 4px 12px rgba(0, 87, 255, 0.3);
}

.vip-top-service-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 87, 255, 0.4);
}

/* Hero CTA Buttons Enhanced */
.vip-hero-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.vip-hero-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.vip-hero-btn:hover::before {
  width: 300px;
  height: 300px;
}

.vip-hero-btn-primary {
  background: linear-gradient(135deg, var(--vip-primary) 0%, var(--vip-secondary) 100%);
  box-shadow: 0 4px 20px rgba(0, 87, 255, 0.4);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(0, 87, 255, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(0, 87, 255, 0.6);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .vip-hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .vip-hero-stat-card {
    padding: 12px 8px;
  }

  .vip-hero-stat-number {
    font-size: 20px;
  }

  .vip-hero-stat-symbol {
    font-size: 14px;
  }

  .vip-hero-stat-label {
    font-size: 10px;
  }

  .vip-hero-trust-badges {
    flex-direction: column;
  }

  .vip-testimonial-card {
    min-width: 280px;
    padding: 24px;
  }

  .vip-testimonials-controls {
    flex-wrap: wrap;
  }
}

