.thanks-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 10rem 0 6rem;
  background: linear-gradient(135deg, rgba(231, 250, 192, 0.25) 0%, rgba(162, 229, 26, 0.08) 100%);
}

.thanks-icon {
  font-size: 5rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thanks-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.thanks-text {
  font-size: 1.1875rem;
  color: var(--color-gray);
  line-height: 1.7;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.thanks-info {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--color-primary);
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.thanks-info p {
  font-size: 1.0625rem;
  color: var(--color-dark);
  margin: 0;
  line-height: 1.7;
}

.thanks-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

.thanks-contact {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  animation: fadeInUp 0.6s ease-out 0.6s both;
}

.thanks-contact p {
  font-size: 1rem;
  color: var(--color-gray);
  margin-bottom: 0.75rem;
}

.contact-phone,
.contact-email {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.contact-phone i,
.contact-email i {
  margin-right: 0.5rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .thanks-icon {
    font-size: 3.5rem;
  }

  .thanks-title {
    font-size: 2rem;
  }

  .thanks-text {
    font-size: 1.0625rem;
  }

  .thanks-actions {
    flex-direction: column;
  }

  .thanks-actions .btn {
    width: 100%;
  }
}