/* CTA Section */
.cta-section {
  padding: 0 80px 60px;
  background-color: var(--color-bg-base);
}

.cta-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: stretch;
  gap: 20px;
  margin: 0 auto;
}

/* Testimonial Card */
.cta-testimonial {
  width: 70%;
  display: flex;
}

.cta-testimonial .testimonial-video-card {
  background-color: var(--color-bg-gray-light);
  border-radius: 20px;
  padding: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  height: 100%;
}

.cta-testimonial .testimonial-video-quote-text {
  font-size: 48px;
}

.cta-testimonial .testimonial-video-profile {
  width: 100px;
  height: 100px;
}

/* Contact Card */
.cta-contact {
  width: 30%;
  display: flex;
}

.get-in-touch-card {
  background-color: var(--color-bg-gray-light);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 28px;
  width: 100%;
  height: 100%;
}

.get-in-touch-image-wrapper {
  /* width: 305px; */
  height: 280px;
  overflow: hidden;
  flex-shrink: 0;
  margin: 0 auto;
}

.get-in-touch-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.get-in-touch-content {
  /* padding: 28px; */
  display: flex;
  flex-direction: column;
  /* gap: 24px; */
  flex: 1;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.get-in-touch-heading {
  font-family: var(--font-family);
  font-size: 1.5rem;
  font-weight: var(--font-weight-regular);
  line-height: 110%;
  color: var(--color-heading);
  margin: 16px 0 6px 0;
}

.get-in-touch-description {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: var(--font-weight-regular);
  line-height: 150%;
  color: var(--color-text-secondary-100);
  margin: 0;
}

.get-in-touch-button {
  /* display: inline-flex; */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-heading);
  color: var(--color-outline-button-text);
  border: none;
  border-radius: 42px;
  /* padding: 12px 32px; */
  font-family: var(--font-family);
  font-size: var(--font-size-b1-desktop);
  font-weight: var(--font-weight-regular);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  height: 56px;
  margin-top: 40px;
}

.get-in-touch-button:hover {
  background-color: #1a1a1a;
  transform: translateY(-1px);
  cursor: pointer;
  color: var(--color-outline-button-text);
}

.get-in-touch-button:active {
  transform: translateY(0);
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .cta-section {
    padding: 40px 24px;
  }

  .cta-container {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .cta-testimonial {
    width: 100%;
    display: flex;
  }

  .cta-contact {
    width: 100%;
    display: flex;
  }

  .cta-testimonial .testimonial-video-card {
    height: 100%;
    padding: 48px 40px;
    gap: 24px;
  }

  .cta-testimonial .testimonial-video-quote-text {
    font-size: 32px;
  }

  .get-in-touch-card {
    height: 100%;
  }

  .get-in-touch-image-wrapper {
    width: 100%;
    border-radius: 10px;
  }

  /* .get-in-touch-content {
    padding: 40px 32px;
  } */

  .get-in-touch-heading {
    font-size: var(--font-size-h4-desktop);
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .cta-section {
    padding: 40px 24px;
  }

  .cta-container {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-testimonial {
    width: 100%;
    display: flex;
  }

  .cta-contact {
    width: 100%;
    display: flex;
  }

  .cta-testimonial .testimonial-video-card {
    height: 100%;
    padding: 32px 24px;
    gap: 24px;
    border-radius: 16px;
  }

  .get-in-touch-card {
    height: 100%;
    border-radius: 16px;
  }

  /* .get-in-touch-content {
    padding: 32px 24px;
    gap: 20px;
  } */

  .get-in-touch-button {
    font-size: var(--font-size-b2-desktop);
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .cta-section {
    padding: 0 24px 48px;
  }

  .cta-testimonial {
    width: 100%;
    display: flex;
  }

  .cta-contact {
    width: 100%;
    display: flex;
  }

  .cta-testimonial .testimonial-video-card {
    height: 100%;
    padding: 40px 20px;
    gap: 32px;
  }

  .cta-testimonial .testimonial-video-quote-text {
    font-size: var(--font-size-h6-desktop);
  }

  .get-in-touch-card {
    height: 100%;
  }

  /* .get-in-touch-content {
    padding: 28px 20px;
    gap: 16px;
  } */

  .get-in-touch-button {
    font-size: 1rem;
    margin-top: 32px;
    height: 48px;
  }

  .get-in-touch-card {
    padding: 20px;
  }
}
