/**
 * ═══════════════════════════════════════════════════════════════════════════════
 * VELLUNOX SERVICE PAGE STYLES - VELLUNOX THEME
 * Consistent styling for all service detail pages
 * ═══════════════════════════════════════════════════════════════════════════════
 */

/* Vellunox Theme Variables Override */
:root {
  --neon-cyan: #00d4ff;
  --neon-glow: rgba(0, 212, 255, 0.5);
  --gold-primary: #ffd700;
  --glow-cyan: 0 20px 40px rgba(0, 212, 255, 0.3);
  --glow-gold: 0 0 30px rgba(255, 215, 0, 0.4);
  --border-cyan: rgba(0, 212, 255, 0.2);
  --gradient-cyber: linear-gradient(135deg, #00d4ff, #0066cc);
  --gradient-panel: rgba(0, 21, 42, 0.8);
  --void-surface: #000510;
  --void-panel: #000a1a;
}

/* === SERVICE HERO === */
.service-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
  background: linear-gradient(135deg, #000510, #000a1a);
}

.service-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.service-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.service-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,26,0.85), rgba(10,10,26,0.97));
}

.service-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  text-align: center;
}

.service-hero h1 {
  font-family: var(--font-display, 'Poppins', sans-serif);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #00d4ff, #00f5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.service-hero p {
  color: var(--text-secondary, rgba(255,255,255,0.7));
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* === SECTIONS === */
.section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-header h2 {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--text-primary, #fff);
}

.section-header p {
  color: var(--text-secondary, rgba(255,255,255,0.6));
  font-size: 1.1rem;
}

/* === FEATURE GRID === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.feature-card {
  background: var(--gradient-panel, rgba(255,255,255,0.03));
  border: 1px solid var(--border-cyan, rgba(59,130,246,0.15));
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--neon-cyan, #3b82f6);
  transform: translateY(-5px);
  box-shadow: var(--glow-cyan, 0 20px 40px rgba(59,130,246,0.2));
}

.feature-card h3 {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-primary, #fff);
}

.feature-card p {
  color: var(--text-secondary, rgba(255,255,255,0.6));
  font-size: 0.95rem;
  line-height: 1.7;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-cyber, linear-gradient(135deg, #3b82f6, #9945ff));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon img,
.feature-icon svg {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.feature-icon-emoji {
  width: 56px;
  height: 56px;
  background: var(--gradient-cyber, linear-gradient(135deg, #3b82f6, #9945ff));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* === AI MANAGER CARD === */
.ai-manager {
  display: flex;
  align-items: center;
  gap: 30px;
  background: var(--gradient-panel, rgba(255,255,255,0.03));
  border: 1px solid var(--border-gold, rgba(226,160,74,0.25));
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 60px;
}

.ai-manager img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--gold-primary, #e2a04a);
  object-fit: cover;
  box-shadow: var(--glow-gold, 0 0 30px rgba(226,160,74,0.3));
}

.ai-manager-info h3 {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--text-primary, #fff);
}

.ai-manager-info .role {
  color: var(--gold-primary, #e2a04a);
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ai-manager-info p {
  color: var(--text-secondary, rgba(255,255,255,0.7));
  line-height: 1.7;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  background: var(--gradient-cyber, linear-gradient(135deg, #3b82f6, #1d4ed8));
  color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-body, 'Inter', sans-serif);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-cyan, 0 10px 30px rgba(59,130,246,0.4));
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text-primary, #fff);
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-body, 'Inter', sans-serif);
  border: 1px solid var(--border-medium, rgba(255,255,255,0.15));
  margin-left: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--neon-cyan, #3b82f6);
  background: rgba(59,130,246,0.1);
}

.btn-gold {
  background: var(--gradient-gold, linear-gradient(135deg, #e2a04a, #ffc857));
  color: #0a0a1a;
}

.btn-gold:hover {
  box-shadow: var(--glow-gold, 0 10px 30px rgba(226,160,74,0.4));
}

/* === CTA SECTION === */
.cta-section {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(0, 100, 200, 0.05));
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  margin: 40px;
}

.cta-section h2 {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--text-primary, #fff);
}

.cta-section p {
  color: var(--text-secondary, rgba(255,255,255,0.7));
  margin-bottom: 25px;
}

/* === PRICING PREVIEW === */
.pricing-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.price-card {
  background: var(--gradient-panel, rgba(255,255,255,0.03));
  border: 1px solid var(--border-light, rgba(255,255,255,0.08));
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.price-card:hover {
  border-color: var(--gold-primary, #e2a04a);
}

.price-card.featured {
  border-color: var(--gold-primary, #e2a04a);
  background: linear-gradient(135deg, rgba(226,160,74,0.08), rgba(226,160,74,0.02));
}

.price-card h3 {
  font-family: var(--font-heading, 'Poppins', sans-serif);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.price-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-primary, #e2a04a);
  margin-bottom: 5px;
}

.price-card .period {
  color: var(--text-muted, rgba(255,255,255,0.5));
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  text-align: left;
}

.price-card li {
  color: var(--text-secondary, rgba(255,255,255,0.7));
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle, rgba(255,255,255,0.04));
}

.price-card li::before {
  content: '✓ ';
  color: var(--status-online, #00ff88);
}

/* === STATS BAR === */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 40px;
  background: var(--gradient-panel, rgba(255,255,255,0.02));
  border-radius: 16px;
  margin: 40px 0;
}

.stat-item {
  text-align: center;
}

.stat-item .number {
  font-family: var(--font-display, 'Poppins', sans-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: #00d4ff;
  display: block;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.stat-item .label {
  color: var(--text-secondary, rgba(255,255,255,0.6));
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* === TESTIMONIAL === */
.testimonial {
  background: var(--gradient-panel, rgba(255,255,255,0.03));
  border: 1px solid var(--border-light, rgba(255,255,255,0.08));
  border-radius: 16px;
  padding: 40px;
  margin: 40px 0;
  text-align: center;
}

.testimonial blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-secondary, rgba(255,255,255,0.8));
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial cite {
  color: var(--text-muted, rgba(255,255,255,0.5));
  font-size: 0.95rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .service-hero h1 { 
    font-size: 2rem; 
  }
  
  .service-hero-content {
    padding: 30px 20px;
  }
  
  .ai-manager { 
    flex-direction: column; 
    text-align: center;
    padding: 30px 20px;
  }
  
  .section { 
    padding: 50px 20px; 
  }
  
  .cta-section {
    margin: 20px;
    padding: 40px 20px;
  }
  
  .btn-secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  
  .stats-bar {
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .stat-item .number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .service-hero h1 {
    font-size: 1.75rem;
  }
  
  .features-grid {
    gap: 20px;
  }
  
  .feature-card {
    padding: 20px;
  }
}
