/* CTA and Trust Elements Integration */

/* Enhanced CTA container */
.hero-cta-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 15px;
  position: relative;
}

/* Improved CTA button with gradient and animation */
.hero-cta-button {
  width: 100%;
  padding: 18px 30px;
  background: linear-gradient(135deg, #FF6600 0%, #FF7E33 100%);
  color: white;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.hero-cta-button:hover {
  background: linear-gradient(135deg, #FF5500 0%, #FF6600 100%);
  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.4);
  transform: translateY(-2px);
}

.hero-cta-button i {
  margin-left: 12px;
  transition: transform 0.3s ease;
  font-size: 20px;
}

.hero-cta-button:hover i {
  transform: translateX(5px);
}

/* Button pulse animation */
@keyframes ctaPulse {
  0% {
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
  }
  50% {
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.5);
  }
  100% {
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
  }
}

.hero-cta-button {
  animation: ctaPulse 2s infinite;
}

/* Button shine effect */
@keyframes shine {
  0% {
    left: -100%;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

.hero-cta-button::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -100%;
  width: 70px;
  height: 200%;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(25deg);
  pointer-events: none;
  animation: shine 4s infinite;
}

/* Enhanced trust indicators */
.trust-indicators {
  display: flex;
  justify-content: center;
  margin-top: 18px;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  padding: 10px;
}

.trust-item {
  display: flex;
  align-items: center;
  margin: 0 15px;
  font-size: 14px;
  color: #555;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-2px);
}

.trust-item i {
  color: #FF6600;
  margin-right: 8px;
  font-size: 16px;
}

/* Stats container with improved styling */
.stats-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-item {
  text-align: center;
  flex: 1;
  position: relative;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-3px);
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 70%;
  width: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: #FF6600;
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 13px;
  color: #555;
  display: block;
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero-cta-button {
    font-size: 16px;
    padding: 16px 25px;
  }
  
  .trust-indicators {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .trust-item {
    margin: 5px 10px;
  }
}

@media (max-width: 768px) {
  .hero-cta-container {
    padding: 0;
  }
  
  .trust-indicators {
    flex-direction: column;
    align-items: center;
  }
  
  .trust-item {
    margin: 5px 0;
  }
  
  .stats-container {
    flex-wrap: wrap;
  }
  
  .stat-item {
    flex: 0 0 50%;
    margin-bottom: 15px;
  }
  
  .stat-item:nth-child(2n)::after {
    display: none;
  }
}
