/* CTA Section Enhanced Animations */
/* .cta-section {
    position: relative;
    overflow: hidden;
  }
  
  .cta-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
  }
   */
  /* .cta-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: cta-line-move 8s infinite linear;
  }
  
  @keyframes cta-line-move {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(100%);
    }
  }
  
  .cta-title {
    position: relative;
    display: inline-block;
    border-right: 3px solid transparent;
    white-space: nowrap;
    overflow: hidden;
  
  }
  
  @keyframes cursor-blink {
    from,
    to {
      border-color: transparent;
    }
    50% {
      border-color: rgba(255, 255, 255, 0.7);
    }
  } 
   */
  .cta-button.pulse {
    animation: button-pulse 1s ease-out;
  }
  
  @keyframes button-pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(0, 200, 255, 0.7);
    }
    70% {
      box-shadow: 0 0 0 15px rgba(0, 200, 255, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(0, 200, 255, 0);
    }
  }
  
  /* Contact Section Enhanced Animations */
  .contact-image-float {
    animation: contact-image-float 6s ease-in-out infinite;
  }
  
  @keyframes contact-image-float {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-15px);
    }
  }
  
  .form-field-wrapper {
    position: relative;
    margin-bottom: 20px;
  }
  
  .form-field-label {
    position: absolute;
    left: 15px;
    top: 15px;
    color: #616161;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  
  .form-field-wrapper.focused .form-field-label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    color: #0055aa;
    background-color: white;
    padding: 0 5px;
  }
  
  .form-field-ripple {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: rgba(0, 85, 170, 0.2);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-effect 0.6s linear;
  }
  
  @keyframes ripple-effect {
    to {
      transform: scale(20);
      opacity: 0;
    }
  }
  
  .submit-button {
    position: relative;
    overflow: hidden;
  }
  
  .submit-button.submitting {
    background: linear-gradient(to right, #0055aa, #00c8ff);
    color: white;
    pointer-events: none;
  }
  
  .submit-button.submitted {
    background: linear-gradient(to right, #00c8ff, #00aa55);
    color: white;
  }
  
  .submit-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spinner-rotate 1s infinite linear;
    margin-left: 10px;
    vertical-align: middle;
  }
  
  @keyframes spinner-rotate {
    to {
      transform: rotate(360deg);
    }
  }
  
  