/* ===================================
   Thank You Page Styles
   Whistol Website
   =================================== */

.thank-you-section {
  padding: var(--spacing-20) 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  min-height: 80vh;
}

.thank-you-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.thank-you-content__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: var(--accent-orange-light);
  border-radius: 50%;
  margin-bottom: var(--spacing-6);
  color: var(--accent-orange-dark);
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-you-content__title {
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  color: var(--text-dark);
  margin-bottom: var(--spacing-4);
}

.thank-you-content__message {
  font-size: var(--text-2xl);
  color: var(--accent-orange-dark);
  font-weight: var(--font-semibold);
  margin-bottom: var(--spacing-4);
}

.thank-you-content__desc {
  font-size: var(--text-xl);
  line-height: var(--leading-relaxed);
  color: var(--text-gray);
  margin-bottom: var(--spacing-8);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.thank-you-content__confirmation {
  background: var(--bg-white);
  padding: var(--spacing-4) var(--spacing-6);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent-orange-dark);
  margin-bottom: var(--spacing-10);
  box-shadow: var(--shadow-sm);
}

.thank-you-content__confirmation p {
  font-size: var(--text-base);
  color: var(--text-dark);
  margin: 0;
}

/* Next Steps */
.thank-you-content__next {
  background: var(--bg-white);
  padding: var(--spacing-8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--spacing-10);
}

.thank-you-content__next-title {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--text-dark);
  margin-bottom: var(--spacing-6);
}

.thank-you-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-6);
  text-align: left;
}

.thank-you-step {
  display: flex;
  gap: var(--spacing-4);
  align-items: flex-start;
}

.thank-you-step__number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-orange-light);
  color: var(--accent-orange-dark);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  border-radius: 50%;
}

.thank-you-step__content h4 {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--text-dark);
  margin-bottom: var(--spacing-2);
}

.thank-you-step__content p {
  font-size: var(--text-sm);
  color: var(--text-gray);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* Actions */
.thank-you-content__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-4);
  margin-bottom: var(--spacing-10);
}

/* Contact Info */
.thank-you-content__info {
  background: var(--bg-white);
  padding: var(--spacing-8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--spacing-10);
}

.thank-you-content__info-title {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--text-dark);
  margin-bottom: var(--spacing-6);
}

.thank-you-contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-6);
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-contact__item {
  display: flex;
  align-items: center;
  gap: var(--spacing-3);
  text-align: left;
}

.thank-you-contact__item svg {
  flex-shrink: 0;
  color: var(--accent-orange-dark);
}

.thank-you-contact__item strong {
  display: block;
  font-size: var(--text-base);
  color: var(--text-dark);
  margin-bottom: var(--spacing-1);
}

.thank-you-contact__item a {
  display: block;
  font-size: var(--text-base);
  color: var(--accent-orange-dark);
  text-decoration: none;
  font-weight: var(--font-medium);
}

.thank-you-contact__item a:hover {
  text-decoration: underline;
}

/* Explore Services */
.thank-you-content__explore {
  background: var(--bg-white);
  padding: var(--spacing-8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.thank-you-content__explore h3 {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--text-dark);
  margin-bottom: var(--spacing-6);
}

.thank-you-services {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-3);
  justify-content: center;
}

.thank-you-service {
  display: inline-block;
  padding: var(--spacing-3) var(--spacing-5);
  background: var(--bg-light);
  border-radius: var(--radius-md);
  color: var(--text-dark);
  text-decoration: none;
  font-weight: var(--font-medium);
  transition: all var(--duration-base) var(--ease-in-out);
}

.thank-you-service:hover {
  background: var(--accent-orange-light);
  color: var(--accent-orange-dark);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .thank-you-section {
    padding: var(--spacing-12) 0;
  }

  .thank-you-content__icon {
    width: 100px;
    height: 100px;
  }

  .thank-you-content__icon svg {
    width: 60px;
    height: 60px;
  }

  .thank-you-content__title {
    font-size: var(--text-3xl);
  }

  .thank-you-content__message {
    font-size: var(--text-xl);
  }

  .thank-you-content__desc {
    font-size: var(--text-lg);
  }

  .thank-you-steps {
    grid-template-columns: 1fr;
  }

  .thank-you-content__actions {
    flex-direction: column;
    width: 100%;
  }

  .thank-you-content__actions .btn {
    width: 100%;
  }

  .thank-you-contact {
    grid-template-columns: 1fr;
  }

  .thank-you-services {
    flex-direction: column;
  }

  .thank-you-service {
    width: 100%;
    text-align: center;
  }
}
