/* ============================================
   NOVY INC. - THANK YOU PAGE STYLES
   Success Message, Next Steps, Quick Links
   ============================================ */

/* ========== THANK YOU SECTION ========== */
.thank-you-section {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: var(--space-16) 0;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
}

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

/* ========== SUCCESS ICON ========== */
.success-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-6);
  background: var(--accent-green);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: var(--font-bold);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
  animation: scaleIn 0.5s ease-out;
}

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

.thank-you-content h1 {
  font-size: var(--text-5xl);
  color: var(--black);
  margin-bottom: var(--space-4);
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.thank-you-message {
  font-size: var(--text-xl);
  color: var(--gray-600);
  margin-bottom: var(--space-12);
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

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

/* ========== NEXT STEPS ========== */
.next-steps {
  margin-bottom: var(--space-12);
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.next-steps h2 {
  font-size: var(--text-3xl);
  color: var(--black);
  margin-bottom: var(--space-8);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.step {
  padding: var(--space-6);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.step-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-4);
  background: var(--primary-light);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
}

.step h3 {
  font-size: var(--text-xl);
  color: var(--black);
  margin-bottom: var(--space-3);
}

.step p {
  color: var(--gray-600);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== RESPONSE TIME ========== */
.response-time {
  padding: var(--space-6);
  background: var(--primary-blue);
  color: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-12);
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

.response-time p {
  color: var(--gray-200);
  margin-bottom: var(--space-2);
}

.response-time p:last-child {
  margin-bottom: 0;
}

.response-time strong {
  color: var(--white);
  font-weight: var(--font-bold);
}

/* ========== QUICK LINKS ========== */
.quick-links {
  margin-bottom: var(--space-12);
  animation: fadeInUp 0.6s ease-out 0.6s both;
}

.quick-links h3 {
  font-size: var(--text-2xl);
  color: var(--black);
  margin-bottom: var(--space-3);
}

.quick-links > p {
  color: var(--gray-600);
  margin-bottom: var(--space-6);
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.quick-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-6);
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
}

.quick-link-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.link-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-3);
}

.link-title {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--black);
  margin-bottom: var(--space-2);
}

.link-desc {
  font-size: var(--text-sm);
  color: var(--gray-600);
  text-align: center;
}

@media (max-width: 992px) {
  .links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .links-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== CONTACT INFO BOX ========== */
.contact-info-box {
  padding: var(--space-8);
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-8);
  animation: fadeInUp 0.6s ease-out 0.7s both;
}

.contact-info-box h3 {
  font-size: var(--text-2xl);
  color: var(--black);
  margin-bottom: var(--space-3);
}

.contact-info-box > p {
  color: var(--gray-600);
  margin-bottom: var(--space-6);
}

.contact-options {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
}

@media (max-width: 576px) {
  .contact-options {
    flex-direction: column;
  }
  
  .contact-options .btn {
    width: 100%;
  }
}

/* ========== RETURN HOME ========== */
.return-home {
  animation: fadeInUp 0.6s ease-out 0.8s both;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .thank-you-section {
    padding: var(--space-8) 0;
  }
  
  .success-icon {
    width: 100px;
    height: 100px;
    font-size: 3rem;
  }
  
  .thank-you-content h1 {
    font-size: var(--text-3xl);
  }
  
  .thank-you-message {
    font-size: var(--text-lg);
  }
  
  .next-steps h2 {
    font-size: var(--text-2xl);
  }
  
  .contact-info-box {
    padding: var(--space-6);
  }
}