/* ===== THANK YOU PAGE STYLES ===== */

/* Thank You Section */
.thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.thankyou-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  padding: 4rem 3rem;
  box-shadow: 0 20px 60px rgba(19, 18, 34, 0.1);
  position: relative;
  overflow: hidden;
}

/* Success Icon */
.success-icon-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem;
  animation: successZoom 0.6s ease-out;
}

@keyframes successZoom {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.success-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(11, 77, 136, 0.15));
}

.success-checkmark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
  animation: checkmarkPop 0.5s ease-out 0.3s both;
}

@keyframes checkmarkPop {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.success-checkmark i {
  font-size: 2.5rem;
  color: #fff;
  animation: checkmarkRotate 0.5s ease-out 0.5s both;
}

@keyframes checkmarkRotate {
  from {
    transform: rotate(-180deg);
    opacity: 0;
  }
  to {
    transform: rotate(0deg);
    opacity: 1;
  }
}

/* Thank You Content */
.thankyou-content {
  text-align: center;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

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

.thankyou-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--mauno-black);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.thankyou-subtitle {
  font-size: 1.25rem;
  color: var(--mauno-gray);
  margin-bottom: 2.5rem;
}

/* Confirmation Box */
.confirmation-box {
  background: linear-gradient(135deg, rgba(11, 77, 136, 0.05) 0%, rgba(49, 130, 206, 0.05) 100%);
  border: 2px solid rgba(11, 77, 136, 0.1);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

.confirmation-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--mauno-base) 0%, #3182ce 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.confirmation-icon i {
  font-size: 1.8rem;
  color: #fff;
}

.confirmation-text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--mauno-black);
  margin-bottom: 0.5rem;
}

.confirmation-text p {
  font-size: 1rem;
  color: #4b5563;
  margin: 0;
  line-height: 1.6;
}

/* What's Next Section */
.whats-next {
  margin-bottom: 3rem;
  animation: fadeInUp 0.6s ease-out 0.7s both;
}

.whats-next h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--mauno-black);
  margin-bottom: 2rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.step-card {
  position: relative;
  background: #fff;
  border: 2px solid var(--mauno-bdr-color);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: var(--mauno-base);
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(11, 77, 136, 0.15);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, var(--mauno-base) 0%, #3182ce 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(11, 77, 136, 0.3);
}

.step-icon {
  width: 70px;
  height: 70px;
  margin: 1rem auto 1rem;
  background: rgba(11, 77, 136, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.step-card:hover .step-icon {
  background: rgba(11, 77, 136, 0.15);
  transform: scale(1.1);
}

.step-icon i {
  font-size: 2rem;
  color: var(--mauno-base);
}

.step-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--mauno-black);
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--mauno-gray);
  margin: 0;
  line-height: 1.5;
}

/* Contact Info Box */
.contact-info-box {
  background: #fff;
  border: 2px solid var(--mauno-bdr-color);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.6s ease-out 0.9s both;
}

.contact-info-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.contact-info-header i {
  font-size: 1.5rem;
  color: var(--mauno-base);
}

.contact-info-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--mauno-black);
  margin: 0;
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  background: rgba(11, 77, 136, 0.05);
  border-radius: 12px;
  text-decoration: none;
  color: var(--mauno-black);
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: var(--mauno-base);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 77, 136, 0.2);
}

.contact-method i {
  font-size: 1.2rem;
  color: var(--mauno-base);
  transition: color 0.3s ease;
}

.contact-method:hover i {
  color: #fff;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease-out 1.1s both;
}

.btn-modern {
  min-width: 200px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #1a365d 0%, #3182ce 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(26, 54, 93, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 54, 93, 0.3);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--mauno-base);
  border: 2px solid var(--mauno-base);
}

.btn-outline:hover {
  background: var(--mauno-base);
  color: #fff;
  transform: translateY(-2px);
}

/* Decorative Circles */
.decorative-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  pointer-events: none;
}

.circle-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--mauno-base) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  animation: float 20s ease-in-out infinite;
}

.circle-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #3182ce 0%, transparent 70%);
  bottom: -150px;
  left: -150px;
  animation: float 15s ease-in-out infinite reverse;
}

.circle-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--mauno-base) 0%, transparent 70%);
  top: 50%;
  left: -100px;
  animation: float 18s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-20px) translateX(20px);
  }
}

/* Additional Info Section */
.additional-info-section {
  padding: 4rem 0;
  background: #fff;
}

.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.info-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  background: #fff;
  border: 2px solid var(--mauno-bdr-color);
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: var(--mauno-base);
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(11, 77, 136, 0.12);
}

.info-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(11, 77, 136, 0.1) 0%, rgba(49, 130, 206, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.info-card:hover .info-icon {
  background: linear-gradient(135deg, var(--mauno-base) 0%, #3182ce 100%);
}

.info-icon i {
  font-size: 2rem;
  color: var(--mauno-base);
  transition: color 0.3s ease;
}

.info-card:hover .info-icon i {
  color: #fff;
}

.info-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--mauno-black);
  margin-bottom: 0.75rem;
}

.info-card p {
  font-size: 0.95rem;
  color: var(--mauno-gray);
  margin: 0;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .info-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .thankyou-section {
    padding: 3rem 0;
  }

  .thankyou-wrapper {
    padding: 3rem 2rem;
  }

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

  .thankyou-subtitle {
    font-size: 1.1rem;
  }

  .success-icon-wrapper {
    width: 150px;
    height: 150px;
  }

  .success-checkmark {
    width: 60px;
    height: 60px;
  }

  .success-checkmark i {
    font-size: 2rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .confirmation-box {
    flex-direction: column;
    text-align: center;
  }

  .confirmation-text {
    text-align: center;
  }

  .contact-methods {
    flex-direction: column;
    gap: 1rem;
  }

  .action-buttons {
    flex-direction: column;
  }

  .btn-modern {
    width: 100%;
  }

  .info-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .thankyou-wrapper {
    padding: 2rem 1.5rem;
  }

  .thankyou-title {
    font-size: 1.75rem;
  }

  .thankyou-subtitle {
    font-size: 1rem;
  }

  .whats-next h2 {
    font-size: 1.5rem;
  }

  .confirmation-box {
    padding: 1.5rem;
  }

  .contact-info-box {
    padding: 1.5rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .success-icon-wrapper,
  .success-checkmark,
  .success-checkmark i,
  .thankyou-content,
  .confirmation-box,
  .whats-next,
  .contact-info-box,
  .action-buttons,
  .decorative-circle {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}
