/* CTA Section Styles */
.cta-section {
  position: relative;
  padding: 100px 20px;
  background: #fdfdfd;
  text-align: center;
  font-family: Peyda Num;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 180px;
  height: 180px;
  background: #ffcc00;
  border-radius: 50%;
  opacity: 0.15;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: #6a11cb;
  border-radius: 50%;
  opacity: 0.08;
}

.cta-container {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.cta-container h1 {
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-container p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 60px;
}

.cta-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}

.cta-item {
  flex: 1 1 220px;
  max-width: 250px;
  text-align: center;
  transition: transform 0.3s;
}

.cta-item:hover {
  transform: translateY(-8px);
}

.cta-icon {
  font-size: 60px;
  margin-bottom: 15px;
}

.cta-item h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.cta-item p {
  color: #666;
  font-size: 16px;
  line-height: 1.4;
}

.cta-button {
  display: inline-block;
  background: #ffcc00;
  color: #333;
  font-size: 20px;
  font-weight: 600;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  margin-top: 60px;
}

.cta-button:hover {
  background: #e6b800;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .cta-item {
    max-width: 100%;
  }
}

/* Stats Line Styles */
.stats-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 20px;
  direction: rtl;
  flex-wrap: wrap;
  font-size: 15px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  background: #f7f9fc;
  border: 1px solid #e6e9ef;
  transition: 0.2s;
}

.stat-item:hover {
  background: #eef4ff;
  border-color: #cfdfff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cta-container h1 {
    font-size: 32px;
  }
  
  .cta-container p {
    font-size: 16px;
  }
  
  .cta-items {
    gap: 30px;
  }
  
  .stats-line {
    gap: 15px;
    font-size: 14px;
  }
  
  .stat-item {
    padding: 4px 8px;
  }
}