/**
 * Process Section Styles - Updated to match design image
 * 
 * @package StrongBody Theme
 * @version 1.0.2
 */

/* ===================================
   PROCESS SECTION - NextApp Inspired
   =================================== */

/* Process Section Container */
.process-section {
  background-color: var(--bg-dark);
  padding: var(--spacing-3xl) 0;
  position: relative;
  overflow: hidden;
	height:600px;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
    linear-gradient(135deg, rgba(120, 119, 198, 0.1) 0%, rgba(255, 119, 198, 0.1) 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%;
  background-repeat: no-repeat, no-repeat, no-repeat;
}

/* Background Pattern Overlay */
.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="60" r="0.5" fill="%23ffffff" opacity="0.05"/></svg>'),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="60" cy="40" r="1.5" fill="%23ffffff" opacity="0.08"/><circle cx="90" cy="10" r="1" fill="%23ffffff" opacity="0.06"/></svg>');
  background-size: 200px 200px, 150px 150px;
  background-position: 0 0, 100px 100px;
  background-repeat: repeat;
  opacity: 0.6;
  z-index: 1;
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
  position: relative;
  z-index: 2;
}

.section-title .h3-lg {
  font-size: var(--text-5xl);
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
  line-height: var(--leading-tight);
}

.section-title .p-md {
  font-size: var(--text-xl);
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
  opacity: 0.9;
}

/* Process Steps Container */
#process-3-type {
  margin-top: var(--spacing-xl);
  position: relative;
  z-index: 2;
}

/* Process Steps Row - Horizontal Layout */
.process-section #process-3-type .row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  margin: 0;
  gap: var(--spacing-lg);
}

/* Connecting Lines */
.process-section #process-3-type::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.3) 20%, 
    rgba(255, 255, 255, 0.3) 80%, 
    transparent 100%);
  z-index: 1;
}

/* Process Step Cards */
.process-step {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl) var(--spacing-lg);
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
  transition: all var(--transition-normal);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Step Number */
.step-number {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  font-weight: 700;
  margin: 0 auto var(--spacing-md);
  position: relative;
  z-index: 3;
}

/* Step Icon */
.step-icon {
  margin-bottom: var(--spacing-md);
}

.step-icon img {
  width: 48px;
  height: 48px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* Step Content */
.step-title {
  font-size: var(--text-lg);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: var(--spacing-sm);
  line-height: var(--leading-tight);
}

.step-description {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.8);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .process-section {
    padding: var(--spacing-2xl) 0;
  }
  
  .section-title .h3-lg {
    font-size: var(--text-4xl);
  }
  
  .process-section #process-3-type .row {
    gap: var(--spacing-md);
  }
  
  .process-step {
    padding: var(--spacing-lg) var(--spacing-md);
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  .process-section {
    padding: var(--spacing-xl) 0;
  }
  
  .section-title {
    margin-bottom: var(--spacing-lg);
  }
  
  .section-title .h3-lg {
    font-size: var(--text-3xl);
  }
  
  .section-title .p-md {
    font-size: var(--text-lg);
  }
  
  .process-section #process-3-type .row {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .process-section #process-3-type::before {
    display: none;
  }
  
  .process-step {
    padding: var(--spacing-md);
    min-height: auto;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: var(--text-lg);
  }
  
  .step-icon img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .process-section {
    padding: var(--spacing-lg) 0;
  }
  
  .section-title .h3-lg {
    font-size: var(--text-2xl);
  }
  
  .section-title .p-md {
    font-size: var(--text-base);
  }
  
  .process-step {
    padding: var(--spacing-sm);
  }
  
  .step-number {
    width: 45px;
    height: 45px;
    font-size: var(--text-base);
  }
  
  .step-title {
    font-size: var(--text-base);
  }
  
  .step-description {
    font-size: var(--text-sm);
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .process-section {
    background-color: var(--bg-dark);
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .process-step {
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.5);
  }
  
  .step-number {
    border: 3px solid white;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .process-step:hover {
    transform: none;
  }
  
  .process-step {
    transition: none;
  }
}

/* Print Styles */
@media print {
  .process-section {
    background: white !important;
    padding: var(--spacing-md) 0;
  }
  
  .process-step {
    break-inside: avoid;
    background: #f0f0f0 !important;
    border: 1px solid #ccc;
    color: black !important;
  }
  
  .step-number {
    background: #333 !important;
    color: white !important;
  }
  
  .step-title {
    color: black !important;
  }
  
  .step-description {
    color: #333 !important;
  }
  
  .step-icon img {
    filter: none;
    opacity: 1;
  }
} 