/* ============================================
   THANK YOU PAGE STYLES
   ============================================ */

/* Hero Section */
.thank-you-hero {
  position: relative;
  padding: 60px 0 80px;
  color: var(--color-text-primary);
  background-attachment: fixed;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 20, 38, 0.75);
  z-index: -1;
}

.thank-you-hero-content {
  text-align: center;
  animation: fadeInDown 0.8s ease-out;
}

.success-icon {
  font-size: 80px;
  color: var(--color-gold);
  margin-bottom: 20px;
  animation: successBounce 0.8s ease-out;
}

.thank-you-hero-title {
  font-size: var(--text-5xl);
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 15px;
  color: var(--color-text-primary);
  letter-spacing: -0.5px;
}

.thank-you-hero-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: var(--leading-relaxed);
}

/* Animations */
@keyframes successBounce {
  0% {
    transform: scale(0) rotate(-45deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.1) rotate(0deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Next Steps Section */
.thank-you-next-steps {
  padding: 80px 0;
  background-color: var(--color-bg-primary);
  position: relative;
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  margin-bottom: 60px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.step-card {
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, rgba(201, 169, 97, 0.02) 100%);
  border: 1px solid rgba(201, 169, 97, 0.1);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.step-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(201, 169, 97, 0.15);
}

.step-card:hover::before {
  opacity: 1;
}

.step-card > * {
  position: relative;
  z-index: 1;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-bg-primary);
  font-size: var(--text-2xl);
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
}

.step-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 15px;
}

.step-description {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: 20px;
}

.step-timeline {
  font-size: var(--text-xs);
  color: var(--color-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Contact Section */
.thank-you-contact {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.5) 0%, rgba(26, 29, 41, 0.5) 100%);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-item {
  text-align: center;
  padding: 30px;
  border-radius: 8px;
  background: rgba(201, 169, 97, 0.02);
  border: 1px solid rgba(201, 169, 97, 0.08);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(201, 169, 97, 0.05);
  border-color: rgba(201, 169, 97, 0.15);
  transform: translateY(-5px);
}

.contact-item-icon {
  font-size: 48px;
  margin-bottom: 15px;
  display: block;
}

.contact-item-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}

.contact-item-content {
  margin-bottom: 8px;
}

.contact-item-content a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.contact-item-content a:hover {
  color: var(--color-gold-light);
  text-decoration: underline;
}

.contact-item-hours {
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
}

/* CTA Section */
.thank-you-cta {
  padding: 80px 0;
  background-color: var(--color-bg-primary);
  position: relative;
}

.thank-you-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: var(--text-base);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-bg-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(201, 169, 97, 0.4);
}

.btn-outline {
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(201, 169, 97, 0.1);
  border-color: var(--color-gold-light);
  color: var(--color-gold-light);
}

.btn-lg {
  padding: 15px 40px;
  font-size: var(--text-lg);
}

/* Testimonials Section */
.thank-you-testimonials {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.3) 0%, rgba(26, 29, 41, 0.3) 100%);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.08) 0%, rgba(201, 169, 97, 0.03) 100%);
  border: 1px solid rgba(201, 169, 97, 0.1);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 60px;
  color: rgba(201, 169, 97, 0.1);
  font-family: var(--font-heading);
}

.testimonial-card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 15px 35px rgba(201, 169, 97, 0.1);
  transform: translateY(-8px);
}

.stars {
  font-size: 20px;
  margin-bottom: 20px;
  display: block;
}

.testimonial-text {
  font-size: var(--text-base);
  color: var(--color-text-primary);
  line-height: var(--leading-relaxed);
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-gold);
  font-size: var(--text-sm);
}

.testimonials-cta {
  text-align: center;
  margin-top: 50px;
}

.testimonials-cta .btn {
  display: inline-block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .thank-you-hero {
    padding: 40px 0 60px;
    min-height: 350px;
  }

  .thank-you-hero-title {
    font-size: var(--text-3xl);
  }

  .thank-you-hero-subtitle {
    font-size: var(--text-base);
  }

  .success-icon {
    font-size: 60px;
  }

  .section-title {
    font-size: var(--text-3xl);
  }

  .steps-grid {
    gap: 20px;
  }

  .step-card {
    padding: 30px 20px;
  }

  .contact-grid {
    gap: 25px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .thank-you-next-steps,
  .thank-you-contact,
  .thank-you-cta,
  .thank-you-testimonials {
    padding: 50px 0;
  }
}

@media (max-width: 480px) {
  .thank-you-hero-title {
    font-size: var(--text-2xl);
  }

  .section-title {
    font-size: var(--text-2xl);
  }

  .section-subtitle {
    font-size: var(--text-base);
    margin-bottom: 40px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    padding: 25px 15px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Text Utilities */
.text-center {
  text-align: center;
}

.text-gold {
  color: var(--color-gold);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
