/* Enhanced CTA Section Styles */
.section-cta {
  background: linear-gradient(135deg, #f9f9f9 0%, #f0f7f7 100%);
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin: 2rem auto;
  box-shadow: 0 10px 30px rgba(46, 96, 96, 0.1);
}

.section-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z' fill='rgba(46, 96, 96, 0.03)' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.enhanced-cta-component {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.enhanced-cta-content-wrapper {
  padding: 2rem 0;
}

.enhanced-cta-headline {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #1a3e3e;
  font-weight: 700;
  background: linear-gradient(90deg, #2e6060, #1a3e3e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.enhanced-cta-headline .highlight {
  position: relative;
  z-index: 1;
}

.enhanced-cta-headline .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 12px;
  background-color: rgba(46, 96, 96, 0.15);
  z-index: -1;
  border-radius: 6px;
}

.enhanced-cta-description {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #333;
  margin-bottom: 1.5rem;
}

.cta-metrics {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.cta-metric {
  text-align: center;
}

.cta-metric-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2e6060;
  margin-bottom: 0.25rem;
  line-height: 1;
}

.cta-metric-label {
  font-size: 0.9rem;
  color: #555;
}

.enhanced-button-group {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.enhanced-button-group .enhanced-cta-button {
  flex: 1;
  min-width: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.enhanced-cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(to right, #2e6060, #1a3e3e);
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(46, 96, 96, 0.2);
}

.enhanced-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(46, 96, 96, 0.3);
}

.enhanced-cta-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
}

.enhanced-cta-button:hover::after {
  animation: shimmer 1.5s infinite;
}

.enhanced-cta-button.is-secondary {
  background: white;
  color: #2e6060;
  border: 2px solid #2e6060;
  box-shadow: none;
}

.enhanced-cta-button.is-secondary:hover {
  background: rgba(46, 96, 96, 0.05);
  color: #1a3e3e;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.limited-tag {
  display: inline-block;
  padding: 0.25rem 1rem;
  background-color: #27ae60;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
}

/* Additional styling for the "free consultation" text */
.enhanced-cta-description strong {
  color: #2e6060;
  font-weight: 700;
  border-bottom: 2px dotted #2e6060;
  padding-bottom: 2px;
}

.enhanced-cta-image-wrapper {
  position: relative;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.enhanced-cta-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.enhanced-cta-image:hover {
  transform: scale(1.03);
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(226, 85, 85, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(226, 85, 85, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(226, 85, 85, 0);
  }
}

@media (max-width: 991px) {
  .enhanced-cta-component {
    grid-template-columns: 1fr;
  }
  
  .enhanced-cta-headline {
    font-size: 2rem;
  }
  
  .enhanced-cta-description {
    font-size: 1.1rem;
  }
  
  .cta-metrics {
    justify-content: center;
  }
  
  .enhanced-cta-image-wrapper {
    height: 350px;
    order: -1;
  }
  
  .enhanced-cta-content-wrapper {
    text-align: center;
  }
  
  .enhanced-button-group {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .enhanced-cta-headline {
    font-size: 1.8rem;
  }
  
  .cta-metrics {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .cta-metric-label {
    font-size: 0.85rem;
  }
  
  .enhanced-button-group {
    flex-direction: column;
    gap: 1rem;
  }
  
  .enhanced-button-group .enhanced-cta-button {
    width: 100%;
  }
  
  .enhanced-cta-image-wrapper {
    height: 250px;
  }
} 