/* ===========================
   Discovery Call - Hero
   =========================== */
.dc-hero {
  padding: 220px 0 120px;
  background: linear-gradient(135deg, #1C0944 0%, #100329 100%);
  position: relative;
  overflow: hidden;
}

.dc-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 30%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(130, 94, 231, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.dc-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.dc-hero__title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
}

.dc-hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 16px;
  font-weight: 500;
}

.dc-hero__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.dc-hero__booking {
  min-height: 500px;
  border-radius: 16px;
  overflow: hidden;
}

/* ===========================
   Testimonials Carousel
   =========================== */
.dc-testimonials {
  padding: 80px 0;
  background: linear-gradient(180deg, #100329 0%, #0F0039 50%, #1C0944 100%);
}

.dc-testimonials__title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 48px;
}

.dc-carousel {
  position: relative;
  padding: 0 0 60px;
  overflow: hidden;
}

.dc-carousel__track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
  cursor: grab;
  padding: 40px 0;
  align-items: flex-start;
}

.dc-carousel__track:active {
  cursor: grabbing;
}

.dc-card {
  flex: 0 0 340px;
  min-height: 280px;
  background: linear-gradient(135deg, #53389E 0%, #42307D 100%);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: opacity 0.5s ease, box-shadow 0.5s ease;
  opacity: 0.5;
  cursor: pointer;
}

.dc-card.active {
  opacity: 1;
  box-shadow: 0 24px 80px rgba(130, 94, 231, 0.5), 0 0 40px rgba(130, 94, 231, 0.2);
  cursor: default;
}

.dc-card__logo {
  max-height: 28px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  opacity: 0.8;
  filter: brightness(0) invert(1);
}

.dc-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-bottom: 24px;
  flex: 1;
}

.dc-card__footer {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
}

.dc-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.dc-card__name {
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
}

.dc-card__role {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.dc-carousel__controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.dc-carousel__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #ffffff;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dc-carousel__btn:hover {
  background: #53389E;
  border-color: #53389E;
}

/* ===========================
   Trust / CTA Section
   =========================== */
.dc-trust {
  padding: 100px 0;
  background: linear-gradient(180deg, #0F0039 0%, #100329 50%, #1C0944 100%);
}

.dc-trust__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.dc-trust__benefits {
  list-style: none;
  margin: 32px 0;
  padding: 0;
}

.dc-trust__benefits li {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 0;
  position: relative;
}

.dc-trust__benefits li::before {
  content: '→';
  color: #825EE7;
  margin-right: 10px;
  font-weight: 700;
}

.dc-trust__closing {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.dc-trust__booking {
  min-height: 500px;
  border-radius: 16px;
  overflow: hidden;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 992px) {
  .dc-hero__inner,
  .dc-trust__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dc-hero {
    padding: 160px 0 80px;
  }

  .dc-hero__title {
    font-size: 2.75rem;
  }

}

@media (max-width: 768px) {
  .dc-hero {
    padding: 140px 0 60px;
  }

  .dc-hero__title {
    font-size: 2.25rem;
  }

  .dc-testimonials {
    padding: 60px 0;
  }

  .dc-testimonials__title {
    font-size: 1.5rem;
  }

  .dc-trust {
    padding: 60px 0;
  }
}
