/* 
 * Coming Soon Features Section Styles
 */

.coming-soon-section {
  background-color: #f8f9fa;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.coming-soon-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/pattern-bg.png');
  opacity: 0.05;
  z-index: 0;
}

.coming-soon-section .container {
  position: relative;
  z-index: 1;
}

.coming-soon-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.coming-soon-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.coming-soon-ribbon {
  position: absolute;
  top: 40px;
  right: -35px;
  background: #f5b942;
  color: white;
  padding: 5px 40px;
  transform: rotate(45deg);
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.coming-soon-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(96, 93, 175, 0.1);
  color: #605daf;
}

.coming-soon-card h4 {
  margin-bottom: 15px;
  color: #333;
  font-weight: 500;
}

.coming-soon-card p {
  color: #6c757d;
  margin-bottom: 20px;
}

.coming-soon-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.coming-soon-features li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
  color: #6c757d;
}

.coming-soon-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: #605daf;
  font-weight: bold;
}

@media (max-width: 768px) {
  .coming-soon-section {
    padding: 60px 0;
  }
  
  .coming-soon-card {
    margin-bottom: 30px;
  }
}
