/* Secțiunea Programează un call */
.schedule-call {
    padding: 60px 20px;
    background-color: #111;
    text-align: center;
    color: #fff;
    font-family: 'Arial', sans-serif;
    
  }
  
  .schedule-call h2 {
    font-size: 2rem;
    color: #ff6600;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
  }
  
  .schedule-call p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 40px;
  }
  
  .schedule-call iframe {
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }
  
  .schedule-call iframe:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  }
  

  .schedule-call {
    padding: 60px 20px;
    background-color: #111;
    color: #fff;
    text-align: center;
  }
  
  #calendly-loader {
    margin: 20px 0;
    text-align: center;
    color: #ff6600;
  }
  
  .loader {
    border: 4px solid #333;
    border-top: 4px solid #ff6600;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  #calendly-inline-widget iframe {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  
  #calendly-inline-widget iframe.loaded {
    opacity: 1;
  }
  
  /* Responsivitate */
  @media (max-width: 768px) {
    .schedule-call iframe {
      height: 500px;
    }
  }
  