.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;
}

.calendly-inline-widget {
  width: 100%;
  height: 650px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

.calendly-inline-widget iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.calendly-inline-widget iframe.loaded {
  opacity: 1;
}

#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); }
}

@media (max-width: 768px) {
  .schedule-call {
    padding: 40px 10px 10px 10px;
  }

  .calendly-inline-widget {
    height: 550px;
    margin-bottom: 0; /* elimină spațiu */
  }

  .schedule-call p {
    margin-bottom: 20px;
  }
}
