/* ================= THANK YOU PAGE STYLES ================= */

/* ============================================
   THANK YOU SECTION
   ============================================ */
.thankyou-section {
  padding: 100px 0;
  text-align: center;
  background: #f8fbff;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

/* ============================================
   THANK YOU CONTAINER
   ============================================ */
.thankyou-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   THANK YOU CARD
   ============================================ */
.thankyou-card {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(16, 31, 75, 0.08);
}

/* ============================================
   THANK YOU ICON
   ============================================ */
.thankyou-icon {
  font-size: 60px;
  color: #2952e3;
  margin-bottom: 20px;
}

.thankyou-icon i {
  display: inline-block;
}

/* ============================================
   THANK YOU TITLE
   ============================================ */
.thankyou-title {
  color: #101f4b;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.thankyou-subtitle {
  color: #2952e3;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* ============================================
   THANK YOU TEXT
   ============================================ */
.thankyou-text {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ============================================
   NEXT STEPS BOX
   ============================================ */
.thankyou-next-steps {
  margin-top: 35px;
  text-align: left;
  background: #eaf3ff;
  padding: 25px;
  border-radius: 10px;
}

.thankyou-next-title {
  color: #101f4b;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.thankyou-next-item {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.thankyou-next-item:last-child {
  margin-bottom: 0;
}

/* ============================================
   THANK YOU ACTIONS (Buttons)
   ============================================ */
.thankyou-actions {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* ============================================
   THANK YOU BUTTONS
   ============================================ */
.thankyou-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-align: center;
  font-family: inherit;
  font-size: 14px;
  text-decoration: none;
}

.thankyou-btn-primary {
  background: #2952e3;
  color: #ffffff;
}

.thankyou-btn-primary:hover {
  background: #4fa3e3;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(41, 82, 227, 0.25);
}

.thankyou-btn-secondary {
  background: transparent;
  color: #2952e3;
  border: 2px solid #2952e3;
}

.thankyou-btn-secondary:hover {
  background: #2952e3;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(41, 82, 227, 0.25);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablets */
@media (max-width: 991px) {
  .thankyou-section {
    padding: 80px 0;
  }

  .thankyou-card {
    padding: 40px 30px;
  }

  .thankyou-title {
    font-size: 30px;
  }

  .thankyou-subtitle {
    font-size: 20px;
  }
}

/* Mobile Phones */
@media (max-width: 768px) {
  .thankyou-section {
    padding: 60px 0;
  }

  .thankyou-card {
    padding: 30px 20px;
  }

  .thankyou-title {
    font-size: 26px;
  }

  .thankyou-subtitle {
    font-size: 18px;
  }

  .thankyou-icon {
    font-size: 50px;
  }

  .thankyou-text {
    font-size: 15px;
  }

  .thankyou-next-steps {
    padding: 20px;
  }

  .thankyou-next-title {
    font-size: 18px;
  }

  .thankyou-next-item {
    font-size: 14px;
  }

  .thankyou-actions {
    flex-direction: column;
    align-items: center;
  }

  .thankyou-btn {
    width: 100%;
    max-width: 280px;
  }

  .thankyou-container {
    padding: 0 15px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .thankyou-section {
    padding: 40px 0;
  }

  .thankyou-card {
    padding: 25px 15px;
  }

  .thankyou-title {
    font-size: 22px;
  }

  .thankyou-subtitle {
    font-size: 16px;
  }

  .thankyou-icon {
    font-size: 40px;
  }

  .thankyou-text {
    font-size: 14px;
  }

  .thankyou-next-steps {
    padding: 15px;
  }

  .thankyou-next-title {
    font-size: 16px;
  }

  .thankyou-next-item {
    font-size: 13px;
  }

  .thankyou-btn {
    padding: 12px 24px;
    font-size: 13px;
    max-width: 100%;
  }

  .thankyou-container {
    padding: 0 12px;
  }
}