/* ===================================
   MODERN JOURNEY SECTION STYLES
   =================================== */

.modern-journey {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  position: relative;
  overflow: hidden;
}

.modern-journey::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.modern-journey__inner {
  position: relative;
  z-index: 1;
}

/* Section Header */
.modern-journey__header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.15rem;
  color: #718096;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.stat-card {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.stat-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #fff;
  flex-shrink: 0;
}

.stat-content {
  flex: 1;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 0.25rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  color: #718096;
  font-weight: 500;
  margin: 0;
}

/* Journey Content */
.journey-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Industries Showcase */
.industries-showcase {
  background: #fff;
  padding: 2.5rem;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.industries-header {
  margin-bottom: 2rem;
}

.industries-header h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.industries-header p {
  color: #718096;
  font-size: 1rem;
  margin: 0;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.industry-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f7fafc;
  border-radius: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.industry-item:hover {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-color: #667eea;
  transform: translateX(5px);
}

.industry-icon-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.industry-icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.industry-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.industry-item:hover .industry-overlay {
  opacity: 1;
}

.company-count {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
}

.industry-info h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.25rem;
}

.industry-info p {
  font-size: 0.85rem;
  color: #718096;
  margin: 0;
}

/* Video Showcase */
.video-showcase {
  position: sticky;
  top: 2rem;
}

.video-wrapper {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  height: 600px;
  background: #000;
}

.video_element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
  transition: opacity 0.3s ease;
}

.video-wrapper.playing .video-overlay {
  opacity: 0;
}

.video-info {
  color: #fff;
}

.video-info h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.video-info p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin: 0;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #667eea;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.video-play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: #fff;
  box-shadow: 0 15px 50px rgba(102, 126, 234, 0.4);
}

.video-play-button i {
  margin-left: 5px;
}

.video-wrapper.playing .video-play-button {
  opacity: 0;
  pointer-events: none;
}

/* Dark Mode Support */
.dark-mode .modern-journey {
  background: linear-gradient(135deg, #1a1f27 0%, #2d3748 100%);
}

.dark-mode .section-title {
  color: #fff;
}

.dark-mode .section-subtitle {
  color: #a0aec0;
}

.dark-mode .stat-card {
  background: #2d3748;
  border-color: #4a5568;
}

.dark-mode .stat-number {
  color: #fff;
}

.dark-mode .stat-label {
  color: #cbd5e0;
}

.dark-mode .industries-showcase {
  background: #2d3748;
}

.dark-mode .industries-header h3 {
  color: #fff;
}

.dark-mode .industries-header p {
  color: #cbd5e0;
}

.dark-mode .industry-item {
  background: #1a202c;
}

.dark-mode .industry-item:hover {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
}

.dark-mode .industry-info h4 {
  color: #fff;
}

.dark-mode .industry-info p {
  color: #cbd5e0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .journey-content {
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .modern-journey {
    padding: 4rem 0;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .journey-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .video-showcase {
    position: relative;
    top: 0;
  }
  
  .video-wrapper {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .modern-journey {
    padding: 3rem 0;
  }
  
  .modern-journey__header {
    margin-bottom: 3rem;
  }
  
  .section-title {
    font-size: 1.85rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .stat-card {
    padding: 1.5rem;
  }
  
  .stat-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .industries-showcase {
    padding: 2rem;
  }
  
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .video-wrapper {
    height: 400px;
  }
  
  .video-play-button {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .section-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1.2rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .stat-card {
    flex-direction: column;
    text-align: center;
  }
  
  .stat-number {
    font-size: 1.75rem;
  }
  
  .industries-header h3 {
    font-size: 1.5rem;
  }
  
  .industry-item {
    flex-direction: column;
    text-align: center;
  }
  
  .video-wrapper {
    height: 300px;
  }
  
  .video-overlay {
    padding: 1.5rem;
  }
  
  .video-info h3 {
    font-size: 1.25rem;
  }
  
  .video-info p {
    font-size: 0.9rem;
  }
}
