/* 
 * Call-to-Action Section Styling for Othala Solutions Website
 * Sophisticated CTA design with modern aesthetics
 */

/* CTA Section Base */
.cta-section {
  position: relative;
  padding: 5rem 0;
  background: var(--bg-gradient-1);
  overflow: hidden;
  color: var(--color-white);
  z-index: 1;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.3;
  z-index: -1;
}

/* CTA Content */
.cta-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-heading {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cta-subheading {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-light);
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 1rem 2.5rem;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.cta-btn-primary {
  background-color: var(--color-white);
  color: var(--color-primary);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.cta-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.cta-btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
}

.cta-btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

/* Decorative Elements */
.cta-shape {
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.cta-shape-1 {
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(40px);
}

.cta-shape-2 {
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  filter: blur(60px);
}

.cta-shape-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(1, 179, 167, 0.2) 0%, transparent 70%);
}

/* CTA Features */
.cta-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: var(--font-weight-medium);
}

.cta-feature i {
  font-size: 1.25rem;
  color: var(--color-white);
  opacity: 0.9;
}

/* Floating Animation */
.cta-floating {
  animation: cta-float 6s ease-in-out infinite;
}

@keyframes cta-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .cta-heading {
    font-size: var(--font-size-3xl);
  }
  
  .cta-subheading {
    font-size: var(--font-size-lg);
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  
  .cta-features {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
}
